:root {
  --cream: #fff3e6;
  --cream-2: #fff8ef;
  --sand: #f3eadc;
  --champagne: #ffe9b5;
  --plum: #3b1730;
  --wine: #4b1731;
  --wine-2: #6b314c;
  --raspberry: #8b3658;
  --purple: #6d4f8d;
  --gold: #d8a942;
  --lilac: #b9addc;
  --glass: rgba(255, 251, 244, 0.82);
  --glass-strong: rgba(255, 251, 244, 0.92);
  --line: rgba(75, 23, 49, 0.12);
  --shadow: 0 16px 48px rgba(75, 23, 49, 0.08);
  --shadow-strong: 0 24px 80px rgba(75, 23, 49, 0.20);
  --radius: 28px;
  --radius-xl: 40px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, Manrope, Onest, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--plum);
  background:
    radial-gradient(circle at 10% 5%, rgba(255, 211, 106, .22), transparent 24rem),
    radial-gradient(circle at 90% 8%, rgba(185, 173, 220, .20), transparent 22rem),
    radial-gradient(circle at 74% 55%, rgba(210, 188, 152, .16), transparent 26rem),
    linear-gradient(135deg, #fff5ea 0%, #f6efe4 48%, #ece8f5 100%);
  overflow-x: hidden;
}

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

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

p {
  line-height: 1.65;
}

strong {
  color: var(--wine);
}

::selection {
  background: rgba(255, 211, 106, .6);
  color: var(--wine);
}

.scanlines {
  display: none;
}

.glow-orb {
  position: fixed;
  z-index: -2;
  border-radius: 999px;
  filter: blur(18px);
  pointer-events: none;
}

.glow-orb--one {
  width: 34rem;
  height: 34rem;
  left: -12rem;
  top: 18rem;
  background: radial-gradient(circle, rgba(255, 211, 106, .28), rgba(243, 225, 194, .18), transparent 68%);
}

.glow-orb--two {
  width: 42rem;
  height: 42rem;
  right: -18rem;
  top: 45rem;
  background: radial-gradient(circle, rgba(185, 173, 220, .24), rgba(255, 232, 196, .20), transparent 70%);
}

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

.section {
  position: relative;
  padding: 82px 0;
  overflow: clip;
}

@supports not (overflow: clip) {
  .section { overflow: hidden; }
}

section {
  scroll-margin-top: 110px;
}

.section--tight {
  padding-top: 46px;
}

.section--calm {
  background: linear-gradient(180deg, rgba(255, 251, 244, .18), rgba(255, 251, 244, .02));
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--container), calc(100% - 40px));
  margin: 14px auto 0;
  padding: 12px 14px 12px 18px;
  background: rgba(255, 250, 242, .70);
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 999px;
  box-shadow: 0 14px 42px rgba(75, 23, 49, .10);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: fit-content;
}

.brand__spark {
  color: var(--gold);
  filter: drop-shadow(0 0 8px rgba(255, 211, 106, .72));
}

.brand__name,
.footer__brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -.045em;
  color: var(--wine);
}

.brand__badge {
  margin-left: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  color: var(--wine);
  background: rgba(255, 255, 255, .48);
  border: 1px solid rgba(75, 23, 49, .12);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  font-size: 14px;
  font-weight: 750;
  color: rgba(59, 23, 48, .74);
}

.nav a {
  transition: color .2s ease, transform .2s ease;
}

.nav a:hover {
  color: var(--wine);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(75, 23, 49, .14);
  border-radius: 50%;
  color: var(--wine);
  background: rgba(255, 255, 255, .46);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-header.is-menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.site-header.is-menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .70);
  font-weight: 850;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
  white-space: nowrap;
}

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

.button:focus-visible {
  outline: 3px solid rgba(216, 169, 66, .58);
  outline-offset: 4px;
}

.button--small {
  min-height: 42px;
  padding: 11px 20px;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(135deg, #3e142a 0%, #5a2340 58%, #7a4b68 100%);
  box-shadow: 0 10px 26px rgba(75, 23, 49, .24), inset 0 1px 0 rgba(255,255,255,.28);
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, #3e142a 0%, #5a2340 58%, #7a4b68 100%);
  box-shadow: 0 14px 34px rgba(75, 23, 49, .25), inset 0 1px 0 rgba(255,255,255,.28);
}

.button--primary:hover,
.button--small:hover {
  box-shadow: 0 18px 42px rgba(75, 23, 49, .30), inset 0 1px 0 rgba(255,255,255,.32);
}

.button--secondary {
  color: var(--wine);
  background: rgba(255, 250, 242, .66);
  border-color: rgba(75, 23, 49, .18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}

.button--wide {
  width: 100%;
}

.no-break {
  white-space: nowrap;
}

.hero {
  min-height: 100svh;
  margin-top: -76px;
  padding: clamp(108px, 14svh, 132px) 0 clamp(36px, 6svh, 60px);
  display: flex;
  align-items: center;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 243, 230, .94) 0%, rgba(255, 243, 230, .70) 36%, rgba(255, 243, 230, .20) 100%),
    url("assets/bg-rays.webp") center / cover no-repeat;
}

.hero__background::before,
.theme-card__background::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  background: repeating-linear-gradient(
    to bottom,
    rgba(75, 23, 49, .08) 0,
    rgba(75, 23, 49, .08) 1px,
    transparent 2px,
    transparent 6px
  );
}

.hero__background::before {
  opacity: .30;
}

.hero__background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 66% 44%, rgba(255, 211, 106, .38), transparent 21rem),
    radial-gradient(circle at 88% 30%, rgba(255, 255, 255, .64), transparent 5rem),
    linear-gradient(to bottom, transparent 74%, rgba(255, 243, 230, .82) 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: clamp(24px, 3.6vw, 48px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(75, 23, 49, .80);
}

h1, h2, h3 {
  margin: 0;
  color: var(--wine);
}

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.046em;
  line-height: 1;
}

h1 {
  max-width: 760px;
  font-size: clamp(44px, 4.5vw, 64px);
  text-wrap: balance;
}

h2 {
  font-size: clamp(36px, 4.1vw, 60px);
  text-wrap: balance;
}

h3 {
  font-size: 19px;
  line-height: 1.22;
  letter-spacing: -.02em;
}

.hero__lead {
  max-width: 640px;
  margin: 20px 0 0;
  font-size: clamp(16px, 1.35vw, 19px);
  color: rgba(59, 23, 48, .82);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  color: rgba(59, 23, 48, .76);
  font-size: 14px;
  font-weight: 760;
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 250, 242, .64);
  border: 1px solid rgba(255, 255, 255, .70);
  box-shadow: 0 8px 24px rgba(75, 23, 49, .07);
}

.hero__meta span::before {
  content: "✦";
  color: var(--gold);
}

.hero__visual {
  position: relative;
  min-height: clamp(360px, calc(100svh - 220px), 500px);
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero__halo {
  position: absolute;
  width: min(82%, 500px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.84) 0 10%, rgba(255,211,106,.38) 18%, rgba(244,222,196,.24) 42%, transparent 70%);
  filter: blur(2px);
  animation: pulse 7.5s ease-in-out infinite;
}

.hero__fish {
  position: relative;
  z-index: 2;
  width: min(78%, 440px, calc(100svh - 245px));
  min-width: 280px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 32px;
  box-shadow: 0 24px 72px rgba(75, 23, 49, .20), 0 0 0 1px rgba(255, 255, 255, .45);
}

.float-tag {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 17px;
  border-radius: 999px;
  color: var(--wine);
  font-weight: 900;
  background: rgba(255, 250, 242, .68);
  border: 1px solid rgba(255, 255, 255, .78);
  box-shadow: 0 14px 36px rgba(75, 23, 49, .10), inset 0 1px 0 rgba(255,255,255,.8);
  backdrop-filter: blur(18px);
  animation: float 8.5s cubic-bezier(.37, 0, .23, 1) infinite;
  will-change: transform;
}

.float-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff, var(--gold));
  box-shadow: 0 0 12px rgba(216, 169, 66, .72);
}

.float-tag--claude { top: 10%; left: 17%; animation-delay: .2s; }
.float-tag--prompts { top: 34%; left: 2%; animation-delay: 1.2s; }
.float-tag--agents { top: 17%; right: 1%; animation-delay: .7s; }
.float-tag--auto { right: 2%; bottom: 29%; animation-delay: 1.7s; }
.float-tag--review { left: 21%; bottom: 18%; animation-delay: 2.4s; }
.float-tag--workshops { right: 19%; bottom: 7%; animation-delay: 3.2s; }

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  35% { transform: translate3d(0, -7px, 0); }
  65% { transform: translate3d(0, 5px, 0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .86; }
  50% { transform: scale(1.045); opacity: 1; }
}

.glass-panel,
.feature-card,
.audience-card,
.faq-list details {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow: var(--shadow);
}

.manifest,
.process,
.feature-card,
.host-card,
.audience-card,
.price-card,
.start-card,
.faq-list details {
  backdrop-filter: blur(8px);
}

.manifest {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 34px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-xl);
}

.manifest__copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(59, 23, 48, .78);
}

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

.mini-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .42);
  border: 1px solid rgba(75, 23, 49, .08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  color: var(--wine);
  background: rgba(255, 255, 255, .54);
  border: 1px solid rgba(75, 23, 49, .14);
  box-shadow: none;
}

.mini-card p,
.feature-card p,
.process-step p,
.host-card p,
.audience-card li,
.faq-list p,
.price-card li,
.start-card p,
.theme-card p,
.theme-card li {
  color: rgba(59, 23, 48, .75);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  border-radius: var(--radius-xl);
}

.process::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 45px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(75, 23, 49, .18), rgba(216, 169, 66, .40), rgba(75, 23, 49, .18), transparent);
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 24px;
  min-height: 252px;
  border-radius: 26px;
  background: rgba(255, 255, 255, .38);
  border: 1px solid rgba(75, 23, 49, .08);
}

.process-step__number {
  position: absolute;
  top: -12px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, #3e142a, #6b314c);
  box-shadow: 0 10px 24px rgba(75, 23, 49, .22);
}

.process-step__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 12px auto 22px;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 36px;
  color: var(--wine);
  background: rgba(255, 255, 255, .52);
  border: 1px solid rgba(75, 23, 49, .13);
  box-shadow: 0 12px 30px rgba(75, 23, 49, .08), inset 0 1px 0 rgba(255,255,255,.82);
}

.process-step h3,
.process-step p {
  text-align: center;
}

.under-note {
  max-width: none;
  margin: 20px auto 0;
  text-align: center;
  font-weight: 750;
  color: rgba(75, 23, 49, .72);
  white-space: nowrap;
}

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

.feature-card {
  padding: 26px;
  min-height: 262px;
  border-radius: 28px;
}

.topic-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 22px 26px;
  border-radius: 26px;
  background: rgba(255, 251, 244, .76);
}

.topic-strip span {
  display: grid;
  place-items: center;
  flex: 0 0 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--wine);
  font-size: 24px;
  background: rgba(255, 255, 255, .56);
  border: 1px solid rgba(75, 23, 49, .12);
}

.topic-strip p {
  margin: 0;
  font-weight: 750;
}

.theme-section {
  padding-top: 42px;
}

.theme-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(330px, .78fr);
  gap: 24px;
  align-items: stretch;
  min-height: 480px;
  padding: clamp(26px, 4vw, 46px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-strong);
  background: rgba(255, 248, 239, .52);
}

.theme-card__background {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(46, 27, 38, .72), rgba(88, 65, 67, .52) 52%, rgba(255, 243, 230, .18)),
    url("assets/bg-clouds.webp") center / cover no-repeat;
  filter: saturate(.92);
}

.theme-card__background::after {
  opacity: .72;
}

.theme-card__copy,
.theme-card__list {
  position: relative;
  z-index: 1;
}

.theme-card__copy h2,
.theme-card__copy p,
.theme-card__list h3,
.theme-card__list li {
  color: #fff;
  text-shadow: 0 1px 18px rgba(59, 23, 48, .26);
}

.theme-card__copy .eyebrow {
  color: rgba(255, 232, 184, .96);
}

.theme-card__copy p {
  max-width: 660px;
  font-size: 18px;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pills span,
.start-card__badges span {
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  color: var(--wine);
  background: rgba(255, 251, 244, .74);
  border: 1px solid rgba(255, 255, 255, .65);
}

.theme-card__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  border-radius: 28px;
  background: rgba(59, 23, 48, .25);
  border: 1px solid rgba(255, 255, 255, .35);
  box-shadow: 0 18px 48px rgba(59, 23, 48, .12);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.48;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  color: var(--wine);
  background: linear-gradient(135deg, #fff, #f2d78a);
}

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

.host-card {
  display: grid;
  grid-template-columns: 166px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius-xl);
}

.photo-slot {
  position: relative;
  overflow: hidden;
  width: 166px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(255, 255, 255, .82);
  box-shadow: 0 16px 42px rgba(75, 23, 49, .14), inset 0 1px 0 rgba(255,255,255,.88);
}

.host-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.host-role {
  margin: 8px 0 16px;
  font-weight: 900;
  color: var(--raspberry) !important;
}

.audience-wrap {
  position: relative;
  overflow: clip;
}

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

.audience-card {
  padding: 34px;
  border-radius: var(--radius-xl);
}

.audience-card h3 {
  font-size: 28px;
  margin-bottom: 18px;
  font-family: Georgia, serif;
  letter-spacing: -.035em;
}

.audience-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-card li {
  position: relative;
  padding-left: 28px;
  line-height: 1.55;
}

.audience-card li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
}

.audience-card--yes {
  background: rgba(255, 251, 244, .84);
}

.audience-card--no {
  background: rgba(255, 251, 244, .68);
}

.audience-card--yes li::before {
  content: "✦";
  color: var(--gold);
}

.audience-card--no li::before {
  content: "·";
  color: var(--raspberry);
  font-size: 28px;
  line-height: 19px;
}

.pricing-section {
  padding-top: 44px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.price-card,
.start-card {
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 42px);
}

.price-card h2 {
  font-size: clamp(58px, 8vw, 98px);
  line-height: .9;
}

.price-card h2 span {
  display: inline-block;
  font-family: Inter, Manrope, sans-serif;
  font-size: clamp(17px, 2vw, 22px);
  letter-spacing: 0;
  white-space: nowrap;
}

.check-list--large {
  margin: 28px 0;
  font-weight: 800;
}

.start-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.start-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,169,66,.16), transparent 68%);
}

.start-card h3 {
  max-width: 470px;
  font-family: Georgia, serif;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1;
  letter-spacing: -.045em;
}

.start-card p {
  position: relative;
  z-index: 1;
  max-width: 580px;
  font-size: 18px;
}

.start-card__badges {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.faq-section {
  background: rgba(255, 251, 244, .22);
}

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

.faq-list details {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 251, 244, .88);
  box-shadow: 0 10px 28px rgba(75, 23, 49, .06);
}

.faq-list summary {
  position: relative;
  display: block;
  padding: 22px 64px 22px 24px;
  font-weight: 900;
  color: var(--wine);
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--wine);
  background: rgba(255, 255, 255, .60);
  border: 1px solid rgba(75,23,49,.08);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
}

.final-cta {
  padding: 94px 0 104px;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(49, 25, 38, .72), rgba(85, 57, 59, .42) 55%, rgba(255, 243, 230, .08)),
    url("assets/bg-water.webp") center / cover no-repeat;
  filter: saturate(.9);
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 77% 46%, rgba(255, 211, 106, .30), transparent 20rem),
    repeating-linear-gradient(to bottom, rgba(75, 23, 49, .07) 0, rgba(75, 23, 49, .07) 1px, transparent 2px, transparent 6px);
  mix-blend-mode: multiply;
}

.final-cta__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.final-cta__copy {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius-xl);
  text-align: center;
  background: rgba(59, 23, 48, .26);
  border: 1px solid rgba(255, 255, 255, .52);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-strong);
}

.final-cta__copy h2,
.final-cta__copy p {
  color: #fff;
  text-shadow: 0 2px 20px rgba(59, 23, 48, .28);
}

.final-cta__copy h2 {
  max-width: 930px;
  margin: 0 auto;
  font-size: clamp(34px, 4vw, 58px);
}

.final-cta__copy .button {
  margin-top: 28px;
}

.final-cta__meta {
  margin: 18px 0 0;
  font-weight: 850;
}

.footer {
  padding: 28px 0 42px;
  background: rgba(255, 251, 244, .74);
  border-top: 1px solid rgba(255, 255, 255, .66);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: rgba(59, 23, 48, .74);
  font-size: 14px;
}

.footer p {
  margin: 0;
}

.faq-list p a {
  font-weight: 900;
  color: var(--wine);
  text-decoration: underline;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

@media (max-width: 1080px) {
  .site-header {
    gap: 12px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: grid;
    gap: 2px;
    padding: 14px;
    border-radius: 26px;
    background: rgba(255, 250, 242, .98);
    border: 1px solid rgba(255, 255, 255, .78);
    box-shadow: 0 20px 52px rgba(75, 23, 49, .16);
    backdrop-filter: blur(22px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .nav a {
    padding: 13px 14px;
    border-radius: 16px;
  }

  .nav a:hover {
    background: rgba(75, 23, 49, .06);
    transform: none;
  }

  .site-header.is-menu-open .nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    min-height: auto;
    padding-bottom: 54px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero__visual {
    min-height: 430px;
  }

  .hero__fish {
    width: min(80%, 430px);
    min-width: 0;
  }

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

  .process,
  .inside-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .theme-card {
    grid-template-columns: 1fr;
  }

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

  .under-note {
    white-space: normal;
  }
}

@media (max-height: 760px) and (min-width: 1081px) {
  .site-header {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero {
    padding-top: 106px;
    padding-bottom: 32px;
  }

  h1 {
    font-size: clamp(42px, 4.45vw, 60px);
  }

  .hero__lead {
    margin-top: 16px;
    font-size: 17px;
  }

  .hero__actions {
    margin-top: 22px;
  }

  .hero__meta {
    margin-top: 16px;
  }

  .hero__visual {
    min-height: 405px;
  }

  .hero__fish {
    width: min(76%, 400px, calc(100svh - 270px));
  }

  .float-tag {
    min-height: 42px;
    padding: 0 15px;
    font-size: 14px;
  }
}

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

  .section {
    padding: 64px 0;
  }

  .site-header {
    width: min(100% - 20px, var(--container));
    top: 8px;
    margin-top: 8px;
    padding: 10px 10px 10px 14px;
  }

  .brand__badge {
    display: none;
  }

  .brand__name {
    font-size: 24px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .button--small {
    min-height: 38px;
    padding: 9px 14px;
  }

  .hero {
    margin-top: -62px;
    padding-top: 112px;
  }

  h1 {
    font-size: clamp(39px, 12vw, 54px);
  }

  h2 {
    font-size: clamp(34px, 10.5vw, 46px);
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__visual {
    min-height: 360px;
    margin-top: 10px;
  }

  .hero__fish {
    width: min(84%, 350px);
  }

  .float-tag {
    min-height: 38px;
    padding: 0 11px;
    font-size: 12px;
  }

  .float-tag--claude { left: 10%; top: 8%; }
  .float-tag--prompts { left: 0; top: 34%; }
  .float-tag--agents { right: 0; top: 18%; }
  .float-tag--auto { right: 0; bottom: 28%; }
  .float-tag--review { left: 9%; bottom: 17%; }
  .float-tag--workshops { right: 14%; bottom: 4%; }

  .manifest__cards,
  .process,
  .inside-grid {
    grid-template-columns: 1fr;
  }

  .process::before {
    display: none;
  }

  .process-step {
    min-height: auto;
  }

  .topic-strip {
    align-items: flex-start;
  }

  .host-card {
    grid-template-columns: 1fr;
  }

  .photo-slot {
    width: 148px;
  }

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

  .theme-card__copy p {
    font-size: 16px;
  }

  .price-card h2 {
    font-size: 58px;
  }

  .final-cta__copy {
    text-align: left;
  }

  .final-cta__copy h2 {
    font-size: 34px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .site-header {
    gap: 8px;
  }

  .brand__name {
    font-size: 21px;
    letter-spacing: -.052em;
  }

  .button--small {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero__meta span {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .brand__name {
    font-size: 18px;
  }

  .button--small {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (min-width: 1081px) {
  .hero__meta {
    flex-wrap: nowrap;
  }

  .hero__meta span {
    padding: 8px 10px;
    font-size: 13px;
  }
}
