/* =========================================================
   AdEquipt — Coming Soon Website
   Brand colour: #012060
   ========================================================= */

:root {
  --navy: #012060;
  --navy-deep: #001747;
  --navy-soft: #0a3475;
  --blue: #2867c7;
  --blue-light: #88b6f5;
  --white: #ffffff;
  --off-white: #f7f7f7;
  --surface: #f2f5fa;
  --line: #dce3ee;
  --ink: #101828;
  --muted: #5f6b7a;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow: 0 24px 70px rgba(1, 32, 96, 0.13);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  background: var(--white);
  color: var(--navy);
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.91);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(1, 32, 96, 0.08);
}

.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  width: 220px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: 49px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav > a:not(.button) {
  color: #3c4655;
  font-size: 14px;
  font-weight: 650;
  transition: color 0.2s ease;
}

.site-nav > a:not(.button):hover,
.site-nav > a:not(.button):focus-visible {
  color: var(--navy);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 11px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  width: 19px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 750;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button:focus-visible,
.site-nav a:focus-visible,
.audience-tab:focus-visible,
details summary:focus-visible {
  outline: 3px solid rgba(40, 103, 199, 0.3);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding: 0 17px;
  font-size: 13px;
}

.button-large {
  min-height: 54px;
  padding: 0 24px;
  font-size: 15px;
}

.button-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 11px 27px rgba(1, 32, 96, 0.18);
}

.button-primary:hover {
  background: var(--navy-soft);
  box-shadow: 0 15px 34px rgba(1, 32, 96, 0.23);
}

.button-ghost {
  border-color: rgba(1, 32, 96, 0.16);
  background: rgba(255, 255, 255, 0.58);
  color: var(--navy);
}

.button-ghost:hover {
  background: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.16);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 0;
  background:
    radial-gradient(circle at 82% 5%, rgba(113, 164, 232, 0.14), transparent 35%),
    linear-gradient(180deg, #fbfcff 0%, #f6f8fc 100%);
}

.hero-grid,
.dark-grid,
.coming-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(1, 32, 96, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 32, 96, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}

.hero-glow-one {
  width: 500px;
  height: 500px;
  right: -280px;
  top: 110px;
  background: rgba(74, 126, 201, 0.09);
}

.hero-glow-two {
  width: 330px;
  height: 330px;
  left: -180px;
  bottom: -110px;
  background: rgba(1, 32, 96, 0.06);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 68px;
  align-items: center;
}

.hero-copy {
  padding-bottom: 82px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  background: rgba(1, 32, 96, 0.055);
  border: 1px solid rgba(1, 32, 96, 0.09);
  border-radius: 999px;
  padding: 8px 12px;
  letter-spacing: 0.08em;
  text-transform: none;
  font-size: 12px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(40, 103, 199, 0.12);
}

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

h1 {
  max-width: 700px;
  margin: 25px 0 22px;
  color: var(--navy-deep);
  font-size: clamp(48px, 5.5vw, 76px);
  line-height: 0.99;
  letter-spacing: -0.055em;
  font-weight: 760;
}

h1 span {
  color: var(--blue);
}

.hero-lead {
  max-width: 620px;
  color: #4d5a6b;
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 33px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 23px;
  margin-top: 31px;
  color: #536074;
  font-size: 12px;
  font-weight: 680;
}

.hero-points span {
  position: relative;
  padding-left: 15px;
}

.hero-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  transform: translateY(-50%);
  background: var(--blue);
  border-radius: 50%;
}

.platform-preview {
  position: relative;
  padding: 20px 0 76px;
}

.preview-shell {
  position: relative;
  min-height: 590px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(1, 32, 96, 0.12);
  border-radius: 28px;
  box-shadow: 0 35px 85px rgba(1, 32, 96, 0.16);
  backdrop-filter: blur(14px);
  transform: perspective(1300px) rotateY(-3deg) rotateX(1deg);
}

.preview-topbar {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 13px;
  border-bottom: 1px solid #e3e8f1;
}

.preview-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.mark-shape {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: white;
  border-radius: 8px;
  font-size: 9px;
  letter-spacing: -0.05em;
}

.preview-user {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d9e7fb, #92b8ec);
  border: 3px solid white;
  box-shadow: 0 0 0 1px #d7e0ed;
}

.preview-content {
  padding: 25px 7px 0;
}

.search-title {
  color: var(--navy);
  font-size: 22px;
  font-weight: 780;
  letter-spacing: -0.025em;
}

.search-bar {
  min-height: 53px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 7px 8px 7px 15px;
  border: 1px solid #d8e0eb;
  background: #fbfcfe;
  border-radius: 12px;
  box-shadow: 0 7px 18px rgba(1, 32, 96, 0.05);
}

.search-icon {
  width: 16px;
  height: 16px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
}

.search-icon::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  background: var(--navy);
  transform: rotate(45deg);
  right: -5px;
  bottom: -2px;
  border-radius: 2px;
}

.search-placeholder {
  flex: 1;
  color: #8a94a3;
  font-size: 11px;
}

.filter-chip {
  background: #eef3fb;
  color: var(--navy);
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 800;
}

.filter-row {
  display: flex;
  gap: 9px;
  margin: 15px 0 14px;
  color: #778394;
  font-size: 9px;
  font-weight: 750;
  overflow: hidden;
}

.filter-row span {
  white-space: nowrap;
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid #e0e6ef;
  background: white;
}

.filter-row .filter-active {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}

.video-card {
  background: white;
  border: 1px solid #e0e6ef;
  border-radius: 15px;
  overflow: hidden;
}

.video-visual {
  height: 190px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 70% 20%, rgba(114, 166, 235, 0.5), transparent 22%),
    linear-gradient(135deg, #031e55, #164b91 58%, #85afe6);
}

.visual-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255,255,255,0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.13) 1px, transparent 1px);
  background-size: 35px 35px;
  transform: perspective(500px) rotateX(55deg) scale(1.5);
  transform-origin: bottom;
}

.play-button {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  padding-left: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--navy);
  font-size: 15px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.video-length {
  position: absolute;
  right: 11px;
  bottom: 10px;
  z-index: 2;
  padding: 4px 7px;
  color: white;
  background: rgba(0,0,0,0.48);
  border-radius: 5px;
  font-size: 8px;
  font-weight: 700;
}

.video-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
}

.business-type {
  color: var(--blue);
  font-size: 8px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.video-info h3 {
  margin: 3px 0 0;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.25;
}

.match-score {
  flex: 0 0 auto;
  padding: 6px 8px;
  color: #186143;
  background: #e8f6ef;
  border-radius: 7px;
  font-size: 8px;
  font-weight: 850;
}

.mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.mini-cards article {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px;
  background: white;
  border: 1px solid #e0e6ef;
  border-radius: 12px;
}

.mini-thumb {
  width: 48px;
  height: 43px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: white;
  font-size: 9px;
}

.mini-thumb-one {
  background: linear-gradient(135deg, #21477f, #9abbe7);
}

.mini-thumb-two {
  background: linear-gradient(135deg, #1a2e4f, #4c75ad);
}

.mini-cards strong,
.mini-cards small {
  display: block;
}

.mini-cards strong {
  color: var(--navy);
  font-size: 9px;
  line-height: 1.2;
}

.mini-cards small {
  margin-top: 3px;
  color: #7e8998;
  font-size: 7px;
}

.preview-float {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.93);
  border: 1px solid rgba(1, 32, 96, 0.11);
  border-radius: 12px;
  box-shadow: 0 18px 35px rgba(1, 32, 96, 0.15);
  backdrop-filter: blur(10px);
}

.preview-float-top {
  right: -35px;
  top: 117px;
}

.preview-float-bottom {
  left: -42px;
  bottom: 92px;
}

.float-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: white;
  background: var(--navy);
  border-radius: 9px;
  font-size: 11px;
}

.preview-float small,
.preview-float strong {
  display: block;
}

.preview-float small {
  color: var(--blue);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.preview-float strong {
  color: var(--navy);
  font-size: 10px;
  line-height: 1.35;
}

.trust-strip {
  position: relative;
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr 1px 1.3fr 1px 1.35fr;
  align-items: center;
  text-align: center;
  border-top: 1px solid rgba(1, 32, 96, 0.1);
  color: #647083;
  font-size: 11px;
  font-weight: 740;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.trust-strip div {
  width: 1px;
  height: 23px;
  background: #d9e0eb;
}

.section {
  position: relative;
  padding: 120px 0;
}

.two-column {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 100px;
  align-items: start;
}

.section-heading h2,
.video-copy h2,
.coming-copy h2 {
  margin: 17px 0 0;
  color: var(--navy-deep);
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading.centred {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-heading.centred p {
  max-width: 620px;
  margin: 20px auto 0;
  color: rgba(255,255,255,0.66);
}

.large-copy {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.55;
  font-weight: 620;
  letter-spacing: -0.012em;
}

.intro-copy > p:last-child,
.video-copy > p {
  color: var(--muted);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 75px;
}

.problem-card {
  position: relative;
  min-height: 310px;
  padding: 38px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.muted-card {
  background: #f3f5f8;
  border: 1px solid #e5e9ef;
}

.solution-card {
  color: white;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.card-number {
  display: block;
  color: #8792a2;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.solution-card .card-number {
  color: rgba(255,255,255,0.5);
}

.problem-card h3 {
  margin: 88px 0 10px;
  color: var(--navy);
  font-size: 25px;
  letter-spacing: -0.025em;
}

.solution-card h3 {
  color: white;
}

.problem-card p {
  max-width: 510px;
  color: #687383;
  font-size: 15px;
}

.solution-card p {
  color: rgba(255,255,255,0.7);
}

.line-icon {
  position: absolute;
  right: 35px;
  top: 33px;
  width: 118px;
  height: 75px;
  opacity: 0.75;
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
  inset: 0;
}

.line-icon-noise::before {
  background:
    linear-gradient(30deg, transparent 47%, #a9b2bf 48%, #a9b2bf 50%, transparent 51%),
    linear-gradient(-40deg, transparent 47%, #c3cad4 48%, #c3cad4 50%, transparent 51%);
  background-size: 25px 25px;
}

.line-icon-focus::before {
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  left: 24px;
}

.line-icon-focus::after {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: white;
  left: 45px;
  top: 21px;
  box-shadow: 0 0 0 10px rgba(255,255,255,0.1);
}

.section-dark {
  overflow: hidden;
  background: var(--navy-deep);
  color: white;
}

.dark-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.section-dark .section-heading h2 {
  color: white;
}

.section-kicker-light {
  color: #90b9ef;
}

.audience-switch {
  width: fit-content;
  display: flex;
  gap: 4px;
  margin: 0 auto 35px;
  padding: 5px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
}

.audience-tab {
  min-width: 160px;
  padding: 13px 18px;
  border: 0;
  border-radius: 8px;
  color: rgba(255,255,255,0.58);
  background: transparent;
  font-size: 13px;
  font-weight: 780;
  cursor: pointer;
}

.audience-tab.active {
  color: var(--navy);
  background: white;
  box-shadow: 0 8px 25px rgba(0,0,0,0.22);
}

.journey-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.1);
}

.journey-panel[hidden] {
  display: none;
}

.journey-step {
  min-height: 305px;
  padding: 28px;
  background: rgba(4, 27, 74, 0.92);
}

.journey-step > span {
  color: rgba(255,255,255,0.38);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.step-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin: 42px 0 25px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 11px;
  color: white;
  background: rgba(255,255,255,0.055);
  font-size: 17px;
}

.journey-step h3 {
  margin-bottom: 10px;
  font-size: 18px;
  letter-spacing: -0.015em;
}

.journey-step p {
  color: rgba(255,255,255,0.59);
  font-size: 13px;
}

.section-video {
  background: #f7f9fc;
}

.video-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 90px;
  align-items: center;
}

.video-showcase {
  padding: 25px;
  background: white;
  border: 1px solid #e0e6ef;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.showcase-frame {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 21px;
  color: white;
  background:
    radial-gradient(circle at 75% 25%, rgba(137, 184, 244, 0.52), transparent 25%),
    radial-gradient(circle at 25% 80%, rgba(80, 125, 190, 0.32), transparent 30%),
    linear-gradient(135deg, #001846, #0a3676 62%, #315f9d);
}

.showcase-frame::before {
  content: "";
  position: absolute;
  inset: -40%;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 45px 45px;
  transform: perspective(650px) rotateX(55deg);
}

.showcase-ui {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.showcase-time {
  color: rgba(255,255,255,0.7);
}

.showcase-centre {
  position: relative;
  z-index: 2;
  text-align: center;
}

.showcase-play {
  width: 65px;
  height: 65px;
  display: grid;
  place-items: center;
  margin: 0 auto 25px;
  padding-left: 4px;
  border-radius: 50%;
  color: var(--navy);
  background: white;
  font-size: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.23);
}

.showcase-centre strong {
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.showcase-wave {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 20px;
  height: 24px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.showcase-wave i {
  flex: 1;
  height: 6px;
  border-radius: 5px;
  background: rgba(255,255,255,0.4);
}

.showcase-wave i:nth-child(2n) { height: 14px; }
.showcase-wave i:nth-child(3n) { height: 21px; }

.showcase-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 8px 3px;
}

.showcase-caption span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.showcase-caption strong {
  color: var(--navy);
  font-size: 13px;
}

.video-copy h2 {
  margin-bottom: 25px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 14px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #465264;
  font-size: 14px;
  font-weight: 650;
}

.feature-list li span {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: white;
  background: var(--navy);
  border-radius: 50%;
  font-size: 10px;
}

.section-benefits .section-heading {
  max-width: 780px;
  margin-bottom: 52px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.benefit-card {
  min-height: 260px;
  padding: 31px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease, transform 0.2s ease;
}

.benefit-card:hover {
  background: #f7f9fc;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 43px;
  color: var(--navy);
  background: #edf3fb;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 850;
}

.benefit-card h3 {
  margin-bottom: 9px;
  color: var(--navy);
  font-size: 20px;
  letter-spacing: -0.02em;
}

.benefit-card p {
  color: var(--muted);
  font-size: 14px;
}

.section-coming-soon {
  overflow: hidden;
  background: var(--navy);
  color: white;
}

.coming-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  mask-image: radial-gradient(circle at 25% 50%, black, transparent 75%);
}

.coming-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: center;
}

.eyebrow-light {
  color: white;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.13);
}

.status-dot-light {
  background: white;
  box-shadow: 0 0 0 5px rgba(255,255,255,0.12);
}

.coming-copy h2 {
  max-width: 750px;
  color: white;
  margin: 24px 0 22px;
}

.coming-copy > p {
  max-width: 680px;
  color: rgba(255,255,255,0.67);
  font-size: 17px;
}

.coming-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 33px;
}

.privacy-note {
  color: rgba(255,255,255,0.48);
  font-size: 11px;
}

.contact-card {
  padding: 34px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.contact-label {
  color: #9cc2f2;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin: 13px 0 27px;
  font-size: 24px;
  line-height: 1.25;
}

.contact-link {
  display: block;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.contact-link span,
.contact-link strong {
  display: block;
}

.contact-link span {
  margin-bottom: 5px;
  color: rgba(255,255,255,0.43);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-link strong {
  color: white;
  font-size: 14px;
  font-weight: 650;
}

a.contact-link strong {
  transition: color 0.2s ease;
}

a.contact-link:hover strong {
  color: #a9cef9;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 100px;
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

details summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 0;
  color: var(--navy);
  font-weight: 730;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary span {
  font-size: 21px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

details[open] summary span {
  transform: rotate(45deg);
}

details p {
  max-width: 650px;
  padding: 0 35px 24px 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding: 70px 0 28px;
  background: #00133d;
  color: white;
}

.footer-main {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding-bottom: 58px;
}

.footer-brand {
  width: 210px;
}

.footer-brand img {
  width: 100%;
}

.footer-main p {
  margin: 0;
  max-width: 340px;
  color: rgba(255,255,255,0.53);
  font-size: 13px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 22px;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 650;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.38);
  font-size: 10px;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-delay {
  transition-delay: 0.14s;
}

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

/* Responsive */
@media (max-width: 1050px) {
  .hero-layout {
    gap: 35px;
  }

  .preview-float-top {
    right: -5px;
  }

  .preview-float-bottom {
    left: -5px;
  }

  .two-column,
  .video-layout,
  .coming-layout,
  .faq-layout {
    gap: 55px;
  }

  .journey-step {
    padding: 23px;
  }
}

@media (max-width: 900px) {
  .nav-wrap {
    height: 72px;
  }

  .brand {
    width: 185px;
  }

  .brand img {
    height: 42px;
  }

  .menu-button {
    display: flex;
  }

  .site-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 82px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 17px;
    box-shadow: var(--shadow);
    transform: translateY(-15px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav > a:not(.button) {
    padding: 14px;
    border-bottom: 1px solid #edf0f4;
  }

  .site-nav .button {
    margin-top: 8px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-layout,
  .two-column,
  .video-layout,
  .coming-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 15px;
  }

  .platform-preview {
    width: min(100%, 650px);
    margin: 0 auto;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 25px 0;
  }

  .trust-strip div {
    display: none;
  }

  .section {
    padding: 90px 0;
  }

  .problem-grid {
    margin-top: 55px;
  }

  .journey-panel {
    grid-template-columns: 1fr 1fr;
  }

  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main p {
    grid-column: 1 / -1;
    order: 3;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  h1 {
    font-size: clamp(44px, 14vw, 62px);
  }

  .hero {
    padding-top: 58px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .button-large {
    width: 100%;
  }

  .platform-preview {
    padding-bottom: 50px;
  }

  .preview-shell {
    min-height: 540px;
    padding: 12px;
    transform: none;
  }

  .preview-float {
    display: none;
  }

  .search-placeholder {
    max-width: 130px;
    overflow: hidden;
    white-space: nowrap;
  }

  .filter-chip {
    display: none;
  }

  .video-visual {
    height: 165px;
  }

  .mini-cards {
    grid-template-columns: 1fr;
  }

  .mini-cards article:last-child {
    display: none;
  }

  .section {
    padding: 75px 0;
  }

  .section-heading h2,
  .video-copy h2,
  .coming-copy h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .large-copy {
    font-size: 18px;
  }

  .problem-grid,
  .benefit-grid,
  .journey-panel {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: 285px;
    padding: 28px;
  }

  .audience-switch {
    width: 100%;
  }

  .audience-tab {
    flex: 1;
    min-width: 0;
    padding-inline: 9px;
  }

  .journey-step {
    min-height: 260px;
  }

  .showcase-frame {
    min-height: 340px;
  }

  .showcase-caption {
    display: grid;
    gap: 5px;
  }

  .benefit-card {
    min-height: 230px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-main p {
    grid-column: auto;
    order: initial;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-bottom {
    display: grid;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
