/* =====================================================================
   Navi landing page styles
   Brand is locked (carries over from the product app): warm ivory canvas,
   a single brass accent, warm ink, deep-ink panels, Fraunces + Hanken Grotesk.
   Distinctiveness lives in composition, the brass-thread motif, and one
   disciplined hero moment, not in the palette.
   ===================================================================== */

/* ---- 1. Design tokens ------------------------------------------------ */
:root {
  /* Color */
  --canvas:      #FAF7F1;  /* warm ivory page bg */
  --surface:     #FFFFFF;  /* white cards / frames */
  --sunken:      #F3EEE4;  /* alternating band bg */
  --ink:         #262130;  /* primary text */
  --ink-2:       #6B6576;  /* secondary text */
  --muted:       #A6A1B0;  /* fine print */
  --brass:       #B08D57;  /* the single accent */
  --brass-dark:  #8C6E40;  /* small brass text on ivory / hover */
  --brass-tint:  #FBF6EC;  /* faint brass-tint backgrounds */
  --plum:        #5A4F93;  /* secondary accent, sparing */
  --panel:       #211E2C;  /* deep-ink band + footer */
  --panel-2:     #2A2636;  /* raised surface on the dark band */
  --brass-on-dark:#C9A56B; /* brass text/accents on deep ink */
  --hairline:    #ECE5D9;  /* warm dividers */
  --hairline-2:  #E0D8C9;  /* slightly stronger border (ghost btn) */
  --success:     #4F9A7F;
  --error:       #C16461;

  /* Type */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-ui: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --maxw: 1440px;
  --gutter: 24px;
  --radius-card: 18px;
  --radius-btn: 10px;
  --radius-sm: 10px;
  --section-pad: clamp(4rem, 10vw, 7rem);
  --shadow-card: 0 24px 60px -30px rgba(60, 45, 20, 0.40);
  --shadow-soft: 0 12px 32px -20px rgba(60, 45, 20, 0.35);
  --shadow-float: 0 30px 70px -28px rgba(40, 30, 12, 0.45);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.6s;
}

@media (min-width: 768px) {
  :root { --gutter: 40px; }
}

/* ---- 2. Reset & base ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }

:focus-visible {
  outline: 2px solid var(--brass-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

strong { color: var(--ink); font-weight: 600; }

::selection { background: rgba(176, 141, 87, 0.22); color: var(--ink); }

/* ---- 3. Layout primitives ------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-pad); position: relative; }
.section--sunken { background: var(--sunken); }
.section--tight { padding-block: clamp(3rem, 7vw, 5rem); }

/* Warm hairline that separates same-color sections without a hard line */
.section--divider { border-top: 1px solid var(--hairline); }

.section__head {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}
.section__head--left { margin-inline: 0; text-align: left; }

/* ---- 4. Typographic roles ------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brass-dark);
}
.eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: var(--brass);
  flex: none;
}
.eyebrow--center { justify-content: center; }
.eyebrow--ondark { color: var(--brass-on-dark); }
.eyebrow--ondark::before { background: var(--brass-on-dark); }

.h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.h3 { font-size: 1.25rem; line-height: 1.25; }

.lede {
  font-size: clamp(1.0625rem, 1.4vw, 1.1875rem);
  line-height: 1.6;
  color: var(--ink-2);
}
.caption { font-size: 0.875rem; color: var(--muted); }

.section__head .h2 + .lede { margin-top: 1rem; }

/* On-dark text helpers */
.on-dark { color: rgba(255, 255, 255, 0.74); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: #FFFFFF; }

/* ---- 5. Buttons ----------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  transition: transform 0.18s var(--ease), background-color 0.18s var(--ease),
              box-shadow 0.18s var(--ease), border-color 0.18s var(--ease);
  will-change: transform;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--brass);
  color: #FFFFFF;
  box-shadow: 0 10px 24px -12px rgba(176, 141, 87, 0.7);
}
.btn--primary:hover { background: var(--brass-dark); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--hairline-2);
}
.btn--ghost:hover { background: #F6F1E8; border-color: var(--brass); }

.btn--ondark {
  background: var(--brass-on-dark);
  color: var(--panel);
}
.btn--ondark:hover { background: #D8B57C; transform: translateY(-2px); }

.btn--lg { padding: 1.05rem 2rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* Text link with growing brass underline */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  color: var(--brass-dark);
  position: relative;
}
.link-arrow::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.link-arrow:hover::after { transform: scaleX(1); }
.link-arrow .arr { transition: transform 0.25s var(--ease); }
.link-arrow:hover .arr { transform: translateY(2px); }

/* ---- 6. Top navigation ---------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 241, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--hairline);
  background: rgba(250, 247, 241, 0.94);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand__mark { width: 34px; height: 34px; flex: none; }

.nav__links {
  display: none;
  gap: 2rem;
  list-style: none;
  padding: 0;
}
.nav__links a {
  font-size: 0.95rem;
  color: var(--ink-2);
  position: relative;
  padding-block: 0.25rem;
  transition: color 0.2s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__right { display: flex; align-items: center; gap: 0.75rem; }

/* Language toggle */
.lang {
  display: inline-flex;
  align-items: center;
}
.lang__btn {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.lang__btn[aria-pressed="true"] { background: var(--brass); color: #FFFFFF; }
/* URL-based language switch: RO/EN as links (/ and /en/) */
.lang__opt {
  font-family: var(--font-ui); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.04em; color: var(--muted); text-decoration: none;
  padding: 0.15rem 0.55rem; line-height: 1;
  transition: color 0.2s var(--ease);
}
.lang__opt:first-child { padding-left: 0; }
.lang__opt + .lang__opt { border-left: 1px solid var(--hairline-2); }
.lang__opt:hover { color: var(--ink); }
.lang__opt.is-on { color: var(--brass-dark); }

.nav .btn--primary { display: none; }

/* Mobile menu button */
.nav__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--hairline-2);
}
.nav__burger span {
  width: 18px; height: 1.5px; margin-inline: auto;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 0 1.25rem;
  border-top: 1px solid var(--hairline);
}
.nav.is-open .nav__mobile { display: flex; }
.nav__mobile a {
  padding: 0.85rem 0.25rem;
  font-size: 1.05rem;
  color: var(--ink);
  border-bottom: 1px solid var(--hairline);
}
.nav__mobile .btn { margin-top: 1rem; }

@media (min-width: 940px) {
  .nav__links { display: flex; }
  .nav .btn--primary { display: inline-flex; }
  .nav__burger { display: none; }
  .nav__mobile { display: none !important; }
}

/* ---- 7. Hero -------------------------------------------------------- */
.hero { position: relative; overflow: hidden; padding-block-start: clamp(0.5rem, 1.5vw, 1.25rem); }
.hero::before {
  /* faint warm radial glow behind the device, never loud */
  content: "";
  position: absolute;
  top: -10%; right: -10%;
  width: 70vw; height: 70vw;
  max-width: 760px; max-height: 760px;
  background: radial-gradient(circle at 60% 40%,
              rgba(176, 141, 87, 0.13), rgba(176, 141, 87, 0) 62%);
  pointer-events: none;
  z-index: 0;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 4.5rem);
  align-items: center;
  padding-top: clamp(1.25rem, 3vw, 2.25rem);
}
.hero__copy { max-width: 40rem; }
.hero__copy .h1 { margin-top: 1.1rem; }
.hero__copy .lede { margin-top: 1.4rem; max-width: 36rem; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
  margin-top: 1.75rem;
  font-size: 0.875rem;
  color: var(--ink-2);
}
.hero__trust li { list-style: none; display: inline-flex; align-items: center; gap: 0.5rem; }
.hero__trust li::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brass);
  flex: none;
}
.hero__trust { padding: 0; }

/* Credibility badge: Innovation Labs finalist */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.75rem;
  padding: 0.45rem 0.9rem 0.45rem 0.65rem;
  background: var(--brass-tint);
  border: 1px solid var(--hairline-2);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brass-dark);
}
.hero__badge svg { width: 17px; height: 17px; color: var(--brass); flex: none; }
.hero__badge strong { color: var(--ink); font-weight: 700; }

@media (min-width: 880px) {
  .hero__grid {
    grid-template-columns: 1.04fr 0.96fr;
  }
}

/* ---- 8. Device (phone) + floating task card (the signature) --------- */
.stage {
  position: relative;
  display: flex;
  justify-content: center;
  padding-block: 1rem;
}

.device {
  position: relative;
  width: min(340px, 80vw);
  background: var(--panel);
  border-radius: 42px;
  padding: 12px;
  box-shadow: var(--shadow-float),
              inset 0 0 0 2px rgba(255,255,255,0.06);
  z-index: 2;
}
.device::before { /* speaker / camera island */
  content: "";
  position: absolute;
  top: 20px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 22px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}
.device__screen {
  width: 100%;
  aspect-ratio: 300 / 620; /* matches the SVG so it fills with no crop and no gap */
  border-radius: 32px;
  overflow: hidden;
  background: #ECE5DD; /* matches the SVG chat background */
  position: relative;
}
.device__screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

/* Floating "request → routed task" card: the product's core truth, made visible */
.taskcard {
  position: absolute;
  z-index: 4;
  left: -8%;
  bottom: 11%;
  width: min(255px, 64vw);
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 0.9rem 1.05rem;
  box-shadow: var(--shadow-card);
}
.taskcard__top {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--brass-dark);
  margin-bottom: 0.5rem;
}
.taskcard__check {
  color: var(--brass-dark);
  display: inline-grid; place-items: center;
  flex: none;
}
.taskcard__check svg { width: 19px; height: 13px; }
.taskcard__title { font-weight: 600; color: var(--ink); font-size: 0.98rem; }
.taskcard__meta { font-size: 0.82rem; color: var(--ink-2); margin-top: 0.15rem; }
.taskcard__dept {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.72rem; font-weight: 600;
  color: var(--brass-dark);
  background: var(--brass-tint);
  border: 1px solid var(--hairline);
  padding: 0.2rem 0.55rem; border-radius: 999px;
}

/* the brass thread that ties the message to the task */
.thread {
  position: absolute;
  z-index: 1;
  left: 6%;
  bottom: 18%;
  width: 46%;
  height: 30%;
  pointer-events: none;
  overflow: visible;
}
.thread path {
  fill: none;
  stroke: var(--brass);
  stroke-width: 1.5;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0.55;
}
.thread circle { fill: var(--brass); }

@media (max-width: 480px) {
  .taskcard { left: 0; bottom: 6%; width: min(240px, 80vw); }
}

/* ---- 9. Problem cards ----------------------------------------------- */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.pain {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.pain:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--hairline-2);
}
.pain__icon {
  color: var(--brass-dark);
  margin-bottom: 1rem;
}
.pain__icon svg { width: 30px; height: 30px; }
.pain p { color: var(--ink-2); font-size: 1rem; line-height: 1.55; }
.transition-line {
  text-align: center;
  margin-top: clamp(2.25rem, 4vw, 3rem);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  color: var(--ink);
}
.transition-line b { color: var(--brass-dark); font-weight: 600; }

@media (min-width: 720px) {
  .pain-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- 10. How it works (numbered sequence + brass thread) ------------ */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  position: relative;
}
.step { position: relative; z-index: 2; padding-left: 4.25rem; }
.step__num {
  position: absolute;
  left: 0; top: 0;
  width: 3rem; height: 3rem;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--brass-dark);
  background: var(--surface);
  border: 1px solid var(--hairline-2);
  border-radius: 50%;
  z-index: 2;
}
.step__kicker {
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--brass-dark);
  margin-bottom: 0.35rem;
}
.step h3 { margin-bottom: 0.4rem; }
.step p { color: var(--ink-2); font-size: 1rem; }

/* vertical brass thread (mobile) */
.steps::before {
  content: "";
  position: absolute;
  left: 1.5rem; top: 1.5rem; bottom: 1.5rem;
  width: 1.5px;
  background: linear-gradient(var(--brass), rgba(176,141,87,0.25));
  z-index: 1;
}
.steps__caption {
  margin-top: 2.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--brass-tint);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  font-size: 0.98rem;
  color: var(--ink-2);
  text-align: center;
}
.steps__caption b { color: var(--ink); }

/* ---- Founders intro (who we are) ------------------------------------ */
.founders-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.founders-intro__media {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.founder-card { margin: 0; text-align: center; }
.founder-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-card);
  border: 1px solid var(--hairline);
  background: #FBF6EC;
  box-shadow: 0 18px 42px rgba(38,33,48,0.14);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.founder-card:hover img {
  transform: translateY(-4px);
  box-shadow: 0 26px 54px rgba(38,33,48,0.22);
}
.founder-card figcaption {
  margin-top: 0.8rem;
  display: flex; flex-direction: column; gap: 0.12rem;
}
.founder-card__name {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.02rem; color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.founder-card__name:hover,
.founder-card__name:focus-visible {
  color: var(--brass-dark);
  border-bottom-color: var(--brass);
}
.founder-card__role {
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.09em; color: var(--brass-dark);
}
.founders-intro__body .h2 { margin-top: 0.9rem; }
.founders-intro__body .lede { margin-top: 1.1rem; }
.founders-intro__body p { color: var(--ink-2); margin-top: 1rem; }
.founders-intro__body p a {
  color: var(--brass-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color 0.2s var(--ease);
}
.founders-intro__body p a:hover,
.founders-intro__body p a:focus-visible { color: var(--ink); }
@media (min-width: 860px) {
  .founders-intro { grid-template-columns: 0.85fr 1fr; gap: 3.5rem; }
}

@media (min-width: 860px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
  .step { padding-left: 0; padding-top: 4.25rem; }
  .step__num { left: 0; }
  /* horizontal brass thread across the three nodes */
  .steps::before {
    left: 1.5rem; right: 1.5rem; top: 1.5rem; bottom: auto;
    width: auto; height: 1.5px;
    background: linear-gradient(90deg, var(--brass), rgba(176,141,87,0.25));
  }
  .steps__caption { grid-column: 1 / -1; }
}

/* ---- 11. Benefits grid ---------------------------------------------- */
.benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.benefit {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: 1.6rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              border-color 0.25s var(--ease);
}
.benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--hairline-2);
}
.benefit__icon { color: var(--brass-dark); margin-bottom: 1rem; }
.benefit__icon svg { width: 26px; height: 26px; }
.benefit h3 { font-family: var(--font-ui); font-weight: 600; font-size: 1.08rem; color: var(--ink); margin-bottom: 0.35rem; }
.benefit p { font-size: 0.95rem; color: var(--ink-2); line-height: 1.5; }

@media (min-width: 640px) { .benefits { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .benefits { grid-template-columns: repeat(3, 1fr); } }

/* Featured benefit: centered, larger, the rest sit around it at normal size */
.benefit--feature {
  grid-column: 1 / -1;
  text-align: center;
  background:
    radial-gradient(120% 140% at 50% 0%, rgba(176, 141, 87, 0.10), rgba(176, 141, 87, 0) 60%),
    var(--surface);
  border-color: var(--brass);
  padding: clamp(2.2rem, 4vw, 3rem) 1.8rem;
}
.benefit--feature .benefit__icon {
  margin-bottom: 1.1rem;
  display: flex;
  justify-content: center;
}
.benefit--feature .benefit__icon svg { width: 34px; height: 34px; }
.benefit--feature h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.15;
}
.benefit--feature p {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.55;
  max-width: 48ch;
  margin: 0.6rem auto 0;
}

/* Display-serif word used to spotlight "ospitalitatea" / "hospitality" */
.accent-word {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.18em;
  color: var(--brass-dark);
}

/* ---- 12. Showcase (alternating rows) -------------------------------- */
.showcase { display: grid; gap: clamp(3.5rem, 7vw, 5.5rem); }
.show-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.show-row__media { position: relative; }
.show-row__copy .h3 { font-size: clamp(1.4rem, 2.6vw, 1.85rem); margin-bottom: 0.85rem; }
.show-row__copy p { color: var(--ink-2); }
.show-row__copy .eyebrow { margin-bottom: 1rem; }

@media (min-width: 860px) {
  .show-row { grid-template-columns: 1fr 1fr; }
  .show-row--reverse .show-row__media { order: 2; }
}

/* Browser/app window chrome holding the dashboard screenshot */
.window {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.window__bar {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.7rem 1rem;
  background: #FBF9F4;
  border-bottom: 1px solid var(--hairline);
}
.window__dots { display: inline-flex; gap: 6px; }
.window__dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--hairline-2); }
.window__dots span:first-child { background: #E3C9A0; }
.window__addr {
  font-family: var(--font-ui);
  font-size: 0.78rem; color: var(--muted);
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 0.2rem 0.8rem;
  margin-inline: auto;
}
.window__screen { background: var(--canvas); }
.window__screen img { width: 100%; height: auto; display: block; }

/* phone variant inside showcase reuses .device but smaller */
.show-row__media .device { width: min(280px, 70vw); margin-inline: auto; }

/* ---- 13. Audience cards --------------------------------------------- */
.audience {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.aud {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.aud:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--hairline-2);
}
.aud__icon {
  color: var(--brass-dark);
  margin-bottom: 1.25rem;
}
.aud__icon svg { width: 32px; height: 32px; }
.aud h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.aud p { color: var(--ink-2); }
@media (min-width: 760px) { .audience { grid-template-columns: 1fr 1fr; } }

/* ---- 14. Founding band (deep ink) ----------------------------------- */
.band-dark {
  background: var(--panel);
  color: rgba(255,255,255,0.74);
  position: relative;
  overflow: hidden;
}
.band-dark::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 50% -10%,
              rgba(201,165,107,0.16), rgba(201,165,107,0) 55%);
  pointer-events: none;
}
.founding { position: relative; text-align: center; max-width: 44rem; margin-inline: auto; }
.founding .h2 { color: #fff; margin-top: 1rem; }
.founding .lede { color: rgba(255,255,255,0.74); margin-top: 1.25rem; }
.founding__points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin-top: 2rem;
  padding: 0;
}
.founding__points li {
  list-style: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; font-weight: 500;
  color: rgba(255,255,255,0.9);
  background: var(--panel-2);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.55rem 1rem;
  border-radius: 999px;
}
.founding__points li svg { width: 15px; height: 15px; color: var(--brass-on-dark); }
.founding .btn { margin-top: 2.25rem; }

/* ---- 15. FAQ accordion ---------------------------------------------- */
.faq { max-width: 50rem; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--hairline); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  text-align: left;
  padding: 1.4rem 0.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--ink);
}
.faq__icon {
  position: relative;
  width: 20px; height: 20px; flex: none;
}
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 13px; height: 1.5px; background: var(--brass-dark);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease);
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s var(--ease);
}
.faq__a-inner { padding: 0 0.25rem 1.5rem; color: var(--ink-2); max-width: 44rem; }

/* ---- 16. Final CTA + form ------------------------------------------- */
.cta-final { text-align: center; }
.cta-final .h2 { max-width: 22ch; margin-inline: auto; }
.cta-final .lede { max-width: 40ch; margin: 1rem auto 0; }

.form-card {
  max-width: 40rem;
  margin: clamp(2.25rem, 4vw, 3rem) auto 0;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  text-align: left;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 560px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.85rem; font-weight: 600; color: var(--ink);
}
.field label .req { color: var(--brass-dark); }
.field input, .field textarea {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brass);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.14);
}
.field input:user-invalid { border-color: var(--error); }
.field__error { font-size: 0.8rem; color: var(--error); min-height: 1rem; display: none; }
.field.has-error .field__error { display: block; }
.field.has-error input, .field.has-error textarea { border-color: var(--error); }

/* honeypot: visually hidden, not display:none (bots skip display:none) */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.consent {
  display: flex; align-items: flex-start; gap: 0.6rem;
  margin-top: 1.25rem;
  font-size: 0.85rem; color: var(--ink-2);
}
.consent input { margin-top: 0.2rem; accent-color: var(--brass); width: 16px; height: 16px; flex: none; }
.consent a { color: var(--brass-dark); text-decoration: underline; text-underline-offset: 2px; }

.form-actions { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.form-note { font-size: 0.8rem; color: var(--muted); text-align: center; }

.form-status { margin-top: 1rem; font-size: 0.95rem; display: none; border-radius: var(--radius-sm); padding: 0.85rem 1rem; }
.form-status.is-success { display: block; background: rgba(79,154,127,0.1); color: #2f6b56; border: 1px solid rgba(79,154,127,0.3); }
.form-status.is-error { display: block; background: rgba(193,100,97,0.1); color: #8f3f3d; border: 1px solid rgba(193,100,97,0.3); }

.form-success {
  display: none;
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0.5rem;
}
.form-success.is-shown { display: block; }
.form-success__check {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(79,154,127,0.12); color: var(--success);
  display: grid; place-items: center; margin: 0 auto 1.25rem;
}
.form-success__check svg { width: 28px; height: 28px; }
.form-success h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.form-success p { color: var(--ink-2); }

/* ---- 17. Footer (deep ink) ------------------------------------------ */
.footer { background: var(--panel); color: rgba(255,255,255,0.6); position: relative; }
.footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-block: clamp(3rem, 6vw, 4rem);
}
.footer__brand .brand { color: #fff; }
.footer__tagline { margin-top: 1rem; font-size: 0.95rem; color: rgba(255,255,255,0.55); max-width: 24rem; }
.footer__col h4 { font-family: var(--font-ui); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--brass-on-dark); margin-bottom: 1rem; }
.footer__col ul { list-style: none; padding: 0; display: grid; gap: 0.7rem; }
.footer__col a, .footer__col li { font-size: 0.95rem; color: rgba(255,255,255,0.66); transition: color 0.2s var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem; color: rgba(255,255,255,0.45);
}
@media (min-width: 760px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; }
}

/* ---- 18. Language visibility ---------------------------------------- */
/* RO default shown; EN hidden until html[lang="en"] */
[data-en] { display: none; }
html[lang="en"] [data-ro] { display: none; }
html[lang="en"] [data-en] { display: revert; }
/* inline phrasing variants need inline display, but only for the active language */
span[data-ro] { display: inline; }
span[data-en] { display: none; }
html[lang="en"] span[data-ro] { display: none; }
html[lang="en"] span[data-en] { display: inline; }

/* ---- 19. Scroll-reveal motion --------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
/* stagger children */
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }

/* Hero load orchestration (the one deliberate moment) */
.hero__copy > * { opacity: 0; transform: translateY(16px); animation: rise 0.8s var(--ease) forwards; }
.hero__copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero__copy > *:nth-child(2) { animation-delay: 0.13s; }
.hero__copy > *:nth-child(3) { animation-delay: 0.21s; }
.hero__copy > *:nth-child(4) { animation-delay: 0.29s; }
.hero__copy > *:nth-child(5) { animation-delay: 0.37s; }
.stage .device { opacity: 0; transform: translateY(24px) scale(0.985); animation: rise 0.9s var(--ease) 0.3s forwards; }
.stage .taskcard { opacity: 0; transform: translateY(16px); animation: rise 0.7s var(--ease) 1.05s forwards; }
.stage .thread path { animation: draw 0.9s var(--ease) 0.95s forwards; }

@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes draw { to { stroke-dashoffset: 0; opacity: 0.55; } }

/* ---- 20. Reduced motion --------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0s !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__copy > *, .stage .device, .stage .taskcard { opacity: 1; transform: none; }
  .thread path { stroke-dashoffset: 0; }
}

/* ---- 21. Misc utilities --------------------------------------------- */
.skip-link {
  position: absolute; left: 0.5rem; top: -3rem;
  background: var(--ink); color: #fff;
  padding: 0.6rem 1rem; border-radius: var(--radius-sm);
  z-index: 100;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0.5rem; }
.center { text-align: center; }

/* ---- Comparison table (Navi vs chatbot vs manual desk) ---- */
/* Keep the comparison heading on a single line */
#compare .h2 {
  white-space: nowrap;
  font-size: clamp(0.95rem, 3.7vw, 2.6rem);
}
.cmp { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cmp__table {
  width: 100%; border-collapse: collapse; min-width: 640px;
  background: var(--surface); border-radius: var(--radius-card);
  overflow: hidden; box-shadow: var(--shadow-soft);
  font-size: 0.95rem;
}
.cmp__table th, .cmp__table td {
  text-align: left; padding: 1.05rem 1.3rem;
  border-bottom: 1px solid var(--hairline); vertical-align: top;
}
.cmp__table thead th {
  font-family: var(--font-ui); font-weight: 600; color: var(--ink);
  background: var(--brass-tint); border-bottom: 1px solid var(--hairline-2);
}
.cmp__table tbody th { font-weight: 600; color: var(--ink); }
.cmp__table td { color: var(--ink-2); }
.cmp__table tbody tr:last-child th,
.cmp__table tbody tr:last-child td { border-bottom: 0; }
.cmp__table .cmp__navi { background: rgba(176, 141, 87, 0.08); color: var(--ink); font-weight: 500; }
.cmp__table thead th.cmp__navi { background: var(--brass); color: #fff; }

.mt-1 { margin-top: 1rem; }
.placeholder-note {
  font-size: 0.72rem; color: var(--muted); text-align: center;
  margin-top: 0.6rem; font-style: italic;
}
