@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

/* =========================================================
   RAZICON — MOBILE FIRST
   Base: smartphones. Enhancements: 700px / 1024px / 1280px
   Brand colors extracted from the supplied logo:
   navy #0D243B | green #10F518 | white #FFFFFF
   ========================================================= */

:root {
  --ink: #0d243b;
  --ink-2: #173650;
  --navy: #0d243b;
  --navy-2: #102c47;
  --navy-deep: #081a2b;
  --green: #10f518;
  --green-dark: #08c910;
  --green-soft: #dffff0;
  --white: #ffffff;
  --paper: #f7f9fb;
  --paper-2: #eef3f6;
  --muted: #607080;
  --line: #dbe4ea;
  --max: 1220px;
  --side: 1rem;
  --radius: 1.25rem;
  --shadow: 0 1.25rem 3.5rem rgba(13, 36, 59, .12);
  --shadow-dark: 0 1.2rem 3rem rgba(0, 0, 0, .25);
}

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

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--navy-deep);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--green);
  color: var(--navy);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.inner {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--side);
}

.section {
  position: relative;
  width: 100%;
  padding-block: 4.5rem;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 .9rem;
  color: #0f7a38;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 1.7rem;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
}

.section-title {
  max-width: 19ch;
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(2rem, 9.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.01;
  letter-spacing: -.05em;
}

.section-title em {
  color: #087d36;
  font-style: normal;
}

.section-lead {
  max-width: 66ch;
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.eyebrow {
  color: rgba(255,255,255,.82);
}

.eyebrow-dot {
  width: .55rem;
  height: .55rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 .35rem rgba(16,245,24,.12);
}

/* ---------- Header / mobile nav ---------- */

.scroll-progress {
  position: fixed;
  z-index: 1100;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--green);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: .5rem;
  left: .5rem;
  right: .5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  min-height: 4rem;
  padding: .45rem .5rem .45rem .7rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1.1rem;
  background: rgba(13, 36, 59, .96);
  box-shadow: 0 .8rem 2rem rgba(0,0,0,.16);
  backdrop-filter: blur(18px) saturate(135%);
  color: var(--white);
  transition: top .2s ease, background .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
  top: .25rem;
  background: rgba(13, 36, 59, .99);
  box-shadow: 0 .9rem 2.4rem rgba(0,0,0,.24);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 6.8rem;
  height: auto;
  object-fit: contain;
  object-position: left center;
  border-radius: .35rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.header-cta {
  min-height: 2.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .65rem .8rem;
  border-radius: .8rem;
  background: var(--green);
  color: var(--navy);
  font-size: .69rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform .18s ease, background .18s ease;
}

.header-cta:hover {
  background: #3bff43;
  transform: translateY(-1px);
}

.menu-toggle {
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  place-content: center;
  gap: .26rem;
  padding: 0;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: .8rem;
  background: rgba(255,255,255,.06);
  color: var(--white);
}

.menu-toggle span {
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(.26rem) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-.26rem) rotate(-45deg);
}

.nav-links {
  position: absolute;
  top: calc(100% + .45rem);
  left: 0;
  right: 0;
  display: none;
  padding: .6rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1rem;
  background: rgba(13,36,59,.99);
  box-shadow: var(--shadow-dark);
}

.nav-links.is-open {
  display: grid;
}

.nav-links a {
  padding: .9rem .85rem;
  border-radius: .7rem;
  color: rgba(255,255,255,.78);
  font-size: .88rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: rgba(255,255,255,.07);
  color: var(--white);
}

/* ---------- Buttons ---------- */

.btn {
  width: 100%;
  min-height: 3.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .85rem 1.2rem;
  border: 0;
  border-radius: .95rem;
  font-weight: 800;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green);
  color: var(--navy);
  box-shadow: 0 .9rem 2.1rem rgba(0,0,0,.22);
}

.btn-primary:hover {
  background: #3bff43;
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: var(--white);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-dark:hover {
  box-shadow: 0 .8rem 1.8rem rgba(13,36,59,.18);
}

.btn svg {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 7rem 0 4.8rem;
  background:
    radial-gradient(circle at 88% 8%, rgba(16,245,24,.12), transparent 24rem),
    linear-gradient(150deg, #0d243b 0%, #102d48 56%, #0a1d31 100%);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .6;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 86%);
}

.hero-grid {
  display: grid;
  gap: 2.7rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-title {
  max-width: 13ch;
  margin: 1.15rem 0 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(2.65rem, 12.5vw, 4.6rem);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.064em;
}

.hero-title span {
  color: var(--green);
}

.hero-subtitle {
  max-width: 58ch;
  margin: 1.35rem 0 0;
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  line-height: 1.68;
}

.hero-actions {
  display: grid;
  gap: .65rem;
  margin-top: 1.7rem;
}

.hero-note {
  margin: .8rem 0 0;
  color: rgba(255,255,255,.52);
  font-size: .78rem;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
}

.logo-showcase {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 1.5rem;
  background: #0d243b;
  box-shadow: var(--shadow-dark);
}

.logo-showcase::after {
  content: "";
  position: absolute;
  inset: auto -12% -40% 30%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(16,245,24,.09);
  filter: blur(30px);
  pointer-events: none;
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

.hero-pills {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .75rem;
}

.hero-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: .45rem .68rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.8);
  font-size: .7rem;
  font-weight: 700;
}

.hero-pills span::before {
  content: "";
  width: .38rem;
  height: .38rem;
  margin-right: .4rem;
  border-radius: 50%;
  background: var(--green);
}

/* ---------- Problem ---------- */

.problem {
  background: var(--paper);
}

.problem-grid {
  display: grid;
  gap: 2rem;
}

.problem-sticky {
  position: static;
}

.question-list {
  display: grid;
  gap: .75rem;
}

.question {
  display: grid;
  grid-template-columns: 2.15rem minmax(0,1fr);
  gap: .8rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--white);
  box-shadow: 0 .3rem 1rem rgba(13,36,59,.04);
  font-weight: 700;
  line-height: 1.45;
}

.question-icon {
  width: 2.15rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: .7rem;
  background: var(--green-soft);
  color: #087d36;
  font-family: "Manrope", Arial, sans-serif;
  font-size: .83rem;
  font-weight: 800;
}

/* ---------- Specialization / paradigm ---------- */

.paradigm {
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.paradigm::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 95% 10%, rgba(16,245,24,.09), transparent 24rem),
    linear-gradient(135deg, transparent 0 66%, rgba(255,255,255,.03) 66.1% 66.3%, transparent 66.4%);
  pointer-events: none;
}

.paradigm .section-kicker {
  color: var(--green);
}

.paradigm .section-title em {
  color: var(--green);
}

.paradigm .section-lead {
  color: rgba(255,255,255,.68);
}

.paradigm-grid {
  position: relative;
  display: grid;
  gap: 2rem;
}

.paradigm-card {
  padding: 1.35rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.paradigm-card p {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: .98rem;
  line-height: 1.7;
}

.paradigm-card p + p {
  margin-top: .9rem;
}

.paradigm-card strong {
  color: var(--white);
}

/* ---------- Benefits ---------- */

.benefits {
  background: var(--paper-2);
}

.cards-4 {
  display: grid;
  gap: .8rem;
  margin-top: 2rem;
}

.benefit-card {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: var(--white);
  box-shadow: 0 .4rem 1.1rem rgba(13,36,59,.05);
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  height: 2.1rem;
  padding-inline: .45rem;
  border-radius: .65rem;
  background: var(--green-soft);
  color: #087d36;
  font-family: "Manrope", Arial, sans-serif;
  font-size: .76rem;
  font-weight: 800;
}

.benefit-card h3,
.step h3,
.objection-card h3,
.proof-card strong {
  font-family: "Manrope", Arial, sans-serif;
}

.benefit-card h3 {
  margin: 1.4rem 0 .55rem;
  font-size: 1.28rem;
  letter-spacing: -.025em;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

/* ---------- Transformation ---------- */

.transformation {
  padding-block: 0;
  background: var(--paper-2);
}

.transform-wrap {
  overflow: hidden;
  display: grid;
  border-radius: 1.4rem;
  box-shadow: var(--shadow);
}

.transform-side {
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
}

.transform-side.before {
  background: #e6edf1;
  color: var(--ink);
}

.transform-side.after {
  background:
    radial-gradient(circle at 90% 15%, rgba(16,245,24,.16), transparent 16rem),
    var(--navy);
  color: var(--white);
}

.transform-label {
  margin-bottom: auto;
  font-size: .71rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .65;
}

.transform-quote {
  max-width: 12ch;
  margin: 2rem 0 .85rem;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(2rem, 9vw, 3.3rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.05em;
}

.transform-side.after .transform-quote {
  color: var(--green);
}

.transform-side > p:last-child {
  max-width: 48ch;
  margin-bottom: 0;
  color: inherit;
  opacity: .72;
  line-height: 1.62;
}

/* ---------- Who ---------- */

.who {
  background: var(--paper);
}

.check-grid {
  display: grid;
  gap: .7rem;
  margin-top: 2rem;
}

.check {
  display: grid;
  grid-template-columns: 2rem minmax(0,1fr);
  gap: .7rem;
  align-items: start;
  padding: .95rem;
  border: 1px solid var(--line);
  border-radius: .95rem;
  background: var(--white);
  line-height: 1.5;
}

.check-mark {
  width: 2rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: .6rem;
  background: var(--green);
  color: var(--navy);
  font-size: .9rem;
  font-weight: 900;
}

/* ---------- Difference ---------- */

.difference {
  background: var(--white);
}

.difference-grid {
  display: grid;
  gap: 2rem;
}

.statement {
  margin-top: 1.4rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--green);
  border-radius: 0 .85rem .85rem 0;
  background: #f3f8f6;
  font-weight: 800;
  line-height: 1.55;
}

.diff-diagram {
  position: relative;
  min-height: 22rem;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at center, rgba(16,245,24,.12), transparent 26%),
    linear-gradient(145deg, #f9fbfc, #edf3f6);
  overflow: hidden;
}

.diff-center {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%,-50%);
  width: 8.2rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 1.4rem;
  background: var(--navy);
  box-shadow: var(--shadow);
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  text-align: center;
}

.diff-chip {
  position: absolute;
  width: 42%;
  padding: .6rem .7rem;
  border: 1px solid var(--line);
  border-radius: .8rem;
  background: var(--white);
  box-shadow: 0 .4rem 1.2rem rgba(13,36,59,.08);
  color: var(--ink-2);
  font-size: .69rem;
  font-weight: 700;
  line-height: 1.25;
}

.diff-chip.one { top: 9%; left: 5%; }
.diff-chip.two { top: 12%; right: 5%; }
.diff-chip.three { left: 5%; bottom: 10%; }
.diff-chip.four { right: 5%; bottom: 10%; }

/* ---------- Proof ---------- */

.proof {
  background: var(--navy);
  color: var(--white);
}

.proof .section-kicker {
  color: var(--green);
}

.proof .section-title em {
  color: var(--green);
}

.proof-head {
  display: grid;
  gap: 1.2rem;
}

.proof-note {
  max-width: 58ch;
  margin: 0;
  color: rgba(255,255,255,.62);
  line-height: 1.65;
}

.proof-grid {
  display: grid;
  gap: .75rem;
  margin-top: 2rem;
}

.proof-card {
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 1rem;
  background: rgba(255,255,255,.05);
}

.proof-card strong {
  display: block;
  margin-bottom: .45rem;
  color: var(--green);
  font-size: 1.05rem;
}

.proof-card p {
  margin: 0;
  color: rgba(255,255,255,.67);
  line-height: 1.55;
}

.partner-strip {
  margin-top: 1rem;
  padding: .9rem 1rem;
  border: 1px solid rgba(16,245,24,.25);
  border-radius: .85rem;
  background: rgba(16,245,24,.07);
  color: rgba(255,255,255,.8);
}

/* ---------- Process ---------- */

.process {
  background: var(--paper);
}

.steps {
  display: grid;
  gap: .75rem;
  margin-top: 2rem;
}

.step {
  position: relative;
  overflow: hidden;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--white);
}

.step::after {
  content: "";
  position: absolute;
  right: -2.2rem;
  top: -2.2rem;
  width: 5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--green-soft);
}

.step-num {
  position: relative;
  z-index: 1;
  color: #087d36;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.step h3 {
  position: relative;
  z-index: 1;
  margin: 1.45rem 0 .5rem;
  font-size: 1.16rem;
  letter-spacing: -.025em;
}

.step p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

/* ---------- Objections ---------- */

.objections {
  background: var(--paper-2);
}

.objection-grid {
  display: grid;
  gap: .85rem;
  margin-top: 2rem;
}

.objection-card {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: var(--white);
}

.objection-card h3 {
  margin: 0 0 .9rem;
  font-size: 1.22rem;
  line-height: 1.25;
  letter-spacing: -.03em;
}

.objection-card p {
  margin: .75rem 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.objection-card strong {
  color: var(--ink);
}

/* ---------- CTA / Form ---------- */

.cta-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(16,245,24,.12), transparent 28rem),
    var(--navy);
  color: var(--white);
}

.cta-section .section-kicker {
  color: var(--green);
}

.cta-section .section-title em {
  color: var(--green);
}

.cta-section .section-lead {
  color: rgba(255,255,255,.68);
}

.cta-grid {
  display: grid;
  gap: 2rem;
}

.lead-form {
  padding: 1.1rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 1.25rem;
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow-dark);
  color: var(--ink);
}

.field {
  display: grid;
  gap: .4rem;
}

.field + .field {
  margin-top: .8rem;
}

.field label {
  font-size: .78rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.1rem;
  padding: .75rem .85rem;
  border: 1px solid #ccd8df;
  border-radius: .75rem;
  outline: none;
  background: var(--white);
  color: var(--ink);
  transition: border .18s ease, box-shadow .18s ease;
}

.field textarea {
  min-height: 7rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #087d36;
  box-shadow: 0 0 0 3px rgba(16,245,24,.12);
}

.lead-form .btn {
  margin-top: 1rem;
}

.form-status {
  min-height: 1.2rem;
  margin: .65rem 0 0;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.45;
}

.copy-prepared {
  margin-top: .4rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #087d36;
  font-size: .76rem;
  font-weight: 800;
  text-decoration: underline;
}

/* ---------- FAQ ---------- */

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  gap: 2rem;
}

.faq-list {
  display: grid;
  gap: .6rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: .95rem;
  background: var(--white);
}

.faq-item button {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: .7rem;
  align-items: center;
  padding: 1rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 800;
  line-height: 1.4;
}

.faq-plus {
  width: 1.8rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: #087d36;
  font-size: 1.15rem;
  line-height: 1;
  transition: transform .2s ease;
}

.faq-item.is-open .faq-plus {
  transform: rotate(45deg);
}

.faq-panel {
  padding: 0 1rem 1rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 3rem 0 1.3rem;
  background: var(--navy-deep);
  color: var(--white);
}

.footer-top {
  display: grid;
  gap: 2rem;
}

.footer-brand .brand-logo {
  width: 9rem;
}

.footer-tagline {
  max-width: 48ch;
  margin: 1rem 0 0;
  color: rgba(255,255,255,.62);
  line-height: 1.6;
}

.contact-rows {
  display: grid;
  gap: .5rem;
  margin-top: 1rem;
  color: rgba(255,255,255,.7);
  font-size: .82rem;
}

.contact-rows strong {
  color: rgba(255,255,255,.92);
}

.contact-rows a {
  overflow-wrap: anywhere;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1rem;
  align-content: start;
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  font-weight: 700;
}

.footer-links a:hover,
.contact-rows a:hover {
  color: var(--green);
}

.footer-bottom {
  display: grid;
  gap: .4rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.42);
  font-size: .7rem;
  line-height: 1.5;
}

.back-to-top {
  position: fixed;
  z-index: 850;
  right: .8rem;
  bottom: .8rem;
  width: 2.8rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: .8rem;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 .7rem 1.8rem rgba(0,0,0,.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(.6rem);
  transition: opacity .2s ease, transform .2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

/* ---------- Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.22,.61,.36,1);
}

.reveal[data-reveal="left"],
.reveal[data-reveal="right"] {
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Legal ---------- */

.legal-page {
  min-height: 100vh;
  background: var(--paper);
}

.legal-hero {
  padding: 7rem 0 3.5rem;
  background: var(--navy);
  color: var(--white);
}

.legal-content {
  width: 100%;
  max-width: 860px;
  margin-inline: auto;
  padding: 2.5rem var(--side) 4rem;
}

.legal-content section {
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  font-family: "Manrope", Arial, sans-serif;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- Tablet ---------- */

@media (min-width: 700px) {
  :root {
    --side: 1.5rem;
    --radius: 1.5rem;
  }

  .section {
    padding-block: 5.5rem;
  }

  .section-title {
    font-size: clamp(2.7rem, 6vw, 4.4rem);
  }

  .section-lead {
    font-size: 1.08rem;
  }

  .site-header {
    left: 1rem;
    right: 1rem;
    padding-inline: .75rem;
  }

  .brand-logo {
    width: 8.2rem;
  }

  .header-cta {
    padding-inline: 1rem;
    font-size: .75rem;
  }

  .btn {
    width: auto;
    min-width: 11rem;
    border-radius: 999px;
  }

  .hero {
    padding-top: 8rem;
    padding-bottom: 5.8rem;
  }

  .hero-title {
    font-size: clamp(3.6rem, 8vw, 5rem);
  }

  .hero-subtitle {
    font-size: 1.08rem;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .logo-showcase {
    padding: 1.35rem;
    border-radius: 1.8rem;
  }

  .problem-grid,
  .paradigm-grid,
  .difference-grid,
  .cta-grid,
  .faq-grid {
    gap: 3rem;
  }

  .cards-4,
  .steps,
  .proof-grid,
  .check-grid,
  .objection-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .transform-wrap {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .transform-side {
    min-height: 24rem;
    padding: 2rem;
  }

  .diff-diagram {
    min-height: 28rem;
  }

  .diff-center {
    width: 10rem;
    font-size: 1.35rem;
  }

  .diff-chip {
    width: 37%;
    padding: .75rem .85rem;
    font-size: .78rem;
  }

  .lead-form {
    padding: 1.5rem;
  }

  .footer-top {
    grid-template-columns: minmax(0,1.2fr) minmax(14rem,.8fr);
    align-items: start;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

/* ---------- Desktop ---------- */

@media (min-width: 1024px) {
  :root {
    --side: 2rem;
    --radius: 1.75rem;
  }

  .section {
    padding-block: 7rem;
  }

  .site-header {
    top: .75rem;
    left: 50%;
    right: auto;
    width: min(calc(100% - 2rem), 1180px);
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    border-radius: 999px;
    padding: .5rem .55rem .5rem .75rem;
  }

  .brand-logo {
    width: 9rem;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links,
  .nav-links.is-open {
    position: static;
    justify-self: center;
    display: flex;
    align-items: center;
    gap: .3rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-links a {
    position: relative;
    padding: .7rem .75rem;
    background: transparent !important;
    color: rgba(255,255,255,.68);
    font-size: .76rem;
  }

  .nav-links a::after {
    content: "";
    position: absolute;
    inset: auto .75rem .32rem;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: var(--green);
    transition: transform .2s ease;
  }

  .nav-links a:hover,
  .nav-links a.is-active {
    color: var(--white);
  }

  .nav-links a:hover::after,
  .nav-links a.is-active::after {
    transform: scaleX(1);
  }

  .header-actions {
    justify-self: end;
  }

  .header-cta {
    min-height: 2.75rem;
    padding-inline: 1.15rem;
    border-radius: 999px;
  }

  .hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 8.5rem 0 6rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0,1.03fr) minmax(22rem,.97fr);
    align-items: center;
    gap: 4.5rem;
  }

  .hero-title {
    max-width: 12ch;
    font-size: clamp(4.6rem, 6vw, 6.5rem);
  }

  .hero-subtitle {
    font-size: 1.16rem;
  }

  .logo-showcase {
    padding: 1.5rem;
    transform: rotate(1.2deg);
  }

  .problem-grid {
    grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
    gap: 6rem;
    align-items: start;
  }

  .problem-sticky {
    position: sticky;
    top: 7rem;
  }

  .paradigm-grid,
  .difference-grid,
  .cta-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
    align-items: center;
    gap: 5rem;
  }

  .cards-4,
  .steps {
    grid-template-columns: repeat(4, minmax(0,1fr));
  }

  .benefit-card {
    min-height: 18rem;
    padding: 1.45rem;
  }

  .proof-head {
    grid-template-columns: minmax(0,1.1fr) minmax(18rem,.9fr);
    align-items: end;
  }

  .proof-grid {
    grid-template-columns: repeat(3, minmax(0,1fr));
  }

  .check-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .diff-diagram {
    min-height: 31rem;
  }

  .objection-card {
    padding: 1.6rem;
  }

  .lead-form {
    padding: 1.7rem;
  }

  .reveal[data-reveal="left"] {
    transform: translateX(-20px);
  }

  .reveal[data-reveal="right"] {
    transform: translateX(20px);
  }

  .reveal.is-visible {
    transform: none;
  }
}

@media (min-width: 1280px) {
  :root {
    --side: 2.5rem;
  }

  .section-title {
    font-size: 4.75rem;
  }

  .hero-grid {
    gap: 6rem;
  }

  .hero-title {
    font-size: 6.3rem;
  }

  .logo-showcase {
    padding: 1.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .reveal,
  .reveal[data-reveal="left"],
  .reveal[data-reveal="right"] {
    opacity: 1;
    transform: none;
  }
}
