/*!**********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[15].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[15].oneOf[10].use[3]!./app/(marketing)/_landing/landing.css ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************/
/* ============================================================================
   Kinaro AI — public landing page ("v8", Vivid Orchid).
   Palette: light lilac-white page, VIVID VIOLET primary (#7C3AED family),
   MAGENTA accent (#C026D3) for highlights, deep violet-night dark sections.
   Flat by design — no gradients. Orange Naro pops on the violet field
   (complementary). WhatsApp surfaces keep their real-world green.
   Fully SCOPED under `.korch`. All custom props `--k-*`. Logical props only
   (inline-start/end) so the same stylesheet renders RTL and LTR.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;700;800;900&display=swap');

.korch {
  --k-bg: #FAF9FC;             /* lilac-white page */
  --k-paper: #ffffff;
  --k-ink: #1B1530;            /* deep violet ink */
  --k-muted: #6F6685;
  --k-soft: #4A4162;
  --k-line: #EAE5F2;
  --k-brand: #7C3AED;          /* vivid violet (interactive) */
  --k-brand-dark: #5B21B6;     /* violet ink for text/CTAs */
  --k-primary-fill: #6D28D9;   /* flat fill for CTAs/cores — no gradients by design */
  --k-fox: #C026D3;            /* magenta accent */
  --k-accent: #F3EBFD;         /* violet mist */
  --k-accent-2: #F8F5FD;
  --k-hair: #E3D5F7;
  --k-wa-paper: #efeae2;       /* real WhatsApp chat paper */
  --k-success: #16A34A;
  --k-dark: #17102B;           /* violet night */
  --k-dark-surface: #241A3F;
  --k-dark-border: #3A2C5E;
  --k-shadow: 0 22px 65px rgba(27, 21, 48, .10);
  --k-radius-sm: 18px;
  --k-max: 1180px;

  color: var(--k-ink);
  background: var(--k-bg);
  font-family: 'Heebo', 'Inter Tight', Arial, "Helvetica Neue", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.korch *,
.korch *::before,
.korch *::after { box-sizing: border-box; }

html:has(.korch) { scroll-behavior: smooth; }
.korch section[id],
.korch [id] { scroll-margin-top: 92px; }

/* :where() keeps this at zero specificity so component classes always win */
:where(.korch a) { color: inherit; text-decoration: none; }
.korch img { max-width: 100%; display: block; }
.korch h1, .korch h2, .korch h3, .korch p { margin-top: 0; }

.k-container {
  width: min(var(--k-max), calc(100% - 40px));
  margin-inline: auto;
}

/* ── Top bar / nav ──────────────────────────────────────────────────────── */
.k-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(234, 229, 242, .95);
}
.k-nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.k-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  letter-spacing: .3px;
}
.k-brand > span { font-size: 17.5px; }
/* Naro the fox — the Kinaro logo mark */
.k-brand-fox {
  width: 58px;
  height: 54px;
  object-fit: contain;
  flex: none;
  filter: drop-shadow(0 4px 10px rgba(192, 38, 211, .22));
}
.k-brand small {
  display: block;
  font-size: 11.5px;
  color: var(--k-muted);
  font-weight: 700;
  letter-spacing: .2px;
  margin-top: -2px;
}
.k-nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--k-muted);
  font-size: 13.5px;
  font-weight: 500;
}
.k-nav-links a { transition: color .2s ease; }
.k-nav-links a:hover { color: var(--k-brand); }
.k-nav-right { display: flex; align-items: center; gap: 14px; }

.k-lang {
  border: 1px solid var(--k-line);
  background: #fff;
  color: var(--k-soft);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}
.k-lang:hover { border-color: #B79CE8; color: var(--k-brand-dark); box-shadow: 0 4px 14px -8px rgba(27, 21, 48, .25); }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.k-btn {
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
  font-size: 15px;
  white-space: nowrap;
}
.k-btn:hover { transform: translateY(-2px); }
.k-btn:active { transform: translateY(0); }
.k-btn-primary {
  color: #fff;
  background: var(--k-primary-fill);
  box-shadow: 0 14px 30px rgba(109, 40, 217, .28);
}
.k-btn-primary:hover { box-shadow: 0 18px 40px rgba(109, 40, 217, .38); }
.k-btn-secondary {
  color: var(--k-brand-dark);
  background: #fff;
  border: 1px solid var(--k-hair);
}
.k-btn-secondary:hover { border-color: var(--k-brand); }
.k-btn-sm { padding: 11px 18px; font-size: 13.5px; }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.k-hero {
  padding: 88px 0 72px;
  overflow: hidden;
  background: var(--k-bg);
}
.k-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 60px;
  align-items: center;
}
.k-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--k-accent);
  color: var(--k-brand-dark);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}
.k-eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--k-fox);
  box-shadow: 0 0 0 4px rgba(192, 38, 211, .16);
  flex: none;
}
.korch h1 {
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.05;
  letter-spacing: -1.4px;
  margin-bottom: 22px;
  font-weight: 800;
}
.korch h1 span { color: var(--k-fox); }
.k-hero-copy {
  max-width: 680px;
  font-size: 20px;
  color: var(--k-soft);
  margin-bottom: 26px;
}
.k-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  color: var(--k-soft);
  font-weight: 700;
  font-size: 15px;
}
.k-hero-points li::before {
  content: "✓";
  color: var(--k-brand);
  font-weight: 900;
  margin-inline-end: 8px;
}
.k-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.k-microcopy { color: var(--k-muted); font-size: 13px; }

/* ── Visual anchors ─────────────────────────────────────────────────────── */
.k-visual-card {
  background: #fff;
  border: 1px solid var(--k-line);
  border-radius: 32px;
  padding: 16px;
  box-shadow: var(--k-shadow);
  position: relative;
}
/* Transparent anchor for phones — positioning context only */
.k-visual-plain { position: relative; }
/* Inside feature rows the phone centers in its column (was pulling to the
   inline edge) */
.k-feature-visual .k-visual-plain { display: flex; justify-content: center; }
.k-feature-visual .k-hero-device { width: 100%; }
.k-floating-chip {
  position: absolute;
  padding: 10px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--k-line);
  box-shadow: 0 12px 34px rgba(27, 21, 48, .13);
  font-size: 13px;
  font-weight: 800;
  z-index: 3;
}
.k-chip-one { inset-inline-start: -18px; top: 64px; }
.k-chip-two { inset-inline-start: -14px; bottom: 54px; }

/* ── Naro fox decorations ───────────────────────────────────────────────── */
@keyframes k-float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
.k-fox {
  position: absolute;
  width: clamp(120px, 13vw, 185px);
  height: auto;
  z-index: 4;
  animation: k-float-soft 5.5s ease-in-out infinite;
  filter: drop-shadow(0 14px 24px rgba(27, 21, 48, .18));
  pointer-events: none;
}
/* Hero fox on the LEFT of the phone, leaning over its corner */
.k-fox-hero { inset-inline-end: 44px; bottom: -38px; }
.k-fox-story { inset-inline-end: 4px; top: 8px; width: clamp(104px, 10vw, 150px); }
.k-fox-cta { inset-inline-end: 26px; top: -84px; width: clamp(112px, 11vw, 160px); }

/* Scene action button (hero story, scene 2) */
.k-panel-btn { border-radius: 10px; padding: 9px; text-align: center; font-size: 12.5px; font-weight: 900; }
.k-panel-btn.primary { background: var(--k-primary-fill); color: #fff; }

/* ── Sections ───────────────────────────────────────────────────────────── */
.korch section { padding: 92px 0; }
.k-section-head {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}
.k-section-head h2 {
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.14;
  letter-spacing: -.6px;
  margin-bottom: 16px;
  font-weight: 700;
}
.k-section-head p { font-size: 18px; color: var(--k-muted); margin-bottom: 0; }

.k-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.k-card {
  background: var(--k-paper);
  border: 1px solid var(--k-line);
  border-radius: var(--k-radius-sm);
  padding: 28px;
  box-shadow: 0 14px 38px rgba(27, 21, 48, .05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.k-card:hover {
  transform: translateY(-4px);
  border-color: #D9C8F5;
  box-shadow: 0 6px 16px -10px rgba(27, 21, 48, .08), 0 28px 60px -30px rgba(124, 58, 237, .25);
}
.k-card-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--k-accent);
  color: var(--k-brand);
  font-weight: 900;
  font-size: 20px;
  flex: none;
}
/* number + title share one row */
.k-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.k-card h3 { font-size: 22px; margin-bottom: 0; font-weight: 700; }
.k-card p { color: var(--k-muted); margin-bottom: 0; }

.k-statement {
  margin-top: 36px;
  border-radius: 22px;
  padding: 30px;
  text-align: center;
  color: #fff;
  background: var(--k-primary-fill);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  box-shadow: 0 24px 55px -20px rgba(109, 40, 217, .45);
}

/* ── "What is Kinaro" — architecture stack ─────────────────────────────── */
.k-layer-section { background: #fff; }
.k-layer-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.k-layer-copy h2 {
  font-size: clamp(32px, 3.8vw, 50px);
  line-height: 1.14;
  margin-bottom: 18px;
  font-weight: 700;
}
.k-layer-copy p { color: var(--k-muted); font-size: 18px; }
.k-check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 13px; }
.k-check-list li { position: relative; padding-inline-start: 30px; font-weight: 700; color: var(--k-soft); }
.k-check-list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: var(--k-brand);
  font-weight: 700;
}
.k-stack { display: grid; gap: 0; }
.k-stack-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.k-stack-box {
  min-height: 90px;
  border-radius: 18px;
  border: 1px solid var(--k-line);
  background: var(--k-accent-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
  padding: 16px;
  font-weight: 800;
  color: var(--k-soft);
}
.k-stack-ic { width: 21px; height: 21px; color: var(--k-brand); flex: none; }
.k-stack-core {
  min-height: 130px;
  background: var(--k-primary-fill);
  color: #fff;
  font-size: 25px;
  box-shadow: 0 20px 48px rgba(109, 40, 217, .3);
  border: 0;
}
.k-stack-core img { width: 34px; height: 32px; object-fit: contain; }
.k-stack-output { background: #fff; border: 1px solid var(--k-hair); }

/* Flow connectors between stack rows */
@keyframes k-flow {
  0% { transform: translateY(0); opacity: 0; }
  25% { opacity: 1; }
  100% { transform: translateY(38px); opacity: 0; }
}
.k-stack-link {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 48px;
  padding: 8px 0;
}
.k-stack-link span {
  position: relative;
  justify-self: center;
  width: 2px;
  height: 100%;
  background: var(--k-hair);
}
.k-stack-link span::after {
  content: "";
  position: absolute;
  bottom: -2px;
  /* direction-proof centering (no transform → no RTL override to go stale) */
  inset-inline-start: calc(50% - 5px);
  border: 5px solid transparent;
  border-top-color: var(--k-brand);
}
.k-stack-link span::before {
  content: "";
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--k-brand);
  inset-inline-start: -2px;
  top: -6px;
  animation: k-flow 2.2s ease-in infinite;
}
.k-stack-link span:nth-child(2)::before { animation-delay: .4s; }
.k-stack-link span:nth-child(3)::before { animation-delay: .8s; }

/* ── Feature rows ───────────────────────────────────────────────────────── */
.k-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.k-feature-row + .k-feature-row { margin-top: 92px; }
.k-feature-row.reverse .k-feature-copy { order: 2; }
.k-feature-row.reverse .k-feature-visual { order: 1; }
.k-feature-copy h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.16;
  margin-bottom: 16px;
  font-weight: 700;
}
.k-feature-copy p { font-size: 18px; color: var(--k-muted); }
.k-pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.k-pill {
  padding: 9px 13px;
  background: #fff;
  border: 1px solid var(--k-line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--k-soft);
  font-weight: 800;
  transition: border-color .2s ease, transform .2s ease;
}
.k-pill:hover { border-color: #D9C8F5; transform: translateY(-2px); }
.k-feature-note { margin-top: 24px; font-weight: 800; color: var(--k-ink); }

/* ── Story timeline ─────────────────────────────────────────────────────── */
.k-story {
  background: #F5F1FA;
  border-top: 1px solid var(--k-line);
  border-bottom: 1px solid var(--k-line);
}
.k-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 38px;
  position: relative;
}
.k-timeline::before {
  content: "";
  position: absolute;
  top: 16px;
  inset-inline: 7%;
  height: 2px;
  background: var(--k-fox);
  opacity: .45;
}
.k-timeline-step { position: relative; }
.k-step-no {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  background: var(--k-brand);
  font-weight: 900;
  margin: 0 auto 12px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 5px #F5F1FA;
}
.k-timeline-card {
  background: #fff;
  border: 1px solid var(--k-line);
  border-radius: 18px;
  padding: 16px 14px;
  min-height: 150px;
  text-align: center;
  transition: transform .22s ease, box-shadow .22s ease;
}
.k-timeline-card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(27, 21, 48, .09); }
.k-timeline-card h3 { font-size: 16.5px; margin-bottom: 8px; font-weight: 700; }
.k-timeline-card p { color: var(--k-muted); font-size: 13.5px; margin-bottom: 0; }
.k-story-result {
  margin-top: 28px;
  padding: 26px;
  border-radius: 18px;
  background: #fff;
  border-inline-start: 5px solid var(--k-fox);
  font-size: clamp(18px, 2.1vw, 21px);
  font-weight: 700;
}

/* ── Live badge + phone caption ─────────────────────────────────────────── */
.k-live-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--k-hair);
  color: var(--k-brand-dark);
  font-size: 12.5px;
  font-weight: 700;
}
.k-live-chip::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--k-success);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, .18);
}

.k-shot-frame-caption { display: flex; justify-content: center; margin-top: 14px; }

/* ── Benefits ───────────────────────────────────────────────────────────── */
.k-benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.k-benefit {
  background: #fff;
  border: 1px solid var(--k-line);
  border-radius: 20px;
  padding: 26px;
  border-inline-start: 4px solid var(--k-accent);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.k-benefit:hover {
  transform: translateY(-4px);
  border-color: #D9C8F5;
  border-inline-start-color: var(--k-fox);
  box-shadow: 0 28px 60px -30px rgba(124, 58, 237, .25);
}
.k-benefit strong { display: block; font-size: 19px; margin-bottom: 7px; }
.k-benefit span { color: var(--k-muted); }

/* ── Offers (dark violet night) ─────────────────────────────────────────── */
.k-offers { background: var(--k-dark); color: #fff; }
.k-offers .k-section-head h2 { color: #D8B4FE; }
.k-offers .k-section-head p { color: #C9C0DF; }
.k-offers .k-eyebrow { background: rgba(216, 180, 254, .14); color: #D8B4FE; }
.k-offers .k-eyebrow::before { background: #F0ABFC; box-shadow: 0 0 0 4px rgba(240, 171, 252, .18); }
.k-offers-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 24px;
  align-items: stretch;
}
.k-offer-card {
  border-radius: 28px;
  padding: 34px;
  background: #fff;
  color: var(--k-ink);
  position: relative;
  overflow: hidden;
  /* shared page-like structure: badge → title → sub → content → CTA.
     Flex column + margin-top:auto pins both CTAs to the same spot. */
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.k-offer-sub { color: var(--k-muted); font-size: 15.5px; margin-bottom: 18px; }
.k-offer-cta { margin-top: auto; align-self: flex-start; }
.k-offer-card.primary {
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
}
.k-offer-badge {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--k-accent);
  color: var(--k-brand-dark);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 16px;
}
.k-offer-card h3 { font-size: 30px; line-height: 1.16; margin-bottom: 12px; font-weight: 700; }
.k-price {
  font-size: clamp(48px, 6vw, 62px);
  line-height: 1;
  letter-spacing: -2px;
  font-weight: 900;
  color: var(--k-fox);
  margin: 22px 0 6px;
}
.k-price-sub { color: var(--k-soft); font-weight: 800; margin-bottom: 22px; }
.k-systems { display: flex; flex-wrap: wrap; gap: 9px; margin: 16px 0 24px; }
.k-system {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--k-accent-2);
  border: 1px solid var(--k-line);
  font-weight: 900;
  font-size: 13px;
}
.k-offer-list { list-style: none; padding: 0; display: grid; gap: 10px; margin: 22px 0 28px; }
.k-offer-list li::before {
  content: "✓";
  color: var(--k-brand);
  font-weight: 900;
  margin-inline-end: 8px;
}
.k-legal { color: var(--k-muted); font-size: 12px; margin-top: 15px; }
/* invisible copy of the other card's legal line — keeps both pinned CTAs at
   the same distance from the card bottom */
.k-legal.ghost { visibility: hidden; }
.k-design-card {
  background: var(--k-dark-surface);
  color: #fff;
  border: 1px solid var(--k-dark-border);
}
.k-design-card p { color: #D5CCE8; }
.k-design-card .k-offer-badge { background: rgba(255, 255, 255, .12); color: #fff; }
.k-design-card .k-offer-list li::before { color: #D8B4FE; }
/* Contrast: solid white button on the dark card */
.k-design-card .k-btn-secondary {
  color: var(--k-brand-dark);
  border: 0;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .3);
}
.k-design-card .k-btn-secondary:hover { background: var(--k-accent); }

/* ── About ──────────────────────────────────────────────────────────────── */
.k-about-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 54px;
  align-items: center;
}
.k-about-grid h2 {
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.16;
  margin-bottom: 18px;
  font-weight: 700;
}
.k-about-grid p { color: var(--k-muted); font-size: 18px; }
.k-brand-photo {
  min-height: 340px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}
.k-brand-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ── CTA / contact ──────────────────────────────────────────────────────── */
.k-cta { padding-top: 48px; }
.k-cta-box {
  background: #fff;
  border: 1px solid var(--k-line);
  border-radius: 32px;
  box-shadow: 0 1px 2px rgba(27, 21, 48, .04), 0 8px 20px -14px rgba(27, 21, 48, .1), 0 30px 70px -30px rgba(124, 58, 237, .3);
  padding: 42px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 42px;
  align-items: start;
  position: relative;
}
.k-cta-copy h2 { font-size: clamp(28px, 3vw, 38px); line-height: 1.14; margin-bottom: 16px; font-weight: 700; }
.k-cta-copy p { color: var(--k-muted); }
.k-route-list { margin-top: 24px; display: grid; gap: 12px; }
.k-route {
  padding: 16px;
  border-radius: 16px;
  background: var(--k-accent-2);
  border: 1px solid var(--k-line);
}
.k-route strong { display: block; margin-bottom: 4px; }

.k-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.k-field { display: grid; gap: 6px; }
.k-field.full { grid-column: 1 / -1; }
.korch label { font-size: 13px; font-weight: 800; color: var(--k-soft); }
.korch input,
.korch select,
.korch textarea {
  width: 100%;
  border: 1px solid #DDD5EC;
  border-radius: 13px;
  padding: 13px 14px;
  color: var(--k-ink);
  background: #fff;
  outline: none;
  font: inherit;
}
.korch input:focus,
.korch select:focus,
.korch textarea:focus {
  border-color: #A78BFA;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, .1);
}
.korch textarea { min-height: 110px; resize: vertical; }
.k-form-note { color: var(--k-muted); font-size: 12px; margin-top: 10px; }
.k-form-ok {
  grid-column: 1 / -1;
  border-radius: 16px;
  background: var(--k-accent);
  border: 1px solid var(--k-hair);
  padding: 22px;
  text-align: center;
  color: var(--k-brand-dark);
  font-weight: 800;
}
.k-form-err { color: #C23030; font-size: 13px; font-weight: 700; }
/* lead-intent handoff: the form glows when an offer CTA pre-fills it */
@keyframes k-form-glow {
  0%, 100% { box-shadow: none; }
  30% { box-shadow: 0 0 0 8px rgba(124, 58, 237, .28); }
  65% { box-shadow: 0 0 0 4px rgba(192, 38, 211, .2); }
}
.k-form-flash { animation: k-form-glow 1.5s ease; border-radius: 18px; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.korch footer { padding: 34px 0 44px; color: #837C99; font-size: 13px; }
.k-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  border-top: 1px solid var(--k-line);
  padding-top: 26px;
}
.k-footer-brand { display: flex; align-items: center; gap: 8px; font-weight: 700; }
.k-footer-brand img { width: 26px; height: 24px; object-fit: contain; }

/* ── Full-bezel phone devices ───────────────────────────────────────────── */
.k-device {
  border-radius: 30px;
  background: var(--k-dark);
  padding: 10px 8px;
  box-shadow: 0 24px 50px rgba(27, 21, 48, .25);
  position: relative;
}
.k-device::before {
  content: "";
  position: absolute;
  top: 14px;
  /* direction-proof centering (no transform → no RTL override to go stale) */
  inset-inline-start: calc(50% - 27px);
  width: 54px; height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  z-index: 2;
}
.k-screen {
  border-radius: 22px;
  overflow: hidden;
  background: var(--k-bg);
  /* Real phone proportions — every app screen on the page is 9:16 */
  aspect-ratio: 9 / 16;
  display: grid;
  grid-template-rows: auto 1fr;
}
.k-hero-device { max-width: 345px; margin-inline: auto; }
.k-hero-device .k-screen { background: #FAF8FD; }
.k-screen-img { grid-template-rows: 1fr; }
/* animated story screens: header / body / progress dots */
.k-screen.with-dots { grid-template-rows: auto 1fr auto; }
.k-screen-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.k-app-head {
  padding: 18px 12px 10px;
  background: var(--k-primary-fill);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 7px;
}
.k-app-head .av {
  width: 22px; height: 22px; border-radius: 8px; flex: none;
  background: rgba(255, 255, 255, .2);
  display: grid; place-items: center;
  font-size: 11px;
}
.k-screen-body { padding: 10px 9px; display: grid; gap: 7px; align-content: start; }
.k-app-stat {
  background: #fff;
  border: 1px solid #EDE7F6;
  border-radius: 12px;
  padding: 9px 10px;
  font-size: 11.5px;
  font-weight: 800;
  color: var(--k-soft);
}

/* Scene animation + storytelling micro-animations */
@keyframes k-scene-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.k-scene { display: grid; gap: 7px; align-content: start; animation: k-scene-in .45s ease both; }
.k-scene-tag {
  justify-self: center;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--k-accent);
  color: var(--k-brand-dark);
  font-size: 10.5px;
  font-weight: 900;
  margin-bottom: 2px;
}
.k-anim { opacity: 0; animation: k-scene-in .45s ease forwards; }
@keyframes k-press {
  0%, 100% { transform: scale(1); filter: none; }
  45% { transform: scale(.9); filter: brightness(.82); }
}
.k-tap {
  opacity: 0;
  animation: k-scene-in .45s ease 1s forwards, k-press .55s ease 1.9s;
}
@keyframes k-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}
.k-warn-anim { opacity: 0; animation: k-scene-in .4s ease .9s forwards, k-shake .4s ease 1.45s; }
@keyframes k-pop {
  0% { transform: scale(.82); }
  70% { transform: scale(1.06); }
  100% { transform: scale(1); }
}
.k-pop { opacity: 0; animation: k-scene-in .4s ease forwards, k-pop .5s ease; }
.k-floating-chip.k-anim { animation-duration: .5s; }
.k-warn-card {
  background: #FBEFE7;
  border: 1px solid #EBCDB4;
  border-radius: 12px;
  padding: 9px 10px;
  font-size: 11.5px;
  font-weight: 800;
  color: #9A4A1E;
}
.k-check-row {
  background: #fff;
  border: 1px solid #EDE7F6;
  border-radius: 10px;
  padding: 7px 9px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--k-soft);
}
.k-check-row::before {
  content: "✓ ";
  color: var(--k-brand);
  font-weight: 700;
}
.k-ok-card {
  background: var(--k-accent);
  border: 1px solid var(--k-hair);
  border-radius: 12px;
  padding: 10px 11px;
  font-size: 11.5px;
  font-weight: 900;
  color: var(--k-brand-dark);
}
.k-story-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px 0 12px;
}
.k-story-dot {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: #DCD4EA;
  transition: .3s ease;
}
.k-story-dot.on { background: var(--k-brand); width: 20px; }
.k-story-dots.wa { background: var(--k-wa-paper); }

/* WhatsApp surface — keeps its real-world green */
.k-wa-head {
  padding: 18px 12px 10px;
  background: #008069;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 7px;
}
.k-wa-head .av {
  width: 22px; height: 22px; border-radius: 50%; flex: none;
  background: #fff;
  color: #008069;
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 700;
}
.k-wa-head small { display: block; font-size: 9px; font-weight: 600; opacity: .85; }
.k-wa-body {
  background: var(--k-wa-paper);
  padding: 10px 9px;
  display: grid;
  gap: 7px;
  align-content: start;
}
.k-wa-chip {
  justify-self: center;
  background: #fff;
  border-radius: 8px;
  padding: 4px 9px;
  font-size: 9.5px;
  font-weight: 800;
  color: #54656f;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .06);
}
.k-wa-chip.enc { background: #fdf3c5; color: #54655d; font-weight: 600; }
.k-wa-msg {
  border-radius: 10px;
  padding: 7px 9px;
  font-size: 11px;
  line-height: 1.5;
  max-width: 92%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .07);
}
.k-wa-msg.in { background: #fff; color: #111b21; justify-self: start; }
.k-wa-msg.out { background: #d9fdd3; color: #111b21; justify-self: end; }
.k-wa-actions { display: flex; gap: 6px; }
.k-wa-btn {
  flex: 1;
  text-align: center;
  border-radius: 9px;
  padding: 7px;
  font-size: 10.5px;
  font-weight: 900;
  background: #fff;
  color: #008069;
  border: 1px solid #cfe5df;
}
.k-wa-btn.ok { background: #008069; color: #fff; border: 0; }
.k-device-label {
  text-align: center;
  margin-top: 10px;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--k-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

/* ── Violet scope for the (cream/brass) tour modal ──────────────────────── */
.korch-tour {
  --color-cream: #ffffff;
  --color-brass: #7C3AED;
  --color-brass-light: #F3EBFD;
  --color-brass-medium: rgba(124, 58, 237, .22);
  --color-border-soft: #EAE5F2;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .k-nav-links { display: none; }
  .k-hero-grid,
  .k-layer-grid,
  .k-feature-row,
  .k-about-grid,
  .k-cta-box,
  .k-offers-grid { grid-template-columns: 1fr; }
  .k-hero { padding-top: 58px; }
  .k-feature-row.reverse .k-feature-copy,
  .k-feature-row.reverse .k-feature-visual { order: initial; }
  .k-cards, .k-benefits-grid { grid-template-columns: 1fr 1fr; }
  .k-timeline { grid-template-columns: repeat(3, 1fr); }
  .k-timeline::before { display: none; }
  .k-fox-hero { inset-inline-end: 2px; bottom: -22px; }
}

@media (max-width: 650px) {
  .k-container { width: min(100% - 24px, var(--k-max)); }
  .korch section { padding: 66px 0; }
  .k-hero-copy { font-size: 18px; }

  /* compact top bar: one-line tagline, small fox, buttons that don't wrap */
  .k-nav { min-height: 58px; gap: 8px; }
  .k-brand { gap: 7px; }
  .k-brand-fox { width: 38px; height: 36px; }
  .k-brand > span { font-size: 14px; }
  .k-brand small { font-size: 9px; white-space: nowrap; letter-spacing: 0; }
  .k-btn-sm { padding: 8px 12px; font-size: 12px; }
  .k-lang { padding: 6px 10px; font-size: 11.5px; }

  .k-cards,
  .k-benefits-grid,
  .k-timeline,
  .k-form-grid,
  .k-stack-row { grid-template-columns: 1fr; }
  .k-field.full { grid-column: auto; }
  .k-cta-box, .k-offer-card { padding: 26px; }
  .k-footer-inner { flex-direction: column; }
  .k-chip-one, .k-chip-two { display: none; }
  /* .korch img (0,1,1) outranks .k-fox (0,1,0) — needs the extra class */
  .korch .k-fox { display: none; }
  .k-section-head { margin-bottom: 30px; }

  /* vertical timeline rail on mobile — the connection stays visible */
  .k-timeline { gap: 18px; margin-top: 22px; }
  .k-timeline::before {
    display: block;
    top: 0; bottom: 0;
    height: auto;
    width: 2px;
    inset-inline: auto;
    inset-inline-start: 16px;
  }
  .k-step-no { margin: 0 0 10px; }
  .k-timeline-card { margin-inline-start: 48px; text-align: start; min-height: 0; }

  /* keep single-column phones at a believable device size */
  .k-device { max-width: 270px; margin-inline: auto; }
}

@media (max-width: 420px) {
  /* very narrow phones: the nowrap tagline + CTA no longer fit — drop the
     tagline and tighten, so the sticky bar can't overflow the viewport */
  .k-brand small { display: none; }
  .k-brand-fox { width: 32px; height: 30px; }
  .k-btn-sm { padding: 7px 10px; font-size: 11.5px; }
  .k-lang { padding: 5px 8px; font-size: 11px; }
}

