:root {
  --navy: #061832;
  --navy-2: #0d274b;
  --navy-3: #143763;
  --ink: #142033;
  --muted: #637084;
  --gold: #c7a04b;
  --gold-soft: #f2dfa5;
  --paper: #f5f7fb;
  --white: #ffffff;
  --slate: #e7ecf4;
  --line: rgba(6, 24, 50, 0.12);
  --line-dark: rgba(255, 255, 255, 0.16);
  --danger: #b43737;
  --ok: #24714a;
  --shadow: 0 22px 54px rgba(6, 24, 50, 0.16);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 82px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

body.is-submitting {
  cursor: wait;
}

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

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

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

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 66px;
  padding: 10px max(16px, calc((100vw - var(--max)) / 2));
  padding-inline: clamp(16px, 4vw, 44px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 24, 50, 0.96);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.brand-symbol {
  display: inline-grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(242, 223, 165, 0.72);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(242, 223, 165, 0.2), rgba(255, 255, 255, 0.04));
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-text {
  display: grid;
  min-width: 0;
  line-height: 1.12;
}

.brand-text strong {
  overflow: hidden;
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 860;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-text small {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quick-nav {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 780;
  white-space: nowrap;
}

.quick-nav a {
  padding: 8px 7px;
  border-radius: 6px;
}

.quick-nav a:hover,
.quick-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.09);
  color: var(--gold-soft);
}

.hero,
.section,
.site-footer {
  padding-inline: clamp(18px, 5vw, 48px);
}

.hero {
  position: relative;
  display: grid;
  gap: 22px;
  padding-top: clamp(24px, 6vw, 70px);
  padding-bottom: clamp(34px, 7vw, 78px);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(199, 160, 75, 0.2), transparent 30%),
    linear-gradient(140deg, #061832 0%, #0d274b 58%, #17345c 100%);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.12));
  pointer-events: none;
}

.hero-copy,
.hero-photo,
.section > *,
.site-footer > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 880;
}

.eyebrow.dark {
  color: #8b681b;
}

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

h1,
h2,
h3 {
  line-height: 1.16;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 8vw, 4.25rem);
  font-weight: 920;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.68rem, 6vw, 3.25rem);
  font-weight: 880;
}

h3 {
  font-size: 1.08rem;
  font-weight: 840;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.urgency-pill {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  margin-bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(242, 223, 165, 0.42);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.86);
}

.urgency-pill strong {
  color: var(--gold-soft);
  font-weight: 920;
}

.urgency-pill span {
  font-size: 0.9rem;
  font-weight: 760;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(242, 223, 165, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 760;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-width: 680px;
  margin-bottom: 18px;
}

.trust-badges span {
  min-height: 44px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 790;
}

.hero-actions {
  display: grid;
  gap: 10px;
}

.hero-actions p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 14px 20px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 880;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: #111827;
  box-shadow: 0 16px 36px rgba(199, 160, 75, 0.26);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gold-soft);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.68;
}

.hero-photo {
  align-self: center;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(242, 223, 165, 0.28);
  border-radius: var(--radius);
  background: #d9dde4;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

.hero-photo figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 2px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(6, 24, 50, 0.78);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

.hero-photo figcaption strong {
  font-size: 1rem;
  line-height: 1.2;
}

.hero-photo figcaption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.section {
  padding-top: clamp(54px, 8vw, 88px);
  padding-bottom: clamp(54px, 8vw, 88px);
}

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

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
}

.truth,
.route,
.jane,
.faq,
.social-proof {
  background: var(--white);
}

.briefing-banner {
  padding-top: clamp(28px, 5vw, 56px);
  padding-bottom: clamp(28px, 5vw, 56px);
  background: linear-gradient(180deg, #ffffff, #eef2f8);
}

.briefing-card {
  display: grid;
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(199, 160, 75, 0.34);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(6, 24, 50, 0.12);
}

.briefing-card h2 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: clamp(1.75rem, 6vw, 3rem);
}

.briefing-time {
  margin: 0;
  color: var(--navy-2);
  font-size: clamp(1.05rem, 3.6vw, 1.35rem);
  font-weight: 860;
}

.briefing-details {
  display: grid;
  gap: 10px;
  margin: 0;
}

.briefing-details div {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9fbff;
}

.briefing-details dt {
  margin-bottom: 2px;
  color: #8b681b;
  font-size: 0.78rem;
  font-weight: 900;
}

.briefing-details dd {
  margin: 0;
  color: var(--navy);
  font-weight: 820;
}

.work-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: var(--max);
  margin: 0 auto;
}

.work-flow div {
  min-height: 96px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfe;
}

.work-flow span {
  display: block;
  margin-bottom: 12px;
  color: #8b681b;
  font-size: 0.76rem;
  font-weight: 920;
}

.work-flow strong {
  display: block;
  color: var(--navy);
}

.photo-strip {
  display: grid;
  gap: 12px;
  max-width: var(--max);
  margin: 22px auto 0;
}

.photo-strip img,
.support-grid img,
.jane-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(6, 24, 50, 0.12);
}

.photo-landscape,
.photo-strip img.photo-landscape,
.support-grid img.photo-landscape {
  aspect-ratio: 4 / 3;
}

.photo-portrait,
.photo-strip img.photo-portrait,
.support-grid img.photo-portrait {
  aspect-ratio: 3 / 4;
}

.photo-focus-top {
  object-position: center 12%;
}

.photo-focus-center {
  object-position: center 35%;
}

.fit,
.support {
  background: var(--navy);
  color: var(--white);
}

.fit-grid {
  display: grid;
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
}

.fit-panel {
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.fit-panel h3 {
  margin-bottom: 14px;
}

.fit-panel ul,
.credential-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-panel li,
.credential-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}

.fit-panel li::before,
.credential-list li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  font-weight: 920;
}

.not-fit li::before {
  content: "x";
  color: #ffb3b3;
}

.yes-fit li::before,
.credential-list li::before {
  content: "+";
  color: var(--gold-soft);
}

.timeline {
  display: grid;
  gap: 12px;
  max-width: var(--max);
  margin: 0 auto;
}

.timeline article {
  min-height: 142px;
  padding: 20px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #fbfcfe;
}

.timeline span {
  display: inline-block;
  margin-bottom: 12px;
  color: #8b681b;
  font-size: 0.82rem;
  font-weight: 920;
}

.timeline h3,
.support-grid h3 {
  margin-bottom: 0;
}

.disclaimer {
  max-width: var(--max);
  margin: 18px auto 0;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(199, 160, 75, 0.14);
  color: #5f4715;
  font-size: 0.92rem;
}

.support-copy {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.support-grid {
  display: grid;
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
}

.support-grid article {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.support-grid img {
  border-radius: 0;
  box-shadow: none;
}

.support-grid h3 {
  padding: 16px;
}

.social-proof {
  background: linear-gradient(180deg, #ffffff, #f4f7fb);
}

.proof-grid {
  display: grid;
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
}

.proof-grid article {
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfe;
  box-shadow: 0 12px 28px rgba(6, 24, 50, 0.08);
}

.proof-grid img,
.zoom-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.proof-grid img {
  box-shadow: none;
}

.proof-grid span,
.proof-grid h3,
.proof-grid p {
  margin-inline: 16px;
}

.proof-grid span {
  display: inline-flex;
  margin-top: 14px;
  color: #8b681b;
  font-size: 0.8rem;
  font-weight: 920;
}

.proof-grid h3 {
  margin-top: 7px;
  margin-bottom: 16px;
  color: var(--navy);
}

.testimonial-proof {
  display: grid;
  align-content: center;
  padding: 20px 0;
  background: var(--navy);
  color: var(--white);
}

.testimonial-proof p {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  font-weight: 760;
}

.testimonial-proof span,
.testimonial-proof h3 {
  color: var(--gold-soft);
}

.zoom-frame {
  padding: 14px;
  background: linear-gradient(145deg, #0d274b, #162f53);
}

.zoom-topbar {
  width: 100%;
  height: 18px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.zoom-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  height: calc(100% - 30px);
}

.zoom-tiles span {
  min-height: 0;
  margin: 0;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)),
    rgba(255, 255, 255, 0.12);
}

.jane {
  display: grid;
  gap: 24px;
}

.jane-image {
  aspect-ratio: 3 / 4;
  object-position: center 12%;
}

.jane-copy {
  align-self: center;
}

.jane-copy blockquote {
  margin: 22px 0 0;
  padding: 20px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #f6f8fb;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 760;
}

.apply {
  background:
    linear-gradient(180deg, #eef2f8, #ffffff);
}

.apply-intro {
  display: grid;
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto 28px;
}

.apply-note {
  align-self: end;
  padding: 18px;
  border: 1px solid rgba(199, 160, 75, 0.32);
  border-radius: var(--radius);
  background: #fffaf0;
  color: #554015;
}

.apply-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}

.apply-note p {
  margin: 0;
  font-size: 0.94rem;
}

.application-form {
  display: grid;
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(16px, 3vw, 26px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(6, 24, 50, 0.08);
}

.field {
  display: grid;
  gap: 7px;
}

.hidden-field {
  display: none;
}

label,
legend {
  color: var(--navy);
  font-weight: 830;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid rgba(6, 24, 50, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
summary:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(199, 160, 75, 0.42);
  outline-offset: 2px;
}

.radio-field {
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(6, 24, 50, 0.14);
  border-radius: var(--radius);
  background: rgba(245, 247, 251, 0.76);
}

.radio-field label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  margin-right: 18px;
  font-weight: 720;
}

.radio-field input {
  width: 18px;
  min-height: 18px;
}

.error-message {
  display: none;
  color: var(--danger);
  font-weight: 740;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea,
.field.is-invalid.radio-field {
  border-color: var(--danger);
}

.field.is-invalid .error-message {
  display: block;
}

.form-note {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9fbff;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-note p,
.form-status {
  margin: 0;
}

.form-note a {
  color: var(--navy);
  font-weight: 850;
  text-decoration: underline;
}

.form-status {
  min-height: 1.5em;
  color: var(--ok);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfe;
}

summary {
  min-height: 56px;
  padding: 16px;
  color: var(--navy);
  font-weight: 850;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 16px 18px;
  color: var(--muted);
}

.site-footer {
  display: grid;
  gap: 8px;
  padding-top: 28px;
  padding-bottom: 28px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.footer-disclaimer {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
  line-height: 1.5;
}

.site-footer a {
  color: var(--gold-soft);
  font-weight: 800;
}

.noscript {
  position: fixed;
  inset: auto 12px 12px;
  z-index: 30;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--danger);
  color: var(--white);
  font-weight: 800;
}

.thank-you-page {
  min-height: 100vh;
  background: var(--navy);
  color: var(--white);
}

.thank-you-main {
  display: grid;
  min-height: calc(100vh - 66px);
  place-items: center;
  padding: 34px 18px;
}

.thank-you-panel {
  width: min(100%, 760px);
  padding: clamp(22px, 5vw, 34px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.thank-you-panel h1 {
  font-size: clamp(2rem, 10vw, 4rem);
}

.thank-you-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.zoom-confirmation {
  display: grid;
  gap: 16px;
  margin: 22px 0;
  padding: clamp(16px, 4vw, 22px);
  border: 1px solid rgba(242, 223, 165, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.zoom-confirmation h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1.45rem, 7vw, 2.35rem);
}

.zoom-confirmation dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.zoom-confirmation div {
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.zoom-confirmation dt {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 880;
}

.zoom-confirmation dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.zoom-register-button {
  width: 100%;
}

.next-steps {
  margin: 22px 0;
  padding-left: 20px;
}

.next-steps li {
  margin-bottom: 8px;
}

.whatsapp-button {
  width: 100%;
  margin-top: 10px;
  background: #1f9b61;
  color: var(--white);
}

.secondary-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold-soft);
  font-weight: 800;
}

.signup-toast-wrap {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 28;
  width: min(360px, calc(100vw - 32px));
  pointer-events: none;
}

.signup-toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 14px 14px 16px;
  border: 1px solid rgba(199, 160, 75, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  box-shadow: 0 18px 42px rgba(6, 24, 50, 0.18);
  opacity: 0;
  pointer-events: auto;
  transform: translateY(14px);
  transition: opacity 220ms ease, transform 220ms ease;
}

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

.signup-toast p {
  flex: 1;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 820;
  line-height: 1.45;
}

.signup-toast button {
  display: inline-grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #eef2f8;
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1;
}

.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 34;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: var(--gold);
  color: #111827;
  box-shadow: 0 18px 42px rgba(6, 24, 50, 0.24);
  font-weight: 900;
}

.conversion-popup[hidden] {
  display: none;
}

.conversion-popup {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
}

.conversion-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 24, 50, 0.64);
}

.conversion-popup-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  padding: 24px;
  border: 1px solid rgba(199, 160, 75, 0.34);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
}

.conversion-popup-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 7vw, 2.55rem);
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #eef2f8;
  color: var(--navy);
  font-size: 1.25rem;
}

.popup-session {
  display: grid;
  gap: 5px;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid rgba(199, 160, 75, 0.26);
  border-radius: var(--radius);
  background: #fffaf0;
}

.popup-session span {
  color: #5f4715;
  font-weight: 820;
}

.popup-session strong {
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.15;
}

.popup-exit-copy {
  margin-bottom: 16px;
  color: var(--muted);
  font-weight: 760;
}

@media (max-width: 420px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .quick-nav {
    width: 100%;
    justify-content: space-between;
  }

  .brand-text small {
    display: none;
  }

  h1 {
    font-size: clamp(1.9rem, 9vw, 2.45rem);
  }

  .hero-photo {
    max-height: 360px;
  }

  .trust-badges span {
    min-height: 40px;
    padding: 8px;
    font-size: 0.76rem;
  }

  .hero-actions {
    display: none;
  }

  .signup-toast-wrap {
    left: 12px;
    right: 12px;
    bottom: max(86px, env(safe-area-inset-bottom));
    width: auto;
  }
}

@media (min-width: 640px) {
  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
    align-items: center;
  }

  .hero-actions {
    grid-template-columns: max-content minmax(0, 1fr);
    align-items: center;
  }

  .btn {
    width: auto;
  }

  .work-flow,
  .fit-grid,
  .support-grid,
  .briefing-details,
  .proof-grid,
  .application-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field-wide {
    grid-column: 1 / -1;
  }

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

  .jane {
    grid-template-columns: minmax(240px, 0.48fr) minmax(0, 1fr);
    align-items: center;
  }

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

  .site-footer {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 860px) {
  .hero,
  .section,
  .site-footer,
  .site-header {
    padding-inline: max(40px, calc((100vw - var(--max)) / 2));
  }

  .apply-intro {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    align-items: end;
  }

  .sticky-cta {
    left: auto;
    right: max(24px, calc((100vw - var(--max)) / 2));
    bottom: 24px;
    width: auto;
    min-width: 190px;
  }
}

@media (min-width: 1040px) {
  .hero {
    grid-template-columns: minmax(0, 1.04fr) minmax(370px, 0.62fr);
    min-height: calc(100vh - 66px);
  }

  .hero-photo {
    max-width: 430px;
    justify-self: end;
  }

  .work-flow {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

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

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

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

@media (min-width: 1040px) {
  .briefing-card {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr) auto;
    align-items: center;
  }
}

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

  .signup-toast {
    transition: none;
    transform: none;
  }

  .conversion-popup-panel,
  .sticky-cta {
    transition: none;
  }
}
