/* ============================================================
   QuickStart Business Setup Inc. — SaaS product-landing system
   Fresh architecture (pill nav, mesh hero, bento, plans, FAQ).
   Palette base from brand: petrol teal + warm copper.
   ============================================================ */

:root {
  /* Brand base (carried from original identity) */
  --teal: #0F4C5C;
  --teal-700: #0A3540;
  --teal-500: #166B7F;
  --teal-400: #2A8DA3;
  --teal-300: #57B4C8;
  --copper: #C97B4A;
  --copper-600: #A05F35;
  --copper-300: #E7A878;

  /* Product-landing surface system */
  --bg: #F7F9FB;
  --bg-2: #EEF3F6;
  --surface: #FFFFFF;
  --surface-2: #F3F6F9;
  --ink: #0D1B22;
  --ink-2: #33474F;
  --ink-3: #61757D;
  --line: #E2EAEE;
  --line-2: #D2DEE4;

  /* Accents / signals */
  --brand-grad: linear-gradient(135deg, #166B7F 0%, #0F4C5C 55%, #0A3540 100%);
  --cta-grad: linear-gradient(120deg, #2A8DA3 0%, #166B7F 45%, #0F4C5C 100%);
  --copper-grad: linear-gradient(120deg, #E7A878 0%, #C97B4A 55%, #A05F35 100%);
  --glass: rgba(255, 255, 255, 0.72);
  --glass-line: rgba(255, 255, 255, 0.6);

  /* Elevation */
  --sh-1: 0 1px 2px rgba(13, 27, 34, 0.05), 0 1px 3px rgba(13, 27, 34, 0.04);
  --sh-2: 0 6px 16px -6px rgba(13, 27, 34, 0.14);
  --sh-3: 0 20px 44px -20px rgba(13, 27, 34, 0.24);
  --sh-4: 0 40px 90px -40px rgba(10, 53, 64, 0.42);
  --glow: 0 18px 50px -18px rgba(22, 107, 127, 0.55);

  /* Type */
  --f-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --f-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --f-serif: "Fraunces", Georgia, serif;

  /* Geometry */
  --wrap: 1180px;
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --pill: 999px;
  --pad: clamp(64px, 9vw, 116px);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--teal-500); text-underline-offset: 3px; }
a:hover { color: var(--copper-600); }
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 600; color: var(--ink); letter-spacing: -0.02em; line-height: 1.1; margin: 0; }
p { margin: 0; color: var(--ink-2); }
ul { margin: 0; }

:focus-visible { outline: 3px solid var(--teal-400); outline-offset: 3px; border-radius: 6px; }

.skip { position: absolute; left: -9999px; top: 0; background: var(--teal); color: #fff; padding: 12px 20px; z-index: 200; border-radius: 0 0 12px 0; font-weight: 600; }
.skip:focus { left: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }

/* ---------- eyebrow / pills ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-display);
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-500);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 7px 14px; border-radius: var(--pill);
  box-shadow: var(--sh-1);
}
.kicker::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--copper); box-shadow: 0 0 0 3px rgba(201,123,74,0.18); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--f-display); font-weight: 600; font-size: 15.5px;
  padding: 13px 22px; border-radius: var(--pill);
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform .18s ease, box-shadow .22s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--cta-grad); color: #fff; box-shadow: var(--glow); }
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 22px 56px -18px rgba(22,107,127,0.72); }
.btn-copper { background: var(--copper-grad); color: #fff; box-shadow: 0 16px 40px -16px rgba(201,123,74,0.6); }
.btn-copper:hover { color: #fff; transform: translateY(-2px); }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line-2); box-shadow: var(--sh-1); }
.btn-ghost:hover { color: var(--ink); border-color: var(--teal-400); transform: translateY(-2px); }
.btn-clear { background: transparent; color: var(--ink); padding-inline: 6px; }
.btn-clear:hover { color: var(--teal-500); }
.btn-clear .arw { transition: transform .18s ease; }
.btn-clear:hover .arw { transform: translateX(4px); }
.btn-lg { padding: 16px 30px; font-size: 16.5px; }
.btn-block { width: 100%; }

/* ============================================================
   FLOATING PILL NAV
   ============================================================ */
.topbar {
  position: sticky; top: 0; z-index: 100;
  padding: 16px 0;
  transition: padding .25s ease;
}
.topbar.shrink { padding: 10px 0; }
.pillnav {
  display: flex; align-items: center; gap: 18px;
  max-width: 1080px; margin-inline: auto;
  padding: 9px 9px 9px 20px;
  background: var(--glass);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  border: 1px solid var(--glass-line);
  border-radius: var(--pill);
  box-shadow: var(--sh-3);
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { height: 34px; width: auto; }
.pilllinks { display: flex; align-items: center; gap: 4px; margin: 0 auto; list-style: none; padding: 0; }
.pilllinks a {
  display: inline-block; padding: 9px 15px; border-radius: var(--pill);
  font-family: var(--f-display); font-weight: 500; font-size: 15px;
  color: var(--ink-2); text-decoration: none;
  transition: background .16s ease, color .16s ease;
}
.pilllinks a:hover { background: var(--surface-2); color: var(--ink); }
.pilllinks a[aria-current="page"] { background: var(--teal); color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-tel { display: inline-flex; align-items: center; gap: 7px; font-family: var(--f-display); font-weight: 600; font-size: 14.5px; color: var(--ink); text-decoration: none; padding: 8px 10px; }
.nav-tel svg { width: 15px; height: 15px; color: var(--teal-500); }
.nav-tel:hover { color: var(--teal-500); }
.burger {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal); color: #fff; border: none; cursor: pointer;
}
.burger svg { width: 20px; height: 20px; }

@media (max-width: 900px) {
  .nav-tel { display: none; }
  .pilllinks {
    position: absolute; top: calc(100% + 12px); left: 22px; right: 22px; margin: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--r-lg); padding: 12px; box-shadow: var(--sh-3);
    display: none;
  }
  .pilllinks.open { display: flex; }
  .pilllinks a { padding: 12px 16px; font-size: 16px; }
  .burger { display: inline-flex; }
  .nav-cta .btn-primary { display: none; }
}

/* ============================================================
   MESH HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(48px, 8vw, 92px) 0 0;
  text-align: center;
}
.mesh { position: absolute; inset: -20% -10% auto -10%; height: 720px; z-index: -1; filter: blur(8px); }
.mesh::before, .mesh::after, .mesh > span {
  content: ""; position: absolute; border-radius: 50%; opacity: 0.55;
}
.mesh::before { width: 620px; height: 620px; left: -6%; top: -8%; background: radial-gradient(circle at 30% 30%, #57B4C8, transparent 62%); }
.mesh::after { width: 560px; height: 560px; right: -4%; top: 4%; background: radial-gradient(circle at 60% 40%, #E7A878, transparent 60%); opacity: 0.42; }
.mesh > span { width: 520px; height: 520px; left: 42%; top: 22%; background: radial-gradient(circle at 50% 50%, #166B7F, transparent 62%); opacity: 0.32; }
.hero-inner { max-width: 860px; margin-inline: auto; }
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.4rem); line-height: 1.02; letter-spacing: -0.035em;
  margin: 24px 0 0;
}
.hero h1 .serif { font-family: var(--f-serif); font-weight: 500; font-style: italic; letter-spacing: -0.01em; color: var(--teal-500); }
.hero .sub { font-size: clamp(1.08rem, 1.7vw, 1.28rem); color: var(--ink-2); max-width: 640px; margin: 22px auto 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center; margin-top: 26px; font-size: 14px; color: var(--ink-3); }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { width: 15px; height: 15px; color: var(--teal-400); }

/* ---------- App / dashboard mockup ---------- */
.mockup-shell { max-width: 1040px; margin: clamp(44px, 6vw, 72px) auto 0; padding: 0 6px; position: relative; }
.mockup-shell::after {
  content: ""; position: absolute; left: 8%; right: 8%; bottom: -30px; height: 120px; z-index: -1;
  background: radial-gradient(ellipse at center, rgba(22,107,127,0.35), transparent 70%); filter: blur(20px);
}
.mockup {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-4);
  overflow: hidden;
  display: grid;
  grid-template-columns: 214px 1fr;
  text-align: left;
}
.mk-side { background: linear-gradient(180deg, #0F4C5C, #0A3540); color: #fff; padding: 18px 16px; }
.mk-brand { display: flex; align-items: center; gap: 9px; font-family: var(--f-display); font-weight: 600; font-size: 15px; margin-bottom: 22px; }
.mk-brand .dot { width: 26px; height: 26px; border-radius: 8px; background: var(--copper-grad); display: grid; place-items: center; }
.mk-brand .dot svg { width: 15px; height: 15px; color: #fff; }
.mk-nav { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 3px; }
.mk-nav li { display: flex; align-items: center; gap: 11px; padding: 9px 11px; border-radius: 10px; font-size: 13.5px; color: rgba(255,255,255,0.72); }
.mk-nav li svg { width: 16px; height: 16px; }
.mk-nav li.on { background: rgba(255,255,255,0.12); color: #fff; }
.mk-side .mk-foot { margin-top: 20px; padding: 12px; border-radius: 12px; background: rgba(255,255,255,0.08); font-size: 12px; color: rgba(255,255,255,0.8); }

.mk-main { padding: 20px 22px 24px; background: var(--surface-2); }
.mk-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mk-top h4 { font-size: 17px; letter-spacing: -0.02em; }
.mk-search { flex: 1; max-width: 240px; margin-left: 18px; height: 34px; border-radius: var(--pill); background: var(--surface); border: 1px solid var(--line); display: flex; align-items: center; padding: 0 14px; gap: 8px; color: var(--ink-3); font-size: 13px; }
.mk-search svg { width: 15px; height: 15px; }
.mk-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--copper-grad); flex-shrink: 0; margin-left: 12px; display: grid; place-items: center; color: #fff; font-family: var(--f-display); font-weight: 600; font-size: 13px; }

.mk-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 16px; }
.mk-stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 13px 14px; }
.mk-stat .lbl { font-size: 11.5px; color: var(--ink-3); font-weight: 500; }
.mk-stat .val { font-family: var(--f-display); font-weight: 600; font-size: 22px; letter-spacing: -0.02em; margin-top: 4px; }
.mk-stat .trend { font-size: 11px; font-weight: 600; margin-top: 3px; display: inline-flex; align-items: center; gap: 4px; color: #1E8A63; }
.mk-stat .trend svg { width: 12px; height: 12px; }

.mk-lower { display: grid; grid-template-columns: 1.35fr 1fr; gap: 12px; }
.mk-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 15px 16px; }
.mk-card h5 { font-family: var(--f-display); font-size: 13.5px; font-weight: 600; margin: 0 0 14px; }
.mk-chart { display: flex; align-items: flex-end; gap: 9px; height: 108px; }
.mk-bar { flex: 1; border-radius: 6px 6px 3px 3px; background: linear-gradient(180deg, #57B4C8, #166B7F); position: relative; }
.mk-bar.alt { background: linear-gradient(180deg, #E7A878, #C97B4A); }
.mk-pipe { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.mk-pipe li { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--ink-2); }
.mk-pipe .tick { width: 20px; height: 20px; border-radius: 6px; background: var(--teal); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.mk-pipe .tick svg { width: 12px; height: 12px; }
.mk-pipe .tick.wait { background: var(--surface-2); border: 1.5px solid var(--line-2); color: var(--ink-3); }
.mk-pipe .meta { margin-left: auto; font-size: 11px; color: var(--ink-3); }

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
section { position: relative; }
.band { padding: var(--pad) 0; }
.band-tint { background: var(--bg-2); }
.band-ink { background: var(--teal-700); color: #fff; }
.sec-head { max-width: 680px; }
.sec-head.mid { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 16px 0 0; letter-spacing: -0.03em; }
.sec-head p { font-size: clamp(1.02rem, 1.4vw, 1.15rem); color: var(--ink-2); margin-top: 16px; }
.band-ink .sec-head h2, .band-ink h3 { color: #fff; }
.band-ink .sec-head p { color: rgba(255,255,255,0.78); }
.band-ink .kicker { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); color: #fff; }

/* ============================================================
   LOGO / TRUST ROW
   ============================================================ */
.trust-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 30px; padding: 26px 0; }
.trust-row .lab { font-size: 13px; color: var(--ink-3); font-weight: 500; }
.trust-chip {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-display); font-weight: 600; font-size: 14.5px; color: var(--ink);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--pill);
  padding: 9px 16px; box-shadow: var(--sh-1);
}
.trust-chip svg { width: 16px; height: 16px; color: var(--teal-500); }

/* ============================================================
   BENTO FEATURE GRID
   ============================================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.tile {
  position: relative; overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 26px 28px;
  box-shadow: var(--sh-2);
  transition: transform .2s ease, box-shadow .22s ease, border-color .2s ease;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--sh-3); border-color: var(--line-2); }
.tile.col-3 { grid-column: span 3; }
.tile.col-2 { grid-column: span 2; }
.tile.col-4 { grid-column: span 4; }
.tile.col-6 { grid-column: span 6; }
.tile.tall { min-height: 340px; display: flex; flex-direction: column; }
.t-ico {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid var(--line); color: var(--teal-500); margin-bottom: 16px;
}
.t-ico svg { width: 23px; height: 23px; }
.tile h3 { font-size: 1.28rem; letter-spacing: -0.02em; }
.tile p { margin-top: 9px; font-size: 15.5px; color: var(--ink-2); }
.tile .mini-list { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 8px; }
.tile .mini-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--ink-2); }
.tile .mini-list svg { width: 16px; height: 16px; color: var(--copper); flex-shrink: 0; margin-top: 2px; }

.tile.feat { background: var(--brand-grad); color: #fff; border-color: transparent; }
.tile.feat h3, .tile.feat p { color: #fff; }
.tile.feat p { color: rgba(255,255,255,0.82); }
.tile.feat .t-ico { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.2); color: #fff; }
.tile.feat .glowmark { position: absolute; right: -40px; bottom: -40px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(231,168,120,0.45), transparent 65%); }
.tile .grow { margin-top: auto; }

/* ---------- copper wash tile ---------- */
.tile.warm { background: linear-gradient(140deg, #FBEEE2, #F6E0CE); border-color: #EED5BE; }
.tile.warm .t-ico { background: #fff; color: var(--copper-600); border-color: #EED5BE; }

/* stat inside tile */
.tile .bignum { font-family: var(--f-display); font-weight: 600; font-size: clamp(2.4rem, 5vw, 3.4rem); letter-spacing: -0.03em; line-height: 1; }
.tile .bignum .u { color: var(--copper); }

/* ============================================================
   ONBOARDING STEPS (numbered, connective)
   ============================================================ */
.rail { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 46px; counter-reset: step; }
.node { position: relative; padding-top: 8px; }
.node .num {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  font-family: var(--f-display); font-weight: 600; font-size: 20px; color: #fff;
  background: var(--brand-grad); box-shadow: var(--glow); margin-bottom: 18px; position: relative; z-index: 1;
}
.node:not(:last-child)::before {
  content: ""; position: absolute; top: 34px; left: 52px; right: -20px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-2) 0 7px, transparent 7px 14px);
}
.node h3 { font-size: 1.2rem; }
.node p { margin-top: 8px; font-size: 15px; }
.band-ink .node p { color: rgba(255,255,255,0.76); }
.band-ink .node:not(:last-child)::before { background: repeating-linear-gradient(90deg, rgba(255,255,255,0.28) 0 7px, transparent 7px 14px); }

/* ============================================================
   PRICING / PLANS
   ============================================================ */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 46px; align-items: stretch; }
.plan {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 26px; box-shadow: var(--sh-2);
}
.plan .p-name { font-family: var(--f-display); font-weight: 600; font-size: 1.15rem; letter-spacing: -0.01em; }
.plan .p-desc { font-size: 14.5px; color: var(--ink-3); margin-top: 6px; min-height: 42px; }
.plan .p-price { font-family: var(--f-display); font-weight: 600; font-size: 2rem; letter-spacing: -0.02em; margin: 16px 0 2px; }
.plan .p-price small { font-size: 0.85rem; color: var(--ink-3); font-weight: 500; }
.plan .p-meta { font-size: 13px; color: var(--ink-3); }
.plan hr { border: none; border-top: 1px solid var(--line); margin: 20px 0; }
.plan ul { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 11px; }
.plan li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--ink-2); }
.plan li svg { width: 17px; height: 17px; color: var(--teal-500); flex-shrink: 0; margin-top: 2px; }
.plan .btn { margin-top: auto; }
.plan.hot {
  background: var(--brand-grad); color: #fff; border-color: transparent;
  box-shadow: var(--sh-4); transform: translateY(-8px); position: relative;
}
.plan.hot .p-desc, .plan.hot .p-meta { color: rgba(255,255,255,0.72); }
.plan.hot .p-price small { color: rgba(255,255,255,0.7); }
.plan.hot li { color: rgba(255,255,255,0.9); }
.plan.hot li svg { color: var(--copper-300); }
.plan.hot hr { border-top-color: rgba(255,255,255,0.18); }
.p-tag { position: absolute; top: 18px; right: 18px; font-family: var(--f-display); font-size: 11.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; background: var(--copper-grad); color: #fff; padding: 5px 11px; border-radius: var(--pill); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq { max-width: 780px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 12px; }
.qa { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-1); overflow: hidden; }
.qa summary {
  list-style: none; cursor: pointer; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--f-display); font-weight: 600; font-size: 1.02rem; color: var(--ink);
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary .pm { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--line-2); display: grid; place-items: center; flex-shrink: 0; transition: transform .2s ease, background .2s ease, color .2s ease; color: var(--teal-500); }
.qa summary .pm svg { width: 14px; height: 14px; }
.qa[open] summary .pm { background: var(--teal); border-color: var(--teal); color: #fff; transform: rotate(45deg); }
.qa .ans { padding: 0 22px 20px; }
.qa .ans p { font-size: 15.5px; color: var(--ink-2); }

/* ============================================================
   METRICS BAND
   ============================================================ */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
.metric { text-align: left; padding: 4px 0; }
.metric .m-val { font-family: var(--f-display); font-weight: 600; font-size: clamp(2.2rem, 4.4vw, 3rem); letter-spacing: -0.03em; line-height: 1; color: #fff; }
.metric .m-val .u { color: var(--copper-300); }
.metric .m-lab { font-size: 14px; color: rgba(255,255,255,0.72); margin-top: 12px; max-width: 26ch; }

/* ============================================================
   BIG GRADIENT CTA CARD
   ============================================================ */
.cta-wrap { padding: var(--pad) 0; }
.cta-hero {
  position: relative; overflow: hidden;
  background: var(--cta-grad); color: #fff;
  border-radius: var(--r-xl); padding: clamp(44px, 6vw, 72px);
  text-align: center; box-shadow: var(--sh-4);
}
.cta-hero::before { content: ""; position: absolute; width: 420px; height: 420px; right: -120px; top: -160px; border-radius: 50%; background: radial-gradient(circle, rgba(231,168,120,0.5), transparent 65%); }
.cta-hero::after { content: ""; position: absolute; width: 380px; height: 380px; left: -140px; bottom: -180px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 65%); }
.cta-hero h2 { position: relative; color: #fff; font-size: clamp(2rem, 4.4vw, 3.1rem); letter-spacing: -0.03em; max-width: 18ch; margin-inline: auto; }
.cta-hero p { position: relative; color: rgba(255,255,255,0.86); max-width: 52ch; margin: 18px auto 0; font-size: 1.08rem; }
.cta-hero .hero-actions { position: relative; }
.cta-hero .btn-ghost { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.28); color: #fff; }
.cta-hero .btn-ghost:hover { background: rgba(255,255,255,0.2); color: #fff; }

/* ============================================================
   SPLIT (media + copy) — used on inner pages
   ============================================================ */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.split.flip .s-media { order: 2; }
.s-media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-3); border: 1px solid var(--line); position: relative; }
.s-media img { width: 100%; height: 100%; object-fit: cover; }
.s-media .frame-tag { position: absolute; left: 16px; bottom: 16px; background: var(--glass); backdrop-filter: blur(10px); border: 1px solid var(--glass-line); border-radius: var(--pill); padding: 8px 15px; font-family: var(--f-display); font-weight: 600; font-size: 13px; color: var(--ink); display: inline-flex; gap: 8px; align-items: center; }
.s-media .frame-tag svg { width: 15px; height: 15px; color: var(--teal-500); }
.s-copy h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); letter-spacing: -0.03em; }
.s-copy p { margin-top: 16px; }
.s-copy .mini-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 11px; }
.s-copy .mini-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--ink-2); }
.s-copy .mini-list svg { width: 18px; height: 18px; color: var(--teal-500); flex-shrink: 0; margin-top: 3px; }

/* ============================================================
   PAGE HEAD (inner pages)
   ============================================================ */
.phead { position: relative; overflow: hidden; padding: clamp(56px, 8vw, 104px) 0 clamp(30px, 4vw, 48px); text-align: center; }
.phead .mesh { height: 480px; }
.phead h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); letter-spacing: -0.035em; margin-top: 20px; max-width: 18ch; margin-inline: auto; }
.phead p { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-2); max-width: 620px; margin: 18px auto 0; }

/* ============================================================
   FEATURE CARDS (industries etc.)
   ============================================================ */
.grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.fcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--sh-2); transition: transform .2s ease, box-shadow .22s ease; }
.fcard:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
.fcard .t-ico { margin-bottom: 15px; }
.fcard h3 { font-size: 1.2rem; }
.fcard p { margin-top: 8px; font-size: 15px; }
.fcard ul { list-style: none; padding: 0; margin: 15px 0 0; display: flex; flex-direction: column; gap: 8px; }
.fcard ul li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--ink-2); }
.fcard ul svg { width: 15px; height: 15px; color: var(--copper); flex-shrink: 0; margin-top: 3px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-2col { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 28px; margin-top: 8px; align-items: start; }
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 36px); box-shadow: var(--sh-3); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--f-display); font-weight: 600; font-size: 14px; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--f-body); font-size: 15.5px; color: var(--ink);
  background: var(--surface-2); border: 1px solid var(--line-2); border-radius: var(--r-sm);
  padding: 12px 14px; transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal-400); box-shadow: 0 0 0 4px rgba(42,141,163,0.16); background: var(--surface); }
.form-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-note { font-size: 13.5px; color: var(--ink-3); margin: 0; }

.info-stack { display: flex; flex-direction: column; gap: 14px; }
.info-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 18px 20px; box-shadow: var(--sh-1); }
.info-card .ic-top { display: flex; align-items: center; gap: 11px; }
.info-card .ic-ico { width: 38px; height: 38px; border-radius: 11px; background: var(--surface-2); border: 1px solid var(--line); display: grid; place-items: center; color: var(--teal-500); flex-shrink: 0; }
.info-card .ic-ico svg { width: 19px; height: 19px; }
.info-card dt { font-family: var(--f-display); font-weight: 600; font-size: 13px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.05em; }
.info-card dd { margin: 3px 0 0; font-size: 15.5px; color: var(--ink); }
.info-card dd a { color: var(--teal-500); text-decoration: none; font-weight: 500; }
.info-card dd a:hover { color: var(--copper-600); text-decoration: underline; }

/* ============================================================
   PROSE (legal pages)
   ============================================================ */
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { font-size: 1.5rem; margin: 40px 0 12px; letter-spacing: -0.02em; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin: 0 0 14px; color: var(--ink-2); }
.prose ul { margin: 0 0 16px; padding-left: 22px; color: var(--ink-2); }
.prose ul li { margin-bottom: 7px; }
.prose code { background: var(--surface-2); border: 1px solid var(--line); border-radius: 6px; padding: 1px 6px; font-size: 0.9em; }
.prose blockquote { margin: 18px 0; padding: 18px 22px; background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--teal-500); border-radius: 0 var(--r) var(--r) 0; color: var(--ink-2); box-shadow: var(--sh-1); }
.prose a { color: var(--teal-500); font-weight: 500; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { background: var(--teal-700); color: #fff; padding: clamp(52px, 7vw, 80px) 0 30px; }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 34px; }
.foot-brand img { height: 38px; width: auto; margin-bottom: 16px; }
.foot-brand p { color: rgba(255,255,255,0.68); font-size: 15px; max-width: 34ch; }
.foot-social { display: flex; gap: 10px; margin-top: 18px; }
.foot-col h4 { font-family: var(--f-display); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.55); margin-bottom: 14px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { color: rgba(255,255,255,0.82); text-decoration: none; font-size: 15px; }
.foot-col a:hover { color: #fff; text-decoration: underline; }
.foot-col address { font-style: normal; color: rgba(255,255,255,0.72); font-size: 14.5px; line-height: 1.6; }
.foot-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.14); font-size: 13.5px; color: rgba(255,255,255,0.6); }
.foot-bar a { color: rgba(255,255,255,0.78); text-decoration: none; }
.foot-bar a:hover { color: #fff; }
.foot-cta { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--pill); padding: 10px 18px; color: #fff; text-decoration: none; font-family: var(--f-display); font-weight: 600; font-size: 14.5px; }
.foot-cta:hover { background: rgba(255,255,255,0.18); color: #fff; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
html:not(.js) .reveal { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile.col-3, .tile.col-2, .tile.col-4, .tile.col-6 { grid-column: span 2; }
  .tile.tall { min-height: 0; }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .plan.hot { transform: none; }
  .rail { grid-template-columns: repeat(2, 1fr); }
  .node:nth-child(2)::before { display: none; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .grid-cards { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split.flip .s-media { order: 0; }
  .contact-2col { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .mockup { grid-template-columns: 1fr; }
  .mk-side { display: none; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .bento { grid-template-columns: 1fr; }
  .tile.col-3, .tile.col-2, .tile.col-4, .tile.col-6 { grid-column: span 1; }
  .rail { grid-template-columns: 1fr; }
  .node:not(:last-child)::before { display: none; }
  .metrics { grid-template-columns: 1fr; }
  .grid-cards { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .mk-stats { grid-template-columns: 1fr 1fr; }
  .mk-lower { grid-template-columns: 1fr; }
  .hero-actions .btn, .cta-hero .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
