:root {
  --ink: #0d1f3c;
  --ink-2: #4a5870;
  --ink-3: #7f8da3;
  --ink-4: #b4bfcd;
  --cream: #fff4e8;
  --cream-2: #f8e8d6;
  --card: rgba(255, 255, 255, 0.76);
  --card-strong: rgba(255, 255, 255, 0.9);
  --line: #e3e8f0;
  --blue: #1a55ff;
  --blue-soft: #e7edff;
  --green: #1ea05a;
  --green-soft: #dff2e6;
  --peach: #ffcfa6;
  --peach-soft: #fff0e2;
  --sand-soft: #f6ece1;
  --shadow: 0 18px 46px rgba(13, 31, 60, 0.08);
  --shadow-deep: 0 36px 86px rgba(13, 31, 60, 0.18);
  --serif: Fraunces, Georgia, serif;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  background:
    linear-gradient(135deg, rgba(255, 207, 166, 0.58) 0%, rgba(255, 244, 232, 0) 42%),
    linear-gradient(315deg, rgba(255, 216, 188, 0.45) 0%, rgba(255, 244, 232, 0) 46%),
    linear-gradient(180deg, #fff3e6 0%, #faead8 42%, #f5e3d0 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(13, 31, 60, 0.035) 1px, transparent 1px);
  background-size: 100% 92px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 78%);
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

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

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.container {
  width: min(100% - 64px, 1180px);
  margin: 0 auto;
  position: relative;
}

.narrow {
  width: min(100% - 64px, 1080px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(255, 243, 230, 0.92), rgba(255, 243, 230, 0.7));
  border-bottom: 1px solid rgba(227, 232, 240, 0.64);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.header-inner {
  min-height: 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 10px 24px rgba(120, 60, 20, 0.16);
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-word {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink-2);
  font-size: 0.875rem;
  font-weight: 600;
}

.primary-nav a:hover {
  color: var(--ink);
}

.nav-cta,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #2864ff, var(--blue));
  box-shadow: 0 8px 20px rgba(26, 85, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.nav-cta {
  justify-self: end;
  min-height: 42px;
  padding: 0 20px;
  font-size: 0.875rem;
}

.nav-cta:hover,
.cta-button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(26, 85, 255, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-section {
  padding: 82px 0 62px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(520px, 1.04fr);
  align-items: center;
  gap: 56px;
}

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow {
  margin-bottom: 24px;
  padding: 7px 14px 7px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
}

.eyebrow span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: var(--blue);
  background: var(--blue-soft);
  font-family: var(--sans);
  font-size: 0.85rem;
}

.hero-copy h1,
.problem-section h2,
.section-heading h2,
.preview-copy h2,
.audience-card h2,
.guest-section h2,
.pricing-section h2,
.final-cta h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--ink);
}

.hero-copy h1 {
  max-width: 720px;
  font-size: 4.75rem;
}

.hero-description {
  max-width: 560px;
  margin-top: 24px;
  color: var(--ink-2);
  font-size: 1.18rem;
  line-height: 1.58;
}

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

.waitlist-form {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  width: min(100%, 520px);
  min-height: 58px;
  padding: 6px;
  border: 1px solid rgba(227, 232, 240, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(13, 31, 60, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.email-field {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 11px;
  padding: 0 13px;
}

.email-field svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--ink-3);
  stroke-width: 1.8;
  flex: 0 0 auto;
}

.email-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 0.98rem;
}

.email-field input::placeholder {
  color: var(--ink-3);
}

.cta-button {
  min-width: 148px;
  padding: 0 22px;
  font-size: 0.94rem;
  white-space: nowrap;
}

.cta-button:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.btn-loading[hidden],
.btn-text[hidden] {
  display: none;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 8px;
  color: var(--ink);
  font-weight: 800;
}

.secondary-link span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: transparent;
  font-size: 0;
}

.secondary-link span::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid var(--blue);
}

.message {
  width: min(520px, 100%);
  margin-top: 12px;
  padding: 12px 15px;
  border-radius: 14px;
  font-size: 0.88rem;
  font-weight: 800;
}

.message[hidden] {
  display: none;
}

.message.success {
  color: #126c39;
  background: #ecf8ef;
  border: 1px solid #b9dfc4;
}

.message.error {
  color: #a73525;
  background: #fff1ef;
  border: 1px solid #f4b9ac;
}

.trust-note {
  max-width: 520px;
  margin-top: 26px;
  color: var(--ink-3);
  font-size: 0.83rem;
}

.hero-visual {
  position: relative;
  min-height: 660px;
}

.phone {
  position: absolute;
  width: 280px;
  height: 580px;
  padding: 8px;
  border-radius: 44px;
  background: linear-gradient(160deg, #1a2233, #0b1424);
  box-shadow: var(--shadow-deep), inset 0 0 0 1.5px rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 36px;
  padding: 56px 20px 22px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 207, 166, 0.78), rgba(255, 244, 232, 0) 48%),
    linear-gradient(315deg, rgba(255, 199, 168, 0.42), rgba(255, 244, 232, 0) 52%),
    linear-gradient(180deg, #fff3e6, #f6e3d0);
  font-family: var(--sans);
}

.phone-island {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 86px;
  height: 24px;
  border-radius: 999px;
  background: #0b1424;
  transform: translateX(-50%);
}

.phone h2 {
  font-family: var(--serif);
  font-size: 1.75rem;
  line-height: 1.08;
  font-weight: 600;
}

.screen-lede,
.screen-header p {
  margin-top: 6px;
  color: var(--ink-2);
  font-size: 0.75rem;
  line-height: 1.4;
}

.phone-family {
  left: 0;
  top: 42px;
  z-index: 1;
  width: 250px;
  height: 520px;
  transform: rotate(-6deg);
}

.phone-home {
  left: 50%;
  top: 0;
  z-index: 3;
  transform: translateX(-50%);
}

.phone-wishlist {
  right: 0;
  top: 42px;
  z-index: 2;
  width: 250px;
  height: 520px;
  transform: rotate(6deg);
}

.screen-header,
.screen-section-row,
.price-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.avatar-token {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(160deg, #d8e2f1, #aebcd0);
  border: 2px solid #fff;
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 3px 10px rgba(13, 31, 60, 0.12);
}

.attention-grid,
.people-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 18px;
}

.mini-card,
.person-card,
.occasion-row,
.gift-row,
.feature-list article,
.guest-beats article {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 5px 14px rgba(13, 31, 60, 0.055);
}

.mini-card {
  min-height: 106px;
  padding: 11px;
  border-radius: 14px;
}

.mini-card strong,
.person-card strong {
  display: block;
  margin-top: 10px;
  font-size: 0.72rem;
  line-height: 1.2;
}

.mini-card small,
.person-card small {
  display: block;
  margin-top: 2px;
  color: var(--ink-3);
  font-size: 0.59rem;
}

.soft-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.soft-icon::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 5px;
  border: 2px solid currentColor;
  transform: rotate(8deg);
}

.soft-icon.blue {
  color: var(--blue);
  background: var(--blue-soft);
}

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

.soft-icon.peach {
  color: #c8732a;
  background: var(--peach-soft);
}

.soft-icon.sand {
  color: #8a6638;
  background: var(--sand-soft);
}

.screen-section-title,
.screen-section-row {
  margin-top: 18px;
  font-size: 0.82rem;
  font-weight: 800;
}

.screen-section-row span {
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue);
  background: #fff;
  font-size: 0.68rem;
}

.person-card {
  overflow: hidden;
  border-radius: 14px;
}

.person-card strong,
.person-card small {
  padding-inline: 9px;
}

.person-card small {
  padding-bottom: 9px;
}

.person-photo {
  display: grid;
  place-items: center;
  height: 78px;
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 600;
}

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

.people-strip .person-photo {
  height: 94px;
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: 0 5px 14px rgba(13, 31, 60, 0.055);
}

.peach {
  color: #5a2d12;
  background: linear-gradient(160deg, #fde4cf, #e69462);
}

.sage {
  color: #3a4524;
  background: linear-gradient(160deg, #e6ecd8, #94a371);
}

.rose {
  color: #5a2230;
  background: linear-gradient(160deg, #f6dde0, #b97580);
}

.occasion-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 16px;
}

.occasion-row p,
.gift-row p {
  display: grid;
  min-width: 0;
}

.occasion-row strong,
.gift-row strong {
  color: var(--ink);
  font-size: 0.72rem;
  line-height: 1.2;
}

.occasion-row small,
.gift-row small,
.progress-label {
  color: var(--ink-3);
  font-size: 0.62rem;
}

.phone-dock {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 14px;
  display: flex;
  justify-content: space-around;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 20px rgba(13, 31, 60, 0.1);
}

.phone-dock span {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: var(--ink-4);
  opacity: 0.45;
}

.phone-dock .active {
  background: var(--blue);
  opacity: 1;
}

.back-row,
.guest-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: var(--ink-3);
  font-size: 0.68rem;
  font-weight: 700;
}

.back-row span {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
}

.progress-track {
  height: 6px;
  margin-top: 14px;
  border-radius: 999px;
  overflow: hidden;
  background: #f0e2d3;
}

.progress-track span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.gift-list {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.gift-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 60px;
  padding: 10px;
  border-radius: 14px;
}

.gift-row.muted {
  opacity: 0.86;
  background: #f6f4f0;
  box-shadow: none;
}

.gift-swatch {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  flex: 0 0 auto;
}

.gift-swatch.pale {
  background: linear-gradient(160deg, #fff, #e7ecf4);
}

.gift-swatch.gold {
  background: linear-gradient(160deg, #e8d4a8, #c9a45e);
}

.gift-swatch.linen {
  background: linear-gradient(160deg, #ebe1d3, #c2b196);
}

.gift-swatch.clay {
  background: linear-gradient(160deg, #f4d6c6, #cf8470);
}

.gift-row em {
  color: var(--green);
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 800;
}

.gift-row em.reserved {
  color: #ad7200;
}

.gift-row button {
  margin-left: auto;
  border: 0;
  border-radius: 999px;
  padding: 7px 11px;
  color: #fff;
  background: var(--blue);
  font-size: 0.63rem;
  font-weight: 800;
}

.problem-section,
.how-section,
.preview-section,
.audience-section,
.guest-section,
.pricing-section,
.final-cta {
  padding: 86px 0;
}

.problem-section h2,
.section-heading h2,
.preview-copy h2,
.audience-card h2,
.guest-section h2,
.pricing-section h2 {
  margin-top: 12px;
  font-size: 3rem;
}

.section-lede,
.section-heading p,
.audience-card p,
.final-cta p {
  color: var(--ink-2);
  font-size: 1.08rem;
  line-height: 1.64;
}

.section-lede {
  max-width: 700px;
  margin-top: 20px;
}

.idea-cloud {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 26px;
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.idea-cloud span {
  display: grid;
  gap: 1px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.idea-cloud span:first-child {
  color: var(--blue);
  background: var(--blue-soft);
  border-color: #cdd9ff;
}

.idea-cloud small {
  color: var(--ink-3);
  font-size: 0.72rem;
  font-weight: 600;
}

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

.section-heading.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 44px;
}

.section-heading.split > p {
  max-width: 370px;
  margin-bottom: 4px;
}

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

.section-heading.center p {
  max-width: 590px;
  margin: 16px auto 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}

.step-card {
  min-height: 270px;
  padding: 28px;
}

.step-card .step-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  background: #fff;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  box-shadow: 0 5px 14px rgba(13, 31, 60, 0.06);
}

.step-card .soft-icon {
  position: absolute;
  top: 28px;
  right: 28px;
}

.step-card h3,
.feature-list h3,
.guest-beats h3 {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.25;
}

.step-card h3 {
  max-width: 220px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
}

.step-card p,
.feature-list p,
.guest-beats p {
  margin-top: 10px;
  color: var(--ink-2);
  font-size: 0.92rem;
  line-height: 1.58;
}

.preview-grid,
.guest-grid {
  display: grid;
  grid-template-columns: minmax(440px, 0.96fr) minmax(0, 1.04fr);
  align-items: center;
  gap: 72px;
}

.phone-pair {
  position: relative;
  min-height: 700px;
}

.preview-phone-a {
  left: 18px;
  top: 46px;
  transform: rotate(-4deg);
}

.preview-phone-b {
  right: 12px;
  top: 86px;
  transform: rotate(5deg);
}

.people-grid.compact {
  margin-bottom: 18px;
}

.preview-copy {
  max-width: 520px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.feature-list article {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 15px 16px;
  border-color: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.audience-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 44px;
  padding: 56px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 207, 166, 0.26), rgba(255, 255, 255, 0) 48%),
    var(--card);
}

.audience-card p {
  margin-top: 20px;
}

.affirmation-list {
  display: grid;
  align-content: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.affirmation-list li {
  position: relative;
  padding: 13px 18px 13px 50px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(13, 31, 60, 0.05);
  font-weight: 700;
}

.affirmation-list li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue-soft);
  transform: translateY(-50%);
}

.guest-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
}

.guest-beats {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.guest-beats article {
  display: flex;
  gap: 18px;
  padding: 17px 20px;
  border-color: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.guest-beats span {
  min-width: 30px;
  padding-top: 2px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 800;
}

.guest-phone-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 690px;
}

.guest-phone {
  position: relative;
  width: 320px;
  height: 650px;
}

.guest-phone .gift-row {
  min-height: 66px;
}

.privacy-note {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  line-height: 1.4;
}

.floating-note {
  position: absolute;
  z-index: 5;
  max-width: 190px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  color: var(--ink-2);
  font-size: 0.8rem;
  font-weight: 800;
}

.floating-note.top {
  top: 96px;
  right: 6px;
}

.floating-note.bottom {
  left: 0;
  bottom: 132px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.price-card {
  min-height: 390px;
  padding: 32px;
}

.price-head span,
.price-head small {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price-head small {
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--green);
  background: var(--green-soft);
}

.price-card > strong {
  display: block;
  margin-top: 18px;
  font-family: var(--serif);
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 600;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue-soft);
}

.pro-card {
  border: 0;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(165deg, rgba(13, 31, 60, 0.96), rgba(20, 42, 84, 0.96));
  box-shadow: var(--shadow-deep);
}

.pro-card .price-head small {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.pro-card p,
.pro-card li {
  color: rgba(255, 255, 255, 0.78);
}

.pro-card p {
  margin-top: 14px;
}

.pro-card li::before {
  background: rgba(255, 255, 255, 0.14);
}

.final-cta {
  padding-bottom: 118px;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  align-items: center;
  gap: 52px;
  padding: 70px 56px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 224, 200, 0.9), rgba(255, 238, 217, 0.32) 48%),
    linear-gradient(315deg, rgba(255, 210, 180, 0.68), rgba(244, 220, 196, 0.34)),
    #ffeed9;
  box-shadow: var(--shadow-deep), inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.final-cta h2 {
  max-width: 590px;
  margin-top: 14px;
  font-size: 4rem;
}

.final-cta p {
  max-width: 520px;
  margin-top: 22px;
}

.bottom-form-wrap {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 40px rgba(13, 31, 60, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.bottom-form-wrap .message {
  width: 100%;
}

.waitlist-form.compact {
  width: 100%;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 54px;
  padding: 5px;
  box-shadow: none;
}

.waitlist-form.compact .cta-button {
  min-width: 92px;
}

.form-note {
  margin-top: 14px;
  color: var(--ink-3);
  font-size: 0.8rem;
  line-height: 1.5;
}

.site-footer {
  padding: 34px 0 58px;
  border-top: 1px solid rgba(227, 232, 240, 0.72);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--ink-3);
  font-size: 0.83rem;
}

.footer-brand .brand-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.footer-brand .brand-word {
  font-size: 1.2rem;
}

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

.site-footer a:hover {
  color: var(--ink);
}

@media (max-width: 1120px) {
  .hero-grid,
  .preview-grid,
  .guest-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .preview-copy {
    max-width: 760px;
  }

  .hero-visual,
  .phone-pair,
  .guest-phone-wrap {
    width: min(100%, 720px);
    margin: 0 auto;
  }

  .steps-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .container,
  .narrow {
    width: min(100% - 32px, 100%);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    display: none;
  }

  .hero-section {
    padding-top: 54px;
  }

  .hero-copy h1 {
    font-size: 3.35rem;
  }

  .hero-description {
    font-size: 1.05rem;
  }

  .hero-actions {
    display: grid;
    align-items: stretch;
  }

  .waitlist-form {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .email-field {
    min-height: 48px;
  }

  .cta-button {
    min-height: 48px;
    width: 100%;
  }

  .secondary-link {
    width: max-content;
  }

  .hero-visual {
    min-height: 590px;
    margin-top: 18px;
  }

  .phone-home {
    left: 50%;
    width: 270px;
    height: 560px;
  }

  .phone-family,
  .phone-wishlist {
    opacity: 0.58;
    transform: none;
  }

  .phone-family {
    left: -28px;
    top: 76px;
  }

  .phone-wishlist {
    right: -28px;
    top: 76px;
  }

  .problem-section,
  .how-section,
  .preview-section,
  .audience-section,
  .guest-section,
  .pricing-section,
  .final-cta {
    padding: 64px 0;
  }

  .problem-section h2,
  .section-heading h2,
  .preview-copy h2,
  .audience-card h2,
  .guest-section h2,
  .pricing-section h2 {
    font-size: 2.35rem;
  }

  .section-heading.split,
  .audience-card {
    display: grid;
    grid-template-columns: 1fr;
  }

  .audience-card,
  .cta-panel {
    padding: 34px 24px;
    border-radius: 26px;
  }

  .final-cta h2 {
    font-size: 2.75rem;
  }

  .phone-pair {
    min-height: 610px;
  }

  .preview-phone-a {
    left: 0;
    top: 28px;
  }

  .preview-phone-b {
    right: 0;
    top: 78px;
  }

  .floating-note {
    display: none;
  }
}

@media (max-width: 560px) {
  .nav-cta {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.8rem;
  }

  .brand-icon {
    width: 34px;
    height: 34px;
  }

  .brand-word {
    font-size: 1.3rem;
  }

  .hero-copy h1 {
    font-size: 2.8rem;
  }

  .eyebrow {
    max-width: 100%;
    white-space: normal;
    align-items: flex-start;
  }

  .hero-visual {
    min-height: 548px;
  }

  .phone-home {
    width: 250px;
    height: 520px;
  }

  .phone-family,
  .phone-wishlist {
    display: none;
  }

  .phone-pair {
    min-height: 550px;
  }

  .preview-phone-a {
    display: none;
  }

  .preview-phone-b {
    left: 50%;
    right: auto;
    top: 0;
    width: 250px;
    height: 520px;
    transform: translateX(-50%);
  }

  .guest-phone {
    width: 280px;
    height: 584px;
  }

  .guest-phone-wrap {
    min-height: 604px;
  }

  .idea-cloud {
    padding: 18px;
  }

  .idea-cloud span {
    width: 100%;
  }

  .steps-grid,
  .feature-list,
  .guest-beats {
    gap: 12px;
  }

  .step-card {
    min-height: auto;
    padding: 24px;
  }

  .affirmation-list li {
    border-radius: 18px;
  }

  .bottom-form-wrap {
    padding: 16px;
  }

  .waitlist-form.compact {
    grid-template-columns: 1fr;
  }

  .waitlist-form.compact .cta-button {
    min-width: 0;
  }

  .footer-inner,
  .site-footer nav {
    align-items: flex-start;
    flex-direction: column;
  }
}
