@font-face {
  font-family: "Atkinson Next";
  src: url("../fonts/AtkinsonHyperlegibleNext-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --navy-950: #030c1b;
  --navy-900: #06142a;
  --navy-800: #0b2145;
  --navy-700: #123d73;
  --ink: #0c2445;
  --teal: #00c2c2;
  --teal-dark: #007d82;
  --gold: #f4c86b;
  --cloud: #f5faff;
  --sky: #cbe4fd;
  --aqua: #d8f1e9;
  --peach: #fde5cf;
  --yellow: #fdeabd;
  --lilac: #e3d7f5;
  --sage: #ddebd3;
  --red: #c62828;
  --white: #ffffff;
  --shadow-deep: 0 36px 80px rgb(1 9 25 / 42%);
  --shadow-card: 0 24px 60px rgb(3 17 40 / 24%), 0 4px 12px rgb(3 17 40 / 12%);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --ease-out: cubic-bezier(.2, .78, .26, 1);
  --ease-soft: cubic-bezier(.35, .08, .16, 1);
  --content: 1240px;
}

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

html {
  font-size: 18px;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--navy-900);
  color: var(--white);
  font-family: "Atkinson Next", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body,
button,
input,
select,
textarea {
  font-family: "Atkinson Next", Arial, sans-serif;
}

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  user-select: none;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.audience-mark svg,
.form-step svg,
.form-choice svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-mark svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: none;
}

a {
  color: inherit;
}

button,
input,
select,
textarea,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea {
  font-size: 1rem;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  font-weight: 750;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-160%);
  transition: transform 220ms var(--ease-out);
  visibility: hidden;
}

.skip-link:focus-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 22px;
  left: 50%;
  display: flex;
  width: min(calc(100% - 40px), var(--content));
  min-height: 106px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 26px;
  background: rgb(4 16 36 / 86%);
  box-shadow: 0 14px 42px rgb(0 4 18 / 34%);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: flex;
  min-height: 80px;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}

.brand img {
  width: 170px;
  height: 80px;
  box-sizing: border-box;
  padding: 10px 13px;
  border: 3px solid var(--teal);
  border-radius: 24px;
  background: transparent;
  object-fit: contain;
}

.brand span {
  max-width: 238px;
  color: #e7f7ff;
  font-size: 1.16rem;
  font-weight: 730;
  line-height: 1.14;
}

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

.site-header nav a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 15px;
  color: #eaf7ff;
  font-weight: 650;
  text-decoration: none;
  transition: opacity 220ms ease, transform 220ms var(--ease-out);
}

.site-header nav a:hover {
  opacity: .74;
  transform: translateY(-2px);
}

.site-header nav .nav-cta {
  position: relative;
  overflow: hidden;
  margin-left: 8px;
  background: var(--gold);
  box-shadow: inset 0 -4px 0 rgb(110 74 0 / 18%), 0 8px 24px rgb(244 200 107 / 20%);
  color: #17243b;
  isolation: isolate;
}

.hero {
  position: relative;
  display: grid;
  min-height: 940px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .78fr);
  align-items: center;
  overflow: hidden;
  padding: 142px max(24px, calc((100vw - var(--content)) / 2)) 88px;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgb(3 12 27 / 98%) 0%, rgb(5 18 40 / 82%) 36%, rgb(5 18 40 / 8%) 70%),
    linear-gradient(0deg, var(--navy-900) 0%, transparent 18%),
    image-set(url("../images/hero-cinematic.webp") type("image/webp"));
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(0deg, var(--navy-900), transparent);
  content: "";
  pointer-events: none;
}

.hero-light {
  position: absolute;
  z-index: -1;
  top: -28%;
  left: 29%;
  width: 44vw;
  height: 80vh;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgb(244 200 107 / 25%), transparent 67%);
  opacity: .5;
  pointer-events: none;
  transform: rotate(-20deg) translate3d(-8%, -5%, 0);
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 680px;
  padding: 54px 0 80px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #80f0ef;
  font-size: 1rem;
  font-weight: 760;
  letter-spacing: .095em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--teal-dark);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3.5rem, 6.15vw, 6.2rem);
  font-weight: 760;
  letter-spacing: -.055em;
  line-height: .92;
}

h1 span {
  color: #b9f4f1;
}

.hero-lead {
  max-width: 610px;
  margin: 34px 0 0;
  color: #d9e9f8;
  font-size: clamp(1.12rem, 1.65vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
  padding: 14px 24px;
  border: 0;
  border-radius: 17px;
  cursor: pointer;
  font-weight: 760;
  line-height: 1.15;
  text-decoration: none;
  transform: translate3d(0, 0, 0);
  transition: transform 220ms var(--ease-out), opacity 220ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgb(255 255 255 / 42%) 46%, transparent 70%);
  content: "";
  pointer-events: none;
  transform: translate3d(-120%, 0, 0);
  transition: transform 650ms var(--ease-out);
}

.button:hover {
  transform: translate3d(0, -3px, 0);
}

.button:hover::before {
  transform: translate3d(120%, 0, 0);
}

.button:active {
  transform: translate3d(0, 3px, 0);
}

.button-primary {
  background: linear-gradient(180deg, #ffe39d, var(--gold));
  box-shadow: inset 0 -5px 0 rgb(102 62 0 / 19%), 0 15px 34px rgb(244 200 107 / 22%);
  color: #14223b;
}

.button-tester {
  min-width: min(100%, 270px);
  box-shadow: inset 0 -5px 0 rgb(102 62 0 / 19%), 0 15px 34px rgb(244 200 107 / 30%);
}

.button-tester::after,
.form-choice-tester::after,
.pact-tester-callout::after,
.site-header .nav-cta.tester-attention::after {
  position: absolute;
  z-index: 2;
  inset: 4px;
  border: 3px solid #fff0a8;
  border-radius: inherit;
  content: "";
  pointer-events: none;
  transform: scale3d(.985, .94, 1);
  animation: tester-border-pulse 2400ms var(--ease-out) infinite;
}

.button-secondary {
  border: 1px solid rgb(182 247 247 / 54%);
  background: rgb(4 26 53 / 80%);
  box-shadow: inset 0 -4px 0 rgb(0 0 0 / 18%);
  color: var(--white);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 28px 0 0;
  padding: 0;
  color: #c8dcec;
  font-size: 1rem;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
}

.hero-points li::before {
  position: absolute;
  top: .62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 16px var(--teal);
  content: "";
}

.hero-scene {
  position: relative;
  z-index: 4;
  align-self: stretch;
  min-height: 770px;
  perspective: 1300px;
}

.hero-mascot {
  position: absolute;
  z-index: 8;
  top: 3%;
  left: -13%;
  width: clamp(220px, 19vw, 285px);
  pointer-events: none;
  filter: drop-shadow(0 22px 28px rgb(0 5 18 / 46%));
  transform-origin: 54% 60%;
}

.hero-mascot img { width: 100%; height: auto; }

.phone-wrap {
  position: absolute;
  z-index: 4;
  top: 0;
  right: clamp(0px, 2.5vw, 42px);
  bottom: auto;
  display: block;
  width: clamp(315px, 25vw, 365px);
  filter:
    drop-shadow(0 0 1.5px rgb(218 251 255 / 96%))
    drop-shadow(0 0 14px rgb(0 194 194 / 38%))
    drop-shadow(0 36px 48px rgb(0 5 18 / 58%));
  transform-origin: 52% 82%;
}

.phone-wrap img {
  width: 100%;
  height: auto;
}

.stage-glow {
  position: absolute;
  z-index: 2;
  right: -6%;
  bottom: 10px;
  width: 110%;
  height: 20%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgb(0 194 194 / 38%), transparent 67%);
  opacity: .72;
  transform: scale3d(1, .45, 1);
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgb(104 238 235 / 20%);
  border-radius: 50%;
  pointer-events: none;
  transform: rotate(-16deg);
}

.orbit-one {
  top: 11%;
  right: -19%;
  width: 120%;
  height: 76%;
}

.orbit-two {
  top: 18%;
  right: -8%;
  width: 92%;
  height: 60%;
  border-color: rgb(244 200 107 / 20%);
  transform: rotate(14deg);
}

.floating-tile {
  --tile-angle: 0deg;
  --tile-depth: 0px;
  position: absolute;
  z-index: 6;
  display: grid;
  width: clamp(92px, 8vw, 126px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 35%);
  border-radius: 30%;
  box-shadow: 0 24px 38px rgb(0 7 25 / 38%), inset 0 2px 2px rgb(255 255 255 / 70%), inset 0 -7px 12px rgb(3 39 75 / 12%);
  backface-visibility: hidden;
  transform: translate3d(0, 0, var(--tile-depth)) rotateZ(var(--tile-angle)) scale3d(1, 1, 1);
  transform-style: preserve-3d;
}

.floating-tile img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  transform: translateZ(28px);
  filter: drop-shadow(0 9px 10px rgb(4 35 65 / 18%));
}

.tile-message img {
  width: 92%;
  height: 92%;
}

.tile-call {
  --tile-angle: -10deg;
  --tile-depth: 30px;
  top: 19%;
  left: -4%;
  border-color: rgb(219 255 229 / 72%);
  background: linear-gradient(145deg, #edffe9, #9edcaf);
}

.tile-message {
  --tile-angle: 9deg;
  --tile-depth: 60px;
  top: 10%;
  right: -6%;
  background: linear-gradient(145deg, #e7faf5, var(--aqua));
}

.tile-photo {
  --tile-angle: 7deg;
  --tile-depth: 45px;
  right: -10%;
  bottom: 23%;
  background: linear-gradient(145deg, #e8f4ff, var(--sky));
}

.section-shell {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.light-section {
  position: relative;
  color: var(--ink);
  background: var(--cloud);
}

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

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 730;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.section-heading h2 span {
  color: #a7eeed;
}

.section-heading > p:last-child {
  margin: 24px 0 0;
  color: #39546f;
  font-size: 1.16rem;
}

.dark-section .section-heading > p:last-child {
  color: #bdd0e2;
}

.problem {
  position: relative;
  overflow: hidden;
  padding: 128px 0 142px;
  background:
    radial-gradient(circle at 9% 14%, rgb(0 194 194 / 13%), transparent 25%),
    linear-gradient(140deg, #f8fcff 0%, #e9f6fb 52%, #f8f3e6 100%);
}

.problem-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.problem-intro .section-heading {
  max-width: 650px;
}

.problem-mascot {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
  isolation: isolate;
}

.problem-mascot::before {
  position: absolute;
  z-index: -1;
  right: 5%;
  width: 64%;
  aspect-ratio: 1;
  border: 1px solid rgb(0 125 130 / 18%);
  border-radius: 50%;
  background: radial-gradient(circle, rgb(255 255 255 / 85%), rgb(0 166 166 / 10%) 48%, transparent 70%);
  content: "";
}

.problem-mascot img {
  display: block;
  width: min(100%, 760px);
  height: auto;
  filter: drop-shadow(0 24px 28px rgb(22 64 86 / 16%));
}

.problem::after {
  position: absolute;
  top: -120px;
  right: -150px;
  width: 480px;
  height: 480px;
  border: 1px solid rgb(0 125 130 / 12%);
  border-radius: 50%;
  content: "";
}

.problem-lines {
  margin-top: 56px;
}

.problem-line {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: start;
  gap: 26px;
  padding: 34px 0;
  border-top: 1px solid rgb(12 36 69 / 18%);
}

.problem-line:last-child {
  border-bottom: 1px solid rgb(12 36 69 / 18%);
}

.problem-line .problem-mark {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 2px solid rgb(0 194 194 / 58%);
  border-radius: 21px;
  background: linear-gradient(145deg, #123d73, #06142a 78%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 18%), 0 13px 28px rgb(6 20 42 / 20%);
}

.problem-mark-choices { border-color: rgb(244 200 107 / 76%); }
.problem-mark-focus { border-color: rgb(0 166 166 / 72%); }

.problem-line p {
  max-width: 920px;
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 2.15rem);
  font-weight: 590;
  line-height: 1.28;
}

.features {
  position: relative;
  overflow: hidden;
  padding: 136px 0 128px;
  background:
    radial-gradient(circle at 80% 12%, rgb(0 194 194 / 16%), transparent 27%),
    radial-gradient(circle at 12% 62%, rgb(244 200 107 / 10%), transparent 30%),
    linear-gradient(180deg, var(--navy-900), #081c38 58%, #06142a);
}

.features::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgb(255 255 255 / 11%) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  opacity: .18;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent, black 20%, transparent 90%);
}

.section-heading-wide {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: none;
  grid-template-columns: 1.2fr .72fr;
  gap: 28px 70px;
  align-items: end;
}

.section-heading-wide .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -4px;
}

.section-heading-wide > p:last-child {
  align-self: end;
  margin: 0 0 9px;
}

.feature-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 22px;
  margin-top: 76px;
  perspective: 1200px;
}

.feature-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  min-height: 370px;
  flex-direction: column;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgb(255 255 255 / 62%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card), inset 0 2px 1px rgb(255 255 255 / 72%), inset 0 -7px 14px rgb(4 35 65 / 10%);
  color: var(--ink);
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translate3d(0, 0, 0);
  transform-style: preserve-3d;
  transition: transform 420ms var(--ease-out), opacity 550ms var(--ease-out);
}

.feature-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 34px 64px rgb(0 4 17 / 38%);
  content: "";
  opacity: 0;
  transition: opacity 360ms ease;
}

.feature-card::after {
  position: absolute;
  top: -20%;
  left: -55%;
  width: 45%;
  height: 140%;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 48%), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: skewX(-18deg) translate3d(0, 0, 0);
  transition: transform 700ms var(--ease-out), opacity 220ms ease;
}

.feature-card:hover,
.feature-card:focus-within {
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translate3d(0, -10px, 20px);
}

.feature-card:hover::before,
.feature-card:focus-within::before {
  opacity: 1;
}

.feature-card:hover::after,
.feature-card:focus-within::after {
  opacity: .6;
  transform: skewX(-18deg) translate3d(370%, 0, 0);
}

.card-yellow { background: linear-gradient(145deg, #fff9df, var(--yellow)); }
.card-peach { background: linear-gradient(145deg, #fff5eb, var(--peach)); }
.card-aqua { background: linear-gradient(145deg, #f1fffb, var(--aqua)); }
.card-lilac { background: linear-gradient(145deg, #f8f4ff, var(--lilac)); }
.card-sage { background: linear-gradient(145deg, #f6ffef, var(--sage)); }
.card-blue { background: linear-gradient(145deg, #f4faff, var(--sky)); }

.feature-icon {
  display: grid;
  width: 154px;
  height: 154px;
  place-items: center;
  margin: -7px 0 10px -4px;
  transform: translateZ(38px);
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-card h3 {
  margin: 7px 0 7px;
  font-size: clamp(1.65rem, 2.4vw, 2.3rem);
  font-weight: 760;
  letter-spacing: -.025em;
  line-height: 1;
  transform: translateZ(26px);
}

.feature-card p {
  margin: 0;
  color: #294966;
  transform: translateZ(20px);
}

.sos-band {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 48px;
  overflow: hidden;
  margin-top: 28px;
  padding: 44px 52px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 82% 50%, rgb(198 40 40 / 25%), transparent 34%),
    linear-gradient(120deg, #071b37, #0b2c55);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 12%), var(--shadow-deep);
}

.sos-band::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgb(244 200 107 / 22%);
  border-radius: inherit;
  content: "";
  pointer-events: none;
  transform: scale3d(.985, .94, 1);
}

.sos-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  letter-spacing: -.04em;
  line-height: 1;
}

.sos-copy > p:last-child {
  max-width: 500px;
  margin: 18px 0 0;
  color: #c9ddeb;
}

.sos-button-wrap {
  position: relative;
  display: grid;
  place-items: center;
}

.sos-button-wrap img {
  position: relative;
  z-index: 2;
  width: min(100%, 584px);
  height: auto;
  filter: drop-shadow(0 18px 22px rgb(0 0 0 / 38%));
}

.sos-pulse {
  position: absolute;
  z-index: 1;
  width: 88%;
  height: 82%;
  border: 3px solid rgb(255 95 95 / 42%);
  border-radius: 999px;
  opacity: 0;
}

.audiences {
  overflow: hidden;
  padding: 136px 0 148px;
  background:
    radial-gradient(circle at 77% 44%, rgb(0 166 166 / 12%), transparent 30%),
    linear-gradient(145deg, #f6fbff, #edf7fa 50%, #f9f4e9);
}

.audience-shell {
  position: relative;
}

.audience-intro {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(340px, .82fr) minmax(0, 1.18fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
}

.audience-shell .section-heading {
  max-width: 740px;
}

.audience-mascot {
  position: relative;
  display: grid;
  min-height: 390px;
  place-items: center;
  isolation: isolate;
}

.audience-mascot::before {
  position: absolute;
  z-index: -1;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgb(0 125 130 / 20%);
  border-radius: 50%;
  background: radial-gradient(circle, rgb(255 255 255 / 90%) 0 28%, rgb(0 166 166 / 12%) 52%, transparent 70%);
  content: "";
}

.audience-mascot img {
  display: block;
  width: min(100%, 760px);
  height: auto;
  filter: drop-shadow(0 26px 28px rgb(24 69 91 / 18%));
}

.audience-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 24px;
  margin-top: 58px;
}

.audience-card {
  display: grid;
  min-height: 196px;
  grid-template-columns: 68px 1fr;
  gap: 20px;
  align-items: start;
  padding: 30px;
  border: 1px solid rgb(12 36 69 / 11%);
  border-radius: 28px;
  background: rgb(255 255 255 / 72%);
  box-shadow: 0 20px 60px rgb(26 77 103 / 12%), inset 0 1px 0 white;
}

.audience-card > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 20px;
  background: var(--navy-800);
  box-shadow: inset 0 -5px 0 rgb(0 0 0 / 16%), 0 12px 24px rgb(11 33 69 / 18%);
  color: #a9f2ef;
  font-weight: 780;
}

.audience-card > span svg {
  width: 30px;
  height: 30px;
}

.audience-card h3 {
  margin: 4px 0 8px;
  font-size: 1.55rem;
  line-height: 1.1;
}

.audience-card p {
  margin: 0;
  color: #3a536d;
}

.audience-orbit {
  position: absolute;
  z-index: 1;
  right: -14%;
  bottom: -12%;
  width: 76%;
  aspect-ratio: 1.5;
  border: 1px solid rgb(0 125 130 / 18%);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.accessibility-section {
  position: relative;
  overflow: hidden;
  padding: 132px 0 142px;
  background:
    radial-gradient(circle at 13% 26%, rgb(0 194 194 / 19%), transparent 28%),
    radial-gradient(circle at 88% 86%, rgb(244 200 107 / 13%), transparent 27%),
    linear-gradient(145deg, #0b3153, #071d39 52%, #06172f);
}

.accessibility-section::before {
  position: absolute;
  top: 8%;
  right: -12%;
  width: 540px;
  aspect-ratio: 1;
  border: 1px solid rgb(143 243 239 / 12%);
  border-radius: 50%;
  content: "";
}

.accessibility-shell {
  position: relative;
  z-index: 1;
}

.accessibility-hero {
  display: grid;
  grid-template-columns: minmax(330px, .78fr) minmax(0, 1.22fr);
  gap: clamp(44px, 7vw, 104px);
  align-items: center;
}

.accessibility-mascot {
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.accessibility-mascot::before {
  position: absolute;
  z-index: -1;
  width: 84%;
  aspect-ratio: 1;
  border: 1px solid rgb(244 200 107 / 28%);
  border-radius: 50%;
  background: radial-gradient(circle, rgb(0 194 194 / 15%), transparent 68%);
  content: "";
}

.accessibility-mascot img {
  display: block;
  width: min(100%, 500px);
  height: auto;
  filter: drop-shadow(0 28px 34px rgb(0 0 0 / 34%));
}

.accessibility-copy h2 {
  max-width: 820px;
  margin: 0;
  color: white;
  font-size: clamp(3rem, 5.8vw, 5.4rem);
  letter-spacing: -.045em;
  line-height: .98;
}

.accessibility-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 30px 0 0;
  color: #d4e7f1;
  font-size: clamp(1.13rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

.accessibility-status {
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  padding: 11px 16px;
  border: 1px solid rgb(244 200 107 / 70%);
  border-radius: 999px;
  background: rgb(3 18 39 / 66%);
  color: #ffe49a;
  font-weight: 760;
}

.accessibility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 74px;
}

.accessibility-card {
  position: relative;
  min-height: 430px;
  padding: 30px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 30px;
  background: linear-gradient(155deg, rgb(18 61 98 / 95%), rgb(5 25 53 / 98%));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 15%), 0 28px 60px rgb(0 5 18 / 28%);
}

.accessibility-icon {
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
  border: 3px solid #f4c86b;
  border-radius: 28px;
  background: #00152f;
  box-shadow: inset 0 0 0 2px rgb(255 255 255 / 18%), 0 18px 28px rgb(0 0 0 / 25%);
}

.accessibility-icon img {
  display: block;
  width: 112px;
  height: 112px;
  object-fit: contain;
}

.accessibility-card-label {
  margin: 24px 0 8px;
  color: #93f2ed;
  font-size: 1rem;
  font-weight: 780;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.accessibility-card-heading {
  display: contents;
}

.accessibility-card h3 {
  margin: 0;
  color: white;
  font-size: clamp(1.75rem, 2.5vw, 2.35rem);
  line-height: 1.05;
}

.accessibility-card > p:last-of-type {
  margin: 18px 0 0;
  color: #d5e5ef;
  line-height: 1.5;
}

.accessibility-card-vision {
  border-color: rgb(244 200 107 / 62%);
  background: linear-gradient(155deg, #0b315b, #021327);
}

.contrast-demo {
  display: grid;
  grid-template-columns: 58px 58px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  margin-top: 24px;
}

.contrast-demo > span {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  border: 3px solid white;
  border-radius: 16px;
  background: #001226;
  color: #ffe37f;
}

.contrast-demo svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contrast-demo strong {
  min-width: 0;
  color: white;
  font-size: 1rem;
  letter-spacing: .05em;
  line-height: 1.2;
  overflow-wrap: normal;
  word-break: normal;
}

.accessibility-note {
  max-width: 930px;
  margin: 38px 0 0;
  padding-left: 20px;
  border-left: 4px solid var(--gold);
  color: #bfd8e6;
}

.accessibility-note strong {
  color: white;
}

.pact {
  position: relative;
  display: grid;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  padding: 120px 24px;
  background:
    radial-gradient(circle at 50% 47%, rgb(18 61 115 / 80%), transparent 45%),
    linear-gradient(150deg, #030b19, #07162d 48%, #06142a);
}

.pact::before,
.pact::after {
  position: absolute;
  width: 560px;
  height: 560px;
  border: 1px solid rgb(244 200 107 / 14%);
  border-radius: 50%;
  content: "";
}

.pact::before { top: -310px; left: -130px; }
.pact::after { right: -180px; bottom: -330px; }

.pact-light {
  position: absolute;
  top: -25%;
  left: 30%;
  width: 40%;
  height: 75%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgb(244 200 107 / 20%), transparent 68%);
  opacity: .8;
  transform: rotate(8deg);
}

.pact-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 1160px);
  padding: clamp(46px, 5.5vw, 72px);
  border: 1px solid rgb(244 200 107 / 46%);
  border-radius: 42px;
  background: linear-gradient(145deg, rgb(8 30 62 / 91%), rgb(4 16 35 / 93%));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 15%), inset 0 0 80px rgb(0 194 194 / 6%), 0 40px 100px rgb(0 0 0 / 38%);
  text-align: center;
}

.pact-story {
  display: block;
  text-align: left;
}

.pact-copy {
  min-width: 0;
  max-width: 100%;
}

.pact-frame::before {
  position: absolute;
  inset: 16px;
  border: 1px solid rgb(244 200 107 / 15%);
  border-radius: 30px;
  content: "";
  pointer-events: none;
}

.pact-frame h2 {
  margin: 0;
  color: var(--gold);
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 760;
  letter-spacing: -.04em;
  line-height: 1;
}

.pact-frame blockquote {
  max-width: min(680px, calc(100% - 380px));
  margin: 36px 0 0;
  color: #f4f7fb;
  font-size: clamp(1.3rem, 2.1vw, 1.82rem);
  font-weight: 470;
  line-height: 1.48;
}

.pact-frame blockquote p {
  margin: 0;
}

.pact-frame blockquote p + p {
  margin-top: 20px;
}

.pact-signature {
  display: inline-block;
  margin-top: 34px;
  color: #9ecbce;
  font-size: 1rem;
  font-weight: 660;
}

.pact-mascot {
  position: absolute;
  z-index: 3;
  top: -226px;
  right: 24px;
  width: 340px;
  aspect-ratio: 1;
  pointer-events: none;
}

.pact-mascot img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 34px rgb(0 0 0 / 32%));
}

.pact-tester-callout {
  position: relative;
  display: block;
  width: 100%;
  margin: 76px auto 0;
  padding: 30px 390px 30px clamp(28px, 4vw, 46px);
  border: 2px solid rgb(244 200 107 / 78%);
  border-radius: 26px;
  background: linear-gradient(135deg, rgb(13 62 95 / 96%), rgb(7 34 65 / 98%));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 18%), 0 22px 50px rgb(0 0 0 / 30%);
  color: #effcff;
  text-align: left;
  text-decoration: none;
}

.pact-tester-content {
  display: grid;
  gap: 9px;
}

.pact-tester-label {
  color: #8ff3ef;
  font-size: 1rem;
  font-weight: 780;
}

.pact-tester-callout strong {
  color: white;
  font-size: clamp(1.38rem, 2.4vw, 1.85rem);
  line-height: 1.15;
}

.pact-tester-content > span:not(.pact-tester-label, .pact-tester-action) {
  font-size: clamp(1.08rem, 1.7vw, 1.25rem);
  line-height: 1.4;
}

.pact-tester-action {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
  color: var(--gold);
  font-weight: 780;
}

.share-section {
  position: relative;
  overflow: hidden;
  padding: 68px 0 44px;
  background:
    radial-gradient(circle at 9% 18%, rgb(0 194 194 / 10%), transparent 25%),
    linear-gradient(180deg, #06162d, #071a35);
  color: white;
}

.share-section::before,
.share-section::after {
  position: absolute;
  width: 420px;
  aspect-ratio: 1;
  border: 1px solid rgb(143 243 239 / 11%);
  border-radius: 50%;
  content: "";
}

.share-section::before { top: -290px; left: -110px; }
.share-section::after { right: -170px; bottom: -330px; }

.share-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) minmax(290px, .55fr);
  gap: 28px 38px;
  align-items: center;
  padding: 40px 44px;
  border: 2px solid rgb(244 200 107 / 72%);
  border-radius: 32px;
  background: linear-gradient(135deg, #ffe8a8, #f4c86b 72%, #e6b453);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 76%), 0 24px 56px rgb(0 5 18 / 28%);
  color: var(--ink);
}

.share-icon {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 2px solid rgb(12 36 69 / 74%);
  border-radius: 26px;
  background: #fff7df;
  box-shadow: inset 0 -7px 14px rgb(12 36 69 / 8%), 0 16px 32px rgb(68 43 0 / 14%);
}

.share-icon svg { width: 58px; height: 58px; }

.share-copy h2 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(2.65rem, 4vw, 4rem);
  letter-spacing: -.045em;
  line-height: .98;
}

.share-copy > p:not(.eyebrow) {
  max-width: 790px;
  margin: 18px 0 0;
  color: #1b3b58;
  font-size: clamp(1.12rem, 1.7vw, 1.32rem);
  line-height: 1.48;
}

.share-copy > strong {
  display: block;
  max-width: 760px;
  margin-top: 14px;
  color: #071d39;
  font-size: clamp(1.16rem, 1.7vw, 1.36rem);
  line-height: 1.35;
}

.share-actions {
  display: grid;
  gap: 14px;
  align-content: center;
}

.share-button {
  width: 100%;
  min-height: 68px;
  justify-content: space-between;
  border: 2px solid #06142a;
  background: linear-gradient(145deg, #123d73, #06142a);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 20%), 0 18px 34px rgb(6 20 42 / 24%);
  color: white;
  text-align: left;
}

.share-button:hover { transform: translateY(-3px); }
.share-button:disabled { cursor: wait; opacity: .72; }

.share-actions p {
  margin: 0;
  color: #294966;
  font-size: 1rem;
  line-height: 1.35;
}

.share-status {
  padding: 11px 14px;
  border-left: 4px solid var(--teal-dark);
  background: rgb(255 255 255 / 48%);
  color: #071d39 !important;
  font-weight: 720;
}

.share-status:empty { display: none; }

.share-next {
  display: flex;
  width: fit-content;
  max-width: 100%;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin: 24px auto 0;
  padding: 12px 18px;
  border-bottom: 2px solid var(--gold);
  color: #eaf7ff;
  font-size: 1.06rem;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

.share-next strong { color: var(--gold); }
.share-next > span:last-child { color: var(--gold); font-size: 1.55rem; line-height: 1; }

.forms-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0 150px;
  background:
    radial-gradient(circle at 9% 8%, rgb(0 194 194 / 14%), transparent 24%),
    radial-gradient(circle at 90% 50%, rgb(244 200 107 / 10%), transparent 25%),
    linear-gradient(180deg, #07172f, var(--navy-900));
}

.forms-heading {
  max-width: 880px;
  margin-bottom: 46px;
}

.forms-heading > p:last-child {
  color: #c4d8e8;
}

.form-selector-prompt {
  display: none;
}

.noscript {
  padding: 22px;
  border: 2px solid var(--gold);
  border-radius: 18px;
  background: #fff8df;
  color: var(--ink);
}

.form-selector {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
  margin: 0 18px -2px;
  padding: 0;
}

.form-choice {
  position: relative;
  display: grid;
  min-height: 126px;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 18px 15px;
  border: 2px solid rgb(119 181 211 / 42%);
  border-bottom-color: rgb(119 181 211 / 24%);
  border-radius: 24px 24px 5px 5px;
  background: linear-gradient(155deg, #0b294b, #06172f);
  box-shadow: 0 -10px 24px rgb(0 5 18 / 16%), inset 0 1px 0 rgb(255 255 255 / 10%);
  color: white;
  cursor: pointer;
  text-align: left;
  transform: translate3d(0, 0, 0);
  transition: transform 260ms var(--ease-out), border-color 220ms ease, background 220ms ease;
}

.form-choice:hover {
  transform: translate3d(0, -3px, 0);
}

.form-choice-tester {
  border-color: rgb(244 200 107 / 72%);
  background: linear-gradient(155deg, #173f66, #08213f);
}

.form-choice > span:first-child {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 16px;
  color: #9fecea;
  font-weight: 800;
}

.form-choice > span:first-child svg {
  width: 27px;
  height: 27px;
}

.form-choice strong,
.form-choice small {
  display: block;
}

.form-choice strong {
  color: white;
  font-size: 1.08rem;
  line-height: 1.15;
}

.form-choice small {
  margin-top: 5px;
  color: #b6cbdc;
  font-size: 1rem;
  line-height: 1.2;
}

.form-choice-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  color: #93f2ed;
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.1;
}

.form-choice-action::after {
  content: "→";
  font-size: 1.12em;
}

.form-choice-action .when-open { display: none; }
.form-choice-action .action-short { display: none; }

.form-choice.is-active {
  z-index: 2;
  border-color: rgb(244 200 107 / 92%);
  border-bottom-color: #12365d;
  background: linear-gradient(145deg, #174a77, #0c315c);
  box-shadow: 0 -14px 30px rgb(0 5 18 / 24%), inset 0 1px 0 rgb(255 255 255 / 16%);
  transform: translateY(2px);
}

.form-choice.is-active > span:first-child {
  border-color: transparent;
  background: var(--gold);
  color: #17304b;
}

.form-choice.is-active .form-choice-action { color: #ffe49a; }
.form-choice.is-active .form-choice-action::after { content: "✓"; }
.form-choice.is-active .form-choice-action .when-closed { display: none; }
.form-choice.is-active .form-choice-action .when-open { display: inline; }

[role="tabpanel"][hidden] {
  display: none !important;
}

.form-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(350px, .9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 5vw, 72px);
  margin-top: 0;
  padding: clamp(30px, 5.5vw, 70px);
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgb(15 46 86 / 97%), rgb(7 25 51 / 98%));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 13%), var(--shadow-deep);
}

.form-panel-updates {
  background: linear-gradient(145deg, #173f58, #092b43);
}

.form-panel-entity {
  background: linear-gradient(145deg, #233c5c, #0d2342);
}

.form-intro {
  position: sticky;
  top: 34px;
  align-self: start;
}

.form-step {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 30px;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 22px;
  background: linear-gradient(145deg, #164879, #09274f);
  box-shadow: inset 0 1px 1px rgb(255 255 255 / 19%), 0 18px 28px rgb(0 7 22 / 28%);
  color: var(--gold);
  font-weight: 800;
}

.form-step svg {
  width: 31px;
  height: 31px;
}

.form-intro h3 {
  margin: 0;
  font-size: clamp(2.15rem, 3.35vw, 3.45rem);
  letter-spacing: -.045em;
  line-height: 1.02;
}

.form-intro-copy > p:last-child {
  margin: 24px 0 0;
  color: #c7daea;
  font-size: 1.08rem;
}

.form-mascot {
  --mascot-box: 360px;
  position: relative;
  width: min(100%, var(--mascot-box));
  margin: 30px auto 0;
}

.form-mascot-tester { --mascot-box: 344px; }
.form-mascot-updates { --mascot-box: 360px; }
.form-mascot-entity { --mascot-box: 413px; }

.form-mascot img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 28px rgb(0 0 0 / 30%));
}

.form-panel:not([hidden]) .form-mascot img {
  animation: mascot-form-arrive 620ms cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes mascot-form-arrive {
  from { opacity: 0; transform: translate3d(0, 14px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.form-grid {
  display: grid;
  gap: 24px;
}

.field,
.fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.field > label:first-child,
.fieldset legend {
  display: block;
  margin-bottom: 9px;
  color: #f3f8fc;
  font-weight: 690;
}

.fieldset legend {
  padding: 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border: 2px solid rgb(166 210 226 / 42%);
  border-radius: 15px;
  background: rgb(247 252 255 / 97%);
  box-shadow: inset 0 3px 7px rgb(4 35 65 / 10%);
  color: var(--ink);
  line-height: 1.25;
  transition: transform 220ms var(--ease-out), opacity 220ms ease;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 0;
  box-shadow: 0 0 0 5px rgb(0 194 194 / 18%), inset 0 3px 7px rgb(4 35 65 / 8%);
  transform: translate3d(0, -2px, 0);
}

input:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.field-help,
.required-note,
.double-optin {
  margin: 8px 0 0;
  color: #b8d1e2;
  font-size: 1rem;
}

.choice-row,
.choice-stack {
  display: grid;
  gap: 10px;
}

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

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

.choice,
.check {
  position: relative;
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgb(183 220 233 / 28%);
  border-radius: 14px;
  background: rgb(2 17 38 / 38%);
  color: #eef8fc;
  cursor: pointer;
  transition: transform 220ms var(--ease-out), opacity 220ms ease;
}

.check {
  align-items: flex-start;
}

.field label.check {
  display: flex;
}

.choice:hover,
.check:hover {
  transform: translate3d(0, -2px, 0);
}

.choice input,
.check input {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin: 0;
  accent-color: var(--teal);
}

.check input {
  margin-top: .18em;
}

.check > span {
  min-width: 0;
  line-height: 1.35;
}

.choice-recommended {
  border-color: rgb(244 200 107 / 64%);
}

.choice small {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--gold);
  color: #263147;
  font-size: 1rem;
  font-weight: 760;
}

.field-checks {
  display: grid;
  gap: 10px;
}

.required-mark {
  color: var(--gold);
  font-weight: 800;
  white-space: nowrap;
}

.form-privacy {
  display: grid;
  gap: 14px;
}

.form-privacy-note {
  margin: 0;
  padding: 18px 19px;
  border-left: 5px solid var(--teal);
  border-radius: 0 15px 15px 0;
  background: rgb(0 194 194 / 10%);
  color: #e6f4fb;
  font-size: 1rem;
  line-height: 1.55;
}

.form-privacy-note a,
.check a {
  color: #9ff5f1;
  font-weight: 760;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.button-submit {
  width: 100%;
  margin-top: 24px;
  background: linear-gradient(180deg, #70e5e1, var(--teal));
  box-shadow: inset 0 -5px 0 rgb(0 79 84 / 24%), 0 16px 32px rgb(0 194 194 / 16%);
  color: #062c3a;
}

.button-submit[disabled] {
  cursor: wait;
  opacity: .72;
}

.button-loader {
  display: none;
  width: 22px;
  height: 22px;
  border: 3px solid rgb(6 44 58 / 26%);
  border-top-color: #062c3a;
  border-radius: 50%;
}

.button-submit.is-loading .button-loader {
  display: block;
  animation: loader-spin 800ms linear infinite;
}

.form-status {
  min-height: 29px;
  margin: 18px 0 0;
  font-weight: 650;
}

.form-status.is-success,
.form-status.is-error {
  position: relative;
  padding: 16px 18px 16px 56px;
  border-radius: 15px;
}

.form-status.is-success {
  background: #d8f1e9;
  color: #074c42;
}

.form-status.is-error {
  background: #ffe2e2;
  color: #7b1717;
}

.form-status.is-success::before,
.form-status.is-error::before {
  position: absolute;
  top: 13px;
  left: 17px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  content: "✓";
  font-weight: 850;
  opacity: 0;
  transform: scale3d(.5, .5, 1) rotate(-16deg);
  animation: status-in 440ms var(--ease-out) forwards;
}

.form-status.is-success::before {
  background: #0d8a72;
  color: white;
}

.form-status.is-error::before {
  background: var(--red);
  color: white;
  content: "!";
}

.faq {
  padding: 132px 0 144px;
  background:
    radial-gradient(circle at 8% 20%, rgb(0 194 194 / 10%), transparent 25%),
    linear-gradient(145deg, #f6fbff, #eef7fb 60%, #fbf6ea);
}

.faq-shell {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 80px;
  align-items: start;
}

.faq-shell .section-heading {
  position: sticky;
  top: 34px;
}

.faq-list {
  border-top: 1px solid rgb(12 36 69 / 18%);
}

.faq details {
  border-bottom: 1px solid rgb(12 36 69 / 18%);
}

.faq summary {
  position: relative;
  min-height: 78px;
  padding: 24px 56px 24px 0;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 720;
  list-style: none;
}

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

.faq summary::after {
  position: absolute;
  top: 22px;
  right: 4px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background:
    linear-gradient(#fff, #fff) center / 16px 2px no-repeat,
    linear-gradient(#fff, #fff) center / 2px 16px no-repeat,
    var(--navy-800);
  content: "";
  transform: rotate(0deg);
  transition: transform 300ms var(--ease-out);
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 720px;
  margin: -4px 0 26px;
  padding-right: 44px;
  color: #3b566f;
}

.site-footer {
  display: grid;
  gap: 18px;
  padding: 42px max(24px, calc((100vw - var(--content)) / 2)) 48px;
  border-top: 1px solid rgb(255 255 255 / 13%);
  background: #030c1b;
}

.footer-owner {
  margin: 0;
  color: #e0edf7;
}

.footer-owner a,
.site-footer nav a {
  color: #91efec;
  font-weight: 720;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 10px;
  align-items: center;
}

.site-footer nav a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
}

.legal-dialog {
  width: min(1120px, calc(100vw - 28px));
  height: min(900px, calc(100dvh - 28px));
  max-width: none;
  max-height: none;
  padding: 0;
  overflow: hidden;
  border: 2px solid rgb(147 242 237 / 66%);
  border-radius: 26px;
  background: var(--cloud);
  box-shadow: 0 40px 100px rgb(0 0 0 / 58%);
  color: var(--ink);
}

.legal-dialog[open] {
  display: block;
}

.legal-dialog::backdrop {
  background: rgb(1 7 19 / 76%);
  backdrop-filter: blur(5px);
}

.legal-dialog-shell {
  display: grid;
  height: 100%;
  grid-template-rows: auto minmax(0, 1fr);
}

.legal-dialog-header {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px 14px 25px;
  border-bottom: 1px solid #bfd2df;
  background: white;
}

.legal-dialog-header h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.15;
}

.legal-dialog-close {
  display: inline-flex;
  min-width: 112px;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border: 2px solid #0a6070;
  border-radius: 14px;
  background: #0a6070;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 760;
}

.legal-dialog-close span {
  font-size: 1.4em;
  line-height: 1;
}

.legal-dialog iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--cloud);
}

body.legal-dialog-open {
  overflow: hidden;
}

/* Motion is progressive: without JavaScript, all content remains visible. */
.motion-ready [data-hero-tile] {
  opacity: 0;
  will-change: transform, opacity;
}

.motion-ready [data-hero-phone] {
  opacity: 1;
}

.motion-ready [data-hero-mascot] {
  opacity: 0;
  transform: translate3d(-48px, 28px, 0) rotate(-6deg) scale3d(.88, .88, 1);
}

.motion-ready [data-hero-item] {
  opacity: 1;
  transform: translate3d(0, 26px, 0);
}

.motion-ready [data-hero-phone] {
  transform: translate3d(12%, 14%, 0) rotate(4deg) scale3d(.92, .92, 1);
}

.motion-ready [data-hero-tile] {
  transform: translate3d(0, 36px, calc(var(--tile-depth) - 45px)) rotateZ(calc(var(--tile-angle) + 12deg)) scale3d(.76, .76, 1);
}

.motion-ready.is-ready [data-hero-item],
.motion-ready.is-ready [data-hero-phone],
.motion-ready.is-ready [data-hero-mascot],
.motion-ready.is-ready [data-hero-tile] {
  opacity: 1;
  transition: transform 850ms var(--ease-out), opacity 700ms ease;
}

.motion-ready.is-ready [data-hero-item] {
  transform: translate3d(0, 0, 0);
}

.motion-ready.is-ready [data-hero-item]:nth-child(2) { transition-delay: 80ms; }
.motion-ready.is-ready [data-hero-item]:nth-child(3) { transition-delay: 150ms; }
.motion-ready.is-ready [data-hero-item]:nth-child(4) { transition-delay: 220ms; }

.motion-ready.is-ready [data-hero-phone] {
  transform: translate3d(0, 0, 0) rotate(0deg) scale3d(1, 1, 1);
  transition-delay: 160ms;
}

.motion-ready.is-ready [data-hero-mascot] {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg) scale3d(1, 1, 1);
  transition-delay: 240ms;
}

.motion-ready.is-ready [data-hero-tile] {
  transform: translate3d(0, 0, var(--tile-depth)) rotateZ(var(--tile-angle)) scale3d(1, 1, 1);
  transition-duration: 760ms;
}

.motion-ready.is-ready .tile-call { transition-delay: 320ms; }
.motion-ready.is-ready .tile-message { transition-delay: 400ms; }
.motion-ready.is-ready .tile-photo { transition-delay: 480ms; }

.motion-ready.is-ready .hero-light {
  animation: hero-light-pass 1800ms var(--ease-soft) 1 both;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: transform 780ms var(--ease-out), opacity 620ms ease;
}

.motion-ready .problem-line:nth-child(2).is-visible,
.motion-ready .feature-card:nth-child(2).is-visible,
.motion-ready .audience-card:nth-child(2).is-visible {
  transition-delay: 90ms;
}

.motion-ready .problem-line:nth-child(3).is-visible,
.motion-ready .feature-card:nth-child(3).is-visible,
.motion-ready .audience-card:nth-child(3).is-visible {
  transition-delay: 160ms;
}

.motion-ready .feature-card:nth-child(4).is-visible,
.motion-ready .audience-card:nth-child(4).is-visible { transition-delay: 220ms; }
.motion-ready .feature-card:nth-child(5).is-visible { transition-delay: 280ms; }
.motion-ready .feature-card:nth-child(6).is-visible { transition-delay: 340ms; }

.motion-ready [data-sos].is-visible .sos-pulse {
  animation: sos-pulse 720ms var(--ease-out) 2;
}

.motion-ready [data-pact].is-visible::before {
  animation: pact-ignite 1100ms var(--ease-out) 1;
}

@keyframes hero-light-pass {
  0% { opacity: 0; transform: rotate(-20deg) translate3d(-24%, -12%, 0) scale3d(.8, .8, 1); }
  55% { opacity: .72; }
  100% { opacity: .5; transform: rotate(-20deg) translate3d(6%, 4%, 0) scale3d(1, 1, 1); }
}

@keyframes sos-pulse {
  0% { opacity: 0; transform: scale3d(.86, .7, 1); }
  38% { opacity: .75; }
  100% { opacity: 0; transform: scale3d(1.12, 1.45, 1); }
}

@keyframes pact-ignite {
  0% { opacity: .22; transform: scale3d(.98, .95, 1); }
  55% { opacity: .78; }
  100% { opacity: 1; transform: scale3d(1, 1, 1); }
}

@keyframes tester-border-pulse {
  0%, 100% { opacity: .28; transform: scale3d(.985, .94, 1); }
  42% { opacity: 1; transform: scale3d(1, 1, 1); }
  68% { opacity: .5; transform: scale3d(.995, .98, 1); }
}

@keyframes loader-spin {
  to { transform: rotate(360deg); }
}

@keyframes status-in {
  to { opacity: 1; transform: scale3d(1, 1, 1) rotate(0deg); }
}

@media (max-width: 1080px) {
  .hero { grid-template-columns: minmax(0, 1fr) minmax(350px, .72fr); }
  .hero-copy { padding-left: 12px; }
  .floating-tile { width: 92px; }
  .tile-call { left: 2%; }
  .feature-stage { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .audience-intro { grid-template-columns: minmax(300px, .76fr) minmax(0, 1.24fr); gap: 34px; }
  .audience-mascot { min-height: 320px; }
  .accessibility-hero { grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr); gap: 42px; }
  .pact-copy { max-width: 100%; }
  .pact-mascot { top: -200px; right: 18px; width: 300px; }
  .pact-tester-callout { padding-right: 338px; }
  .form-panel { grid-template-columns: 1fr; }
  .form-intro {
    position: static;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) minmax(240px, 300px);
    gap: 24px;
    align-items: start;
  }
  .form-step { margin: 0; }
  .form-intro-copy { grid-column: 2; }
  .form-mascot { grid-row: 1 / 3; grid-column: 3; width: min(100%, var(--mascot-box)); margin: 0 auto; }
  .faq-shell { grid-template-columns: 1fr; gap: 52px; }
  .faq-shell .section-heading { position: static; }
}

/*
 * Tablet e viewport intermedi: non sono desktop rimpiccioliti.
 * La soglia include i tablet Android da 768-1024 CSS px e il layout
 * risultante resta valido anche quando lo zoom del browser riduce il viewport.
 */
@media (min-width: 761px) and (max-width: 1024px) {
  html { scroll-padding-top: 176px; }

  .site-header {
    top: 16px;
    display: grid;
    width: calc(100% - 32px);
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px 12px 12px;
    border-radius: 26px;
  }

  .brand {
    display: grid;
    width: 100%;
    min-height: 76px;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 16px;
    padding-inline: 6px;
  }

  .brand img { width: 170px; height: 76px; padding: 9px 13px; }
  .brand span { max-width: none; font-size: 1.12rem; line-height: 1.12; }

  .site-header nav {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid rgb(255 255 255 / 12%);
  }

  .site-header nav a {
    min-height: 50px;
    padding: 8px 10px;
    border: 1px solid rgb(255 255 255 / 12%);
    border-radius: 13px;
    background: rgb(255 255 255 / 5%);
    line-height: 1.08;
    text-align: center;
  }

  .site-header nav .nav-cta {
    width: 100%;
    margin: 0;
    white-space: nowrap;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    align-items: start;
    padding: 196px 42px 82px;
    background:
      linear-gradient(180deg, rgb(3 12 27 / 98%) 0%, rgb(5 18 40 / 84%) 38%, rgb(5 18 40 / 15%) 67%),
      linear-gradient(0deg, var(--navy-900) 0%, transparent 18%),
      image-set(url("../images/hero-cinematic-960.webp") type("image/webp"));
    background-position: 62% center;
  }

  .hero-copy { display: contents; }
  .hero-copy > * { position: relative; z-index: 5; grid-column: 1; }
  .hero-tester-kicker { grid-row: 1; margin-top: 20px; }
  .hero-copy h1 { grid-row: 2; font-size: clamp(3.7rem, 8.8vw, 5.35rem); }
  .hero-lead { max-width: 760px; grid-row: 4; margin-top: 32px; }
  .hero-actions { grid-row: 5; }
  .hero-points { grid-row: 6; }

  .hero-scene {
    min-height: 850px;
    grid-row: 3;
    margin-top: 22px;
  }

  .hero-mascot { top: 0; left: 4%; width: min(34vw, 260px); }
  .phone-wrap { top: 64px; right: 50%; width: min(46vw, 340px); transform: translateX(50%); }
  .motion-ready [data-hero-phone] { transform: translate3d(58%, 14%, 0) rotate(4deg) scale3d(.92, .92, 1); }
  .motion-ready.is-ready [data-hero-phone] { transform: translate3d(50%, 0, 0) rotate(0deg) scale3d(1, 1, 1); }
  .floating-tile { width: clamp(104px, 14vw, 124px); }
  .tile-call { top: 37%; left: 5%; }
  .tile-message { top: 13%; right: 5%; }
  .tile-photo { right: 5%; bottom: 9%; }
  .stage-glow { right: 8%; width: 84%; }

  .problem,
  .features,
  .audiences,
  .faq { padding-block: 112px; }

  .accessibility-section { padding-block: 104px 116px; }
  .forms-section { padding-block: 86px 116px; }
  .section-heading-wide { grid-template-columns: 1fr; gap: 20px; }
  .section-heading-wide > p:last-child { max-width: 780px; margin: 0; }

  .feature-stage { gap: 18px; margin-top: 62px; }
  .feature-card { min-height: 350px; padding: 26px; }
  .feature-icon { width: 138px; height: 138px; }
  .feature-card h3 { font-size: clamp(1.7rem, 3.7vw, 2.15rem); }
  .sos-band { gap: 30px; padding: 38px; }

  .audience-intro { grid-template-columns: 1fr; gap: 26px; }
  .audience-mascot { min-height: 310px; }
  .audience-mascot img { width: min(82vw, 620px); }
  .audience-list { gap: 20px; }

  .accessibility-hero {
    grid-template-columns: minmax(220px, .62fr) minmax(0, 1.38fr);
    gap: 32px;
  }

  .accessibility-mascot img { width: min(100%, 320px); }
  .accessibility-copy h2 { font-size: clamp(3rem, 6.8vw, 4.35rem); }
  .accessibility-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 62px; }

  .accessibility-card {
    display: grid;
    min-height: 0;
    grid-template-columns: 110px minmax(0, 1fr);
    column-gap: 20px;
    align-items: start;
    padding: 24px;
  }

  .accessibility-icon {
    width: 110px;
    height: 110px;
    grid-column: 1;
    grid-row: 1;
    border-radius: 26px;
  }

  .accessibility-icon img { width: 96px; height: 96px; }
  .accessibility-card-heading {
    display: flex;
    min-height: 110px;
    grid-column: 2;
    grid-row: 1;
    flex-direction: column;
    justify-content: center;
  }

  .accessibility-card-label { margin: 0 0 8px; line-height: 1.22; }
  .accessibility-card h3 { font-size: clamp(1.72rem, 3.55vw, 2.15rem); }
  .accessibility-card > p:last-of-type,
  .contrast-demo { grid-column: 1 / -1; }
  .accessibility-card > p:last-of-type { margin-top: 22px; }
  .accessibility-card-vision { grid-column: 1 / -1; }

  .pact { min-height: 0; padding: 110px 24px; }
  .pact-frame blockquote { max-width: 100%; margin-inline: 0; }
  .pact-tester-callout { margin-top: 210px; padding: 132px 34px 34px; }
  .pact-mascot { top: -190px; right: 24px; width: 300px; }

  .share-card { grid-template-columns: 88px minmax(0, 1fr); gap: 26px 32px; padding: 36px; }
  .share-actions { grid-column: 1 / -1; }
  .share-copy h2 { font-size: clamp(2.8rem, 6.2vw, 3.75rem); }

  .form-intro {
    grid-template-columns: 64px minmax(0, 1fr) minmax(220px, 270px);
    gap: 20px;
  }

  .form-selector { margin-inline: 8px; }
  .form-choice { min-height: 142px; grid-template-columns: 46px minmax(0, 1fr); gap: 12px; padding-inline: 14px; }
  .form-choice > span:first-child { width: 46px; height: 46px; }
  .form-choice strong { font-size: 1.04rem; }
}

/* Telefono ruotato e tablet orizzontale: recupera una scena a due colonne. */
@media (min-width: 761px) and (max-width: 1024px) and (orientation: landscape) {
  html { scroll-padding-top: 112px; }

  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
    gap: 12px;
    padding: 8px 10px;
  }

  .brand { min-height: 68px; grid-template-columns: 140px minmax(0, 1fr); gap: 10px; }
  .brand img { width: 140px; height: 68px; padding: 8px 11px; border-radius: 21px; }
  .brand span { font-size: 1rem; }
  .site-header nav { gap: 5px; padding-top: 0; border-top: 0; }
  .site-header nav a { min-height: 54px; padding: 6px; font-size: 1rem; }
  .site-header nav .nav-cta { white-space: normal; }

  .hero {
    min-height: 880px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
    align-items: center;
    padding: 122px 32px 58px;
    background:
      linear-gradient(90deg, rgb(3 12 27 / 98%) 0%, rgb(5 18 40 / 80%) 44%, rgb(5 18 40 / 9%) 78%),
      linear-gradient(0deg, var(--navy-900) 0%, transparent 18%),
      image-set(url("../images/hero-cinematic-960.webp") type("image/webp"));
    background-position: center;
  }

  .hero-copy { display: block; max-width: 540px; padding: 26px 0 44px; }
  .hero-copy > * { position: relative; grid-column: auto; }
  .hero-tester-kicker { margin-top: 0; }
  .hero-copy h1 { font-size: clamp(3.25rem, 6.5vw, 4.65rem); }
  .hero-lead { margin-top: 26px; }
  .hero-actions { display: flex; }
  .hero-points { gap: 8px 16px; }
  .hero-scene { min-height: 620px; grid-row: auto; margin-top: 0; }
  .hero-mascot { top: 4%; left: -8%; width: min(27vw, 235px); }
  .phone-wrap { top: 0; right: 0; width: min(35vw, 330px); transform: none; }
  .motion-ready [data-hero-phone] { transform: translate3d(8%, 14%, 0) rotate(4deg) scale3d(.92, .92, 1); }
  .motion-ready.is-ready [data-hero-phone] { transform: translate3d(0, 0, 0) rotate(0deg) scale3d(1, 1, 1); }
  .floating-tile { width: clamp(92px, 11vw, 112px); }
  .tile-call { left: -2%; }
  .tile-message { right: -2%; }
  .tile-photo { right: -2%; bottom: 42%; }
}

@media (max-width: 760px) {
  html { font-size: 19px; scroll-padding-top: 82px; }
  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 8px;
    border-radius: 24px;
  }
  .brand {
    display: grid;
    width: 100%;
    min-height: 76px;
    grid-template-columns: 158px minmax(0, 1fr);
    justify-content: stretch;
    gap: 10px;
    padding-inline: 4px;
  }
  .brand img { width: 158px; height: 76px; padding: 9px 12px; border-radius: 22px; }
  .brand span { display: block; max-width: none; font-size: 1.05rem; font-weight: 740; line-height: 1.12; }
  .site-header nav {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding-top: 6px;
    border-top: 1px solid rgb(255 255 255 / 12%);
  }
  .site-header nav a {
    min-height: 48px;
    padding: 6px 5px;
    border: 1px solid rgb(255 255 255 / 12%);
    border-radius: 11px;
    background: rgb(255 255 255 / 5%);
    font-size: 1rem;
    line-height: 1.05;
  }
  .site-header nav .nav-cta {
    width: min(100%, 250px);
    min-height: 48px;
    grid-column: 1 / -1;
    justify-self: center;
    margin: 2px 0 0;
    padding-inline: 20px;
    white-space: nowrap;
  }
  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    align-items: start;
    padding: 213px 24px 64px;
    background:
      linear-gradient(180deg, rgb(3 12 27 / 98%) 0%, rgb(5 18 40 / 84%) 39%, rgb(5 18 40 / 16%) 66%),
      linear-gradient(0deg, var(--navy-900) 0%, transparent 18%),
      image-set(url("../images/hero-cinematic-960.webp") type("image/webp"));
    background-position: 62% center;
  }
  .hero-copy { display: contents; }
  .hero-copy > * { position: relative; z-index: 5; grid-column: 1; }
  .hero-tester-kicker { grid-row: 1; margin-top: 18px; }
  .hero-copy h1 { grid-row: 2; }
  h1 { font-size: clamp(3rem, 14vw, 5rem); }
  .hero-lead { grid-row: 4; margin-top: 30px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; justify-items: center; }
  .hero-actions { grid-row: 5; }
  .hero-actions .button {
    width: fit-content;
    min-width: 0;
    max-width: 100%;
    padding-inline: clamp(24px, 8vw, 42px);
  }
  .hero-points { grid-row: 6; gap: 8px 18px; }
  .hero-scene { min-height: 690px; grid-row: 3; margin-top: 18px; }
  .hero-mascot { top: 0; left: -3%; width: min(56vw, 218px); }
  .phone-wrap { top: 72px; right: 50%; bottom: auto; width: min(68vw, 292px); transform: translateX(50%); }
  .motion-ready [data-hero-phone] { transform: translate3d(58%, 14%, 0) rotate(4deg) scale3d(.92, .92, 1); }
  .motion-ready.is-ready [data-hero-phone] { transform: translate3d(50%, 0, 0) rotate(0deg) scale3d(1, 1, 1); }
  .floating-tile { width: clamp(96px, 23vw, 118px); }
  .floating-tile img { width: 86%; height: 86%; }
  .tile-message img { width: 94%; height: 94%; }
  .tile-call { top: 36%; left: 0; }
  .tile-message { top: 12%; right: 0; }
  .tile-photo { right: 0; bottom: 10%; }
  .stage-glow { right: 5%; width: 90%; }
  .section-shell { width: min(calc(100% - 36px), var(--content)); }
  .problem,
  .features,
  .audiences,
  .faq { padding-block: 96px; }
  .forms-section { padding-block: 76px 96px; }
  .accessibility-section { padding: 72px 0 96px; }
  .section-heading h2 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .problem-intro { grid-template-columns: 1fr; gap: 18px; }
  .problem-mascot { min-height: 230px; }
  .problem-mascot img { width: min(100%, 560px); }
  .problem-lines { margin-top: 50px; }
  .problem-line { grid-template-columns: 64px minmax(0, 1fr); gap: 20px; padding: 28px 0; }
  .problem-line .problem-mark { width: 60px; height: 60px; border-radius: 19px; }
  .problem-mark svg { width: 40px; height: 40px; }
  .section-heading-wide { display: block; }
  .section-heading-wide > p:last-child { margin-top: 22px; }
  .feature-stage { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 1fr; gap: 14px; margin-top: 52px; }
  .feature-card { min-height: 334px; padding: 18px; border-radius: 22px; }
  .feature-icon { width: 106px; height: 106px; margin: -2px 0 8px -2px; }
  .feature-card h3 { font-size: clamp(1.38rem, 6.5vw, 1.72rem); line-height: 1.05; }
  .feature-card p { font-size: 1rem; line-height: 1.42; }
  .sos-band { grid-template-columns: 1fr; gap: 38px; padding: 34px 26px; text-align: center; }
  .audience-intro { grid-template-columns: 1fr; gap: 24px; }
  .audience-mascot { min-height: 250px; }
  .audience-mascot img { width: min(92vw, 560px); }
  .audience-list { grid-template-columns: 1fr; gap: 18px; margin-top: 44px; }
  .accessibility-hero { grid-template-columns: 1fr; gap: 24px; }
  .accessibility-mascot img { width: min(72vw, 380px); }
  .accessibility-copy h2 { font-size: clamp(2.7rem, 12vw, 4.2rem); }
  .accessibility-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 52px; }
  .accessibility-card {
    display: grid;
    min-height: 0;
    grid-template-columns: 96px minmax(0, 1fr);
    column-gap: 18px;
    align-items: start;
    padding: 24px;
  }
  .accessibility-icon {
    width: 96px;
    height: 96px;
    grid-column: 1;
    grid-row: 1;
    border-radius: 24px;
  }
  .accessibility-icon img { width: 84px; height: 84px; }
  .accessibility-card-heading {
    display: flex;
    min-height: 96px;
    grid-column: 2;
    grid-row: 1;
    flex-direction: column;
    justify-content: center;
  }
  .accessibility-card-label { margin: 0 0 7px; line-height: 1.25; }
  .accessibility-card h3 { font-size: clamp(1.55rem, 7vw, 2rem); }
  .accessibility-card > p:last-of-type,
  .contrast-demo { grid-column: 1 / -1; }
  .accessibility-card > p:last-of-type { margin-top: 18px; }
  .share-section { padding: 52px 0 36px; }
  .share-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 27px 24px;
    border-radius: 28px;
  }
  .share-icon { width: 78px; height: 78px; border-radius: 23px; }
  .share-icon svg { width: 52px; height: 52px; }
  .share-copy h2 { font-size: clamp(2.35rem, 10.5vw, 3.15rem); }
  .share-button { min-height: 64px; }
  .share-next { width: 100%; margin-top: 18px; padding-inline: 8px; }
  .pact { min-height: 700px; padding: 86px 18px; }
  .pact-frame { padding: 54px 27px; border-radius: 30px; }
  .pact-frame::before { inset: 10px; border-radius: 22px; }
  .pact-story { text-align: left; }
  .pact-frame blockquote { max-width: 100%; margin-inline: 0; }
  .pact-mascot { top: -166px; right: -20px; left: auto; width: 250px; transform: none; }
  .pact-tester-callout { margin-top: 184px; padding: 112px 22px 25px; border-radius: 22px; }
  .form-panel { padding: 30px 22px; border-radius: 28px; }
  .form-intro { grid-template-columns: 58px minmax(0, 1fr); gap: 18px; }
  .form-intro-copy { grid-column: 2; }
  .form-mascot { grid-row: auto; grid-column: 1 / -1; width: min(100%, var(--mascot-box)); margin: 12px auto 0; }
  .form-selector-prompt {
    display: block;
    margin: 0 0 12px;
    color: #9af1ed;
    font-size: 1rem;
    font-weight: 780;
    letter-spacing: .04em;
    text-transform: uppercase;
  }
  .form-selector {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 0 0 16px;
  }
  .form-choice {
    min-height: 0;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 13px;
    padding: 12px 14px;
    border-width: 1px;
    border-radius: 15px;
    background: linear-gradient(155deg, #0b2948, #071a31);
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 8%);
  }
  .form-choice:hover,
  .form-choice.is-active { transform: none; }
  .form-choice > span:first-child {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }
  .form-choice > span:nth-child(2) {
    display: grid;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 3px 12px;
    align-items: center;
  }
  .form-choice strong {
    grid-column: 1;
    font-size: 1.05rem;
    line-height: 1.12;
  }
  .form-choice small { display: none; }
  .form-choice-action {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin: 0;
    padding: 7px 9px;
    border: 1px solid rgb(147 242 237 / 38%);
    border-radius: 999px;
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
  }
  .form-choice-action::after { font-size: 19px; }
  .form-choice-action .action-long { display: none; }
  .form-choice-action .action-short { display: inline; }
  .form-choice.is-active {
    border: 2px solid var(--gold);
    border-left-width: 7px;
    background: linear-gradient(145deg, #164b69, #0c304e);
    box-shadow: 0 12px 28px rgb(0 5 18 / 22%), inset 0 1px 0 rgb(255 255 255 / 12%);
  }
  .form-choice.is-active .form-choice-action {
    border-color: var(--gold);
    background: var(--gold);
    color: #102743;
  }
  .form-choice-tester::after { display: none; }
  .choice-row,
  .choice-stack { grid-template-columns: 1fr; }
  .faq details p { padding-right: 0; }
  .site-footer { gap: 16px; padding-top: 40px; font-size: 19px; }
  .site-footer nav > span { display: none; }
  .legal-dialog { width: calc(100vw - 16px); height: calc(100dvh - 16px); border-radius: 20px; }
  .legal-dialog-header { min-height: 70px; padding: 10px 10px 10px 17px; }
  .legal-dialog-close { min-width: 54px; padding-inline: 12px; }
  .legal-dialog-close .legal-dialog-close-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
}

@media (max-width: 410px) {
  .brand { grid-template-columns: 138px minmax(0, 1fr); gap: 8px; }
  .brand img { width: 138px; height: 70px; padding: 9px 11px; border-radius: 21px; }
  .brand span { font-size: 1rem; line-height: 1.08; }
  .hero { min-height: 1110px; padding-inline: 18px; }
  .hero-scene { min-height: 680px; }
  .phone-wrap { width: 280px; }
  .floating-tile { width: 96px; border-radius: 24px; }
  .feature-stage { gap: 11px; }
  .feature-card { min-height: 326px; padding: 15px; }
  .feature-icon { width: 96px; height: 96px; }
  .audience-card { grid-template-columns: 1fr; }
  .form-panel { padding-inline: 18px; }
  .form-intro { position: relative; display: block; }
  .form-step { position: absolute; top: 0; left: 0; }
  .form-intro-copy { min-width: 0; }
  .form-intro-copy .eyebrow {
    display: flex;
    min-height: 58px;
    align-items: center;
    padding-left: 76px;
  }
  .form-intro h3 { font-size: 1.9rem; overflow-wrap: normal; }
  .form-mascot { width: min(100%, var(--mascot-box)); margin: 12px auto 0; }
  .form-mascot-tester { --mascot-box: 260px; }
  .form-mascot-updates { --mascot-box: 273px; }
  .form-mascot-entity { --mascot-box: 316px; }
}

@media (max-width: 360px) {
  .accessibility-card {
    grid-template-columns: 72px minmax(0, 1fr);
    column-gap: 12px;
    padding: 20px;
  }
  .accessibility-icon { width: 72px; height: 72px; border-radius: 20px; }
  .accessibility-icon img { width: 66px; height: 66px; }
  .accessibility-card-heading { min-height: 72px; }
  .contrast-demo { grid-template-columns: 52px 52px minmax(0, 1fr); gap: 6px; }
  .contrast-demo > span { width: 52px; height: 52px; border-radius: 14px; }
}

@media (max-width: 359px) {
  .feature-stage { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 14px; }
  .feature-card { min-height: 0; padding: 24px; }
  .feature-icon { width: 118px; height: 118px; }
  .feature-card h3 { font-size: 1.65rem; }
}

@media (max-width: 340px) {
  .hero { padding-top: 238px; }
  .accessibility-card { grid-template-columns: 1fr; row-gap: 14px; }
  .accessibility-icon { grid-column: 1; grid-row: 1; }
  .accessibility-card-heading {
    min-height: 0;
    grid-column: 1;
    grid-row: 2;
    justify-content: flex-start;
  }
  .form-choice { grid-template-columns: 42px minmax(0, 1fr); gap: 10px; padding: 10px; }
  .form-choice > span:first-child { width: 42px; height: 42px; }
  .form-choice > span:nth-child(2) { grid-template-columns: 1fr; gap: 5px; }
  .form-choice strong { grid-column: 1; grid-row: 1; font-size: 1rem; }
  .form-choice-action { grid-column: 1; grid-row: 2; justify-self: start; padding: 6px 9px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .motion-ready [data-hero-item],
  .motion-ready [data-hero-phone],
  .motion-ready [data-hero-mascot],
  .motion-ready [data-hero-tile],
  .motion-ready .reveal {
    opacity: 1 !important;
  }
  .motion-ready [data-hero-item],
  .motion-ready .reveal { transform: none !important; }
  .motion-ready [data-hero-phone] { transform: none !important; }
  .motion-ready [data-hero-mascot] { transform: none !important; }
  .motion-ready .feature-card:hover { transform: none !important; }
  .motion-ready [data-sos] .sos-pulse { display: none; }
  .button-tester::after,
  .form-choice-tester::after,
  .pact-tester-callout::after,
  .site-header .nav-cta.tester-attention::after {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

@media (forced-colors: active) {
  .button,
  .choice,
  .check,
  input,
  select,
  textarea,
  .feature-card,
  .form-panel,
  .pact-frame { border: 2px solid CanvasText; }
}

@media (max-width: 760px) and (prefers-reduced-motion: reduce) {
  .motion-ready [data-hero-phone] {
    transform: translateX(50%) !important;
  }
}

/*
 * Correzioni responsive v16.
 * Le sovrapposizioni scenografiche approvate restano intatte: qui si
 * correggono soltanto ritagli al viewport, collisioni che coprono funzioni
 * del telefono e trasformazioni di layout perse con il moto ridotto.
 */

/* Tra tablet e desktop la composizione e' corretta, ma usciva dal viewport. */
@media (min-width: 1025px) and (max-width: 1365px) {
  .hero-scene {
    transform: translateX(clamp(-38px, -3vw, -28px));
  }
}

/* Il meteo resta sovrapposto al telefono, ma interamente dentro il viewport. */
@media (min-width: 1025px) and (max-width: 1439px) {
  .tile-photo {
    right: -6%;
  }
}

/* Il moto ridotto non deve annullare la traslazione usata per centrare il telefono. */
@media (min-width: 761px) and (max-width: 1024px) and (orientation: portrait) and (prefers-reduced-motion: reduce) {
  .motion-ready [data-hero-phone] {
    transform: translateX(50%) !important;
  }
}

/*
 * Telefoni compatti: la stessa scena approvata viene ricomposta senza
 * coprire tasti, freccia o SOS. Le tre tessere restano visibili in primo piano.
 */
@media (max-width: 360px) {
  .hero-scene {
    min-height: 820px;
  }

  .hero-mascot {
    top: 0;
    left: 0;
    width: 145px;
  }

  .phone-wrap {
    top: 120px;
    width: 260px;
  }

  .floating-tile {
    top: auto;
    bottom: 0;
    width: 78px;
    border-radius: 22px;
  }

  .tile-call {
    left: 0;
  }

  .tile-message {
    right: auto;
    left: calc(50% - 39px);
  }

  .tile-photo {
    right: 0;
  }
}

/*
 * Su schermi molto larghi il progetto non deve restare congelato a 1240 px.
 * La crescita parte senza salto percettibile da 2560 px e raggiunge in 4K
 * proporzioni vicine alla composizione desktop approvata.
 */
@media (min-width: 2400px) {
  :root {
    --content: clamp(1240px, calc(100vw - 1280px), 2520px);
  }

  html {
    font-size: clamp(18px, .7vw, 27px);
  }

  .site-header {
    top: clamp(22px, 1.15vw, 44px);
    min-height: clamp(106px, 5.5vw, 198px);
    gap: clamp(28px, 2vw, 64px);
    padding: clamp(10px, .75vw, 28px) clamp(14px, 1vw, 38px);
    border-radius: clamp(26px, 1.4vw, 48px);
  }

  .brand {
    min-height: clamp(80px, 4.2vw, 150px);
    gap: clamp(18px, 1.2vw, 42px);
  }

  .brand img {
    width: clamp(170px, 8vw, 290px);
    height: clamp(80px, 4.2vw, 150px);
    padding: clamp(10px, .65vw, 24px) clamp(13px, .8vw, 28px);
    border-width: clamp(3px, .12vw, 5px);
    border-radius: clamp(24px, 1.25vw, 44px);
  }

  .brand span {
    max-width: 390px;
  }

  .site-header nav {
    gap: clamp(6px, .45vw, 16px);
  }

  .site-header nav a {
    min-height: clamp(50px, 2.7vw, 94px);
    padding: clamp(10px, .7vw, 24px) clamp(16px, 1vw, 36px);
    border-radius: clamp(15px, .8vw, 28px);
  }

  .hero {
    min-height: 100vh;
    grid-template-columns: minmax(0, 1fr) minmax(760px, .82fr);
    padding-top: clamp(190px, 8vw, 310px);
    padding-bottom: clamp(110px, 5vw, 190px);
  }

  .hero-copy {
    max-width: 1180px;
    padding-block: clamp(72px, 5vw, 170px);
  }

  h1 {
    max-width: 1180px;
  }

  .hero-lead {
    max-width: 940px;
  }

  .hero-scene {
    min-height: clamp(980px, 44vw, 1660px);
  }

  .hero-mascot {
    left: -9%;
    width: clamp(285px, 11vw, 430px);
  }

  .phone-wrap {
    right: clamp(18px, 2vw, 76px);
    width: clamp(410px, 18vw, 690px);
  }

  .floating-tile {
    width: clamp(126px, 5.2vw, 200px);
  }

  .problem,
  .features,
  .audiences,
  .accessibility-section,
  .faq {
    padding-block: clamp(150px, 7vw, 260px);
  }

  .section-heading {
    max-width: 1180px;
  }

  .problem-intro .section-heading {
    max-width: 1080px;
  }

  .problem-mascot {
    min-height: clamp(480px, 25vw, 900px);
  }

  .problem-mascot img,
  .audience-mascot img {
    width: min(100%, 1120px);
  }

  .problem-line p {
    max-width: 1540px;
  }

  .feature-stage {
    gap: clamp(28px, 1.7vw, 60px);
    margin-top: clamp(90px, 4vw, 150px);
  }

  .feature-card {
    min-height: clamp(420px, 18vw, 650px);
    padding: clamp(36px, 2vw, 70px);
  }

  .feature-icon {
    width: clamp(180px, 8vw, 280px);
    height: clamp(180px, 8vw, 280px);
  }

  .sos-band {
    gap: clamp(54px, 3vw, 110px);
    padding: clamp(60px, 3vw, 110px);
  }

  .audience-mascot {
    min-height: clamp(480px, 25vw, 900px);
  }

  .audience-card {
    min-height: clamp(240px, 11vw, 400px);
    grid-template-columns: clamp(76px, 4vw, 140px) minmax(0, 1fr);
    gap: clamp(24px, 1.4vw, 48px);
    padding: clamp(36px, 2vw, 72px);
  }

  .audience-card > span {
    width: clamp(68px, 3.6vw, 124px);
    height: clamp(68px, 3.6vw, 124px);
  }

  .accessibility-mascot img {
    width: min(100%, 720px);
  }

  .accessibility-grid {
    gap: clamp(28px, 1.7vw, 60px);
    margin-top: clamp(90px, 4vw, 150px);
  }

  .accessibility-card {
    min-height: clamp(460px, 20vw, 720px);
    padding: clamp(38px, 2vw, 72px);
  }

  .accessibility-icon {
    width: clamp(150px, 7vw, 250px);
    height: clamp(150px, 7vw, 250px);
  }

  .accessibility-icon img {
    width: 88%;
    height: 88%;
  }

  .pact {
    padding-block: clamp(180px, 8vw, 300px);
  }

  .pact-frame {
    width: min(100%, 2140px);
    padding: clamp(90px, 5vw, 170px);
  }

  .pact-frame blockquote {
    max-width: min(1220px, calc(100% - 620px));
  }

  .pact-mascot {
    top: clamp(-350px, -12vw, -240px);
    width: clamp(420px, 15vw, 570px);
  }

  .pact-tester-callout {
    margin-top: clamp(110px, 5vw, 180px);
    padding: clamp(46px, 2.2vw, 82px) clamp(620px, 25vw, 760px) clamp(46px, 2.2vw, 82px) clamp(48px, 3vw, 100px);
  }

  .share-section {
    padding-block: clamp(100px, 4vw, 150px) clamp(72px, 3vw, 120px);
  }

  .share-card {
    grid-template-columns: clamp(110px, 5vw, 180px) minmax(0, 1fr) minmax(480px, .6fr);
    gap: clamp(38px, 2vw, 72px);
    padding: clamp(58px, 3vw, 110px);
  }

  .share-icon {
    width: clamp(110px, 5vw, 180px);
    height: clamp(110px, 5vw, 180px);
  }

  .share-icon svg {
    width: 66%;
    height: 66%;
  }

  .forms-section {
    padding-block: clamp(140px, 6vw, 230px) clamp(190px, 8vw, 310px);
  }

  .forms-heading {
    max-width: 1440px;
    margin-bottom: clamp(64px, 3vw, 110px);
  }

  .form-selector {
    gap: clamp(18px, 1vw, 36px);
    margin-inline: clamp(18px, 1vw, 36px);
  }

  .form-choice {
    min-height: clamp(150px, 7vw, 250px);
    grid-template-columns: clamp(64px, 3vw, 108px) minmax(0, 1fr);
    gap: clamp(18px, 1vw, 36px);
    padding: clamp(24px, 1.3vw, 48px);
  }

  .form-choice > span:first-child {
    width: clamp(64px, 3vw, 108px);
    height: clamp(64px, 3vw, 108px);
  }

  .form-panel {
    grid-template-columns: minmax(620px, .9fr) minmax(0, 1.1fr);
    gap: clamp(80px, 5vw, 180px);
    padding: clamp(90px, 5vw, 180px);
  }

  .form-step {
    width: clamp(78px, 3.5vw, 126px);
    height: clamp(78px, 3.5vw, 126px);
  }

  .form-mascot-tester { --mascot-box: 520px; }
  .form-mascot-updates { --mascot-box: 550px; }
  .form-mascot-entity { --mascot-box: 620px; }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select,
  textarea {
    min-height: clamp(64px, 3vw, 108px);
    padding: clamp(16px, .9vw, 32px);
  }

  textarea {
    min-height: clamp(160px, 7vw, 260px);
  }

  .faq-shell {
    gap: clamp(100px, 6vw, 220px);
  }

  .faq details p {
    max-width: 1200px;
  }

  .site-footer {
    gap: clamp(18px, 1vw, 36px);
    padding-top: clamp(58px, 2.5vw, 96px);
    padding-bottom: clamp(64px, 3vw, 112px);
  }
}

/* Smartphone ruotati con viewport CSS entro 760 px. */
@media (max-width: 760px) and (orientation: landscape) {
  html {
    scroll-padding-top: 94px;
  }

  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    grid-template-columns: minmax(230px, .9fr) minmax(0, 1.1fr);
    gap: 8px;
    padding: 6px 8px;
    border-radius: 20px;
  }

  .brand {
    min-height: 60px;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 8px;
    padding: 0;
  }

  .brand img {
    width: 118px;
    height: 58px;
    padding: 7px 9px;
    border-radius: 18px;
  }

  .brand span {
    font-size: .92rem;
    line-height: 1.05;
  }

  .site-header nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    padding-top: 0;
    border-top: 0;
  }

  .site-header nav a,
  .site-header nav .nav-cta {
    width: auto;
    min-height: 48px;
    grid-column: auto;
    margin: 0;
    padding: 5px 4px;
    font-size: .9rem;
    line-height: 1;
    white-space: normal;
  }

  .hero {
    min-height: 760px;
    grid-template-columns: minmax(0, 1fr) minmax(230px, .68fr);
    align-items: start;
    padding: 104px 24px 48px;
  }

  .hero-copy {
    display: block;
    max-width: 470px;
    padding: 22px 0 38px;
  }

  .hero-copy > * {
    position: relative;
    grid-column: auto;
  }

  .hero-tester-kicker {
    margin-top: 0;
  }

  .hero-copy h1,
  h1 {
    font-size: clamp(2.55rem, 7.2vw, 3.35rem);
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 1rem;
  }

  .hero-actions {
    display: flex;
    justify-items: initial;
    gap: 10px;
    margin-top: 24px;
  }

  .hero-actions .button {
    min-height: 50px;
    padding: 10px 16px;
  }

  .hero-points {
    gap: 6px 14px;
    margin-top: 22px;
  }

  .hero-scene {
    min-height: 620px;
    grid-row: auto;
    margin-top: 0;
  }

  .hero-mascot {
    top: 0;
    left: calc(50% - 65px);
    width: 130px;
  }

  .phone-wrap {
    top: 104px;
    right: 50%;
    width: min(31vw, 230px);
    transform: translateX(50%);
  }

  .motion-ready [data-hero-phone],
  .motion-ready.is-ready [data-hero-phone] {
    transform: translateX(50%);
  }

  .floating-tile {
    display: none;
  }
}
