@font-face {
  font-family: Inter;
  src: url("fonts/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --navy: #16346a;
  --blue: #1f5fd6;
  --ink: #172333;
  --muted: #526175;
  --line: #dce2e9;
  --paper: #f6f7f9;
  --white: #fff;
  --radius: 12px;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--white);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-padding-top: 24px;
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
  .button,
  .play-film,
  .kudos-preview summary {
    transition: background-color 160ms ease, border-color 160ms ease;
  }
}
body {
  margin: 0;
}
button,
input,
select {
  font: inherit;
}
a {
  color: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible,
video:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1120px, calc(100% - 64px));
  margin-inline: auto;
}
.skip {
  position: absolute;
  left: 20px;
  top: -100px;
  background: white;
  padding: 12px;
  z-index: 10;
}
.skip:focus {
  top: 10px;
}
header {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.nav {
  min-height: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.7px;
  color: var(--navy);
}
.monogram {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  background: var(--navy);
  color: white;
  display: grid;
  place-items: center;
  font-size: 12px;
  letter-spacing: -0.5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
}
.nav-links a {
  text-decoration: none;
}
.nav-links a:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 14px 23px;
  border-radius: 7px;
  background: var(--navy);
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--navy);
  gap: 12px;
}
.button:hover {
  background: #102951;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: var(--navy);
  min-height: 44px;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.play-small {
  font-size: 12px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 23px;
}
.hero {
  padding: 82px 0 40px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 120px -12% 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 15% 45%, #deeff0 0, transparent 48%),
    radial-gradient(ellipse at 85% 60%, #e5ecfa 0, transparent 52%);
  opacity: 0.75;
}
@media (prefers-reduced-motion: no-preference) {
  .hero::before {
    animation: atmosphere-settle 3s ease-out both;
  }
}
@keyframes atmosphere-settle {
  from { opacity: 0.25; transform: translateY(24px); }
  to { opacity: 0.75; transform: translateY(0); }
}
.hero-copy {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 54px;
}
h1 {
  font-size: clamp(46px, 4.2vw, 60px);
  font-weight: 600;
  line-height: 1.045;
  letter-spacing: -2.9px;
  margin: 0;
  color: var(--navy);
  max-width: 650px;
}
h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -1.6px;
  margin: 0;
  color: var(--navy);
}
h3 {
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.3px;
  margin: 0 0 10px;
}
p {
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 20px;
  color: var(--muted);
}
.hero-intro {
  max-width: 430px;
  padding-bottom: 4px;
}
.hero-intro p {
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 26px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.early-note {
  font-size: 12px !important;
  margin: 17px 0 0 !important;
  color: var(--muted);
}
.canvas {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 55px -30px #16346a40;
}
.tiny-mark {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background: var(--navy);
  color: white;
  font-size: 9px;
  display: grid;
  place-items: center;
}

.canvas-caption {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  line-height: 1.5;
}
.operating-frame { --ink: #0e1726; --muted: #5b6678; --line: rgba(14,23,38,0.1); display: grid; grid-template-columns: 155px minmax(0, 1fr); }
.app-rail { background: white; border-right: 1px solid var(--line); padding: 19px 11px; display: flex; flex-direction: column; font-size: 11px; color: var(--muted); }
.rail-brand { display: flex; align-items: center; gap: 7px; font-weight: 700; color: var(--navy); font-size: 12px; }
.rail-company { margin: 24px 0 8px; font-size: 10px; font-weight: 600; color: var(--ink); }
.rail-label { margin: 22px 6px 10px; text-transform: uppercase; font-size: 9px; letter-spacing: 0.1em; }
.rail-item { padding: 10px 7px; display: flex; align-items: center; gap: 8px; line-height: 1.4; }
.rail-item.selected { color: var(--navy); background: #edf2fc; border-radius: 5px; font-weight: 600; box-shadow: inset 2px 0 var(--blue); }
.rail-bottom { margin-top: auto; padding: 40px 6px 0; font-size: 10px; line-height: 1.6; }
.app-stage { min-width: 0; background: #f6f7f9; }
.app-topbar { display: flex; justify-content: space-between; gap: 14px; padding: 17px 22px; border-bottom: 1px solid var(--line); background: white; font-size: 11px; color: var(--muted); }
.app-topbar span:first-child { color: var(--ink); font-weight: 600; }
.dashboard-content { padding: 26px 20px 22px; position: relative; isolation: isolate; overflow: clip; }
/* Classic palette + Calm wash from the app's globals.css. Static resting view. */
.dashboard-content::before {
  content: "";
  position: absolute;
  inset: -25%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 42% 34% at 20% 24%, rgba(31,95,214,0.34), transparent 70%),
    radial-gradient(ellipse 48% 40% at 82% 30%, rgba(31,95,214,0.26), transparent 72%),
    radial-gradient(ellipse 52% 44% at 62% 84%, rgba(22,52,106,0.24), transparent 74%);
  filter: blur(34px);
  transform: translate3d(-3%, -2%, 0) scale(1.06);
}
.dashboard-heading { display: flex; justify-content: space-between; align-items: center; gap: 18px; margin-bottom: 22px; }
.dashboard-overline { font-size: 10px; color: var(--muted); }
.dashboard-heading h2 { font-size: 22px; letter-spacing: -0.6px; margin-top: 7px; line-height: 1.2; }
.dashboard-grid { display: grid; grid-template-columns: minmax(0, 1.85fr) minmax(235px, 1fr); gap: 14px; }
.signal-tile { min-width: 0; background: white; border: 1px solid #e4e8ee; border-radius: 10px; overflow: hidden; }
.sales-context { grid-row: span 2; }
.signal-heading { padding: 16px 17px 13px; border-bottom: 1px solid #edf0f4; }
.signal-heading h3 { font-size: 13px; letter-spacing: -0.15px; margin: 0 0 7px; color: var(--ink); }
.signal-heading > span { display: block; font-size: 10px; line-height: 1.5; color: var(--muted); }
.context-key { display: flex; flex-wrap: wrap; gap: 10px 14px; padding: 17px 17px 0; font-size: 10px; color: var(--muted); }
.context-key > span { display: flex; align-items: center; gap: 5px; }
.context-key i { width: 9px; height: 9px; display: inline-block; border-radius: 1px; }
.key-sales { background: #5073c5; }
.context-key .key-rain { height: 2px; width: 12px; background: #147d78; }
.key-event { border-left: 2px dotted #68758a; }
.context-chart { margin: 16px 15px 0; }
.chart-units { display: flex; justify-content: space-between; font-size: 10px; color: var(--muted); margin-bottom: 14px; }
.chart-layout { display: grid; grid-template-columns: 30px minmax(0,1fr) 20px; gap: 5px; }
.chart-scale { height: 190px; display: flex; flex-direction: column; justify-content: space-between; text-align: right; color: var(--muted); font-size: 10px; line-height: 1; }
.rain-scale { color: #147d78; text-align: left; }
.chart-plot { position: relative; height: 190px; min-width: 0; }
.plot-grid { position: absolute; inset: 0; border-bottom: 1px solid var(--line); background: repeating-linear-gradient(to top, transparent 0, transparent calc(33.333333% - 1px), #edf0f4 calc(33.333333% - 1px), #edf0f4 33.333333%); }
.sales-columns { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); align-items: end; }
.sales-columns > span { height: var(--sales); margin-inline: 17%; background: #5073c5; border-radius: 2px 2px 0 0; }
.sales-columns > span:last-child { background: var(--navy); }
.rain-line { width: 100%; height: 100%; overflow: visible; position: absolute; inset: 0; }
.rain-line polyline { fill: none; stroke: #147d78; stroke-width: 2; vector-effect: non-scaling-stroke; }
.rain-line circle { fill: white; stroke: #147d78; stroke-width: 1.5; vector-effect: non-scaling-stroke; }
.event-marker { position: absolute; left: 75%; width: 0; top: 0; bottom: 64.666667%; border-left: 1.5px dotted #68758a; }
.event-marker > span { position: absolute; top: -12px; left: -20px; width: 40px; height: 24px; border-radius: 12px; background: #f6f7f9; border: 1px solid #d2d8e1; color: #526175; font-size: 10px; font-weight: 600; letter-spacing: 0.04em; display: grid; place-items: center; z-index: 1; }
.chart-weeks { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); margin: 10px 25px 0 35px; text-align: center; font-size: 10px; color: var(--muted); }
.chart-weeks b { font-weight: inherit; }
.chart-period { text-align: center; font-size: 9px; color: var(--muted); margin-top: 9px; }
.event-note { display: flex; gap: 9px; align-items: flex-start; margin: 18px 17px 0; padding: 12px 0 0; border-top: 1px solid var(--line); }
.event-number { display: grid; place-items: center; width: 33px; height: 21px; flex: 0 0 33px; border-radius: 5px; background: #eef1f4; color: var(--muted); font-size: 9px; font-weight: 600; }
.event-note strong { display: block; font-size: 11px; line-height: 1.5; font-weight: 600; color: var(--ink); }
.event-note div > span { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; line-height: 1.5; }
.chart-caution { color: var(--muted); font-size: 10px; line-height: 1.6; margin: 13px 17px 16px; }
.membership-table { border-collapse: collapse; width: calc(100% - 34px); margin: 12px 17px 0; font-size: 12px; }
.membership-table th, .membership-table td { padding: 10px 0; text-align: right; border-bottom: 1px solid #edf0f4; }
.membership-table th:first-child { text-align: left; }
.membership-table thead th { color: var(--muted); font-size: 10px; font-weight: 500; }
.membership-table tbody th { font-weight: 500; }
.membership-table td { font-size: 20px; color: var(--navy); letter-spacing: -0.5px; font-variant-numeric: tabular-nums; }
.signal-note { font-size: 10px; line-height: 1.5; margin: 12px 17px 16px; }
.feedback-quote { color: var(--navy); font-size: 16px; line-height: 1.5; letter-spacing: -0.2px; margin: 17px 17px 12px; }
.feedback-footer { color: var(--muted); font-size: 10px; line-height: 1.5; margin: 0 17px 18px; }
.kudos-preview { margin: 0 17px 18px; }
.kudos-preview summary { display: flex; align-items: center; gap: 7px; width: fit-content; min-height: 36px; padding: 8px 11px; border: 1px solid var(--line); border-radius: 6px; font-size: 11px; font-weight: 600; color: var(--navy); background: #fff; cursor: pointer; list-style: none; }
.kudos-preview summary::-webkit-details-marker { display: none; }
.kudos-preview summary:hover { background: #f6f7f9; }
.kudos-preview[open] summary { background: #eef1f4; }
.kudos-draft { padding-top: 14px; }
.kudos-draft strong { font-size: 12px; font-weight: 600; }
.kudos-draft p { font-size: 12px; line-height: 1.6; margin: 8px 0; }
.kudos-draft > span { color: var(--muted); font-size: 11px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
@media (max-width: 1100px) {
  .operating-frame { grid-template-columns: 125px minmax(0,1fr); }
  .rail-brand { font-size: 10px; }
  .dashboard-content { padding: 20px 14px; }
  .dashboard-grid { grid-template-columns: minmax(0,1.6fr) minmax(210px,1fr); gap: 12px; }
}
@media (max-width: 900px) {
  .operating-frame { grid-template-columns: minmax(0,1fr); }
  .app-rail { display: none; }
}
@media (max-width: 620px) {
  .dashboard-grid { grid-template-columns: minmax(0,1fr); }
  .dashboard-content { padding: 22px 12px 14px; }
  .dashboard-heading { display: block; margin-bottom: 18px; }
  .dashboard-heading h2 { font-size: 22px; }
  .app-topbar { padding: 16px 13px; font-size: 10px; }
  .app-topbar span:last-child { display: none; }
  .sales-context { grid-row: auto; }
  .signal-heading { padding: 16px 13px 12px; }
  .signal-heading h3 { font-size: 14px; }
  .signal-heading > span { font-size: 11px; }
  .context-key { padding-inline: 12px; font-size: 10px; gap: 10px; }
  .context-chart { margin-inline: 8px; }
  .chart-layout { grid-template-columns: 26px minmax(0,1fr) 14px; gap: 3px; }
  .chart-weeks { margin-inline: 29px 17px; }
  .chart-plot, .chart-scale { height: 175px; }
  .event-note { margin-inline: 13px; }
  .event-note strong { font-size: 12px; }
  .event-note div > span, .chart-caution, .signal-note, .feedback-footer { font-size: 11px; }
  .chart-caution { margin-inline: 13px; }
  .membership-table { font-size: 13px; }
  .membership-table thead th { font-size: 11px; }
  .feedback-quote { font-size: 18px; }
  .desktop-break { display: none; }
}
@media (max-width: 380px) {
  .chart-weeks b { display: block; }
  .chart-weeks { line-height: 1.4; }
}
.product-section {
  padding: 24px 0 86px;
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.product-list {
  display: grid;
  gap: 26px;
}
.product-item {
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}
.product-item:last-child {
  border: 0;
  padding-bottom: 0;
}
.product-item p {
  font-size: 16px;
  margin: 0;
}
.product-heading p {
  margin-top: 24px;
  max-width: 385px;
}
.vision-section {
  background: var(--paper);
  padding: 76px 0;
}
.vision-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 35px;
}
.vision-heading p {
  margin: 0;
  font-size: 17px;
}
.vision-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.vision-label:before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}
.film {
  max-width: 940px;
  margin: auto;
}
.player {
  position: relative;
  aspect-ratio: 16/9;
  background: #eaf0f9;
  border: 1px solid #d4deee;
  border-radius: 12px;
  overflow: hidden;
}
.poster {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.player video {
  display: block;
  width: 100%;
  height: 100%;
  background: #101f38;
}
.play-film {
  position: absolute;
  left: 50%;
  bottom: 13%;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 28px);
  white-space: nowrap;
  border: 0;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--navy);
  color: white;
  padding: 15px 23px;
  min-height: 48px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 5px 15px #16346a18;
}
.play-film:hover {
  background: #102951;
}
.film-under {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 25px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.film-under p {
  font-size: 12px;
  margin: 0;
  max-width: 550px;
}
.film-under a {
  white-space: nowrap;
  text-underline-offset: 3px;
}
.transcript {
  margin-top: 20px;
  border-top: 1px solid var(--line);
  padding-top: 13px;
  color: var(--muted);
  font-size: 13px;
}
.transcript summary {
  min-height: 36px;
  cursor: pointer;
  font-size: 13px;
}
.transcript p {
  font-size: 15px;
  max-width: 700px;
  margin: 15px 0;
}
.film-error {
  padding: 12px;
  font-size: 14px;
  color: #8a2727;
  background: #fff4f4;
  margin: 12px 0;
}
.faq-section {
  padding: 90px 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 95px;
}
.faq-list details {
  border-top: 1px solid var(--line);
  padding: 19px 0;
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  min-height: 32px;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary:after {
  content: "+";
  font-size: 23px;
  font-weight: 400;
  color: var(--muted);
}
.faq-list details[open] summary:after {
  content: "−";
}
.faq-list p {
  font-size: 15px;
  margin: 16px 25px 0 0;
}
.access-section {
  padding: 72px 0;
  background: var(--navy);
  color: white;
}
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: start;
}
.access-section h2 {
  color: white;
  font-size: 45px;
}
.access-section .eyebrow {
  color: #d1dcf0;
}
.access-section p {
  color: #e0e7f3;
  margin-top: 24px;
  max-width: 420px;
  font-size: 17px;
}
.form {
  display: grid;
  gap: 15px;
}
.field label {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  color: white;
}
.field input,
.field select {
  width: 100%;
  height: 46px;
  padding: 10px 12px;
  border: 1px solid #c9d6eb;
  border-radius: 6px;
  background: white;
  color: var(--ink);
  font-size: 16px;
  min-width: 0;
}

.form-note {
  font-size: 12px !important;
  margin: 0 !important;
  color: #d7e2f5 !important;
  line-height: 1.6;
}
.hp {
  position: absolute;
  left: -10000px;
}
.footer {
  padding: 27px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer a {
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 1000px) {
  .hero-copy {
    gap: 35px;
  }
  h1 {
    font-size: 57px;
    letter-spacing: -2.8px;
  }
  .product-grid,
  .access-grid {
    gap: 60px;
  }
  .hero-actions {
    gap: 15px;
  }
  .vision-heading {
    gap: 40px;
  }
  .faq-grid {
    gap: 50px;
  }
  .nav-links {
    gap: 20px;
  }
}
@media (max-width: 720px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .nav {
    min-height: 72px;
    gap: 12px;
  }
  .brand {
    font-size: 19px;
  }
  .nav-links > a:not(.button) {
    display: none;
  }
  .nav-links .button {
    padding: 10px 14px;
    font-size: 12px;
    min-height: 42px;
  }
  .hero {
    padding: 49px 0 40px;
  }
  .hero-copy {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 34px;
  }
  .eyebrow {
    font-size: 11px;
    margin-bottom: 18px;
  }
  h1 {
    font-size: clamp(42px, 9.3vw, 62px);
    letter-spacing: -2.3px;
    max-width: 540px;
  }
  .hero-intro {
    max-width: 540px;
  }
  .hero-intro p {
    font-size: 17px;
    margin-bottom: 21px;
  }
  .hero-actions {
    gap: 21px;
  }
  .canvas-caption {
    display: block;
    font-size: 11px;
  }
  .canvas-caption span {
    display: block;
    margin-bottom: 3px;
  }

  .product-section {
    padding: 20px 0 55px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 35px;
  }
  .product-heading p {
    max-width: 100%;
    font-size: 16px;
    margin: 20px 0 0;
  }
  h2 {
    font-size: 34px;
    letter-spacing: -1.1px;
  }
  .product-list {
    gap: 20px;
  }
  .product-item {
    padding-bottom: 19px;
  }
  .vision-section {
    padding: 49px 0;
  }
  .vision-heading {
    grid-template-columns: 1fr;
    gap: 21px;
    margin-bottom: 25px;
  }
  .vision-heading p {
    font-size: 16px;
  }
  .vision-label {
    font-size: 11px;
    margin-bottom: 17px;
  }
  .play-film {
    bottom: 9%;
    padding: 11px 17px;
    min-height: 42px;
    font-size: 12px;
  }
  .film-under {
    flex-direction: column;
    gap: 12px;
  }
  .film-under p {
    font-size: 12px;
  }
  .film-under a {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
  }
  .faq-section {
    padding: 55px 0;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .access-section {
    padding: 49px 0;
  }
  .access-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .access-section h2 {
    font-size: 37px;
  }
  .access-section p {
    font-size: 16px;
    margin-top: 18px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 13px;
  }
}
@media (max-width: 360px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .brand {
    font-size: 17px;
    gap: 8px;
  }
  .monogram {
    width: 29px;
    height: 29px;
  }
  .nav-links .button {
    padding: 9px 11px;
  }
  h1 {
    font-size: 36px;
    letter-spacing: -1.7px;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 9px;
  }
  .hero-actions .text-link {
    justify-content: center;
  }
}

.form-col {
  min-width: 0;
}
.owner-question {
  padding: 27px 0 0;
  max-width: 790px;
}
.question-label {
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.owner-question p {
  margin: 10px 0 8px;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.45;
  letter-spacing: -0.5px;
}
.question-note {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}
@media (max-width: 720px) {
  h1 { font-size: clamp(30px, 8.65vw, 52px); letter-spacing: -1.6px; }
  .owner-question { padding-top: 20px; }
  .owner-question p { font-size: 21px; }
}
.form .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 14px 23px;
  border-radius: 7px;
  background: white;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid white;
  gap: 12px;
  margin-top: 5px;
}
.form .btn:disabled {
  opacity: 0.7;
}
.form-done,
.form-fallback {
  display: none;
  background: #fff;
  color: var(--navy);
  padding: 24px;
  border-radius: 8px;
  line-height: 1.6;
}
.form-done.show,
.form-fallback.show {
  display: block;
}
.form-done b,
.form-fallback b {
  font-size: 21px;
}
.access-section .form-done p,
.access-section .form-fallback p {
  color: var(--muted);
  font-size: 16px;
  margin: 12px 0 0;
}
.form-fallback a {
  overflow-wrap: anywhere;
  text-underline-offset: 3px;
}

.access-section :focus-visible {
  outline-color: #fff;
  outline-offset: 4px;
}
.access-section .form-fallback a:focus-visible {
  outline-color: var(--blue);
}

@media (min-width: 721px) and (max-width: 900px) {
  .hero {
    padding-top: 60px;
  }
  .hero-copy {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 650px;
  }
  .hero-intro {
    max-width: 600px;
  }
  .hero-intro p {
    max-width: 590px;
  }
  .hero-actions {
    gap: 24px;
  }
  h1 {
    font-size: 58px;
  }
  .product-grid,
  .vision-heading,
  .faq-grid,
  .access-grid {
    gap: 40px;
  }
}
