:root {
  --turquoise: #007f9b;
  --turquoise-dark: #006d86;
  --turquoise-soft: #dff8fc;
  --yellow: #f5bd18;
  --yellow-soft: #fff2bd;
  --orange: #c64e00;
  --orange-soft: #ffe6d5;
  --green: #3a944b;
  --green-soft: #e2f3e4;
  --ink: #17223f;
  --ink-soft: #4b5267;
  --cream: #fffdf7;
  --paper: #ffffff;
  --line: #dce5e8;
  --shadow: 0 24px 70px rgba(23, 34, 63, 0.13);
  --radius-large: 38px;
  --radius-medium: 24px;
  --container: 1180px;
  --font-display: ui-rounded, "SF Pro Rounded", "Arial Rounded MT Bold", "Avenir Next", system-ui, sans-serif;
  --font-body: "Avenir Next", Avenir, "Segoe UI", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(23, 34, 63, 0.08);
  background: rgba(255, 253, 247, 0.98);
  box-shadow: 0 8px 30px rgba(23, 34, 63, 0.06);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  color: var(--turquoise);
}

.brand-mark svg {
  overflow: visible;
}

.brand-mark path:first-child {
  fill: currentColor;
  stroke: none;
}

.brand-mark .brand-mark-smile {
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
}

.brand-type {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
}

.brand-type span {
  color: var(--orange);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav > a:not(.button) {
  position: relative;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--turquoise);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  border-radius: 14px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 6px 20px rgba(23, 34, 63, 0.09);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 4px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 2px solid var(--turquoise);
  border-radius: 16px;
  color: #fff;
  background: var(--turquoise);
  box-shadow: 0 11px 24px rgba(8, 169, 200, 0.22);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--turquoise-dark);
  box-shadow: 0 14px 30px rgba(8, 169, 200, 0.3);
  transform: translateY(-2px);
}

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

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: 0 11px 24px rgba(23, 34, 63, 0.18);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: #273456;
  box-shadow: 0 14px 30px rgba(23, 34, 63, 0.24);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 800;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.text-link span {
  color: var(--turquoise);
  font-size: 20px;
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateY(3px);
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 150px 0 82px;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: clamp(46px, 7vw, 96px);
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--turquoise-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  display: block;
  width: 24px;
  height: 4px;
  border-radius: 99px;
  background: var(--yellow);
  transform: rotate(-4deg);
}

.eyebrow-orange {
  color: #c94e00;
}

.eyebrow-orange > span {
  background: var(--orange);
}

.eyebrow-green {
  color: var(--green);
}

.eyebrow-green > span {
  background: var(--green);
}

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

.eyebrow-light > span {
  background: var(--yellow);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--font-display);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

h1 {
  max-width: 690px;
  margin-bottom: 28px;
  font-size: clamp(54px, 6.5vw, 92px);
}

h1 em {
  position: relative;
  color: var(--turquoise);
  font-style: normal;
  white-space: nowrap;
}

h1 em::after {
  position: absolute;
  right: 1%;
  bottom: -8px;
  left: 3%;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
  opacity: 0.9;
  transform: rotate(-1.5deg) scaleY(0.45);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(40px, 5vw, 64px);
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

.hero-lead {
  max-width: 610px;
  margin: 0 0 34px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-facts {
  display: flex;
  max-width: 580px;
  padding: 0;
  margin: 48px 0 0;
  list-style: none;
}

.hero-facts li {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 10px;
  padding-right: 20px;
  border-right: 1px solid var(--line);
  margin-right: 20px;
}

.hero-facts li:last-child {
  padding-right: 0;
  border-right: 0;
  margin-right: 0;
}

.hero-facts strong {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 29px;
  line-height: 1;
}

.hero-facts span {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  max-width: 500px;
  justify-self: end;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  border: 8px solid var(--paper);
  border-radius: 46% 46% 42% 18% / 18% 35% 22% 35%;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.photo-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 68%, rgba(23, 34, 63, 0.16));
  content: "";
  pointer-events: none;
}

.photo-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 16px;
  border: 5px solid var(--paper);
  border-radius: 18px;
  box-shadow: 0 16px 35px rgba(23, 34, 63, 0.18);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.floating-card-free {
  top: 10%;
  left: -48px;
  color: var(--ink);
  background: var(--yellow);
  transform: rotate(-5deg);
}

.floating-card-free strong {
  font-family: var(--font-display);
  font-size: 19px;
}

.floating-icon {
  font-size: 26px;
}

.floating-card-place {
  right: -26px;
  bottom: 8%;
  color: #fff;
  background: var(--orange);
  transform: rotate(3deg);
}

.floating-card-place svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.photo-doodle {
  position: absolute;
  z-index: -1;
  right: -42px;
  bottom: -36px;
  width: 120px;
  height: 120px;
  border: 12px solid var(--turquoise);
  border-radius: 50%;
  opacity: 0.23;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-shape-one {
  top: -180px;
  right: -220px;
  width: 660px;
  height: 660px;
  background: var(--turquoise-soft);
}

.hero-shape-two {
  bottom: -240px;
  left: -320px;
  width: 620px;
  height: 620px;
  border: 100px solid var(--yellow-soft);
  opacity: 0.75;
}

.phrase-strip {
  position: relative;
  z-index: 4;
  color: #fff;
  background: var(--turquoise);
  transform: rotate(-1deg) scale(1.02);
}

.phrase-strip-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 25px);
  font-weight: 850;
  letter-spacing: -0.02em;
}

.phrase-strip i {
  color: var(--yellow);
  font-style: normal;
}

.section {
  padding: 120px 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 58px;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 19px;
}

.experience {
  padding-top: 150px;
}

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

.feature-card {
  position: relative;
  min-height: 360px;
  padding: 34px 28px 28px;
  overflow: hidden;
  border-radius: var(--radius-medium);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.feature-card:hover {
  box-shadow: 0 18px 40px rgba(23, 34, 63, 0.1);
  transform: translateY(-7px) rotate(-0.4deg);
}

.feature-turquoise {
  background: var(--turquoise-soft);
}

.feature-yellow {
  background: var(--yellow-soft);
}

.feature-orange {
  background: var(--orange-soft);
}

.feature-green {
  background: var(--green-soft);
}

.feature-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(23, 34, 63, 0.24);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
}

.feature-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #fff;
  margin-bottom: 42px;
}

.feature-turquoise .feature-icon {
  background: var(--turquoise);
}

.feature-yellow .feature-icon {
  color: var(--ink);
  background: var(--yellow);
}

.feature-orange .feature-icon {
  background: var(--orange);
}

.feature-green .feature-icon {
  background: var(--green);
}

.feature-icon svg {
  width: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.feature-card h3 {
  font-size: 24px;
}

.feature-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.how {
  background: #fff;
}

.how-grid {
  display: grid;
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1fr);
}

.conversation-art {
  position: relative;
  min-height: 560px;
  border-radius: 44px;
  background: var(--turquoise-soft);
  overflow: hidden;
}

.speech {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  min-height: 72px;
  align-items: center;
  padding: 16px 24px;
  border: 5px solid #fff;
  border-radius: 25px 25px 25px 5px;
  box-shadow: 0 16px 34px rgba(23, 34, 63, 0.12);
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 31px);
  font-weight: 850;
  line-height: 1.05;
}

.speech-one {
  top: 60px;
  left: 42px;
  color: #fff;
  background: var(--turquoise);
  transform: rotate(-5deg);
}

.speech-two {
  top: 180px;
  right: 26px;
  color: var(--ink);
  background: var(--yellow);
  transform: rotate(4deg);
}

.speech-three {
  bottom: 154px;
  left: 30px;
  color: #fff;
  background: var(--orange);
  transform: rotate(2deg);
}

.speech-four {
  right: 48px;
  bottom: 48px;
  color: #fff;
  background: var(--green);
  transform: rotate(-4deg);
}

.conversation-sun {
  position: absolute;
  top: -60px;
  right: -70px;
  width: 220px;
  height: 220px;
  border: 44px solid var(--yellow);
  border-radius: 50%;
  opacity: 0.4;
}

.conversation-line {
  position: absolute;
  bottom: -150px;
  left: -120px;
  width: 380px;
  height: 380px;
  border: 54px solid var(--turquoise);
  border-radius: 50%;
  opacity: 0.16;
}

.how-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.steps {
  padding: 0;
  margin: 42px 0 38px;
  list-style: none;
}

.steps li {
  display: grid;
  gap: 18px;
  grid-template-columns: 48px 1fr;
  padding: 0 0 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.steps li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.steps li > span {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--turquoise);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
}

.steps h3 {
  margin-bottom: 7px;
  font-size: 21px;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.level-band {
  position: relative;
  padding: 86px 0;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
}

.level-band::after {
  position: absolute;
  top: -240px;
  right: -140px;
  width: 500px;
  height: 500px;
  border: 90px solid var(--turquoise);
  border-radius: 50%;
  content: "";
  opacity: 0.16;
}

.level-band-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: end;
  gap: 80px;
  grid-template-columns: 1fr 0.85fr;
}

.level-band h2 {
  max-width: 700px;
  margin-bottom: 0;
  font-size: clamp(36px, 4vw, 55px);
}

.level-band-inner > p {
  margin: 0;
  color: #cfd6e4;
  font-size: 17px;
}

.signup {
  position: relative;
  background: var(--turquoise-soft);
}

.signup-grid {
  display: grid;
  align-items: start;
  gap: clamp(50px, 8vw, 100px);
  grid-template-columns: minmax(300px, 0.72fr) minmax(480px, 1fr);
}

.signup-copy {
  position: sticky;
  top: 130px;
  padding-top: 34px;
}

.signup-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 18px;
}

.signup-points {
  padding: 0;
  margin: 34px 0;
  list-style: none;
}

.signup-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 13px 0;
  font-size: 15px;
  font-weight: 750;
}

.signup-points li span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 13px;
}

.email-card {
  padding: 19px 21px;
  border: 1px solid rgba(8, 169, 200, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.email-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-size: 12px;
}

.email-card a {
  color: var(--turquoise-dark);
  font-size: 14px;
  font-weight: 800;
  text-underline-offset: 4px;
}

.form-card {
  padding: 16px 16px 24px;
  border: 1px solid rgba(23, 34, 63, 0.08);
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-card-top {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 10px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 850;
}

.form-card-top small {
  padding: 5px 9px;
  border-radius: 99px;
  color: var(--turquoise-dark);
  background: var(--turquoise-soft);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
}

.jotform-frame {
  width: 100%;
  height: 1050px;
  min-height: 760px;
  display: block;
  border: 0;
  background: #fff;
}

.form-privacy,
.form-fallback {
  max-width: 620px;
  margin: 10px auto 0;
  color: #6b7182;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.form-privacy a,
.form-fallback a {
  text-underline-offset: 3px;
}

.faq {
  background: #fff;
}

.faq-grid {
  display: grid;
  align-items: start;
  gap: clamp(60px, 10vw, 140px);
  grid-template-columns: 0.68fr 1fr;
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.faq-intro > p:not(.eyebrow) {
  color: var(--ink-soft);
}

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

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

.faq-list summary {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -0.025em;
  list-style: none;
}

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

.faq-list summary span {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--turquoise);
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 400;
  transition: transform 180ms ease;
}

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

.faq-list details p {
  max-width: 650px;
  padding: 0 54px 30px 0;
  margin: -5px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.site-footer {
  padding: 80px 0 28px;
  color: #fff;
  background: var(--ink);
}

.footer-top {
  display: grid;
  gap: 60px;
  grid-template-columns: 1.3fr 0.7fr 0.9fr;
  padding-bottom: 58px;
}

.brand-footer .brand-type {
  color: #fff;
}

.footer-top > div:first-child > p {
  max-width: 390px;
  margin: 18px 0 0;
  color: #bac4d7;
  font-size: 15px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}

.footer-links a,
.footer-contact a {
  color: #e6e9f0;
  text-underline-offset: 4px;
  text-decoration-color: transparent;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-links a:focus-visible,
.footer-contact a:focus-visible {
  color: var(--yellow);
  text-decoration-color: currentColor;
}

.footer-contact span {
  margin-bottom: 5px;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 850;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #8f9bb2;
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  min-height: 100vh;
  padding: 150px 0 100px;
}

.legal-card {
  max-width: 820px;
  padding: clamp(30px, 6vw, 70px);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 18px 60px rgba(23, 34, 63, 0.08);
}

.legal-card h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 68px);
}

.legal-card h2 {
  margin: 42px 0 14px;
  font-size: 26px;
}

.legal-card p,
.legal-card li {
  color: var(--ink-soft);
  font-size: 15px;
}

.legal-back {
  margin-top: 38px;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 0;
  text-align: center;
}

.error-page h1 {
  margin-bottom: 12px;
}

.error-page p {
  color: var(--ink-soft);
}

@media (max-width: 1020px) {
  .hero-grid {
    gap: 52px;
    grid-template-columns: 1fr 0.78fr;
  }

  h1 {
    font-size: clamp(50px, 7.2vw, 74px);
  }

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

  .feature-card {
    min-height: 320px;
  }

  .signup-grid {
    gap: 50px;
    grid-template-columns: 0.68fr 1fr;
  }
}

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

  .nav-toggle {
    z-index: 102;
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 26px;
    background: rgba(255, 253, 247, 0.98);
    font-family: var(--font-display);
    font-size: 27px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav .button-small {
    min-height: 52px;
    padding-inline: 24px;
    font-family: var(--font-body);
    font-size: 15px;
  }

  .hero {
    padding-top: 132px;
  }

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

  .hero-copy {
    max-width: 690px;
  }

  .hero-visual {
    width: min(85%, 500px);
    justify-self: center;
  }

  .phrase-strip-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding-block: 20px;
  }

  .how-grid,
  .signup-grid,
  .faq-grid,
  .level-band-inner {
    grid-template-columns: 1fr;
  }

  .how-grid {
    gap: 60px;
  }

  .conversation-art {
    min-height: 500px;
  }

  .level-band-inner {
    gap: 30px;
  }

  .signup-copy,
  .faq-intro {
    position: static;
    max-width: 680px;
  }

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

  .footer-top > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

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

  .header-inner {
    min-height: 76px;
  }

  .brand-mark {
    width: 34px;
  }

  .brand-type {
    font-size: 21px;
  }

  .hero {
    min-height: 0;
    padding: 116px 0 74px;
  }

  h1 {
    font-size: clamp(45px, 13vw, 64px);
  }

  h1 em {
    white-space: normal;
  }

  h2 {
    font-size: clamp(36px, 10vw, 47px);
  }

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

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

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-facts {
    justify-content: space-between;
  }

  .hero-facts li {
    display: block;
    padding-right: 10px;
    margin-right: 10px;
  }

  .hero-facts strong,
  .hero-facts span {
    display: block;
  }

  .hero-facts strong {
    margin-bottom: 8px;
    font-size: 25px;
  }

  .hero-visual {
    width: calc(100% - 16px);
    margin-top: 10px;
  }

  .photo-frame {
    border-width: 6px;
    border-radius: 38% 38% 32% 14% / 13% 28% 18% 28%;
  }

  .floating-card {
    border-width: 4px;
    font-size: 11px;
  }

  .floating-card-free {
    top: 6%;
    left: -10px;
  }

  .floating-card-place {
    right: -10px;
    bottom: 6%;
  }

  .phrase-strip-inner {
    gap: 8px 12px;
    font-size: 16px;
  }

  .phrase-strip {
    transform: none;
  }

  .section {
    padding: 86px 0;
  }

  .experience {
    padding-top: 112px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading > p:last-child {
    font-size: 16px;
  }

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

  .feature-card {
    min-height: 290px;
  }

  .feature-icon {
    margin-bottom: 34px;
  }

  .conversation-art {
    min-height: 420px;
    border-radius: 30px;
  }

  .speech {
    min-height: 58px;
    padding: 13px 17px;
    border-width: 4px;
    border-radius: 18px 18px 18px 4px;
    font-size: 20px;
  }

  .speech-one {
    top: 45px;
    left: 18px;
  }

  .speech-two {
    top: 145px;
    right: 12px;
  }

  .speech-three {
    bottom: 115px;
    left: 14px;
  }

  .speech-four {
    right: 22px;
    bottom: 35px;
  }

  .level-band {
    padding: 70px 0;
  }

  .signup-grid,
  .faq-grid {
    gap: 46px;
  }

  .form-card {
    padding: 10px 8px 20px;
    border-radius: 24px;
  }

  .jotform-frame {
    height: 1320px;
    min-height: 900px;
  }

  .faq-list summary {
    min-height: 82px;
    font-size: 18px;
  }

  .footer-top {
    gap: 40px;
    grid-template-columns: 1fr;
  }

  .footer-top > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

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

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

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