:root {
  --ink: #17212b;
  --muted: #60707e;
  --paper: #ffffff;
  --soft: #f4f8fb;
  --soft-blue: #edf6fb;
  --line: #d9e5ec;
  --blue: #1269ee;
  --blue-dark: #0c4eb3;
  --cyan: #24c6dc;
  --green: #13a87d;
  --green-dark: #0d8663;
  --amber: #f4b84a;
  --red: #e02b20;
  --deep: #123758;
  --shadow: 0 18px 48px rgba(28, 70, 102, 0.14);
  --radius: 10px;
  --max: 1160px;
  font-family: "Roboto", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

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

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* ---------------------------------- */
/* Attention bar                       */
/* ---------------------------------- */

.attention-bar {
  padding: 10px 14px;
  color: var(--deep);
  background: linear-gradient(90deg, #f8c766, var(--amber), #f8c766);
  text-align: center;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.attention-bar strong {
  color: var(--blue-dark);
}

/* ---------------------------------- */
/* Header + funnel progress            */
/* ---------------------------------- */

.funnel-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 229, 236, 0.9);
  backdrop-filter: blur(14px);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  gap: 18px;
}

.header-shell.logo-only {
  justify-content: center;
}

.brand-logo {
  width: 172px;
  height: auto;
  object-fit: contain;
}

.step-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--blue-dark);
  background: rgba(18, 105, 238, 0.08);
  border: 1px solid rgba(18, 105, 238, 0.18);
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 850;
}

.funnel-progress {
  background: var(--soft-blue);
  border-bottom: 1px solid var(--line);
}

.progress-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}

.progress-label {
  color: var(--blue-dark);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.progress-hint {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.progress-bar {
  height: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 999px;
}

/* ---------------------------------- */
/* Type + shared copy                  */
/* ---------------------------------- */

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pretitle {
  display: inline-block;
  margin: 0 0 18px;
  padding: 4px 12px;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(244, 214, 118, 0.9), rgba(244, 208, 92, 0.9));
  border: 0;
  border-radius: 3px;
  font-family: "Roboto Slab", Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: none;
}

.pretitle::before {
  content: none;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

h1,
h2,
h3,
.video-frame h2,
.pdf-mockup h2 {
  font-family: "Roboto Slab", Georgia, "Times New Roman", serif;
}

h1 {
  margin-bottom: 20px;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.01em;
}

.hl {
  padding: 0 4px;
  background-image: linear-gradient(180deg, transparent 56%, rgba(244, 184, 74, 0.6) 56%);
}

.hl-blue {
  color: var(--blue);
}

.hl-red {
  color: var(--red);
}

.hero-subhead {
  max-width: 760px;
  margin: 0 auto 8px;
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 600;
}

/* ---------------------------------- */
/* Buttons                             */
/* ---------------------------------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(18, 105, 238, 0.26);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-secondary {
  color: var(--blue-dark);
  background: #fff;
  border-color: rgba(18, 105, 238, 0.4);
}

.button-secondary:hover {
  background: var(--soft-blue);
}

.on-dark .button-secondary,
.button-secondary.on-dark {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.button-cta {
  min-height: 68px;
  padding: 0 34px;
  color: #fff;
  background: linear-gradient(180deg, #17c493, var(--green));
  border-bottom: 4px solid var(--green-dark);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(19, 168, 125, 0.4);
  font-size: 1.22rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  animation: cta-pulse 2.2s ease-in-out infinite;
}

.button-cta:hover {
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  animation-play-state: paused;
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 18px 40px rgba(19, 168, 125, 0.4); }
  50% { box-shadow: 0 18px 52px rgba(19, 168, 125, 0.62); }
}

.cta-block {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 30px;
}

.cta-sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.lock::before {
  content: "\1F512";
  margin-right: 6px;
  font-size: 0.85em;
}

.full-width {
  width: 100%;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

/* ---------------------------------- */
/* Bouncing arrow                      */
/* ---------------------------------- */

.arrow-down {
  display: grid;
  justify-items: center;
  gap: 3px;
  margin: 26px auto 0;
}

.arrow-down i {
  width: 22px;
  height: 22px;
  border-right: 5px solid var(--green);
  border-bottom: 5px solid var(--green);
  border-radius: 2px;
  transform: rotate(45deg);
  animation: arrow-bounce 1.5s ease-in-out infinite;
}

.arrow-down i:nth-child(2) {
  opacity: 0.6;
  animation-delay: 0.15s;
}

.arrow-down i:nth-child(3) {
  opacity: 0.3;
  animation-delay: 0.3s;
}

@keyframes arrow-bounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  50% { transform: rotate(45deg) translate(5px, 5px); }
}

/* ---------------------------------- */
/* Squeeze hero                        */
/* ---------------------------------- */

.squeeze-hero {
  padding: 54px 0 34px;
  background:
    radial-gradient(900px 420px at 50% -80px, rgba(18, 105, 238, 0.08), transparent 70%),
    #fff;
  text-align: center;
}

.squeeze-hero h1 {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.vsl-card {
  max-width: 880px;
  margin: 36px auto 0;
}

.video-frame {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 300px;
  padding: 34px;
  color: #fff;
  text-align: left;
  background:
    linear-gradient(135deg, rgba(18, 105, 238, 0.4), rgba(19, 168, 125, 0.16)),
    linear-gradient(118deg, rgba(18, 55, 88, 0.98), rgba(12, 78, 179, 0.92));
  border: 5px solid var(--deep);
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(18, 55, 88, 0.35);
}

.video-embed {
  display: block;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  background: #000;
}

.video-frame.tall {
  min-height: 420px;
  align-content: center;
}

.video-frame.tall.video-embed {
  min-height: auto;
  aspect-ratio: 16 / 9;
}

.video-frame span {
  display: inline-block;
  margin-bottom: 8px;
  color: #79f0d0;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.video-frame h2 {
  margin-bottom: 8px;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.15;
}

.video-frame p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.play-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 84px;
  height: 84px;
  padding: 0;
  color: #fff;
  background: var(--green);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(19, 168, 125, 0.55);
  cursor: default;
  animation: play-ping 2s ease-out infinite;
}

@keyframes play-ping {
  0% { box-shadow: 0 0 0 0 rgba(19, 168, 125, 0.55); }
  70% { box-shadow: 0 0 0 22px rgba(19, 168, 125, 0); }
  100% { box-shadow: 0 0 0 0 rgba(19, 168, 125, 0); }
}

.play-button::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid currentColor;
}

/* ---------------------------------- */
/* CTA banner (book stack + arrow)     */
/* ---------------------------------- */

.cta-banner-link {
  display: block;
  max-width: 880px;
  margin: 30px auto 0;
  transition: transform 160ms ease;
}

.cta-banner-link:hover {
  transform: translateY(-2px);
}

.cta-banner-image {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 34px rgba(18, 55, 88, 0.22));
}

/* ---------------------------------- */
/* Platform strip                      */
/* ---------------------------------- */

.platform-strip {
  padding: 18px 0;
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.platform-strip .shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 26px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-strip strong {
  color: var(--deep);
}

/* ---------------------------------- */
/* Opt-in section                      */
/* ---------------------------------- */

.optin-section {
  padding: 60px 0 70px;
  background: var(--soft-blue);
}

.optin-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.94fr);
  gap: 0;
  max-width: 980px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(203, 217, 226, 0.95);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(18, 55, 88, 0.16);
}

.optin-panel .pdf-mockup {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.optin-panel .form-panel {
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

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

.section-heading h2 {
  margin-bottom: 12px;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.1;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 600;
}

/* ---------------------------------- */
/* Forms                               */
/* ---------------------------------- */

.form-panel {
  padding: 30px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(217, 229, 236, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-heading {
  margin-bottom: 20px;
  text-align: center;
}

.form-heading .eyebrow {
  margin-bottom: 8px;
}

.form-heading h2 {
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.18;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 15px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
  text-align: left;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  border: 2px solid #cbd9e2;
  border-radius: 8px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(18, 105, 238, 0.13);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.microcopy,
.form-success {
  margin: 12px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.88rem;
}

.form-success {
  color: var(--green);
  font-weight: 850;
}

/* ---------------------------------- */
/* Branded opt-in submission modal     */
/* ---------------------------------- */

body.submission-modal-open {
  overflow: hidden;
}

.submission-modal[hidden],
.submission-state[hidden] {
  display: none;
}

.submission-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 22px;
}

.submission-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 49, 0.76);
  backdrop-filter: blur(8px);
}

.submission-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 570px);
  max-height: calc(100vh - 44px);
  overflow-y: auto;
  padding: 44px 46px 38px;
  background:
    radial-gradient(420px 190px at 50% 0, rgba(36, 198, 220, 0.13), transparent 72%),
    #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  box-shadow: 0 32px 90px rgba(4, 27, 48, 0.4);
  outline: none;
  text-align: center;
  animation: submission-rise 280ms ease-out both;
}

.submission-modal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
}

@keyframes submission-rise {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.submission-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  padding: 0;
  color: var(--muted);
  background: var(--soft);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.submission-modal-card[data-state="loading"] .submission-modal-close {
  display: none;
}

.submission-kicker {
  margin: 18px 0 7px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.submission-state h2 {
  margin: 0 0 12px;
  color: var(--deep);
  font-size: 2rem;
  line-height: 1.12;
}

.submission-state > p:not(.submission-kicker):not(.submission-wait):not(.submission-tip) {
  margin: 0 auto;
  max-width: 440px;
  color: var(--muted);
}

.mail-loader {
  position: relative;
  width: 114px;
  height: 82px;
  margin: 4px auto 0;
}

.mail-loader-envelope,
.inbox-envelope {
  position: absolute;
  display: block;
  width: 78px;
  height: 54px;
  background: linear-gradient(145deg, #fff, #e9f4ff);
  border: 3px solid var(--blue);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(18, 105, 238, 0.18);
}

.mail-loader-envelope {
  left: 18px;
  bottom: 2px;
  animation: mail-float 1.25s ease-in-out infinite;
}

.mail-loader-envelope::after,
.inbox-envelope::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 5px;
  width: 44px;
  height: 31px;
  border-left: 3px solid var(--cyan);
  border-bottom: 3px solid var(--cyan);
  transform: rotate(-45deg);
}

.mail-loader i {
  position: absolute;
  top: 3px;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: mail-dot 1.1s ease-in-out infinite;
}

.mail-loader i:nth-of-type(1) { left: 39px; }
.mail-loader i:nth-of-type(2) { left: 54px; animation-delay: 120ms; }
.mail-loader i:nth-of-type(3) { left: 69px; animation-delay: 240ms; }

@keyframes mail-float {
  50% { transform: translateY(-5px); }
}

@keyframes mail-dot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-7px); }
}

.submission-progress {
  width: min(100%, 360px);
  height: 7px;
  margin: 27px auto 12px;
  overflow: hidden;
  background: #dce8f0;
  border-radius: 20px;
}

.submission-progress span {
  display: block;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
  border-radius: inherit;
  animation: submission-progress 1.1s ease-in-out infinite;
}

@keyframes submission-progress {
  from { transform: translateX(-110%); }
  to { transform: translateX(245%); }
}

.submission-wait {
  margin: 0;
  color: #8797a5;
  font-size: 0.82rem;
  font-weight: 700;
}

.inbox-illustration {
  position: relative;
  width: 112px;
  height: 82px;
  margin: 0 auto;
}

.inbox-envelope {
  left: 10px;
  bottom: 0;
}

.inbox-check {
  position: absolute;
  right: 3px;
  top: 0;
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  color: #fff;
  background: var(--green);
  border: 5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(19, 168, 125, 0.3);
  font-weight: 900;
}

.submission-email {
  display: block;
  max-width: 100%;
  margin: 12px auto 20px;
  padding: 11px 16px;
  overflow: hidden;
  color: var(--blue-dark);
  background: var(--soft-blue);
  border: 1px solid rgba(18, 105, 238, 0.18);
  border-radius: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.confirmation-steps {
  display: grid;
  gap: 9px;
  margin: 0 0 18px;
  padding: 18px;
  background: #f7fafc;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-align: left;
}

.confirmation-steps span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--deep);
  font-size: 0.92rem;
  font-weight: 750;
}

.confirmation-steps b {
  display: grid;
  flex: 0 0 25px;
  place-items: center;
  width: 25px;
  height: 25px;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.76rem;
}

.submission-tip {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.84rem;
}

.submission-edit {
  min-height: 46px;
}

.submission-error-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0 auto;
  color: #fff;
  background: var(--red);
  border: 8px solid rgba(224, 43, 32, 0.12);
  border-radius: 50%;
  background-clip: padding-box;
  font-size: 2rem;
  font-weight: 900;
}

.submission-state-error .button {
  width: 100%;
  margin-top: 24px;
}

@media (max-width: 600px) {
  .submission-modal {
    padding: 12px;
  }

  .submission-modal-card {
    max-height: calc(100vh - 24px);
    padding: 36px 22px 26px;
    border-radius: 16px;
  }

  .submission-state h2 {
    font-size: 1.65rem;
  }
}

/* Full-screen dispatch experience */
.submission-modal:has(.submission-modal-card[data-state="loading"]) {
  padding: 0;
}

.submission-modal-card[data-state="loading"] {
  width: 100%;
  height: 100%;
  max-height: none;
  padding: clamp(24px, 4vh, 48px) 24px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 50% 38%, rgba(36, 198, 220, 0.17), transparent 28%),
    radial-gradient(circle at 12% 16%, rgba(18, 105, 238, 0.25), transparent 25%),
    radial-gradient(circle at 88% 84%, rgba(19, 168, 125, 0.16), transparent 25%),
    linear-gradient(145deg, #081d30 0%, #0d3151 54%, #0b2944 100%);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  animation: dispatch-fade 240ms ease-out both;
}

.submission-modal-card[data-state="loading"]::before {
  inset: 0;
  height: auto;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: radial-gradient(circle at center, #000 18%, transparent 72%);
}

.submission-modal-card[data-state="loading"]::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(89, 220, 235, 0.08) 50%, transparent 50.2%),
    linear-gradient(transparent 49.8%, rgba(89, 220, 235, 0.06) 50%, transparent 50.2%);
  pointer-events: none;
}

@keyframes dispatch-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.submission-state-loading {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(100%, 760px);
  min-height: 100%;
  margin: 0 auto;
}

.dispatch-brand {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dispatch-brand img {
  width: 170px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 9px;
}

.dispatch-brand > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.dispatch-brand > span i,
.dispatch-live span {
  width: 8px;
  height: 8px;
  background: #4de0b9;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(77, 224, 185, 0.12), 0 0 20px rgba(77, 224, 185, 0.8);
  animation: dispatch-blink 1.5s ease-in-out infinite;
}

.dispatch-loader {
  position: relative;
  flex: 0 0 auto;
  width: clamp(180px, 24vh, 236px);
  height: clamp(180px, 24vh, 236px);
  margin: clamp(50px, 7vh, 76px) auto 16px;
}

.dispatch-ring {
  position: absolute;
  border: 1px solid rgba(127, 225, 238, 0.26);
  border-radius: 50%;
}

.dispatch-ring::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #5be1ef;
  border-radius: 50%;
  box-shadow: 0 0 16px #5be1ef;
}

.dispatch-ring-one {
  inset: 0;
  border-style: dashed;
  animation: dispatch-spin 10s linear infinite;
}

.dispatch-ring-two {
  inset: 18px;
  border-color: rgba(88, 231, 190, 0.25);
  animation: dispatch-spin-reverse 7s linear infinite;
}

.dispatch-ring-two::after {
  background: #58e7be;
  box-shadow: 0 0 16px #58e7be;
}

.dispatch-ring-three {
  inset: 38px;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.18);
  animation: dispatch-spin 13s linear infinite;
}

.dispatch-ring-three::after {
  background: #f4b84a;
  box-shadow: 0 0 15px rgba(244, 184, 74, 0.9);
}

.dispatch-node {
  position: absolute;
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
  animation: dispatch-node-pulse 2s ease-in-out infinite;
}

.dispatch-node-one { left: 1%; top: 44%; }
.dispatch-node-two { right: 11%; top: 16%; animation-delay: 500ms; }
.dispatch-node-three { right: 3%; bottom: 31%; animation-delay: 1s; }

.dispatch-core {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 108px;
  height: 126px;
  transform: translate(-50%, -50%);
}

.dispatch-document {
  position: absolute;
  inset: 0 auto auto 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 102px;
  color: var(--deep);
  background: linear-gradient(150deg, #fff, #eaf8fb);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 9px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28), 0 0 40px rgba(36, 198, 220, 0.17);
  transform: rotate(-6deg);
  animation: dispatch-document-float 2.2s ease-in-out infinite;
}

.dispatch-document::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 14px;
  width: 25px;
  height: 4px;
  background: var(--blue);
  border-radius: 5px;
  box-shadow: 0 9px 0 rgba(18, 105, 238, 0.17);
}

.dispatch-document b {
  margin-top: 13px;
  color: var(--blue);
  font: 900 1.7rem/1 "Roboto Slab", serif;
}

.dispatch-document i {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.49rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.dispatch-envelope {
  position: absolute;
  right: 0;
  bottom: 1px;
  width: 61px;
  height: 43px;
  overflow: hidden;
  background: linear-gradient(145deg, #29d0e1, #1269ee);
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 7px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.32);
  transform: rotate(8deg);
  animation: dispatch-envelope-float 1.8s ease-in-out infinite;
}

.dispatch-envelope::before,
.dispatch-envelope::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  transform: rotate(45deg);
}

.dispatch-envelope::before { top: -27px; left: 7px; }
.dispatch-envelope::after { bottom: -31px; left: 7px; }

.dispatch-copy {
  text-align: center;
}

.dispatch-live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 10px;
  color: #7ff0d2;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.submission-state-loading .dispatch-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -0.025em;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.24);
}

.dispatch-copy > p:not(.dispatch-live) {
  margin: 10px 0 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.96rem;
}

.dispatch-email {
  display: block;
  max-width: min(100%, 480px);
  margin: 0 auto;
  overflow: hidden;
  color: #fff;
  font-size: 1rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dispatch-progress {
  width: min(100%, 610px);
  margin-top: clamp(20px, 3vh, 32px);
}

.dispatch-progress-track {
  height: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
}

.dispatch-progress-track span {
  display: block;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #5be1ef 30%, #58e7be 75%, transparent);
  filter: drop-shadow(0 0 7px #5be1ef);
  animation: dispatch-track 1.45s ease-in-out infinite;
}

.dispatch-checkpoints {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 13px;
}

.dispatch-checkpoints span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  animation: dispatch-label 3s ease-in-out infinite;
}

.dispatch-checkpoints span:nth-child(2) { animation-delay: 1s; }
.dispatch-checkpoints span:nth-child(3) { animation-delay: 2s; }

.dispatch-checkpoints i {
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
}

.dispatch-note {
  margin: clamp(18px, 3vh, 30px) 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
  font-weight: 700;
}

.dispatch-note span {
  margin-right: 7px;
  color: #f4b84a;
  font-size: 0.58rem;
}

@keyframes dispatch-spin { to { transform: rotate(360deg); } }
@keyframes dispatch-spin-reverse { to { transform: rotate(-360deg); } }
@keyframes dispatch-blink { 50% { opacity: 0.45; } }
@keyframes dispatch-node-pulse { 50% { opacity: 0.25; transform: scale(0.7); } }
@keyframes dispatch-document-float { 50% { transform: translateY(-7px) rotate(-3deg); } }
@keyframes dispatch-envelope-float { 50% { transform: translate(5px, -5px) rotate(5deg); } }
@keyframes dispatch-track { from { transform: translateX(-110%); } to { transform: translateX(245%); } }
@keyframes dispatch-label { 0%, 30%, 100% { color: rgba(255, 255, 255, 0.42); } 15% { color: #7ff0d2; } }

@media (max-width: 600px) {
  .submission-modal:has(.submission-modal-card[data-state="loading"]) {
    padding: 0;
  }

  .submission-modal-card[data-state="loading"] {
    max-height: none;
    padding: 22px 18px;
    border-radius: 0;
  }

  .dispatch-brand {
    position: relative;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 2px;
  }

  .dispatch-brand img {
    width: 148px;
  }

  .dispatch-loader {
    width: 172px;
    height: 172px;
    margin: 18px auto 12px;
  }

  .dispatch-ring-two { inset: 15px; }
  .dispatch-ring-three { inset: 31px; }
  .dispatch-core { transform: translate(-50%, -50%) scale(0.84); }

  .submission-state-loading .dispatch-copy h2 {
    font-size: 1.75rem;
  }

  .dispatch-checkpoints {
    gap: 3px;
  }

  .dispatch-checkpoints span {
    flex-direction: column;
    gap: 5px;
    font-size: 0.58rem;
    line-height: 1.25;
    text-align: center;
  }

  .dispatch-note {
    margin-top: 17px;
    line-height: 1.4;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dispatch-ring,
  .dispatch-ring::after,
  .dispatch-node,
  .dispatch-document,
  .dispatch-envelope,
  .dispatch-progress-track span,
  .dispatch-checkpoints span,
  .dispatch-brand > span i,
  .dispatch-live span {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Full-screen inbox confirmation experience */
.submission-modal:has(.submission-modal-card[data-state="success"]) {
  padding: 0;
}

.submission-modal-card[data-state="success"] {
  width: 100%;
  height: 100%;
  max-height: none;
  padding: clamp(24px, 4vw, 50px);
  overflow-x: hidden;
  overflow-y: auto;
  color: #fff;
  background:
    radial-gradient(circle at 8% 14%, rgba(18, 105, 238, 0.28), transparent 25%),
    radial-gradient(circle at 91% 88%, rgba(19, 168, 125, 0.13), transparent 25%),
    linear-gradient(145deg, #071b2c 0%, #0b2944 58%, #0a233a 100%);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: left;
  animation: inbox-stage-reveal 360ms ease-out both;
}

.submission-modal-card[data-state="success"]::before {
  inset: 0;
  height: auto;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 76%);
  pointer-events: none;
}

.submission-modal-card[data-state="success"] .submission-modal-close {
  z-index: 5;
  top: clamp(22px, 3vw, 36px);
  right: clamp(22px, 3vw, 38px);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.submission-modal-card[data-state="success"] .submission-modal-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.submission-state-success {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: min(100%, 1160px);
  min-height: 100%;
  margin: 0 auto;
}

.inbox-stage-header {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding-right: 58px;
  margin-bottom: clamp(24px, 4vh, 42px);
}

.inbox-stage-header img {
  width: 174px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 9px;
}

.inbox-stage-header > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inbox-stage-header > span i {
  width: 8px;
  height: 8px;
  background: #57e1bd;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(87, 225, 189, 0.1), 0 0 18px rgba(87, 225, 189, 0.75);
}

.inbox-stage-grid {
  display: grid;
  flex: 1 1 auto;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: stretch;
  gap: clamp(28px, 5vw, 72px);
}

.inbox-stage-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 470px;
  padding: 26px 0 32px;
}

.inbox-stage-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #78e9d0;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.inbox-stage-kicker span {
  padding: 6px 9px;
  color: #06291f;
  background: #78e9d0;
  border-radius: 5px;
  letter-spacing: 0.09em;
}

.submission-state-success .inbox-stage-hero h2 {
  position: relative;
  z-index: 2;
  max-width: 610px;
  margin: 0;
  color: #fff;
  font-size: clamp(3.4rem, 6.2vw, 6.1rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.92;
  text-wrap: balance;
}

.inbox-stage-intro {
  position: relative;
  z-index: 2;
  margin: 28px 0 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.96rem;
}

.inbox-stage-email {
  position: relative;
  z-index: 2;
  display: block;
  width: fit-content;
  max-width: min(100%, 450px);
  padding-bottom: 4px;
  overflow: hidden;
  color: #fff;
  border-bottom: 2px solid #24c6dc;
  font-size: clamp(1rem, 2vw, 1.25rem);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inbox-stage-art {
  position: absolute;
  right: -10px;
  bottom: 12px;
  width: 200px;
  height: 200px;
  opacity: 0.88;
  pointer-events: none;
}

.inbox-art-ring {
  position: absolute;
  border: 1px solid rgba(91, 225, 239, 0.22);
  border-radius: 50%;
}

.inbox-art-ring-one {
  inset: 0;
  border-style: dashed;
  animation: dispatch-spin 18s linear infinite;
}

.inbox-art-ring-two {
  inset: 24px;
  border-color: rgba(87, 225, 189, 0.2);
  animation: dispatch-spin-reverse 12s linear infinite;
}

.inbox-art-envelope {
  position: absolute;
  top: 69px;
  left: 47px;
  width: 106px;
  height: 74px;
  background: linear-gradient(150deg, #fff, #dff6fb);
  border: 3px solid #24c6dc;
  border-radius: 12px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32), 0 0 38px rgba(36, 198, 220, 0.16);
  transform: rotate(-5deg);
  animation: inbox-envelope-breathe 2.4s ease-in-out infinite;
}

.inbox-art-envelope::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 7px;
  width: 61px;
  height: 43px;
  border-left: 3px solid #1269ee;
  border-bottom: 3px solid #1269ee;
  transform: rotate(-45deg);
}

.inbox-art-check {
  position: absolute;
  z-index: 2;
  right: 32px;
  top: 45px;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: #06291f;
  background: #78e9d0;
  border: 5px solid #0b2944;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(87, 225, 189, 0.35);
  font-size: 1.2rem;
  font-weight: 900;
}

.inbox-art-spark {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #f4b84a;
  border-radius: 50%;
  box-shadow: 0 0 14px #f4b84a;
  animation: dispatch-node-pulse 1.8s ease-in-out infinite;
}

.inbox-art-spark-one { left: 16px; top: 57px; }
.inbox-art-spark-two { right: 15px; bottom: 47px; animation-delay: 700ms; }

.inbox-action-panel {
  align-self: center;
  padding: clamp(28px, 4vw, 48px);
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0, rgba(36, 198, 220, 0.11), transparent 27%),
    #fff;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  animation: inbox-panel-enter 500ms 100ms ease-out both;
}

.inbox-action-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.inbox-action-label span {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.inbox-action-label b {
  color: rgba(18, 55, 88, 0.12);
  font: 900 2rem/1 "Roboto Slab", serif;
}

.inbox-action-panel h3 {
  max-width: 420px;
  margin: 24px 0 10px;
  color: var(--deep);
  font: 900 clamp(1.65rem, 3vw, 2.25rem)/1.08 "Roboto Slab", serif;
  letter-spacing: -0.025em;
}

.inbox-action-panel > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.inbox-action-steps {
  display: grid;
  gap: 0;
  margin: 25px 0 22px;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.inbox-action-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 13px;
  min-height: 62px;
}

.inbox-action-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 46px;
  width: 2px;
  height: 31px;
  background: linear-gradient(var(--cyan), rgba(36, 198, 220, 0.12));
}

.inbox-action-steps li > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--deep);
  border: 5px solid var(--soft-blue);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 900;
}

.inbox-action-steps li:first-child > span {
  background: var(--blue);
  box-shadow: 0 8px 22px rgba(18, 105, 238, 0.23);
}

.inbox-action-steps div {
  display: grid;
  gap: 2px;
}

.inbox-action-steps strong {
  color: var(--deep);
  font-size: 0.92rem;
}

.inbox-action-steps small {
  color: var(--muted);
  font-size: 0.76rem;
}

.inbox-help-note {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  color: var(--muted);
  background: #f6f9fb;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.inbox-help-note > span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--blue);
  background: rgba(18, 105, 238, 0.1);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.inbox-help-note p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.45;
}

.inbox-change-email {
  display: block;
  margin: 17px auto 0;
  padding: 4px;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.78rem;
}

.inbox-change-email strong {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inbox-stage-progress {
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: auto minmax(30px, 1fr) auto minmax(30px, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-top: clamp(22px, 4vh, 40px);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.inbox-stage-progress span {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.inbox-stage-progress span i {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.6rem;
  font-style: normal;
}

.inbox-stage-progress > b {
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.inbox-stage-progress .is-complete {
  color: #78e9d0;
}

.inbox-stage-progress .is-current {
  color: #fff;
}

.inbox-stage-progress .is-current i {
  color: #071b2c;
  background: #f4b84a;
  border-color: #f4b84a;
  box-shadow: 0 0 18px rgba(244, 184, 74, 0.35);
}

@keyframes inbox-stage-reveal {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes inbox-panel-enter {
  from { opacity: 0; transform: translateX(22px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes inbox-envelope-breathe {
  50% { transform: translateY(-6px) rotate(-2deg); }
}

@media (max-width: 900px) {
  .inbox-stage-grid {
    grid-template-columns: minmax(0, 0.75fr) minmax(390px, 1.25fr);
    gap: 28px;
  }

  .inbox-stage-art {
    right: -25px;
    transform: scale(0.78);
  }
}

@media (max-width: 720px) {
  .submission-modal:has(.submission-modal-card[data-state="success"]) {
    padding: 0;
  }

  .submission-modal-card[data-state="success"] {
    max-height: none;
    padding: 22px 16px 28px;
    border-radius: 0;
  }

  .inbox-stage-header {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding-right: 0;
    margin-bottom: 25px;
  }

  .inbox-stage-header img {
    width: 148px;
  }

  .inbox-stage-header > span {
    font-size: 0.6rem;
  }

  .submission-modal-card[data-state="success"] .submission-modal-close {
    top: 14px;
    right: 14px;
  }

  .inbox-stage-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .inbox-stage-hero {
    align-items: center;
    min-height: 0;
    padding: 16px 4px 8px;
    text-align: center;
  }

  .inbox-stage-kicker {
    margin-bottom: 13px;
    font-size: 0.6rem;
  }

  .submission-state-success .inbox-stage-hero h2 {
    font-size: clamp(2.75rem, 14vw, 4rem);
    line-height: 0.94;
  }

  .inbox-stage-intro {
    margin-top: 18px;
  }

  .inbox-stage-email {
    max-width: 100%;
  }

  .inbox-stage-art {
    display: none;
  }

  .inbox-action-panel {
    padding: 25px 20px;
    border-radius: 18px;
  }

  .inbox-action-panel h3 {
    margin-top: 18px;
    font-size: 1.62rem;
  }

  .inbox-stage-progress {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin-top: 22px;
  }

  .inbox-stage-progress > b {
    display: none;
  }

  .inbox-stage-progress span {
    flex-direction: column;
    gap: 5px;
    font-size: 0.52rem;
    line-height: 1.3;
    text-align: center;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .submission-modal-card[data-state="success"],
  .inbox-action-panel,
  .inbox-art-ring,
  .inbox-art-envelope,
  .inbox-art-spark {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Focused confirmation popup */
.submission-modal:has(.submission-modal-card[data-state="success"]) {
  padding: 22px;
}

.submission-modal-card[data-state="success"] {
  width: min(100%, 740px);
  height: auto;
  max-height: calc(100vh - 44px);
  padding: 0;
  overflow: auto;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 26px;
  box-shadow: 0 34px 100px rgba(2, 21, 38, 0.48);
  text-align: left;
  animation: confirm-pop-enter 320ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.submission-modal-card[data-state="success"]::before {
  inset: 0 0 auto;
  z-index: 4;
  height: 6px;
  opacity: 1;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
  mask-image: none;
}

.submission-modal-card[data-state="success"] .submission-modal-close {
  z-index: 8;
  top: 15px;
  right: 15px;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(18, 55, 88, 0.09);
  box-shadow: 0 7px 20px rgba(18, 55, 88, 0.1);
  backdrop-filter: blur(10px);
}

.submission-modal-card[data-state="success"] .submission-modal-close:hover {
  color: var(--blue);
  background: #fff;
}

.submission-state-success {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
  width: 100%;
  min-height: 0;
}

.confirm-pop-visual {
  position: relative;
  display: grid;
  min-height: 570px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 47%, rgba(36, 198, 220, 0.25), transparent 29%),
    radial-gradient(circle at 20% 10%, rgba(18, 105, 238, 0.42), transparent 35%),
    linear-gradient(155deg, #082139, #0c3c62 62%, #0a2c49);
}

.confirm-pop-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, #000, transparent 75%);
}

.confirm-pop-orbit {
  position: absolute;
  width: 184px;
  height: 184px;
  border: 1px dashed rgba(120, 233, 208, 0.38);
  border-radius: 50%;
  animation: dispatch-spin 16s linear infinite;
}

.confirm-pop-orbit::before,
.confirm-pop-orbit::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  background: #78e9d0;
  border-radius: 50%;
  box-shadow: 0 0 17px #78e9d0;
}

.confirm-pop-orbit::before { left: 23px; top: 20px; }
.confirm-pop-orbit::after { right: 13px; bottom: 34px; }

.confirm-pop-envelope {
  position: absolute;
  width: 118px;
  height: 82px;
  background: linear-gradient(150deg, #fff, #dff6fb);
  border: 3px solid #24c6dc;
  border-radius: 13px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.36), 0 0 45px rgba(36, 198, 220, 0.2);
  transform: rotate(-5deg);
  animation: confirm-envelope-float 2.5s ease-in-out infinite;
}

.confirm-pop-envelope::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 8px;
  width: 67px;
  height: 47px;
  border-left: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  transform: rotate(-45deg);
}

.confirm-pop-check {
  position: absolute;
  top: calc(50% - 75px);
  right: calc(50% - 80px);
  display: grid;
  place-items: center;
  width: 53px;
  height: 53px;
  color: #073226;
  background: #78e9d0;
  border: 6px solid #0b3151;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(120, 233, 208, 0.34);
  font-size: 1.25rem;
  font-weight: 900;
}

.confirm-pop-spark {
  position: absolute;
  width: 7px;
  height: 7px;
  background: #f4b84a;
  border-radius: 50%;
  box-shadow: 0 0 16px #f4b84a;
  animation: dispatch-node-pulse 1.8s ease-in-out infinite;
}

.confirm-pop-spark-one { left: 16%; top: 34%; }
.confirm-pop-spark-two { right: 13%; bottom: 32%; animation-delay: 700ms; }

.confirm-pop-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px 42px 34px;
  background:
    radial-gradient(circle at 100% 0, rgba(36, 198, 220, 0.11), transparent 31%),
    #fff;
}

.confirm-pop-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 33px;
}

.confirm-pop-brand img {
  width: 145px;
}

.confirm-pop-brand span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green-dark);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.confirm-pop-brand span i {
  order: -1;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(19, 168, 125, 0.11);
}

.confirm-pop-kicker {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.submission-state-success .confirm-pop-body h2 {
  margin: 0;
  color: var(--deep);
  font: 900 clamp(2.35rem, 5vw, 3.25rem)/0.98 "Roboto Slab", serif;
  letter-spacing: -0.04em;
}

.confirm-pop-copy {
  margin: 22px 0 7px;
  color: var(--muted);
  font-size: 0.9rem;
}

.confirm-pop-email {
  display: block;
  max-width: 100%;
  padding: 12px 14px;
  overflow: hidden;
  color: var(--blue-dark);
  background: var(--soft-blue);
  border: 1px solid rgba(18, 105, 238, 0.2);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  font-size: 0.92rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.confirm-pop-instruction {
  margin: 18px 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.55;
}

.confirm-pop-instruction strong {
  color: var(--deep);
}

.confirm-pop-tip {
  display: grid;
  grid-template-columns: 25px 1fr;
  align-items: center;
  gap: 9px;
  padding: 11px 12px;
  color: var(--muted);
  background: #f7fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.confirm-pop-tip > span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--blue);
  background: rgba(18, 105, 238, 0.1);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.confirm-pop-tip p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.45;
}

.confirm-pop-button {
  min-height: 52px;
  margin-top: 22px;
  padding: 0 20px;
  color: #fff;
  background: linear-gradient(180deg, #17c493, var(--green));
  border: 0;
  border-bottom: 4px solid var(--green-dark);
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(19, 168, 125, 0.24);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.confirm-pop-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(19, 168, 125, 0.34);
}

.confirm-pop-change {
  align-self: center;
  margin-top: 13px;
  padding: 3px;
  color: var(--blue);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@keyframes confirm-pop-enter {
  from { opacity: 0; transform: translateY(20px) scale(0.975); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes confirm-envelope-float {
  50% { transform: translateY(-7px) rotate(-2deg); }
}

@media (max-width: 650px) {
  .submission-modal:has(.submission-modal-card[data-state="success"]) {
    padding: 12px;
  }

  .submission-modal-card[data-state="success"] {
    width: min(100%, 500px);
    max-height: calc(100vh - 24px);
    border-radius: 18px;
  }

  .submission-state-success {
    grid-template-columns: 1fr;
  }

  .confirm-pop-visual {
    min-height: 165px;
  }

  .confirm-pop-orbit {
    width: 135px;
    height: 135px;
  }

  .confirm-pop-envelope {
    width: 88px;
    height: 61px;
  }

  .confirm-pop-envelope::after {
    left: 17px;
    top: 6px;
    width: 49px;
    height: 34px;
  }

  .confirm-pop-check {
    top: calc(50% - 58px);
    right: calc(50% - 64px);
    width: 44px;
    height: 44px;
    border-width: 5px;
  }

  .confirm-pop-body {
    padding: 27px 22px 25px;
  }

  .confirm-pop-brand {
    margin-bottom: 23px;
  }

  .confirm-pop-brand img {
    width: 130px;
  }

  .submission-state-success .confirm-pop-body h2 {
    font-size: 2.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .submission-modal-card[data-state="success"],
  .confirm-pop-orbit,
  .confirm-pop-envelope,
  .confirm-pop-spark {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

.form-panel .button-cta {
  width: 100%;
  min-height: 62px;
  font-size: 1.05rem;
}

/* ---------------------------------- */
/* PDF mockup                          */
/* ---------------------------------- */

.pdf-mockup {
  position: relative;
  min-height: 330px;
  padding: 30px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 246, 251, 0.98)),
    #fff;
  border: 1px solid rgba(217, 229, 236, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pdf-cover-card {
  display: grid;
  place-items: center;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 0;
  box-shadow: none;
}

.pdf-cover-image {
  display: block;
  width: 84%;
  max-width: 400px;
  height: auto;
  margin: 18px auto;
  filter: drop-shadow(0 22px 34px rgba(18, 55, 88, 0.18));
}

.free-flag {
  position: absolute;
  top: 18px;
  right: -8px;
  padding: 6px 14px;
  color: var(--deep);
  background: var(--amber);
  border-radius: 6px 0 0 6px;
  box-shadow: 0 8px 18px rgba(244, 184, 74, 0.5);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pdf-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding-right: 118px;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 900;
}

.pdf-topline strong {
  padding: 4px 9px;
  color: #fff;
  background: var(--green);
  border-radius: 6px;
}

.pdf-mockup h2 {
  max-width: 290px;
  margin: 56px 0 14px;
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.08;
}

.pdf-mockup p {
  max-width: 330px;
  color: var(--muted);
}

.score-bars {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.95fr 1.2fr;
  gap: 8px;
  margin-top: 28px;
}

.score-bars span {
  height: 12px;
  background: var(--line);
  border-radius: 4px;
}

.score-bars span:nth-child(-n + 3) {
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

/* ---------------------------------- */
/* Discover / checks section           */
/* ---------------------------------- */

.audit-checks {
  padding: 64px 0;
  background: #fff;
}

.check-list,
.mini-list,
.prep-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.mini-list li,
.prep-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 800;
}

.check-list li::before,
.mini-list li::before,
.prep-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.22em;
  width: 20px;
  height: 20px;
  background: rgba(19, 168, 125, 0.14);
  border: 2px solid rgba(19, 168, 125, 0.5);
  border-radius: 50%;
}

.check-list li::after,
.mini-list li::after,
.prep-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.5em;
  width: 9px;
  height: 5px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}

.check-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 940px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.check-cards li {
  position: relative;
  padding: 20px 22px 20px 58px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 1.02rem;
  font-weight: 800;
}

.check-cards li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 22px;
  width: 24px;
  height: 24px;
  background: rgba(19, 168, 125, 0.14);
  border: 2px solid rgba(19, 168, 125, 0.5);
  border-radius: 50%;
}

.check-cards li::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 30px;
  width: 11px;
  height: 6px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}

/* ---------------------------------- */
/* Dark CTA band                       */
/* ---------------------------------- */

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(118deg, rgba(18, 55, 88, 0.96), rgba(12, 78, 179, 0.88)),
    #123758;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 78px 78px;
  pointer-events: none;
}

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

.cta-band h2 {
  max-width: 780px;
  margin: 0 auto 14px;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1;
}

.cta-band p {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.08rem;
}

.cta-band .eyebrow {
  color: #79f0d0;
}

.cta-band .cta-sub {
  color: rgba(255, 255, 255, 0.78);
}

/* ---------------------------------- */
/* Dark funnel heroes (bridge etc.)    */
/* ---------------------------------- */

.bridge-hero,
.application-hero,
.booking-hero,
.confirmation-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 70px;
  background:
    linear-gradient(118deg, rgba(18, 55, 88, 0.96), rgba(12, 78, 179, 0.88)),
    #123758;
}

.bridge-hero::before,
.application-hero::before,
.booking-hero::before,
.confirmation-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 78px 78px;
  pointer-events: none;
}

.bridge-grid,
.application-grid,
.booking-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 46px;
}

.bridge-grid,
.booking-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.78fr);
}

.application-grid {
  grid-template-columns: minmax(0, 0.68fr) minmax(420px, 0.94fr);
  align-items: start;
}

.bridge-copy,
.application-copy,
.booking-copy {
  color: #fff;
}

.bridge-hero .eyebrow,
.application-hero .eyebrow,
.booking-hero .eyebrow,
.confirmation-hero .eyebrow {
  color: #79f0d0;
}

.bridge-hero .hl,
.application-hero .hl,
.booking-hero .hl {
  background-image: linear-gradient(180deg, transparent 56%, rgba(244, 184, 74, 0.45) 56%);
}

.bridge-copy h1,
.application-copy h1,
.booking-copy h1,
.confirmation-card h1 {
  font-size: 3.1rem;
}

.bridge-copy > p,
.application-copy > p,
.booking-copy > p,
.confirmation-card > p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
}

.bridge-hero .pretitle,
.application-hero .pretitle,
.booking-hero .pretitle {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.bridge-hero .action-row {
  justify-content: flex-start;
}

.bridge-hero .cta-sub {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  text-align: left;
}

.video-card {
  overflow: hidden;
  color: #fff;
}

.video-card .video-frame {
  grid-template-columns: 76px 1fr;
  padding: 26px;
  min-height: 0;
  border-width: 4px;
  border-color: rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(18, 105, 238, 0.34), rgba(19, 168, 125, 0.12)),
    rgba(255, 255, 255, 0.08);
}

.video-card .play-button {
  width: 66px;
  height: 66px;
}

.warning-strip,
.qualification-box,
.reminder-box {
  display: grid;
  gap: 4px;
  margin-top: 28px;
  padding: 18px 20px;
  color: #fff;
  background: rgba(244, 184, 74, 0.16);
  border: 2px solid rgba(244, 184, 74, 0.55);
  border-radius: var(--radius);
}

.warning-strip strong {
  font-size: 1.05rem;
}

.warning-strip strong::before {
  content: "\26A0";
  margin-right: 8px;
  color: var(--amber);
}

.qualification-box {
  margin: 28px 0 22px;
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.24);
}

.qualification-box span,
.warning-strip span {
  color: rgba(255, 255, 255, 0.82);
}

.mini-list {
  color: rgba(255, 255, 255, 0.92);
}

/* ---------------------------------- */
/* Steps band                          */
/* ---------------------------------- */

.steps-band {
  padding: 40px 0;
  background: var(--soft-blue);
  border-top: 1px solid var(--line);
}

.steps-band h2 {
  margin-bottom: 24px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 900;
}

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

.step-grid div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  padding: 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(28, 70, 102, 0.08);
}

.step-grid span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
}

/* ---------------------------------- */
/* Application / booking extras        */
/* ---------------------------------- */

.application-form {
  align-self: start;
}

.form-flag {
  display: block;
  margin: -30px -30px 22px;
  padding: 12px;
  color: var(--deep);
  background: var(--amber);
  border-radius: var(--radius) var(--radius) 0 0;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.call-promise {
  margin-top: 28px;
  padding: 24px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(217, 229, 236, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.call-promise h2 {
  margin-bottom: 18px;
  font-size: 1.35rem;
  font-weight: 900;
}

.check-list.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.booking-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  color: var(--ink);
  background: #fff;
  border: 3px dashed rgba(18, 105, 238, 0.45);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.booking-embed {
  padding: 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.booking-embed iframe {
  width: 100%;
  min-height: 690px;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
}

.calendly-embed {
  padding: 0;
  overflow: hidden;
}

.calendar-head {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.calendar-head span,
.calendar-grid span {
  display: block;
  min-height: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.calendar-grid .selected {
  background: rgba(19, 168, 125, 0.16);
  border-color: rgba(19, 168, 125, 0.46);
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.time-grid button {
  min-height: 42px;
  color: var(--blue);
  background: #fff;
  border: 1px solid rgba(18, 105, 238, 0.3);
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
}

.time-grid button:hover {
  background: var(--soft-blue);
}

.booking-embed p {
  margin: 14px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.92rem;
}

/* ---------------------------------- */
/* Confirmation                        */
/* ---------------------------------- */

.confirmation-hero {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 200px);
}

.confirmation-card {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 44px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(217, 229, 236, 0.9);
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: center;
}

.success-badge {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin: 0 auto 22px;
  background: rgba(19, 168, 125, 0.12);
  border: 3px solid var(--green);
  border-radius: 50%;
  animation: play-ping 2.4s ease-out infinite;
}

.success-badge::after {
  content: "";
  width: 30px;
  height: 16px;
  margin-top: -6px;
  border-left: 6px solid var(--green);
  border-bottom: 6px solid var(--green);
  transform: rotate(-45deg);
}

.confirmation-card h1 {
  color: var(--ink);
}

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

.confirmation-card > p {
  color: var(--muted);
}

.reminder-box {
  color: var(--ink);
  background: rgba(244, 184, 74, 0.18);
  text-align: left;
}

.prep-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
  text-align: left;
}

/* ---------------------------------- */
/* Footer                              */
/* ---------------------------------- */

.funnel-footer {
  padding: 26px 0;
  color: var(--muted);
  background: var(--deep);
}

.footer-minimal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.footer-minimal p {
  margin: 0;
}

.footer-minimal a {
  color: #79c2ff;
  font-weight: 800;
  text-decoration: none;
}

/* ---------------------------------- */
/* Legal / simple pages                */
/* ---------------------------------- */

.legal-page,
.simple-page {
  background: var(--soft);
}

.legal-hero,
.simple-hero {
  padding: 70px 0 40px;
  text-align: center;
  background: var(--soft-blue);
}

.legal-hero h1,
.simple-hero h1 {
  margin: 0 auto 14px;
  color: var(--ink);
  font-size: 2.6rem;
}

.legal-hero p,
.simple-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
}

.legal-copy {
  max-width: 840px;
  margin: 40px auto 70px;
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(217, 229, 236, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-copy h2 {
  margin: 26px 0 8px;
  font-size: 1.25rem;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p {
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 50px 0 70px;
}

.contact-card {
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(217, 229, 236, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.contact-card p {
  color: var(--muted);
}

/* ---------------------------------- */
/* Responsive                          */
/* ---------------------------------- */

@media (max-width: 980px) {
  .bridge-grid,
  .application-grid,
  .booking-grid,
  .optin-panel {
    grid-template-columns: 1fr;
  }

  .optin-panel .form-panel {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  h1 {
    font-size: 2.9rem;
  }

  .bridge-copy h1,
  .application-copy h1,
  .booking-copy h1,
  .confirmation-card h1 {
    font-size: 2.6rem;
  }

  .video-frame.tall {
    min-height: 300px;
  }

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

@media (max-width: 720px) {
  .shell {
    width: min(100% - 28px, var(--max));
  }

  .header-shell {
    min-height: 64px;
  }

  .brand-logo {
    width: 146px;
  }

  .attention-bar {
    font-size: 0.76rem;
  }

  .progress-shell {
    grid-template-columns: auto 1fr;
  }

  .progress-hint {
    display: none;
  }

  .squeeze-hero {
    padding: 40px 0 28px;
  }

  .bridge-hero,
  .application-hero,
  .booking-hero,
  .confirmation-hero {
    padding: 42px 0 52px;
  }

  h1,
  .bridge-copy h1,
  .application-copy h1,
  .booking-copy h1,
  .confirmation-card h1 {
    font-size: 2.15rem;
    line-height: 1.08;
  }

  .hero-subhead,
  .bridge-copy > p,
  .application-copy > p,
  .booking-copy > p,
  .confirmation-card > p {
    font-size: 1rem;
  }

  .section-heading h2,
  .cta-band h2 {
    font-size: 1.85rem;
  }

  .pdf-mockup,
  .form-panel,
  .booking-panel,
  .confirmation-card,
  .legal-copy,
  .contact-card {
    padding: 22px;
  }

  .pdf-cover-card {
    padding: 0;
  }

  .pdf-cover-image {
    width: 78%;
    max-width: 320px;
    margin: 12px auto;
  }

  .form-flag {
    margin: -22px -22px 20px;
  }

  .pdf-mockup h2 {
    margin-top: 44px;
    font-size: 1.66rem;
  }

  .video-frame {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .play-button {
    width: 62px;
    height: 62px;
  }

  .button-cta {
    min-height: 60px;
    padding: 0 20px;
    font-size: 1rem;
  }

  .action-row,
  .footer-minimal {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .button {
    width: 100%;
  }

  .form-row,
  .check-list.compact,
  .check-cards,
  .prep-list,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .calendar-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 430px) {
  h1,
  .bridge-copy h1,
  .application-copy h1,
  .booking-copy h1,
  .confirmation-card h1 {
    font-size: 1.9rem;
  }
}

/* ---------------------------------- */
/* Voomly VSL + sound prompt           */
/* ---------------------------------- */

.sound-prompt {
  margin: 30px auto 12px;
  color: var(--red);
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.sound-prompt strong {
  color: var(--red);
}

.vsl-card .voomly-embed {
  overflow: hidden;
  border: 5px solid var(--deep);
  box-shadow: 0 30px 70px rgba(18, 55, 88, 0.35);
}

/* ---------------------------------- */
/* Trustpilot social proof             */
/* ---------------------------------- */

.trust-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 6px;
  padding: 8px 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(28, 70, 102, 0.08);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.trust-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(28, 70, 102, 0.14);
}

.trust-stars {
  color: #13a87d;
  font-size: 1.06rem;
  letter-spacing: 0.04em;
}

.trust-text {
  color: var(--muted);
}

.trust-text strong {
  color: var(--deep);
}

.trust-row-lg {
  padding: 12px 22px;
  font-size: 1.08rem;
}

.trust-row-lg .trust-stars {
  font-size: 1.3rem;
}

/* ---------------------------------- */
/* Reviews section                     */
/* ---------------------------------- */

.reviews-section {
  padding: 54px 0;
  background: var(--soft-blue);
  border-top: 1px solid var(--line);
  text-align: center;
}

.reviews-section .section-heading {
  margin-bottom: 22px;
}

.reviews-cta {
  display: flex;
  justify-content: center;
}

/* ---------------------------------- */
/* Hero 2-column (video + form)        */
/* DotComSecrets-style layout          */
/* ---------------------------------- */

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(330px, 0.9fr);
  gap: 26px;
  align-items: start;
  max-width: 1120px;
  margin: 26px auto 0;
  text-align: left;
}

.hero-video-col {
  min-width: 0;
}

.hero-video-col .vsl-card {
  max-width: none;
  margin: 0;
}

.hero-video-col .cta-banner-link {
  max-width: none;
  margin: 16px 0 0;
}

.hero-form-col {
  min-width: 0;
}

.hero-form-col .form-panel {
  position: sticky;
  top: 92px;
}

/* Red "sound on" bar, like the reference */
.sound-prompt {
  display: block;
  margin: 0 0 12px;
  padding: 9px 14px;
  color: #fff;
  background: var(--red);
  border-radius: 8px 8px 0 0;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.sound-prompt strong {
  color: #fff;
  text-decoration: underline;
}

.sound-prompt span {
  font-weight: 700;
  text-transform: none;
  opacity: 0.9;
}

/* ---------------------------------- */
/* Book showcase (repeat CTA + cover)  */
/* ---------------------------------- */

.book-section {
  padding: 60px 0;
  background: var(--soft-blue);
}

.book-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: center;
  max-width: 940px;
  margin: 0 auto;
}

.book-showcase .pdf-cover-card {
  min-height: 0;
}

.book-cta {
  text-align: center;
}

.book-cta .cta-block {
  margin-top: 0;
}

/* ---------------------------------- */
/* Hero grid responsive                */
/* ---------------------------------- */

@media (max-width: 980px) {
  .hero-grid,
  .book-showcase {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-form-col .form-panel {
    position: static;
    top: auto;
  }
}

/* ---------------------------------- */
/* Book showcase cover blend fix       */
/* Removes the baked white background   */
/* of the 3D cover so it sits cleanly   */
/* on the soft-blue section.            */
/* ---------------------------------- */

.book-showcase .pdf-cover-card {
  background: transparent;
  overflow: visible;
  box-shadow: none;
}

.book-showcase .pdf-cover-image {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 22px 30px rgba(18, 55, 88, 0.20));
}

/* ---------------------------------- */
/* Audit delivery page                 */
/* ---------------------------------- */

.delivery-hero {
  min-height: calc(100vh - 190px);
  padding: 54px 0 68px;
  background:
    radial-gradient(900px 420px at 50% -80px, rgba(18, 105, 238, 0.10), transparent 70%),
    #fff;
  text-align: center;
}

.delivery-shell {
  max-width: 880px;
}

.delivery-success {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  color: #fff;
  background: var(--green);
  border: 7px solid rgba(19, 168, 125, 0.14);
  border-radius: 50%;
  background-clip: padding-box;
  font-size: 1.65rem;
  font-weight: 900;
}

.delivery-hero h1 {
  max-width: 760px;
  margin: 12px auto 14px;
}

.delivery-intro {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.15rem;
  font-weight: 600;
}

.delivery-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 34px;
  margin-top: 38px;
  padding: 34px 38px;
  background: var(--soft-blue);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: left;
}

.delivery-cover {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 18px 24px rgba(18, 55, 88, 0.2));
}

.delivery-action h2 {
  margin: 6px 0 12px;
  font-size: 1.8rem;
}

.delivery-action > p:not(.eyebrow):not(.cta-sub) {
  margin: 0 0 22px;
  color: var(--muted);
}

.delivery-action .button-cta {
  width: 100%;
  min-height: 62px;
  padding: 0 22px;
  font-size: 1.02rem;
}

.delivery-action .cta-sub {
  margin-top: 12px;
  text-align: center;
}

@media (max-width: 720px) {
  .delivery-hero {
    padding: 38px 0 48px;
  }

  .delivery-card {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px;
    padding: 26px 20px;
    text-align: center;
  }

  .delivery-cover {
    max-width: 210px;
  }

  .delivery-action h2 {
    font-size: 1.55rem;
  }
}
