:root {
  --coral: #ff6e60;
  --coral-dark: #c94a40;
  --olive: #999736;
  --rose: #a85c66;
  --charcoal: #484641;
  --gray: #a5aaa6;
  --light: #eeeeee;
  --paper: #fffdfb;
  --white: #ffffff;
  --ink-soft: #68645e;
  --line: rgba(72, 70, 65, 0.14);
  --shadow: 0 18px 45px rgba(72, 70, 65, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(255, 110, 96, 0.55);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--charcoal);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 68px;
  padding: 0 clamp(18px, 5vw, 56px);
  background: rgba(255, 253, 251, 0.92);
  border-bottom: 1px solid rgba(238, 238, 238, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 118px;
  height: auto;
  max-height: 36px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.desktop-nav a,
.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 13px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  color: var(--ink-soft);
}

.desktop-nav a:hover {
  color: var(--charcoal);
  background: var(--light);
}

.header-cta {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 10px 24px rgba(255, 110, 96, 0.28);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--charcoal);
  border-radius: 2px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  background: rgba(72, 70, 65, 0.36);
}

.mobile-menu[aria-hidden="false"] {
  display: block;
}

.mobile-menu-panel {
  margin-left: auto;
  width: min(88vw, 360px);
  min-height: 100%;
  padding: 18px;
  background: var(--paper);
  box-shadow: -20px 0 55px rgba(72, 70, 65, 0.18);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.brand.mini .brand-logo {
  width: 106px;
  max-height: 32px;
}

.close-button {
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.close-button span {
  position: absolute;
  top: 22px;
  left: 13px;
  width: 20px;
  height: 2px;
  background: var(--charcoal);
}

.close-button span:first-child {
  transform: rotate(45deg);
}

.close-button span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav {
  display: grid;
  gap: 8px;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 12px;
  color: var(--charcoal);
  border-radius: var(--radius-sm);
  font-weight: 750;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  background: var(--light);
}

.mobile-nav .mobile-primary {
  justify-content: center;
  margin-top: 10px;
  color: var(--white);
  background: var(--coral);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(620px, calc(100svh - 96px));
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 253, 251, 0.96) 0%, rgba(255, 253, 251, 0.78) 39%, rgba(255, 253, 251, 0.14) 71%),
    linear-gradient(180deg, rgba(72, 70, 65, 0.06), rgba(72, 70, 65, 0.12));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 90px) clamp(20px, 5vw, 56px) 56px;
  align-self: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--olive);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 590px;
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 520px;
  margin: 22px 0 0;
  color: #504d48;
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius-sm);
  font-weight: 850;
}

.button.primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 16px 30px rgba(255, 110, 96, 0.28);
}

.button.primary:hover,
.header-cta:hover {
  background: var(--coral-dark);
}

.button.secondary {
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(72, 70, 65, 0.16);
}

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

.button.compact {
  white-space: nowrap;
}

.intro-band {
  padding: 34px clamp(20px, 5vw, 56px);
  background: var(--light);
  border-bottom: 1px solid var(--line);
}

.content-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(26px, 5vw, 68px);
}

.align-center {
  align-items: center;
}

.intro-copy,
.quick-start {
  padding: 8px 0;
}

.intro-band h2,
.section-shell h2,
.stripe-band h2,
.questions h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.intro-band p,
.section-shell p,
.stripe-band p,
.questions p,
.site-footer {
  color: var(--ink-soft);
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--coral-dark);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(255, 110, 96, 0.45);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.section-shell {
  padding: clamp(68px, 9vw, 112px) clamp(20px, 5vw, 56px);
}

.guidelines {
  background: var(--paper);
}

.link-stack {
  display: grid;
  gap: 14px;
}

.policy-link {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(72, 70, 65, 0.07);
  font-weight: 850;
}

.policy-link:hover {
  border-color: rgba(255, 110, 96, 0.45);
  transform: translateY(-1px);
}

.policy-link.rose:hover {
  border-color: rgba(168, 92, 102, 0.45);
}

.link-icon {
  position: relative;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 2px solid var(--coral);
  border-radius: 8px;
}

.link-icon::before,
.link-icon::after {
  position: absolute;
  content: "";
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--olive);
  border-radius: 2px;
}

.link-icon::before {
  top: 13px;
}

.link-icon::after {
  top: 23px;
}

.formats {
  background:
    linear-gradient(90deg, rgba(238, 238, 238, 0.7) 1px, transparent 1px),
    linear-gradient(180deg, rgba(238, 238, 238, 0.7) 1px, transparent 1px),
    var(--white);
  background-size: 46px 46px;
}

.section-heading {
  width: min(100%, 820px);
  margin: 0 auto clamp(28px, 5vw, 54px);
  text-align: center;
}

.section-heading p:last-child {
  max-width: 670px;
  margin: 16px auto 0;
}

.format-grid,
.step-grid {
  display: grid;
  width: min(100%, var(--max));
  margin: 0 auto;
  gap: 18px;
}

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

.format-card,
.step-card,
.fee-note {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.format-card {
  min-height: 510px;
  padding: 0 24px 24px;
  overflow: hidden;
}

.format-card.featured {
  border-color: rgba(255, 110, 96, 0.48);
  box-shadow: 0 24px 54px rgba(255, 110, 96, 0.16);
}

.format-image {
  width: calc(100% + 48px);
  height: auto;
  max-width: none;
  aspect-ratio: 8 / 5;
  margin: 0 -24px 18px;
  object-fit: cover;
  background: var(--light);
}

.format-topline {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 44px;
  color: var(--olive);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.format-mark {
  width: 32px;
  height: 32px;
  border: 2px solid currentColor;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 45%, currentColor 45% 55%, transparent 55%),
    linear-gradient(180deg, transparent 45%, currentColor 45% 55%, transparent 55%);
}

.format-card h3,
.step-card h3,
.fee-note h3 {
  margin: 18px 0 12px;
  color: var(--charcoal);
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: 0;
}

.format-card p,
.step-card p,
.fee-note p {
  margin-bottom: 0;
}

.stripe-band {
  padding: clamp(54px, 7vw, 78px) clamp(20px, 5vw, 56px);
  color: var(--white);
  background: var(--charcoal);
}

.stripe-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.stripe-band .section-kicker {
  color: #d7d28a;
}

.stripe-band h2,
.stripe-band p {
  color: var(--white);
}

.stripe-band p {
  max-width: 680px;
  margin-bottom: 0;
  opacity: 0.86;
}

.setup {
  background: var(--paper);
}

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

.step-card {
  min-height: 360px;
  padding: 22px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--rose);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.step-card h3 span {
  display: block;
  color: var(--gray);
  font-size: 15px;
}

.fee-section {
  background: var(--white);
}

.fee-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: clamp(22px, 5vw, 64px);
  width: min(100%, var(--max));
  margin: 0 auto;
  align-items: stretch;
}

.fee-layout > div {
  padding: clamp(20px, 4vw, 36px) 0;
}

.fee-note {
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(168, 92, 102, 0.1), rgba(153, 151, 54, 0.12)),
    var(--white);
}

.questions {
  padding: clamp(62px, 8vw, 96px) clamp(20px, 5vw, 56px);
  background:
    linear-gradient(135deg, rgba(255, 110, 96, 0.92), rgba(168, 92, 102, 0.9)),
    var(--coral);
}

.questions-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.44fr);
  gap: clamp(24px, 5vw, 56px);
  width: min(100%, var(--max));
  margin: 0 auto;
  align-items: center;
}

.questions .section-kicker,
.questions h2,
.questions p {
  color: var(--white);
}

.questions p {
  max-width: 620px;
  opacity: 0.9;
}

.question-actions {
  display: grid;
  gap: 14px;
}

.questions-illustration {
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: var(--radius-sm);
  box-shadow: 0 18px 42px rgba(72, 70, 65, 0.18);
}

.button.light {
  background: var(--white);
  border-color: transparent;
}

.email-link {
  display: grid;
  min-height: 72px;
  padding: 14px 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: var(--radius-sm);
  font-size: 20px;
  font-weight: 850;
}

.email-link span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 22px;
  min-height: 86px;
  padding: 24px clamp(20px, 5vw, 56px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-footer span {
  color: var(--charcoal);
  font-weight: 850;
}

.site-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink-soft);
  text-decoration: underline;
  text-decoration-color: rgba(153, 151, 54, 0.55);
  text-underline-offset: 5px;
}

@media (max-width: 1080px) {
  .format-grid,
  .step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .format-card,
  .step-card {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header {
    min-height: 64px;
    padding-inline: 16px;
  }

  .hero {
    min-height: min(540px, calc(100svh - 74px));
  }

  .hero-media img {
    object-position: center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(255, 253, 251, 0.92) 0%, rgba(255, 253, 251, 0.74) 45%, rgba(72, 70, 65, 0.42) 100%),
      linear-gradient(90deg, rgba(255, 253, 251, 0.8), rgba(255, 253, 251, 0.08));
  }

  .hero-content {
    align-self: end;
    padding: 42px 20px 34px;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .hero-copy {
    max-width: 94%;
    color: var(--charcoal);
    font-size: 17px;
  }

  .two-column,
  .stripe-inner,
  .fee-layout,
  .questions-inner {
    grid-template-columns: 1fr;
  }

  .stripe-inner {
    display: grid;
  }

  .button.compact {
    white-space: normal;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: min(520px, calc(100svh - 70px));
  }

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

  .button {
    padding-inline: 16px;
  }

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

  .section-heading {
    text-align: left;
  }

  .section-shell {
    padding-block: 58px;
  }

  .intro-band h2,
  .section-shell h2,
  .stripe-band h2,
  .questions h2 {
    font-size: 31px;
  }

  .policy-link {
    align-items: flex-start;
  }

  .email-link {
    font-size: 18px;
  }
}

@media (max-width: 360px) {
  .brand-logo {
    width: 102px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-copy,
  .intro-band p,
  .section-shell p,
  .stripe-band p,
  .questions p {
    font-size: 16px;
  }
}
