:root {
  color-scheme: light;
  --ink: #171b23;
  --muted: #5a6472;
  --ground: #f3f4f6;
  --paper: #fff;
  --line: #dce2e9;
  --blue: #0a66e0;
  --blue-dark: #084da8;
  --night: #111d31;
  --sky: #e8f2ff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
}
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid #e8785a;
  outline-offset: 4px;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  letter-spacing: -0.06em;
}
h2 {
  font-size: clamp(2.8rem, 5.4vw, 5.8rem);
  line-height: 1.02;
}
p {
  line-height: 1.6;
}
.section-shell {
  width: min(100% - 3rem, 1480px);
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  z-index: 50;
  top: -6rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  background: var(--paper);
  border-radius: 0.6rem;
}
.skip-link:focus {
  top: 1rem;
}
.site-header {
  min-height: 84px;
  padding: 1rem max(1.5rem, calc((100vw - 1480px) / 2));
  display: flex;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 244, 246, 0.92);
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.12rem;
  white-space: nowrap;
}
.mark {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.78rem;
  background: var(--blue);
  color: white;
  font-size: 0.9rem;
  letter-spacing: -0.1em;
}
.mark span {
  color: #a8d3ff;
}
.site-header nav {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.site-header nav a,
.site-footer nav a {
  font-size: 0.88rem;
  text-decoration: none;
  font-weight: 600;
}
.site-header nav a:hover,
.site-footer nav a:hover {
  text-decoration: underline;
  text-underline-offset: 0.3em;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--ink);
  color: white;
  padding: 0.85rem 1.15rem;
  border-radius: 99px;
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.header-cta:hover {
  background: var(--blue-dark);
}
.intro {
  padding-block: clamp(3rem, 6vw, 6.5rem) 6rem;
}
.intro-copy {
  max-width: 920px;
}
.eyebrow {
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.signal-dot {
  display: inline-block;
  background: var(--blue);
  height: 0.6rem;
  width: 0.6rem;
  border-radius: 50%;
  margin-right: 0.45rem;
}
.intro h1 {
  font-size: clamp(5rem, 10.8vw, 11rem);
  line-height: 0.88;
  margin: 0.8rem 0 2rem;
  font-weight: 850;
}
.intro h1 em {
  color: var(--blue);
  font-style: normal;
}
.intro-lead {
  max-width: 700px;
  font-size: clamp(1.25rem, 2.1vw, 1.8rem);
  line-height: 1.42;
  letter-spacing: -0.025em;
}
.intro-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0 1.2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  padding: 1rem 1.5rem;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 750;
  cursor: pointer;
}
.button-primary {
  background: var(--blue);
  color: white;
}
.button-primary:hover {
  background: var(--blue-dark);
}
.text-link {
  font-weight: 750;
  text-underline-offset: 0.35em;
}
.status-note {
  font-size: 0.85rem;
  color: var(--muted);
}
.hero-art {
  overflow: hidden;
  border-radius: 2rem;
  margin-top: 4rem;
  box-shadow: 0 20px 65px rgba(22, 42, 70, 0.12);
  background: #d9e1ec;
}
.hero-art img {
  width: 100%;
  height: auto;
}
.story {
  padding-block: 5rem 8rem;
}
.section-heading {
  max-width: 900px;
  margin-bottom: 3rem;
}
.section-heading h2 {
  margin: 0.5rem 0 1.3rem;
}
.section-heading > p:last-child {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 690px;
}
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.story-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
}
.step {
  color: var(--blue-dark);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 800;
}
.story-icon {
  margin: auto 0 1.7rem;
  font-size: 3.4rem;
  color: var(--blue);
  line-height: 1;
}
.story-card h3 {
  font-size: 2rem;
  margin: 0 0 0.6rem;
}
.story-card p {
  color: var(--muted);
  margin: 0;
}
.tour {
  background: var(--night);
  color: white;
  padding-block: 6rem;
}
.tour .eyebrow {
  color: #82b9ff;
}
.tour-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 3rem;
}
.tour-heading h2 {
  margin: 0.5rem 0 1.8rem;
}
.tour-heading > p {
  color: #c5d0e0;
  max-width: 330px;
}
.tour-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  border-bottom: 1px solid #435371;
  padding-bottom: 1rem;
  scrollbar-color: #607797 transparent;
}
.tour-tabs button {
  color: #b2c2d8;
  background: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1.15rem;
  white-space: nowrap;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
}
.tour-tabs button:hover {
  color: white;
  border-color: #6b7c98;
}
.tour-tabs button[aria-selected="true"] {
  background: #dbeaff;
  color: #103568;
}
.tour-stage {
  min-height: 660px;
}
.tour-panel {
  display: grid;
  grid-template-columns: 1fr minmax(270px, 390px);
  align-items: center;
  gap: 5vw;
  padding: 3rem min(6vw, 5rem);
  background: radial-gradient(circle at 78% 30%, #24476d 0%, #162a46 38%, #101c30 75%);
  border: 1px solid #40516b;
  border-radius: 0 0 1.5rem 1.5rem;
}
.tour-panel[hidden] {
  display: none;
}
.tour-copy {
  max-width: 640px;
}
.tour-copy .step {
  color: #8cc4ff;
}
.tour-copy h3 {
  font-size: clamp(3.2rem, 5vw, 6rem);
  line-height: 1.01;
  margin: 1.3rem 0 1.5rem;
}
.tour-copy p {
  font-size: 1.2rem;
  color: #e2ebf5;
}
.tour-detail {
  display: inline-block;
  margin-top: 1.2rem;
  border-top: 1px solid #5a7491;
  padding-top: 1.2rem;
  color: #a9d3ff;
  font-weight: 650;
}
.phone {
  width: min(100%, 360px);
  margin-inline: auto;
  padding: 0.65rem;
  background: #080b11;
  border: 2px solid #647289;
  border-radius: 2.5rem;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.35);
}
.phone img {
  width: 100%;
  height: auto;
  border-radius: 1.9rem;
}
.tour-footnote {
  color: #aebfd2;
  font-size: 0.82rem;
  margin: 1.4rem 0 0;
}
.tally-section {
  padding-block: 8rem;
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) minmax(290px, 0.8fr);
  gap: 2rem;
  align-items: start;
}
.tally-emblem {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 1.4rem;
  background: var(--sky);
  color: var(--blue);
  font-size: 2rem;
}
.tally-section h2 {
  font-size: clamp(2.8rem, 4.6vw, 5rem);
  margin: 0.5rem 0 1.2rem;
}
.tally-section p {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 720px;
}
.tally-example {
  background: white;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 18px 50px rgba(37, 67, 105, 0.07);
}
.tally-example span,
.tally-example small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}
.tally-example strong {
  display: block;
  background: var(--blue);
  color: white;
  border-radius: 1rem 1rem 0.25rem 1rem;
  padding: 1.1rem;
  margin: 1.3rem 0 2rem;
  font-size: 1.12rem;
}
.tally-example p {
  background: var(--ground);
  border-radius: 1rem 1rem 1rem 0.25rem;
  padding: 1.1rem;
  color: var(--ink);
  font-size: 1rem;
}
.signup {
  padding-block: 7rem;
  background: #dfeaf8;
}
.signup-grid {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 510px);
  gap: 6vw;
}
.signup h2 {
  margin: 0.5rem 0 1.5rem;
}
.signup-grid > div > p:not(.eyebrow) {
  font-size: 1.15rem;
  max-width: 610px;
}
.signup-privacy {
  color: var(--blue-dark);
  font-weight: 700;
}
.signup-form {
  align-self: start;
  display: grid;
  gap: 0.85rem;
  background: white;
  border: 1px solid #c4d3e5;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(46, 75, 120, 0.08);
}
.signup-form > label:not(.consent) {
  font-weight: 750;
}
.signup-form input[type="email"] {
  width: 100%;
  padding: 1rem;
  border: 1px solid #8295ae;
  border-radius: 0.7rem;
  background: white;
  color: var(--ink);
}
.signup-form input[type="email"]:invalid:not(:placeholder-shown) {
  border-color: #b43e41;
}
.consent {
  display: flex;
  gap: 0.75rem;
  align-items: start;
  margin: 0.5rem 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #39475b;
}
.consent input {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.13rem;
  accent-color: var(--blue);
  flex: none;
}
.signup-form .button {
  width: 100%;
}
.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}
.form-note a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  padding-block: 3.5rem;
}
.site-footer p {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 1rem 0 0;
}
.site-footer nav {
  display: flex;
  gap: 1.5rem;
}
.site-footer small {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  padding-top: 1.3rem;
  color: var(--muted);
}
.simple-page {
  min-height: calc(100vh - 170px);
  padding-block: 6rem;
}
.simple-page article {
  max-width: 780px;
}
.simple-page h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1;
  margin: 0.5rem 0 2rem;
}
.simple-page h2 {
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  margin: 2.3rem 0 0.5rem;
}
.simple-page p,
.simple-page li {
  font-size: 1.08rem;
  color: #3f4c5c;
}
.simple-page a {
  color: var(--blue-dark);
  text-underline-offset: 0.2em;
}
.simple-page .button {
  color: white;
}
.simple-page .button:hover {
  color: white;
}
@media (min-width: 1100px) {
  .intro {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 3.5vw;
    padding-block: 4rem 6rem;
  }
  .intro h1 {
    font-size: clamp(6rem, 8.4vw, 9.25rem);
  }
  .intro-lead {
    font-size: clamp(1.22rem, 1.65vw, 1.65rem);
  }
  .hero-art {
    height: min(68vw, 700px);
    margin-top: 0;
  }
  .hero-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
  }
}
@media (max-width: 950px) {
  .site-header nav {
    display: none;
  }
  .header-cta {
    margin-left: auto;
  }
  .tour-panel {
    grid-template-columns: 1fr minmax(250px, 340px);
    padding: 2.5rem;
  }
  .tally-section {
    grid-template-columns: 70px 1fr;
  }
  .tally-example {
    grid-column: 2;
  }
  .signup-grid {
    gap: 2rem;
  }
}
@media (max-width: 700px) {
  .section-shell {
    width: min(100% - 2rem, 1480px);
  }
  .site-header {
    padding: 1rem;
  }
  .header-cta {
    font-size: 0;
    gap: 0;
  }
  .header-cta span {
    font-size: 1.2rem;
  }
  .intro {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }
  .intro h1 {
    font-size: clamp(4.25rem, 16vw, 7rem);
  }
  .intro-lead {
    font-size: 1.25rem;
  }
  .hero-art {
    margin-top: 2.7rem;
    border-radius: 1.2rem;
  }
  .hero-art img {
    height: 360px;
    object-fit: cover;
    object-position: right center;
  }
  .story {
    padding-block: 3rem 5rem;
  }
  .story-grid {
    grid-template-columns: 1fr;
  }
  .story-card {
    min-height: 240px;
  }
  .story-icon {
    margin: 2rem 0 1rem;
  }
  .tour {
    padding-block: 4rem;
  }
  .tour-heading {
    display: block;
  }
  .tour-heading h2 {
    margin-bottom: 1rem;
  }
  .tour-heading > p {
    margin-bottom: 2rem;
  }
  .tour-stage {
    min-height: 0;
  }
  .tour-panel {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 2rem 1.3rem;
  }
  .tour-copy h3 {
    font-size: 3.3rem;
  }
  .phone {
    width: min(100%, 310px);
    margin-top: 2rem;
  }
  .tally-section {
    grid-template-columns: 1fr;
    padding-block: 5rem;
  }
  .tally-example {
    grid-column: auto;
  }
  .signup {
    padding-block: 5rem;
  }
  .signup-grid {
    grid-template-columns: 1fr;
  }
  .signup-form {
    padding: 1.4rem;
  }
  .site-footer {
    grid-template-columns: 1fr;
  }
  .site-footer nav {
    flex-wrap: wrap;
  }
  .simple-page {
    padding-block: 4rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
