:root {
  --bg: #0a0805;
  --bg-2: #0f0c07;
  --surface: #16120b;
  --surface-2: #1d1810;
  --gold: #e3a83f;
  --gold-2: #f4cd7c;
  --gold-deep: #b07d28;
  --cream: #f3ead9;
  --text: #ece3d2;
  --muted: #a4977f;
  --muted-2: #7d7058;
  --border: rgba(227, 168, 63, 0.16);
  --border-soft: rgba(243, 234, 217, 0.08);
  --radius: 18px;
  --radius-lg: 26px;
  --maxw: 1180px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.gold-text {
  background: linear-gradient(120deg, var(--gold-2), var(--gold) 55%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}

/* Ambient page glow */
.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(620px 420px at 78% -4%, rgba(227, 168, 63, 0.16), transparent 70%),
    radial-gradient(720px 520px at 12% 8%, rgba(176, 125, 40, 0.10), transparent 70%);
}

section, header, footer { position: relative; z-index: 1; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn--ghost {
  border-color: var(--border);
  color: var(--cream);
  background: rgba(243, 234, 217, 0.02);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-2);
  transform: translateY(-2px);
}

.appstore-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: 14px;
  background: linear-gradient(180deg, #1c1710, #120e08);
  border: 1px solid var(--border);
  color: var(--cream);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.appstore-btn:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 20px 48px rgba(227, 168, 63, 0.22);
}
.appstore-btn__logo { width: 26px; height: 26px; fill: var(--cream); }
.appstore-btn__text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.appstore-btn__text small { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.02em; }
.appstore-btn__text strong { font-size: 1.18rem; font-weight: 600; }
.appstore-btn--lg { padding: 16px 30px; }
.appstore-btn--lg .appstore-btn__logo { width: 30px; height: 30px; }
.appstore-btn--lg .appstore-btn__text strong { font-size: 1.35rem; }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 8, 5, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(10, 8, 5, 0.82);
  border-bottom-color: var(--border-soft);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { width: 36px; height: 36px; border-radius: 50%; }
.brand__name { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; letter-spacing: 0.01em; color: var(--cream); }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { color: var(--muted); font-size: 0.95rem; font-weight: 500; transition: color 0.2s ease; }
.nav__links a:hover { color: var(--gold-2); }
.nav__cta { color: var(--cream) !important; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero { padding: 84px 0 90px; }
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.6rem, 5.6vw, 4.4rem);
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.hero__lead { margin-top: 22px; font-size: 1.12rem; color: var(--muted); max-width: 32em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.hero__note { margin-top: 22px; font-size: 0.85rem; color: var(--muted-2); }

.hero__visual { position: relative; display: flex; justify-content: center; }
.hero__glow {
  position: absolute;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 168, 63, 0.28), transparent 65%);
  filter: blur(30px);
  top: 6%;
}
.hero__phone {
  position: relative;
  width: min(380px, 90%);
  border-radius: 36px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-soft);
}

/* ---------- ORNAMENT + SECTION HEADINGS ---------- */
.ornament {
  width: 130px;
  height: 18px;
  margin: 0 auto 22px;
  background:
    linear-gradient(var(--gold), var(--gold)) left center / 46px 1px no-repeat,
    linear-gradient(var(--gold), var(--gold)) right center / 46px 1px no-repeat;
  position: relative;
  opacity: 0.85;
}
.ornament::after {
  content: "✦";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 0.85rem;
}
.section-title {
  font-family: var(--serif);
  font-weight: 700;
  text-align: center;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  color: var(--cream);
  letter-spacing: -0.01em;
}
.section-sub { text-align: center; color: var(--muted); margin-top: 12px; font-size: 1.05rem; }

/* ---------- FEATURES ---------- */
.features { padding: 96px 0; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.feature-card {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}
.feature-card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(227, 168, 63, 0.10);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.feature-card__icon svg { width: 26px; height: 26px; fill: var(--gold-2); }
.feature-card h3 { font-family: var(--serif); font-size: 1.32rem; color: var(--cream); margin-bottom: 10px; font-weight: 600; }
.feature-card p { color: var(--muted); font-size: 0.96rem; }

/* ---------- SHOWCASE (recipes / community) ---------- */
.showcase { padding: 70px 0; }
.showcase__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.showcase__media { display: flex; justify-content: center; position: relative; }
.showcase__media img {
  width: min(360px, 88%);
  border-radius: 30px;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.55);
  border: 1px solid var(--border-soft);
}
.showcase__copy h2,
.cabinet__copy h2,
.ai__copy h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--cream);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.showcase__copy p,
.cabinet__copy p,
.ai__copy p { color: var(--muted); margin-top: 18px; font-size: 1.05rem; }

.ticks { margin-top: 26px; display: grid; gap: 14px; }
.ticks li { position: relative; padding-left: 32px; color: var(--text); }
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: 5px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(227, 168, 63, 0.14);
  border: 1px solid var(--gold);
}
.ticks li::after {
  content: "";
  position: absolute;
  left: 6px; top: 9px;
  width: 5px; height: 9px;
  border-right: 2px solid var(--gold-2);
  border-bottom: 2px solid var(--gold-2);
  transform: rotate(40deg);
}

.pill-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.pill {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(227, 168, 63, 0.05);
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ---------- BAR CABINET ---------- */
.cabinet { padding: 70px 0; }
.cabinet__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cabinet__note { color: var(--muted-2) !important; font-size: 0.92rem !important; font-style: italic; }
.cabinet__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.mini-card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.mini-card:hover { transform: translateY(-5px); border-color: var(--border); }
.mini-card__icon { font-size: 1.8rem; display: block; margin-bottom: 12px; }
.mini-card h4 { font-family: var(--serif); font-size: 1.18rem; color: var(--cream); margin-bottom: 6px; font-weight: 600; }
.mini-card p { color: var(--muted); font-size: 0.9rem; }
.mini-card--accent {
  background: linear-gradient(150deg, rgba(227, 168, 63, 0.16), rgba(176, 125, 40, 0.05));
  border-color: var(--border);
}
.mini-card--accent .mini-card__icon { color: var(--gold-2); }

/* ---------- AI ---------- */
.ai { padding: 90px 0; }
.ai__inner { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 64px; align-items: center; }
.ai__media { position: relative; display: flex; justify-content: center; }
.ai__glow {
  position: absolute;
  width: 80%; height: 80%;
  top: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(190, 150, 230, 0.20), rgba(227, 168, 63, 0.12), transparent 68%);
  filter: blur(34px);
}
.ai__media img {
  position: relative;
  width: min(360px, 88%);
  border-radius: 30px;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.55);
  border: 1px solid var(--border-soft);
}
.tool-list { margin-top: 28px; display: grid; gap: 20px; }
.tool { display: flex; gap: 16px; align-items: flex-start; }
.tool__icon {
  flex: none;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(227, 168, 63, 0.12);
  border: 1px solid var(--border);
  color: var(--gold-2);
  font-size: 1.15rem;
}
.tool h4 { font-family: var(--serif); font-size: 1.2rem; color: var(--cream); font-weight: 600; }
.tool p { color: var(--muted); margin-top: 4px; font-size: 0.98rem; }

/* ---------- CTA ---------- */
.cta { padding: 96px 0; }
.cta__inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(227, 168, 63, 0.14), transparent 70%),
    linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
}
.cta__logo { width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 24px; }
.cta__title { font-family: var(--serif); font-weight: 700; font-size: clamp(2rem, 4vw, 3rem); color: var(--cream); line-height: 1.12; }
.cta__sub { color: var(--muted); margin: 18px auto 32px; max-width: 48em; font-size: 1.08rem; }
.cta .appstore-btn { margin: 0 auto; }

/* ---------- DISCLAIMER ---------- */
.disclaimer { padding: 20px 0 80px; }
.disclaimer__card {
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--gold);
  border-radius: 16px;
  background: rgba(243, 234, 217, 0.02);
  padding: 30px 34px;
}
.disclaimer__card h3 { font-family: var(--serif); color: var(--cream); font-size: 1.3rem; margin-bottom: 10px; font-weight: 600; }
.disclaimer__card p { color: var(--muted); font-size: 0.98rem; }
.disclaimer__fine { color: var(--muted-2) !important; font-size: 0.88rem !important; margin-top: 12px; }

/* ---------- FOOTER ---------- */
.footer { border-top: 1px solid var(--border-soft); padding: 54px 0 30px; background: var(--bg-2); }
.footer__inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer__brand { max-width: 340px; }
.footer__brand .brand { margin-bottom: 14px; }
.footer__brand p { color: var(--muted); font-size: 0.95rem; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 48px; align-items: flex-start; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 {
  font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 2px;
}
.footer__col a { color: var(--muted); font-size: 0.95rem; transition: color 0.2s ease; }
.footer__col a:hover { color: var(--gold-2); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--border-soft);
  color: var(--muted-2);
  font-size: 0.86rem;
}
.footer__legal { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer__legal a { color: var(--muted); transition: color 0.2s ease; }
.footer__legal a:hover { color: var(--gold-2); }

/* ---------- REVEAL ANIMATION ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__inner,
  .showcase__inner,
  .cabinet__inner,
  .ai__inner { grid-template-columns: 1fr; gap: 44px; }
  .hero__visual { order: -1; }
  .showcase--alt .showcase__media { order: -1; }
  .ai__media { order: -1; }
  .hero { padding: 56px 0 70px; }
}

@media (max-width: 720px) {
  .nav__links {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    gap: 4px;
    background: rgba(12, 9, 5, 0.97);
    backdrop-filter: blur(14px);
    padding: 18px 24px 26px;
    border-bottom: 1px solid var(--border-soft);
    transform: translateY(-130%);
    transition: transform 0.35s ease;
    align-items: stretch;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { padding: 12px 4px; font-size: 1.05rem; }
  .nav__cta { text-align: center; margin-top: 8px; }
  .nav__toggle { display: flex; }
  .cabinet__cards { grid-template-columns: 1fr; }
  .cta__inner { padding: 48px 24px; }
  .footer__bottom { flex-direction: column; }
}

@media (max-width: 460px) {
  .feature-grid { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
