:root {
  --ink: #07122f;
  --navy: #110b79;
  --blue: #2e58a6;
  --red: #fd1a16;
  --orange: #ff8000;
  --yellow: #ffd21b;
  --cyan: #13b9ba;
  --green: #6fbd13;
  --paper: #fbfbf7;
  --white: #ffffff;
  --muted: #5a6578;
  --line: rgba(7, 18, 47, 0.12);
  --shadow: 0 28px 90px rgba(7, 18, 47, 0.18);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Aquawax", "Avenir Next", "Montserrat", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

body.is-loading {
  overflow: hidden;
}

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

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

.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  color: var(--white);
  background: var(--ink);
}

.loader-mark {
  position: relative;
  width: 84px;
  height: 84px;
}

.loader-mark span {
  position: absolute;
  inset: 34px 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--red));
}

.loader-mark span + span {
  inset: 4px 34px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
}

.preloader p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(251, 251, 247, 0.78);
  border-bottom: 1px solid rgba(7, 18, 47, 0.08);
  backdrop-filter: blur(18px);
}

.brand img {
  width: clamp(158px, 18vw, 245px);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  color: #485466;
  font-weight: 850;
}

.nav a:hover,
.footer a:hover {
  color: var(--navy);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  transform: translateZ(0);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.header-cta {
  color: var(--white);
  background: var(--ink);
}

.btn.primary {
  color: var(--white);
  background: linear-gradient(90deg, var(--orange), var(--red));
  box-shadow: 0 18px 42px rgba(253, 26, 22, 0.24);
}

.btn.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(7, 18, 47, 0.16);
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(36px, 5vw, 82px);
  align-items: center;
  min-height: 100vh;
  padding: calc(96px + clamp(28px, 6vw, 70px)) clamp(18px, 5vw, 72px) clamp(54px, 7vw, 92px);
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 20%, rgba(19, 185, 186, 0.18), transparent 32%),
    radial-gradient(circle at 82% 90%, rgba(111, 189, 19, 0.16), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #eef5ff 52%, #f7fff1 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -22vw;
  width: min(840px, 62vw);
  height: min(840px, 62vw);
  border-radius: 50%;
  background: conic-gradient(from 190deg, var(--yellow), var(--orange), var(--red), var(--cyan), var(--green), var(--yellow));
  opacity: 0.16;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-visual {
  width: 100%;
  max-width: 780px;
  overflow: hidden;
  border-radius: var(--radius);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1,
h2 {
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 830px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(3rem, 5.6vw, 6.1rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.4vw, 4.75rem);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.hero-text,
.section-heading p,
.signup-copy p,
.benefit-card p,
.step p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
}

.hero-text {
  max-width: 680px;
  margin-bottom: 30px;
}

.stack-copy p {
  margin-bottom: 10px;
}

.emotion-lines {
  display: grid;
  gap: 8px;
  max-width: 620px;
  margin-bottom: 24px;
}

.emotion-lines span {
  color: var(--muted);
}

.emotion-lines strong {
  display: inline-flex;
  width: fit-content;
  padding: 8px 13px;
  border: 1px solid rgba(46, 88, 166, 0.14);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
}

.hero-close,
.lead-line {
  color: var(--navy);
  font-weight: 950;
}

.cta-note {
  max-width: 620px;
  margin-bottom: 22px;
  color: var(--ink);
  font-weight: 850;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  padding: 8px 13px;
  border: 1px solid rgba(46, 88, 166, 0.16);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 900;
}

.visual-frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius);
  transform: rotate(-1deg);
}

.visual-frame img {
  width: 100%;
  max-width: 780px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  user-select: none;
  -webkit-user-drag: none;
}

.floating-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(7, 18, 47, 0.86);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section {
  padding: clamp(70px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 980px;
  margin-bottom: 42px;
}

.section-heading.compact {
  max-width: 830px;
}

.story-section {
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  margin-bottom: clamp(28px, 5vw, 62px);
}

.story-card,
.insight-panel,
.mini-product-card,
.difference-grid article,
.memory-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(7, 18, 47, 0.08);
}

.story-card {
  min-height: 300px;
  padding: 28px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.story-card.large {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 14%, rgba(255, 210, 27, 0.22), transparent 30%),
    linear-gradient(135deg, var(--ink), var(--navy));
}

.story-card.accent {
  background: linear-gradient(135deg, #fff7ee, #eef8f8);
}

.story-card blockquote,
.scenario-copy blockquote {
  margin: 16px 0 0;
  color: inherit;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 950;
  line-height: 1;
}

.insight-panel {
  display: grid;
  gap: 8px;
  max-width: 1040px;
  padding: clamp(28px, 5vw, 54px);
  background:
    radial-gradient(circle at 95% 20%, rgba(19, 185, 186, 0.16), transparent 30%),
    var(--paper);
}

.insight-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
}

.insight-panel strong {
  color: var(--navy);
}

.content-section {
  background: linear-gradient(180deg, #ffffff 0%, #eef8f8 100%);
}

.definition-layout,
.scenario-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.copy-column {
  display: grid;
  gap: 12px;
  max-width: 800px;
}

.copy-column p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
}

.mini-product-card {
  overflow: hidden;
  padding: clamp(26px, 4vw, 44px);
  color: var(--white);
  background:
    radial-gradient(circle at 86% 18%, rgba(19, 185, 186, 0.38), transparent 34%),
    linear-gradient(135deg, var(--ink), var(--navy));
}

.mini-product-card img {
  width: min(420px, 100%);
  margin-bottom: 28px;
}

.mini-product-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
  font-weight: 850;
}

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

.difference-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.difference-grid article {
  min-height: 260px;
  padding: 26px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.difference-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--muted);
}

.difference-grid strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1.12;
}

.section-end {
  max-width: 900px;
  margin: clamp(30px, 5vw, 56px) 0 0;
  color: var(--navy);
  font-size: clamp(1.4rem, 3vw, 3rem);
  font-weight: 950;
  line-height: 1.08;
}

.recognition-section,
.audience-section {
  background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
}

.recognition-grid,
.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1120px;
}

.recognition-grid span,
.audience-list span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 15px;
  border: 1px solid rgba(46, 88, 166, 0.16);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.84);
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(7, 18, 47, 0.06);
}

.growth-line {
  max-width: 900px;
  margin-top: clamp(34px, 6vw, 72px);
  padding: clamp(26px, 4vw, 44px);
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.growth-line p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
}

.growth-line strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1;
}

.imagine-section {
  background: var(--white);
}

.scenario-copy {
  color: var(--ink);
}

.scenario-copy p {
  margin-bottom: 8px;
  color: var(--muted);
}

.phrase-stack {
  display: grid;
  gap: 14px;
}

.phrase-stack span {
  display: block;
  padding: 18px 20px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(90deg, var(--orange), var(--red));
  box-shadow: 0 18px 42px rgba(253, 26, 22, 0.2);
  font-size: clamp(1.25rem, 2.2vw, 2.1rem);
  font-weight: 950;
  line-height: 1.08;
}

.phrase-stack span:nth-child(2) {
  background: linear-gradient(90deg, var(--navy), var(--blue));
}

.phrase-stack span:nth-child(3) {
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.memory-panel {
  max-width: 1040px;
  margin-top: clamp(34px, 6vw, 72px);
  padding: clamp(28px, 5vw, 54px);
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 210, 27, 0.22), transparent 30%),
    linear-gradient(180deg, #ffffff, #f8fbff);
}

.memory-panel p {
  margin-bottom: 8px;
  color: var(--muted);
}

.memory-panel h3 {
  margin: 18px 0 24px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.04;
}

.memory-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.memory-tags span {
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
}

.benefits-section {
  background: var(--white);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card {
  position: relative;
  overflow: hidden;
  min-height: 292px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 18px 46px rgba(7, 18, 47, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.benefit-card:hover,
.step:hover {
  transform: translateY(-6px);
  border-color: rgba(46, 88, 166, 0.24);
  box-shadow: 0 26px 70px rgba(7, 18, 47, 0.13);
}

.benefit-card.accent {
  color: var(--white);
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 210, 27, 0.26), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--blue));
}

.benefit-card.accent p,
.benefit-card.accent .card-index {
  color: rgba(255, 255, 255, 0.78);
}

.card-index {
  display: block;
  margin-bottom: 42px;
  color: var(--blue);
  font-weight: 950;
}

.how-section {
  background: linear-gradient(180deg, #ffffff 0%, #eef8f8 100%);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.step-number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--red));
  font-weight: 950;
}

.quote-section {
  padding-block: clamp(62px, 8vw, 112px);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 12%, rgba(19, 185, 186, 0.32), transparent 28%),
    linear-gradient(135deg, #07122f 0%, var(--navy) 100%);
}

.quote-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: center;
  width: 100%;
  min-width: 0;
  max-width: 1180px;
  margin: 0 auto;
}

.quote-panel img {
  width: 100%;
  max-width: 420px;
}

.quote-panel blockquote {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4.3rem);
  font-weight: 950;
  line-height: 1.04;
}

.eyebrow.light {
  color: var(--yellow);
}

.closing-copy {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.closing-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
}

.closing-copy strong {
  color: var(--yellow);
  font-size: clamp(1.4rem, 3vw, 2.6rem);
}

.signup-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
  background: linear-gradient(180deg, #ffffff 0%, #ecf8f8 100%);
}

.signup-copy {
  position: sticky;
  top: 112px;
}

.launch-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.launch-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 850;
}

.launch-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 16px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--red));
}

.signup-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
}

label.full,
.signup-form button,
.form-note {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(7, 18, 47, 0.18);
  border-radius: 12px;
  color: var(--ink);
  background: #fbfcff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(46, 88, 166, 0.16);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer img {
  width: 180px;
}

.footer div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: var(--muted);
  font-weight: 850;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
}

@media (max-width: 1080px) {
  .hero,
  .signup-section,
  .quote-panel,
  .definition-layout,
  .scenario-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: 100%;
    max-width: 760px;
  }

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

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

  .signup-copy {
    position: static;
  }
}

@media (max-width: 820px) {
  .nav {
    display: none;
  }

  .hero {
    padding-top: 112px;
  }

  .steps,
  .benefit-grid,
  .story-grid,
  .difference-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
  }

  .story-card,
  .difference-grid article {
    min-height: auto;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 68px;
  }

  .brand img {
    width: 150px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  h1 {
    font-size: clamp(2.6rem, 13vw, 3.7rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.15rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-strip span {
    width: 100%;
    text-align: center;
  }

  .emotion-lines strong,
  .recognition-grid span,
  .audience-list span,
  .memory-tags span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .visual-frame {
    transform: none;
  }

  .floating-note {
    left: 12px;
    right: auto;
    bottom: 12px;
  }

  .signup-form {
    grid-template-columns: 1fr;
  }

  .phrase-stack span {
    font-size: 1.2rem;
  }

  .quote-panel blockquote {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .quote-panel img {
    width: auto;
    max-width: calc(100vw - 40px);
  }
}
