:root {
  color-scheme: dark;
  --bg: #020905;
  --bg-soft: #06170f;
  --surface: rgba(4, 24, 15, 0.78);
  --surface-strong: rgba(6, 30, 19, 0.94);
  --ink: #fff2d5;
  --muted: #d6c7aa;
  --quiet: #9a8f79;
  --line: rgba(211, 156, 55, 0.32);
  --gold: #d69a28;
  --gold-strong: #f2bd56;
  --gold-soft: rgba(214, 154, 40, 0.15);
  --green: #1faa68;
  --green-strong: #11834d;
  --purple: #d69a28;
  --purple-strong: #1faa68;
  --purple-soft: rgba(214, 154, 40, 0.15);
  --danger: #f27f69;
  --shadow: 0 28px 110px rgba(0, 0, 0, 0.5);
}

[data-theme="light"] {
  color-scheme: light;
  --bg: #f7f1e3;
  --bg-soft: #fffaf0;
  --surface: rgba(255, 250, 240, 0.86);
  --surface-strong: rgba(255, 250, 240, 0.96);
  --ink: #17261c;
  --muted: #5d594e;
  --quiet: #817761;
  --line: rgba(112, 78, 22, 0.18);
  --gold: #a97014;
  --gold-strong: #8b5a09;
  --gold-soft: rgba(169, 112, 20, 0.12);
  --purple: #a97014;
  --purple-strong: #12784c;
  --purple-soft: rgba(169, 112, 20, 0.12);
  --green: #12784c;
  --green-strong: #0d633d;
  --danger: #b32645;
  --shadow: 0 24px 90px rgba(44, 30, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 54% 10%, rgba(214, 154, 40, 0.18), transparent 22rem),
    radial-gradient(circle at 20% 22%, rgba(31, 170, 104, 0.16), transparent 26rem),
    linear-gradient(180deg, #020704, var(--bg) 32%, #010402 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

[data-theme="light"] body {
  background:
    radial-gradient(circle at 18% 8%, rgba(31, 170, 104, 0.12), transparent 24rem),
    radial-gradient(circle at 76% 0%, rgba(214, 154, 40, 0.14), transparent 20rem),
    linear-gradient(180deg, #fffaf0, var(--bg) 42%, #efe4cf 100%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(1180px, calc(100% - 32px));
  min-height: 70px;
  margin: 0 auto;
  color: var(--ink);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 8px -16px;
  z-index: -1;
  border: 1px solid rgba(214, 154, 40, 0.18);
  border-radius: 16px;
  background: rgba(1, 10, 6, 0.68);
  backdrop-filter: blur(18px);
}

[data-theme="light"] .site-header::before {
  background: rgba(255, 255, 255, 0.68);
  border-color: var(--line);
}

.brand,
.site-nav,
.header-actions,
.hero-actions,
.mini-proof,
.trusted div,
.tag-row,
.hook-points,
.waitlist-perks,
.site-footer,
.site-footer nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 9px;
  font-size: 1.18rem;
  font-weight: 950;
  color: var(--gold-strong);
  font-family: Georgia, "Times New Roman", serif;
}

.site-nav {
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 780;
}

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

.header-actions {
  gap: 10px;
}

.theme-toggle {
  position: relative;
  width: 46px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.theme-toggle span {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--gold-strong));
  transition: transform 160ms ease;
}

[data-theme="light"] .theme-toggle span {
  transform: translateX(18px);
}

.login-link,
.join-link,
.primary-cta,
.secondary-cta,
.price-card a,
.waitlist-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 900;
}

.login-link,
.secondary-cta,
.price-card a {
  border: 1px solid var(--line);
  background: rgba(3, 18, 11, 0.68);
  color: var(--ink);
}

.join-link,
.primary-cta,
.price-card.featured a,
.waitlist-form button {
  border: 1px solid rgba(61, 213, 132, 0.58);
  background: linear-gradient(135deg, #22b66b, #0f7d49);
  color: #fff;
  box-shadow: 0 16px 42px rgba(9, 113, 65, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.8fr) minmax(240px, 0.55fr);
  gap: 28px;
  align-items: center;
  min-height: 640px;
  padding: 72px 0 58px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 52px -40px auto;
  height: 540px;
  z-index: -1;
  background:
    radial-gradient(circle at 52% 34%, rgba(214, 154, 40, 0.18), transparent 20rem),
    radial-gradient(circle at 42% 42%, rgba(17, 131, 77, 0.2), transparent 24rem),
    linear-gradient(180deg, rgba(255, 217, 145, 0.06), transparent);
  border-radius: 36px;
}

.pill,
.eyebrow {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 18px;
  padding: 7px 11px;
  border: 1px solid rgba(214, 154, 40, 0.34);
  border-radius: 999px;
  background: var(--purple-soft);
  color: var(--gold-strong);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

[data-theme="light"] .pill,
[data-theme="light"] .eyebrow {
  color: var(--purple-strong);
}

.hero h1,
.hook-card h2,
.section-title h2,
.how-section h2,
.waitlist h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.35rem, 6.8vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero h1 span {
  display: block;
  background: linear-gradient(180deg, #58df91 8%, #19aa63 56%, #0f7445);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-copy p {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.62;
}

.hero-copy {
  min-width: 0;
}

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

.primary-cta,
.secondary-cta {
  min-height: 52px;
  padding-inline: 24px;
}

.mini-proof {
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}

.mini-proof div {
  display: grid;
  gap: 4px;
  min-width: 136px;
}

.mini-proof strong {
  color: var(--ink);
  font-size: 0.88rem;
}

.mini-proof span {
  color: var(--quiet);
  font-size: 0.78rem;
}

.hero-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.hero-visual img {
  width: min(500px, 112%);
  height: 430px;
  border: 1px solid rgba(214, 154, 40, 0.2);
  border-radius: 22px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
  filter: saturate(1.08) contrast(1.08) drop-shadow(0 34px 70px rgba(214, 154, 40, 0.18));
}

.drink-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 154, 40, 0.24), transparent 68%);
  filter: blur(12px);
}

.generated-card {
  align-self: center;
  padding: 22px;
  border: 1px solid rgba(214, 154, 40, 0.48);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(5, 27, 16, 0.84), rgba(2, 9, 5, 0.74));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

[data-theme="light"] .generated-card {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.status-dot {
  position: relative;
  padding-left: 18px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
}

.status-dot::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.generated-card h2 {
  margin: 18px 0 10px;
  font-size: 1.22rem;
}

.tag-row {
  flex-wrap: wrap;
  gap: 7px;
}

.tag-row span {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 217, 145, 0.09);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
}

.generated-card p {
  margin: 18px 0;
  color: var(--muted);
  line-height: 1.55;
}

.card-divider {
  height: 1px;
  margin: 16px 0;
  background: var(--line);
}

.generated-card small,
.generated-card strong,
.generated-card b {
  display: block;
}

.generated-card small {
  margin-top: 12px;
  color: var(--quiet);
}

.generated-card strong {
  margin-top: 6px;
  font-size: 0.94rem;
}

.generated-card b {
  margin-top: 5px;
  color: var(--green);
  font-size: 1.55rem;
}

.trusted {
  display: grid;
  gap: 18px;
  padding: 14px 0 34px;
  text-align: center;
}

.trusted p {
  margin: 0;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trusted div {
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}

.trusted span {
  color: var(--gold-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.03rem;
  text-transform: uppercase;
}

.hook-section,
.panel-section,
.how-section,
.testimonials,
.pricing,
.waitlist {
  margin-top: 18px;
}

.hook-card,
.panel-section,
.how-section {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(5, 35, 21, 0.88), rgba(2, 13, 8, 0.74));
  box-shadow: var(--shadow);
}

.hook-card {
  padding: clamp(26px, 5vw, 54px);
}

.hook-card h2,
.section-title h2,
.how-section h2,
.waitlist h2 {
  font-size: clamp(2.25rem, 4.2vw, 3.8rem);
}

.hook-card p,
.section-title p,
.how-section p,
.feature-grid p,
.testimonial-grid blockquote,
.price-card p,
.price-card li,
.waitlist p {
  color: var(--muted);
  line-height: 1.58;
}

.hook-card > p:not(.eyebrow) {
  max-width: 880px;
  font-size: 1.1rem;
}

.hook-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.hook-points span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px 14px 42px;
  border: 1px solid rgba(214, 154, 40, 0.28);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(11, 63, 38, 0.62), rgba(255, 217, 145, 0.04));
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.28;
  position: relative;
}

.hook-points span::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--green));
  box-shadow: 0 0 18px rgba(214, 154, 40, 0.36);
  transform: translateY(-50%);
}

.panel-section,
.how-section,
.testimonials,
.pricing {
  padding: clamp(30px, 5vw, 46px);
}

.section-title {
  max-width: 780px;
  margin: 0 auto 26px;
  text-align: center;
}

.section-title p {
  margin: 10px auto 0;
  max-width: 640px;
}

.feature-grid,
.steps,
.testimonial-grid,
.pricing-grid {
  display: grid;
  gap: 16px;
}

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

.feature-grid article,
.steps article,
.testimonial-grid figure,
.price-card,
.waitlist-form {
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(8, 39, 24, 0.88), rgba(2, 13, 8, 0.78)),
    var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 236, 181, 0.08), 0 20px 70px rgba(0, 0, 0, 0.26);
}

.feature-grid article {
  min-height: 190px;
  padding: 20px;
}

.icon-box,
.steps span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(31, 170, 104, 0.42), rgba(214, 154, 40, 0.2));
  color: var(--gold-strong);
  font-weight: 950;
}

.feature-grid h3,
.steps h3,
.price-card h3 {
  margin: 18px 0 8px;
  color: var(--ink);
  font-size: 1.1rem;
}

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

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

.steps article {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 20px;
}

.steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 42px;
  width: 16px;
  border-top: 1px dashed var(--line);
}

.testimonials {
  padding-left: 0;
  padding-right: 0;
}

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

.testimonial-grid figure {
  margin: 0;
  padding: 22px;
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.person img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(214, 154, 40, 0.58);
  box-shadow: 0 0 0 3px rgba(255, 224, 160, 0.08);
}

.person figcaption {
  display: grid;
  gap: 3px;
  color: var(--quiet);
  font-size: 0.84rem;
}

.person strong {
  color: var(--ink);
  font-size: 0.96rem;
}

.stars {
  margin: 16px 0 10px;
  color: var(--gold-strong);
  letter-spacing: 2px;
}

.testimonial-grid blockquote {
  margin: 0;
  font-size: 1rem;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 28px;
  align-items: center;
}

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

.price-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 22px;
}

.price-card.featured {
  border-color: rgba(105, 219, 142, 0.72);
  box-shadow: 0 0 0 1px rgba(214, 154, 40, 0.38), 0 28px 90px rgba(12, 113, 63, 0.26);
}

.popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  min-height: 28px;
  padding: 6px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-strong));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 950;
}

.price-card strong {
  color: var(--gold-strong);
  font-size: 2.4rem;
}

.price-card strong span {
  color: var(--muted);
  font-size: 0.98rem;
}

.price-card ul {
  display: grid;
  gap: 10px;
  min-height: 128px;
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 18px;
  font-size: 0.9rem;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--gold-strong);
  border-bottom: 2px solid var(--gold-strong);
  transform: rotate(45deg);
}

.phone-preview {
  transform: rotate(8deg);
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 420px;
  padding: 22px 18px;
  border: 8px solid #050806;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 45%, rgba(214, 154, 40, 0.26), transparent 10rem),
    #04100a;
  box-shadow: var(--shadow);
}

.phone-bar {
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-weight: 900;
}

.phone-bar i {
  display: block;
  width: 24px;
  height: 2px;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 7px 0 rgba(255, 255, 255, 0.74), 0 14px 0 rgba(255, 255, 255, 0.74);
}

.phone-preview h3 {
  margin: 10px 0 0;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.05;
}

.phone-preview img {
  width: 100%;
  margin-top: 4px;
}

.phone-preview a {
  display: grid;
  place-items: center;
  min-height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), var(--green-strong));
  color: #fff;
  font-weight: 900;
}

.waitlist {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 28px;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 0%, rgba(214, 154, 40, 0.2), transparent 18rem),
    var(--surface);
}

.waitlist-copy p:not(.eyebrow) {
  font-size: 1.05rem;
}

.waitlist-perks {
  flex-wrap: wrap;
  gap: 12px;
}

.waitlist-perks span {
  color: var(--muted);
  font-size: 0.9rem;
}

.waitlist-perks span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg);
}

.waitlist-form {
  display: grid;
  gap: 14px;
  padding: 20px;
}

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

.waitlist-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 850;
}

.waitlist-form input,
.waitlist-form select,
.waitlist-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(1, 10, 6, 0.58);
  color: var(--ink);
  outline: none;
}

[data-theme="light"] .waitlist-form input,
[data-theme="light"] .waitlist-form select,
[data-theme="light"] .waitlist-form textarea {
  background: rgba(255, 255, 255, 0.84);
}

.waitlist-form input,
.waitlist-form select {
  padding: 0 13px;
}

.waitlist-form textarea {
  resize: vertical;
  padding: 12px 13px;
  line-height: 1.45;
}

.waitlist-form input:focus,
.waitlist-form select:focus,
.waitlist-form textarea:focus {
  border-color: rgba(214, 154, 40, 0.78);
  box-shadow: 0 0 0 4px rgba(214, 154, 40, 0.14);
}

.waitlist-form button {
  min-height: 52px;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.form-status[data-tone="success"] {
  color: var(--green);
  font-weight: 850;
}

.form-status[data-tone="error"] {
  color: var(--danger);
  font-weight: 850;
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer nav {
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.92rem;
  font-weight: 760;
}

@media (max-width: 1060px) {
  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: auto;
  }

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

  .hero-visual img {
    width: min(420px, 100%);
    height: 300px;
  }

  .generated-card {
    max-width: 520px;
  }

  .feature-grid,
  .steps,
  .testimonial-grid,
  .pricing-grid,
  .pricing-layout,
  .hook-points,
  .waitlist {
    grid-template-columns: 1fr;
  }

  .steps article:not(:last-child)::after {
    display: none;
  }

  .phone-preview {
    display: none;
  }
}

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: auto auto;
    width: min(100% - 22px, 1180px);
  }

  .header-actions {
    justify-content: end;
  }

  .login-link,
  .theme-toggle {
    display: none;
  }

  .join-link {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.88rem;
  }

  main {
    width: min(100% - 22px, 1180px);
  }

  .hero {
    padding-top: 42px;
  }

  .pill {
    width: 100%;
    text-align: center;
    font-size: 0.64rem;
    line-height: 1.3;
    white-space: normal;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 2.75rem);
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
  }

  .mini-proof {
    gap: 12px;
  }

  .generated-card,
  .hook-card,
  .panel-section,
  .how-section,
  .testimonials,
  .pricing,
  .waitlist {
    border-radius: 14px;
  }

  .panel-section,
  .how-section,
  .pricing,
  .waitlist,
  .hook-card {
    padding: 20px;
  }

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

  .trusted div {
    gap: 16px;
  }

  .site-footer {
    justify-content: center;
    padding: 24px 0;
  }
}
