/* ==========================================================================
   CONVERSYNC — Brand stylesheet
   Every Conversation. Perfectly Synced.
   ========================================================================== */

:root {
  /* Brand palette */
  --navy: #071A2F;
  --navy-700: #0D2742;
  --navy-600: #143354;
  --blue: #2563EB;
  --blue-dark: #1D4ED8;
  --cyan: #20C4D9;
  --ice: #EAF8FC;
  --slate: #64748B;
  --slate-light: #94A3B8;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --surface: #F7FAFC;

  /* Type */
  --font-head: 'Sora', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Layout */
  --wrap: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(7, 26, 47, .06), 0 4px 12px rgba(7, 26, 47, .05);
  --shadow-md: 0 10px 30px rgba(7, 26, 47, .09);
  --shadow-lg: 0 24px 60px rgba(7, 26, 47, .16);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------- Reset -- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: #334155;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 .6em;
  font-weight: 700;
}
h1 { font-size: clamp(2.3rem, 5vw, 3.55rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1.1em; }
ul { margin: 0 0 1.1em; padding-left: 1.15rem; }
li { margin-bottom: .45em; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }

/* -------------------------------------------------------------- Layout -- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.section--tight { padding: 64px 0; }
.section--surface { background: var(--surface); }
.section--ice { background: linear-gradient(180deg, var(--ice) 0%, #F6FCFE 100%); }
.section--navy {
  background: radial-gradient(1000px 520px at 82% -10%, rgba(37, 99, 235, .38), transparent 60%),
              radial-gradient(760px 420px at 6% 110%, rgba(32, 196, 217, .22), transparent 62%),
              var(--navy);
  color: #CBD8E6;
}
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }
.section-head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section-head p { font-size: 1.1rem; color: var(--slate); margin-bottom: 0; }
.section--navy .section-head p { color: #A9BCD1; }
.section-head--left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section--navy .eyebrow { color: var(--cyan); }

.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.lead { font-size: 1.16rem; color: #475569; }
.center { text-align: center; }

/* ------------------------------------------------------------- Buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 8px 22px rgba(37, 99, 235, .3); }
.btn-primary:hover { background: var(--blue-dark); color: var(--white); box-shadow: 0 12px 28px rgba(37, 99, 235, .38); }
.btn-ghost { background: var(--white); color: var(--navy); border-color: var(--border); }
.btn-ghost:hover { color: var(--navy); border-color: var(--blue); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, .45); }
.btn-outline-light:hover { color: var(--navy); background: var(--white); border-color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: .95rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

.link-arrow { font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.link-arrow::after { content: "→"; transition: transform .2s var(--ease); }
.link-arrow:hover::after { transform: translateX(4px); }

/* -------------------------------------------------------------- Header -- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo svg, .logo img { width: 34px; height: 34px; flex: none; }
.logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: -.02em;
  color: var(--navy);
  line-height: 1;
}
.logo-text .lede { color: var(--blue); }
.logo-tag {
  display: block;
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: .56rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 500;
  margin-top: 4px;
}
.nav { display: flex; align-items: center; gap: clamp(16px, 2.1vw, 28px); }
.nav > a {
  color: #334155;
  white-space: nowrap;
  font-weight: 500;
  font-size: .97rem;
  position: relative;
  padding: 6px 0;
}
.nav > a:hover, .nav > a[aria-current="page"] { color: var(--navy); }
.nav > a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
}
.header-cta { display: flex; align-items: center; gap: 16px; }
.login-link {
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.login-link::before {
  content: "";
  width: 15px; height: 15px;
  flex: none;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4'/%3E%3Cpath d='M10 17l5-5-5-5'/%3E%3Cpath d='M15 12H3'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4'/%3E%3Cpath d='M10 17l5-5-5-5'/%3E%3Cpath d='M15 12H3'/%3E%3C/svg%3E") center / contain no-repeat;
}
.login-link:hover { color: var(--blue); }
.nav-cta { display: none; }
.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  width: 44px; height: 42px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav-toggle span { display: block; width: 19px; height: 2px; background: var(--navy); position: relative; border-radius: 2px; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 19px; height: 2px; background: var(--navy); border-radius: 2px;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* ---------------------------------------------------------------- Hero -- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--ice) 100%);
  padding: 84px 0 96px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -60% 45%;
  height: 560px;
  background: radial-gradient(closest-side, rgba(32, 196, 217, .22), transparent 70%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1.06fr .94fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.15rem, 4.3vw, 3.15rem); }
.hero h1 span { color: var(--blue); display: block; }
.hero p.lead { max-width: 33em; }
.hero-note { font-size: .92rem; color: var(--slate); margin-top: 20px; }
.hero-note strong { color: var(--navy); }

.page-hero {
  background: radial-gradient(900px 460px at 80% -20%, rgba(37, 99, 235, .35), transparent 60%),
              radial-gradient(620px 360px at 0% 120%, rgba(32, 196, 217, .2), transparent 60%),
              var(--navy);
  color: #B9CADB;
  padding: 78px 0 84px;
}
.page-hero h1 { color: var(--white); max-width: 16ch; }
.page-hero p { font-size: 1.14rem; max-width: 56ch; margin-bottom: 0; color: #B9CADB; }
.page-hero .btn-row { margin-top: 30px; }

/* --------------------------------------------------- Hero call console -- */
.console {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(7, 26, 47, .07);
  overflow: hidden;
}
.console-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--navy);
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  font-family: var(--font-head);
}
.console-bar .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 0 rgba(32, 196, 217, .6); animation: pulse 2.4s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(32, 196, 217, .55); }
  70% { box-shadow: 0 0 0 11px rgba(32, 196, 217, 0); }
  100% { box-shadow: 0 0 0 0 rgba(32, 196, 217, 0); }
}
.console-bar .timer { margin-left: auto; font-family: var(--font-body); font-weight: 500; color: #9FB6CC; }
.console-body { padding: 20px 18px 8px; background: #FBFDFF; }
.bubble {
  max-width: 86%;
  padding: 11px 15px;
  border-radius: 14px;
  font-size: .93rem;
  line-height: 1.5;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.bubble small {
  display: block;
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
  opacity: .75;
}
.bubble--them { background: var(--white); border: 1px solid var(--border); color: #334155; }
.bubble--them small { color: var(--slate); }
.bubble--ai { background: var(--navy); color: #DCE8F4; margin-left: auto; }
.bubble--ai small { color: var(--cyan); }
.bubble--human { background: #E8F0FE; border: 1px solid #CBDDFB; color: var(--navy-700); margin-left: auto; }
.bubble--human small { color: var(--blue); }
.console-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 18px 18px;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.chip {
  font-size: .74rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--ice);
  color: var(--navy-700);
  border: 1px solid #CFEAF3;
}
.chip--live { background: #E8F0FE; border-color: #CBDDFB; color: var(--blue-dark); }

/* ------------------------------------------------------------ Trustbar -- */
.trustbar { border-bottom: 1px solid var(--border); background: var(--white); padding: 26px 0; }
.trustbar p { text-align: center; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--slate); font-weight: 600; margin: 0 0 18px; }
.trustbar-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; }
.trustbar-list span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  color: #A3B2C4;
  letter-spacing: -.01em;
}

/* --------------------------------------------------------------- Cards -- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #CBD5E1; }
.card h3 { margin-bottom: .45em; }
.card p:last-child { margin-bottom: 0; }
.card ul { margin-bottom: 0; color: #475569; font-size: .96rem; }
.card--flat:hover { transform: none; box-shadow: var(--shadow-sm); }

/* A whole card can be a link — keep it reading as body copy, not as a link. */
a.card { display: block; color: #475569; }
a.card p { color: #475569; }
a.card:hover h3 { color: var(--blue); }
.card--dark {
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .13);
  color: #BCCCDD;
  box-shadow: none;
}
.card--dark:hover { border-color: rgba(32, 196, 217, .5); box-shadow: none; }
.card--dark ul { color: #BCCCDD; }
.card--feature { border-top: 3px solid var(--cyan); }

.icon-badge {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--blue), var(--cyan));
  color: var(--white);
  margin-bottom: 18px;
  font-size: 1.15rem;
}
.icon-badge svg { width: 23px; height: 23px; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.card--dark .icon-badge { background: rgba(32, 196, 217, .16); color: var(--cyan); }

/* --------------------------------------------------------------- Split -- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }
.split--reverse .split-media { order: -1; }
.split ul { list-style: none; padding: 0; }
.split ul li { position: relative; padding-left: 30px; margin-bottom: 14px; }
.split ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--ice);
  border: 2px solid var(--cyan);
}
.split ul li strong { color: var(--navy); }

/* ------------------------------------------------------------- Compare -- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare-col { border-radius: var(--radius); padding: 30px 28px; }
.compare-col h3 { display: flex; align-items: center; gap: 10px; }
.compare-col--ai { background: var(--navy); color: #C4D4E4; }
.compare-col--ai h3 { color: var(--white); }
.compare-col--human { background: var(--ice); border: 1px solid #CFEAF3; }
.compare-col ul { list-style: none; padding: 0; margin: 0; }
.compare-col li { padding-left: 26px; position: relative; }
.compare-col li::before { content: "✓"; position: absolute; left: 0; font-weight: 700; color: var(--cyan); }
.compare-col--human li::before { color: var(--blue); }
.blend-note {
  margin-top: 24px;
  text-align: center;
  font-size: .98rem;
  color: var(--slate);
}

/* --------------------------------------------------------------- Steps -- */
.steps { counter-reset: step; display: grid; gap: 22px; grid-template-columns: repeat(4, 1fr); }
.step { position: relative; padding-top: 22px; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue);
  letter-spacing: .04em;
}
.step::after {
  content: "";
  position: absolute;
  top: 8px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), rgba(32, 196, 217, .35));
  border-radius: 3px;
}
.step h3 { font-size: 1.1rem; margin: 10px 0 .4em; }
.step p { font-size: .96rem; color: #475569; margin: 0; }

/* --------------------------------------------------------------- Stats -- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  color: var(--white);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-num span { color: var(--cyan); }
.stats p { font-size: .96rem; margin: 0; color: #A9BCD1; }

/* ---------------------------------------------------------- Quote card -- */
.quote {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--cyan);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.quote blockquote { margin: 0 0 18px; font-size: 1.04rem; color: var(--navy-700); line-height: 1.6; }
.quote footer { font-size: .9rem; color: var(--slate); }
.quote footer strong { display: block; color: var(--navy); font-family: var(--font-head); }

/* --------------------------------------------------------------- Table -- */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
table { border-collapse: collapse; width: 100%; min-width: 620px; font-size: .96rem; }
th, td { text-align: left; padding: 15px 20px; border-bottom: 1px solid var(--border); }
thead th { background: var(--surface); font-family: var(--font-head); color: var(--navy); font-size: .88rem; letter-spacing: .02em; }
tbody tr:last-child td { border-bottom: 0; }
td strong { color: var(--navy); }

/* ------------------------------------------------------------- Pricing -- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.plan {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.plan--featured { border: 2px solid var(--blue); box-shadow: var(--shadow-md); position: relative; }
.plan-flag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan h3 { font-size: 1.3rem; margin-bottom: .25em; }
.plan-price { font-family: var(--font-head); font-size: 2.1rem; font-weight: 700; color: var(--navy); letter-spacing: -.03em; margin: 14px 0 4px; }
.plan-price small { font-size: .92rem; font-weight: 500; color: var(--slate); font-family: var(--font-body); letter-spacing: 0; }
.plan-desc { font-size: .96rem; color: var(--slate); min-height: 4.5em; }
.plan ul { list-style: none; padding: 0; margin: 20px 0 26px; font-size: .96rem; }
.plan li { position: relative; padding-left: 26px; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan); font-weight: 700; }
.plan .btn { margin-top: auto; width: 100%; }

/* ----------------------------------------------------------------- FAQ -- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  padding: 4px 22px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.faq details[open] { border-color: #C7DBF8; }
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
  padding: 17px 34px 17px 0;
  position: relative;
  font-size: 1.03rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 2px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--blue);
  line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0 0 18px; color: #475569; font-size: .99rem; }

/* ----------------------------------------------------------------- CTA -- */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 20ch; margin-left: auto; margin-right: auto; }
.cta-band p { max-width: 54ch; margin-left: auto; margin-right: auto; color: #A9BCD1; font-size: 1.1rem; }

/* ---------------------------------------------------------------- Form -- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .92rem; color: var(--navy); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #1E293B;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .14);
}
.field textarea { min-height: 128px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: .84rem; color: var(--slate); margin: 14px 0 0; }
.form-status {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--ice);
  border: 1px solid #CFEAF3;
  color: var(--navy-700);
  font-size: .95rem;
  display: none;
}
.form-status.is-visible { display: block; }

.login-card { border: 1px solid #CBDDFB; background: linear-gradient(160deg, #F4F8FF 0%, var(--white) 60%); }
.login-card p { font-size: .95rem; color: #475569; margin-bottom: 0; }
.login-card .btn { width: auto; }

.contact-aside li { list-style: none; }
.contact-aside ul { padding: 0; }
.contact-list { display: grid; gap: 22px; }
.contact-list h3 { font-size: 1.02rem; margin-bottom: .25em; }
.contact-list p { margin: 0; font-size: .97rem; color: var(--slate); }

/* -------------------------------------------------------------- Footer -- */
.site-footer { background: var(--navy); color: #94A9BF; padding: 70px 0 34px; font-size: .95rem; }
.site-footer h4 {
  color: var(--white);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.site-footer a { color: #94A9BF; }
.site-footer a:hover { color: var(--cyan); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { margin: 18px 0 0; max-width: 32ch; font-size: .95rem; }
.footer-bottom {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  font-size: .87rem;
}

/* ------------------------------------------------------------- Reveals -- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* --------------------------------------------------------- Responsive -- */
@media (max-width: 1150px) {
  .logo-tag { display: none; }
}

/* The nav collapses to the menu button while there is still room to spare,
   so the header bar never has to squeeze links or wrap. */
@media (max-width: 1024px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 10px 24px 22px;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav > a { padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 1.02rem; }
  .nav a[aria-current="page"]::after { display: none; }
  .nav-cta { display: grid; gap: 10px; padding-top: 18px; }
  .nav-cta a { font-size: .98rem; }
  .nav-toggle { display: inline-flex; }
  .header-cta .btn { display: none; }
}

@media (max-width: 1024px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 44px; }
  .grid-4, .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 860px) {
  .grid-3, .grid-2, .split, .compare, .plans, .field-row { grid-template-columns: 1fr; }
  .split { gap: 34px; }
  .split--reverse .split-media { order: 0; }
  .section { padding: 68px 0; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .logo-tag { display: none; }
  .logo-text { font-size: 1.12rem; }
  .login-word { display: none; }
  .header-cta { gap: 12px; }
  .grid-4, .stats, .steps { grid-template-columns: 1fr; }
  .form-card { padding: 24px 20px; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .hero { padding: 58px 0 72px; }
  .footer-grid { grid-template-columns: 1fr; }
}

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