/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --amber: #EF9F27;
  --amber-light: #FAEEDA;
  --amber-mid: #FAC775;
  --dark: #1A1A18;
  --mid: #4A4A42;
  --soft: #9A9A8E;
  --bg: #FDFCF8;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(253,252,248,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(239,159,39,0.15);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon { width: 36px; height: 36px; }
.logo-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--dark);
}
.logo-text .amber { color: var(--amber); }
.logo-text .sub {
  color: var(--soft);
  font-weight: 300;
  font-size: 14px;
  margin-left: 4px;
}

.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a {
  color: var(--mid);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--amber); }
.nav-links a.active { color: var(--amber); font-weight: 500; }

.nav-cta {
  color: var(--amber) !important;
  border: 1.5px solid var(--amber);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover { background: var(--amber) !important; color: var(--white) !important; }

/* ── BETA BANNER ── */
.beta-banner {
  background: var(--amber);
  color: var(--white);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.beta-banner a { color: var(--white); font-weight: 600; text-decoration: none; }
.beta-banner a:hover { text-decoration: underline; }

/* ── HERO ── */
.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 70px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 60%, rgba(239,159,39,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 20% 20%, rgba(250,199,117,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.sparkle-hero {
  margin-bottom: 28px;
  animation: spin-slow 18s linear infinite;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--dark);
}
.hero h1 em { font-style: italic; color: var(--amber); }

.hero p.lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--mid);
  max-width: 540px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--amber-light);
  color: #92580a;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-note {
  margin-top: 1.25rem;
  font-size: 0.825rem;
  color: var(--soft);
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--amber);
  color: white;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: #d98c1a; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid rgba(26,26,24,0.2);
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-1px); }

.btn-amber-solid {
  background: var(--amber);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-amber-solid:hover { background: #d98c1a; transform: translateY(-1px); }

.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,0.75);
  padding: 10px 22px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.2);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.875rem;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
  align-self: flex-start;
  margin-top: 4px;
}
.btn-outline-light:hover { border-color: var(--amber); color: var(--amber); }

/* ── DIVIDER ── */
.divider {
  border: none;
  border-top: 1px solid rgba(239,159,39,0.18);
  margin: 0;
}

/* ── SECTION BASE ── */
section { padding: 90px 24px; }
.container { max-width: 900px; margin: 0 auto; }

.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  display: block;
}

h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--dark);
}
h2 em { font-style: italic; color: var(--amber); }

p.section-body {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 580px;
  line-height: 1.75;
  font-weight: 300;
}

/* ── CARDS ── */
.card-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.card {
  background: var(--white);
  border: 1px solid rgba(239,159,39,0.15);
  border-radius: 18px;
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(239,159,39,0.12);
  transform: translateY(-2px);
}

.card-icon {
  width: 44px; height: 44px;
  background: var(--amber-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}

.card h3 {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}
.card p {
  font-size: 14px;
  color: var(--soft);
  margin: 0;
}

/* ── PRODUCTS ── */
.products-section { background: var(--white); }
.products-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 90px 24px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.product-card {
  background: var(--bg);
  border: 1px solid rgba(239,159,39,0.18);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.product-card:hover {
  box-shadow: 0 8px 32px rgba(239,159,39,0.12);
  transform: translateY(-2px);
}

.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-name {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
}

.product-badge {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.badge-beta { background: var(--amber-light); color: #92580a; }
.badge-coming { background: rgba(239,159,39,0.1); color: var(--amber); }

.product-desc {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}

.product-price {
  font-size: 0.875rem;
  color: var(--dark);
  font-weight: 500;
  margin: 0;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--amber);
  text-decoration: none;
  margin-top: 4px;
  transition: gap 0.2s;
}
.product-link:hover { gap: 0.6rem; }

/* ── VS SECTION ── */
.vs-section { background: var(--white); }
.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 3rem;
}
.vs-col {
  background: var(--bg);
  border: 1px solid rgba(239,159,39,0.15);
  border-radius: 18px;
  padding: 2rem;
}
.vs-col.us {
  background: var(--white);
  border-color: rgba(239,159,39,0.3);
}
.vs-col-head {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(239,159,39,0.15);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.vs-col-head.amber { color: var(--amber); }
.vs-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.vs-item .icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.vs-item.bad { color: var(--soft); }
.vs-item.good { color: var(--dark); }

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 3rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid rgba(239,159,39,0.15);
  border-radius: 18px;
  padding: 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  box-shadow: 0 8px 28px rgba(239,159,39,0.12);
  transform: translateY(-2px);
}
.feature-icon {
  width: 44px; height: 44px;
  background: var(--amber-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.feature-title {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}
.feature-desc { font-size: 0.9rem; color: var(--soft); line-height: 1.6; }

/* ── PRICING ── */
.pricing-section { background: var(--dark); padding: 0; }
.pricing-inner { max-width: 900px; margin: 0 auto; padding: 90px 24px; }
.pricing-section .section-label { color: rgba(239,159,39,0.6); }
.pricing-section h2 { color: var(--white); }
.pricing-section h2 em { color: var(--amber-mid); }
.pricing-section p.section-body { color: rgba(255,255,255,0.55); }

.pricing-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(239,159,39,0.25);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 440px;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(239,159,39,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.price-amount {
  font-family: 'Lora', serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.price-amount sup { font-size: 1.5rem; vertical-align: super; }
.price-period { font-size: 0.9rem; color: rgba(255,255,255,0.45); margin-bottom: 2rem; }
.price-features { list-style: none; margin-bottom: 2rem; }
.price-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.8);
  font-weight: 300;
}
.price-features li:last-child { border-bottom: none; }
.price-features li .check { color: var(--amber); font-weight: 600; }
.pricing-note { margin-top: 1.25rem; font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ── BETA SECTION ── */
.beta-section { background: var(--amber-light); }
.beta-section h2 em { color: var(--amber); }
.beta-section p.section-body { max-width: 620px; }

.beta-perks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin: 2.5rem 0;
}
.beta-perk {
  background: var(--white);
  border: 1px solid rgba(239,159,39,0.2);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
  transition: box-shadow 0.2s, transform 0.2s;
}
.beta-perk:hover { box-shadow: 0 6px 20px rgba(239,159,39,0.12); transform: translateY(-2px); }
.beta-perk strong { display: block; font-weight: 500; margin-bottom: 0.2rem; color: var(--dark); }
.beta-perk span { color: var(--soft); }

.beta-form { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.beta-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 13px 18px;
  border: 1.5px solid rgba(239,159,39,0.35);
  border-radius: 100px;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}
.beta-form input[type="email"]:focus { border-color: var(--amber); }
.beta-form input[type="email"]::placeholder { color: #bbb; }

.beta-note { font-size: 0.8rem; color: var(--soft); margin-top: 0.75rem; }
.beta-note a { color: var(--amber); text-decoration: none; }
.beta-note a:hover { text-decoration: underline; }

/* ── CTA DARK BLOCK ── */
.cta-section {
  background: var(--dark);
  border-radius: 28px;
  padding: 60px 48px;
  max-width: 900px;
  margin: 0 auto 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(239,159,39,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .section-label { color: rgba(239,159,39,0.6); }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section h2 em { color: var(--amber-mid); }
.cta-section > p.section-body { color: rgba(255,255,255,0.6); margin: 0 auto 36px; max-width: 540px; }

.join-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  text-align: left;
}
.join-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.join-card-title {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}
.join-card-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}
.btn-amber {
  background: var(--amber);
  color: white;
  padding: 10px 22px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  align-self: flex-start;
  margin-top: 4px;
}
.btn-amber:hover { background: #d98c1a; transform: translateY(-1px); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid rgba(239,159,39,0.15);
  padding: 2rem 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 13px;
  color: var(--soft);
}
footer a { color: var(--soft); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--amber); }
.footer-brand { font-family: 'DM Sans', sans-serif; font-weight: 500; color: var(--dark); }
.footer-brand .amber { color: var(--amber); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero > * { animation: fadeUp 0.65s ease both; }
.hero > *:nth-child(1) { animation-delay: 0.05s; }
.hero > *:nth-child(2) { animation-delay: 0.15s; }
.hero > *:nth-child(3) { animation-delay: 0.25s; }
.hero > *:nth-child(4) { animation-delay: 0.35s; }
.hero > *:nth-child(5) { animation-delay: 0.42s; }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  nav { padding: 14px 20px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .vs-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; padding: 1.5rem 20px; }
  .cta-section { padding: 40px 24px; margin: 0 16px 60px; }
  .pricing-inner { padding: 70px 20px; }
  section { padding: 70px 20px; }
  .products-inner { padding: 70px 20px; }
}
