/* Alara marketing — adapted from MuleRun design, corrected for product truth */
:root {
  --cream: #FDEEF1;
  --cream-2: #F9DCE3;
  --sand: #F3C6D1;
  --terra: #D6336C;
  --terra-deep: #A61E4D;
  --sage: #F0A9BE;
  --sage-deep: #B8557A;
  --ink: #3A1425;
  --ink-soft: #6B3A50;
  --paper: #FFF6F8;
  --sun: #FFB1C8;
  --clay: #F27BA3;
  --shadow: 0 20px 40px -20px rgba(120, 20, 60, 0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.serif { font-family: 'Fraunces', serif; font-weight: 500; letter-spacing: -0.02em; }
.hand { font-family: 'Caveat', cursive; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
section { padding: 110px 0; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 238, 241, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(58, 20, 37, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  max-width: 1240px;
  margin: 0 auto;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img { width: 130px; height: auto; }

.nav-links { display: flex; gap: 32px; font-size: 15px; font-weight: 500; }
.nav-links a { opacity: 0.75; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }

.nav-cta { display: flex; gap: 10px; align-items: center; }

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(58, 20, 37, 0.15);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-btn span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.2s, opacity 0.2s;
}

.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.drawer {
  display: none;
  flex-direction: column;
  padding: 12px 28px 20px;
  border-bottom: 1px solid rgba(58, 20, 37, 0.06);
  background: rgba(253, 238, 241, 0.98);
}

.drawer.is-open { display: flex; }
.drawer a { padding: 14px 0; font-weight: 500; border-bottom: 1px solid rgba(58, 20, 37, 0.06); color: var(--ink-soft); }
.drawer a:last-child { border-bottom: none; color: var(--ink); font-weight: 600; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--terra);
  color: var(--paper);
  box-shadow: 0 6px 0 var(--terra-deep);
}

.btn-primary:hover { box-shadow: 0 4px 0 var(--terra-deep); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(58, 20, 37, 0.15);
}

.btn-ghost:hover { border-color: var(--ink); }

/* Hero */
.hero { padding: 80px 0 60px; position: relative; overflow: hidden; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--cream-2);
  border: 1px solid rgba(58, 20, 37, 0.08);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

h1.hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 22px 0 24px;
}

h1 .italic { font-style: italic; font-weight: 400; color: var(--terra); }

h1 .under {
  position: relative;
  display: inline-block;
}

h1 .under::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 14px;
  background: var(--sun);
  opacity: 0.4;
  z-index: -1;
  border-radius: 6px;
  transform: skewX(-6deg);
}

.hero-sub {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 420px;
}

.hero-side {
  position: relative;
  min-width: 0;
}

.hero-waitlist {
  background: var(--paper);
  border: 1px solid rgba(58, 20, 37, 0.1);
  border-radius: 28px;
  padding: 28px 26px 22px;
  box-shadow: var(--shadow);
  max-width: 440px;
  margin-left: auto;
}

.hero-wl-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terra);
  margin: 0 0 8px;
}

.hero-wl-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.65rem;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--ink);
}

.hero-wl-lead {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0 0 14px;
  line-height: 1.45;
}

.hero-wl-count {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 18px;
}

.hero-wl-form { display: flex; flex-direction: column; gap: 6px; }

.hero-wl-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
}

.hero-wl-label span {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  opacity: 0.75;
}

.hero-wl-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(58, 20, 37, 0.14);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
}

.hero-wl-input:focus {
  outline: none;
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(214, 51, 108, 0.15);
}

.hero-wl-btn {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}

.hero-wl-err {
  margin: 8px 0 0;
  font-size: 0.85rem;
  color: #b42318;
}

.hero-wl-ok {
  margin-top: 8px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(31, 138, 91, 0.08);
  border: 1px solid rgba(31, 138, 91, 0.2);
}

.hero-wl-ok strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--ink);
}

.hero-wl-ok p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.hero-wl-fine {
  margin: 14px 0 0;
  font-size: 0.8rem;
}

.hero-wl-fine a { color: var(--terra); font-weight: 600; }
.hero-wl-fine a:hover { text-decoration: underline; }

.hero-side.has-waitlist .hero-art { display: none; }
.hero-side:not(.has-waitlist) .hero-waitlist { display: none !important; }

.hero-art {
  position: relative;
  aspect-ratio: 1 / 1.1;
  max-width: 540px;
  margin-left: auto;
  overflow: hidden;
  border-radius: 32px;
}

.hero-illus {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 1px rgba(58, 20, 37, 0.05);
  background: var(--paper);
}

.hero-illus img { width: 100%; height: 100%; object-fit: cover; }

.blob {
  position: absolute;
  inset: -8% -6% 40% 40%;
  background: radial-gradient(60% 60% at 60% 40%, #FFC1D6 0%, #F27BA3 45%, transparent 70%);
  filter: blur(24px);
  border-radius: 50%;
  transform: rotate(-8deg);
  z-index: -1;
}

.window {
  position: absolute;
  right: 4%;
  bottom: 4%;
  width: 62%;
  max-width: 320px;
  background: var(--paper);
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(58, 20, 37, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.win-bar {
  display: flex;
  gap: 6px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(58, 20, 37, 0.06);
}

.win-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #F27BA3;
}

.win-bar span:nth-child(2) { background: var(--sun); }
.win-bar span:nth-child(3) { background: var(--sage); }

.chat {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14.5px;
}

.msg {
  max-width: 82%;
  padding: 12px 16px;
  border-radius: 18px;
  line-height: 1.45;
}

.msg.user {
  align-self: flex-end;
  background: var(--terra);
  color: var(--paper);
  border-bottom-right-radius: 6px;
}

.msg.ai {
  align-self: flex-start;
  background: var(--cream-2);
  color: var(--ink);
  border-bottom-left-radius: 6px;
}

.msg.ai b { font-family: 'Fraunces', serif; font-weight: 600; }

.win-input {
  margin: 0 14px 14px;
  padding: 10px 14px;
  background: var(--cream);
  border-radius: 12px;
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.win-input .send {
  width: 30px;
  height: 30px;
  background: var(--terra);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--paper);
  flex-shrink: 0;
}

.win-input .send svg { width: 14px; height: 14px; }

/* Marquee */
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: scroll 30s linear infinite;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  white-space: nowrap;
  font-style: italic;
  width: max-content;
}

.marquee-track span { opacity: 0.9; }
.marquee-track em { color: var(--sun); font-style: normal; margin: 0 20px; }

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Section headers */
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }

.sec-tag {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  color: var(--terra);
  margin-bottom: 6px;
}

.sec-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.sec-sub { margin-top: 18px; font-size: 17px; color: var(--ink-soft); }

/* Story */
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.story-card {
  background: var(--paper);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  border: 1px solid rgba(58, 20, 37, 0.06);
  box-shadow: 0 2px 0 rgba(58, 20, 37, 0.04);
  transition: transform 0.3s;
}

.story-card:hover { transform: translateY(-4px); }

.beat {
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  color: var(--terra);
  opacity: 0.15;
}

.story-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin: 12px 0 10px;
}

.story-card p { color: var(--ink-soft); font-size: 15.5px; }

.icon-bubble {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--cream-2);
  color: var(--terra-deep);
}

.icon-bubble svg { width: 28px; height: 28px; stroke-width: 1.8; }

/* Features */
.feat-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: 22px;
}

.feat {
  background: var(--paper);
  border-radius: 28px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(58, 20, 37, 0.06);
}

.feat.big {
  grid-row: span 2;
  background: linear-gradient(160deg, #FFD5E1 0%, #F8A9C0 100%);
}

.feat.dark { background: var(--ink); color: var(--cream); }
.feat.dark h3 { color: var(--paper); }
.feat.dark p { color: rgba(251, 247, 238, 0.7); }

.feat.sage {
  background: linear-gradient(160deg, #FFC1D6 0%, #F27BA3 100%);
  color: var(--ink);
}

.feat h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 30px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.1;
}

.feat.big h3 { font-size: 44px; }
.feat.big p { max-width: 420px; }

.feat-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}

.feat-academy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(160deg, #FFE0EA 0%, #F27BA3 100%);
  color: var(--ink);
}

.feat-academy p { color: var(--ink-soft); max-width: none; }

.feat-academy__art { margin-top: 0; }

.feat-memory {
  background: var(--paper);
  display: flex;
  flex-direction: column;
}

.feat-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.feat-list li {
  position: relative;
  padding: 7px 0 7px 22px;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--ink-soft);
}

.feat-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terra);
}

.feat-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--terra-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.feat-link:hover { color: var(--terra); }

.memory-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
}

.memory-pills span {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  background: var(--cream-2);
  border: 1px solid rgba(58, 20, 37, 0.08);
  color: var(--ink-soft);
}

.feat .tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(58, 20, 37, 0.08);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.feat.dark .tag { background: rgba(255, 255, 255, 0.12); color: var(--sun); }

.feat p { color: var(--ink-soft); font-size: 16px; max-width: 420px; }

.feat-visual { margin-top: 24px; }

.mini-chat { display: flex; flex-direction: column; gap: 8px; }
.mini-chat .msg { font-size: 13px; padding: 9px 13px; border-radius: 14px; }
.mini-chat .msg.user { background: var(--terra); }
.mini-chat .msg.ai { background: rgba(58, 20, 37, 0.08); color: var(--ink); }
.feat.big .mini-chat .msg.ai { background: rgba(255, 255, 255, 0.5); }

.art-hero {
  margin-top: 18px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px -12px rgba(120, 20, 60, 0.35);
}

.art-hero img { width: 100%; height: auto; }

.code-block {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 14px;
  padding: 16px;
  font-family: ui-monospace, monospace;
  font-size: 12.5px;
  color: #FFD5E1;
  line-height: 1.7;
  margin-top: 18px;
}

.code-block .kw { color: var(--sun); }
.code-block .st { color: var(--clay); }
.code-block .cm { color: #F0A9BE; opacity: 0.8; }

.lesson-list { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }

.lesson-list div {
  background: rgba(58, 20, 37, 0.08);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lesson-list .check,
.lesson-list .arrow-ic {
  width: 22px;
  height: 22px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.lesson-list .check svg,
.lesson-list .arrow-ic svg { width: 12px; height: 12px; }

/* Testimonials */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.quote {
  background: var(--paper);
  border-radius: 24px;
  padding: 30px;
  border: 1px solid rgba(58, 20, 37, 0.06);
  position: relative;
}

.quote::before {
  content: "\201C";
  position: absolute;
  top: 0;
  left: 20px;
  font-family: 'Fraunces', serif;
  font-size: 80px;
  color: var(--terra);
  opacity: 0.2;
  line-height: 1;
}

.quote p {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  margin: 20px 0 22px;
}

.qwho { display: flex; align-items: center; gap: 12px; }
.qav { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.qwho b { display: block; font-size: 14px; }
.qwho span { font-size: 13px; color: var(--ink-soft); }

.testimonial-note {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--ink-soft);
}

/* Pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}

.price {
  background: var(--paper);
  border-radius: 28px;
  padding: 36px;
  border: 1px solid rgba(58, 20, 37, 0.08);
  display: flex;
  flex-direction: column;
}

.price.featured {
  background: var(--ink);
  color: var(--cream);
  transform: scale(1.03);
  box-shadow: var(--shadow);
  position: relative;
}

.price.featured h3,
.price.featured .amt { color: var(--paper); }
.price.featured p,
.price.featured li { color: rgba(251, 247, 238, 0.75); }

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sun);
  color: var(--ink);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 6px;
}

.price .desc { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 22px; }

.amt {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

.amt small {
  font-size: 16px;
  color: var(--ink-soft);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  margin-left: 4px;
}

.price ul { list-style: none; margin: 26px 0; flex: 1; }

.price li {
  padding: 9px 0;
  font-size: 15px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink);
}

.price li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  background-color: var(--terra);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / contain no-repeat;
}

.price.featured li { color: rgba(251, 247, 238, 0.85); }
.price.featured li::before { background-color: var(--sun); }

/* FAQ */
.faq-wrap { max-width: 820px; margin: 0 auto; }

.faq {
  background: var(--paper);
  border-radius: 18px;
  margin-bottom: 12px;
  border: 1px solid rgba(58, 20, 37, 0.06);
  overflow: hidden;
}

.faq summary {
  padding: 22px 26px;
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 19px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.01em;
}

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

.faq summary::after {
  content: "+";
  font-size: 26px;
  color: var(--terra);
  transition: transform 0.3s;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.faq[open] summary::after { transform: rotate(45deg); }

.faq-body {
  padding: 0 26px 22px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}

.faq-body a { color: var(--terra-deep); text-decoration: underline; text-underline-offset: 3px; }

/* CTA */
.cta-band {
  background: linear-gradient(140deg, var(--terra) 0%, var(--terra-deep) 100%);
  border-radius: 36px;
  padding: 80px 40px;
  text-align: center;
  color: var(--paper);
  position: relative;
  overflow: hidden;
  margin: 60px 0;
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--sun);
  opacity: 0.25;
  filter: blur(40px);
}

.cta-band::before { width: 260px; height: 260px; top: -80px; left: -80px; }
.cta-band::after { width: 320px; height: 320px; bottom: -120px; right: -100px; background: var(--clay); }

.cta-band > * { position: relative; }

.cta-band h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.cta-band h2 em { font-style: italic; color: var(--sun); }
.cta-band p { font-size: 19px; opacity: 0.85; max-width: 520px; margin: 0 auto 30px; }

.cta-band .btn-primary {
  background: var(--cream);
  color: var(--terra-deep);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.2);
}

/* Footer */
footer { padding: 70px 0 40px; border-top: 1px solid rgba(58, 20, 37, 0.08); }

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.foot-brand p { color: var(--ink-soft); margin-top: 16px; max-width: 280px; font-size: 15px; }

.foot-col h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
  color: var(--ink-soft);
}

.foot-col a { display: block; padding: 6px 0; font-size: 15px; }
.foot-col a:hover { color: var(--terra); }

.foot-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(58, 20, 37, 0.08);
  font-size: 14px;
  color: var(--ink-soft);
}

.foot-bot a:hover { color: var(--terra); }

/* Responsive */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-waitlist { margin: 0 auto; max-width: none; }
  .hero-art {
    margin: 0 auto;
    max-width: 480px;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 8px;
  }
  .hero-illus {
    position: relative;
    inset: auto;
    aspect-ratio: 1 / 1.05;
  }
  .window {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 900px) {
  .story-grid,
  .quotes,
  .price-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat.big { grid-row: auto; }
  .feat-bottom { grid-template-columns: 1fr; }
  .feat-academy { grid-template-columns: 1fr; }
  .price.featured { transform: none; }
}

@media (max-width: 820px) {
  .nav-links,
  .nav-cta .btn-ghost { display: none; }
  .menu-btn { display: flex; }
}

@media (max-width: 720px) {
  section { padding: 70px 0; }
}

@media (max-width: 800px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .foot-bot { flex-direction: column; gap: 16px; text-align: center; }
  .foot-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .eyebrow .dot { animation: none; }
}
