:root {
  --bg: #ffffff;
  --bg-alt: #f6f2ea;
  --card: #ffffff;
  --ink: #211d19;
  --gold: #e39418;
  --blue: #1c8fc4;
  --pink: #d81f6c;
  --lime: #7a9e0a;
  --navy: #40476d;
  --muted: #756e63;
  --border: #e6ddce;
  --maxw: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
}
h1, h2, h3, h4 {
  font-family: 'Sora', 'Manrope', sans-serif;
  margin: 0 0 0.5em 0;
  line-height: 1.2;
  color: var(--ink);
}
p { margin: 0 0 1.1em 0; color: var(--ink); }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
img, svg { max-width: 100%; display: block; }

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

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 8px; padding-bottom: 8px;
}
.brand-logo { height: 204px; width: auto; max-width: 46vw; }
@media (max-width: 900px) { .brand-logo { height: 130px; } }
@media (max-width: 600px) { .brand-logo { height: 90px; } }
.footer-logo { height: 46px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: var(--ink); font-weight: 600; font-size: 15px;
}
.nav-links a:hover { color: var(--gold); text-decoration: none; }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: #ffffff !important;
  padding: 10px 20px; border-radius: 999px; font-weight: 700;
}
.nav-cta:hover { background: #c97e0e; text-decoration: none; }
.nav-toggle { display: none; }

@media (max-width: 760px) {
  .nav-links {
    position: fixed; top: 66px; left: 0; right: 0; bottom: 0;
    background: var(--bg); flex-direction: column; align-items: flex-start;
    padding: 32px 24px; gap: 22px; transform: translateX(100%);
    transition: transform .25s ease; overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle {
    display: block; background: none; border: none; color: var(--ink);
    font-size: 26px; cursor: pointer; line-height: 1;
  }
}

/* ---------- Hero ---------- */
.hero {
  padding: 100px 0 80px;
  background: radial-gradient(circle at 15% 20%, rgba(28,143,196,0.10), transparent 45%),
              radial-gradient(circle at 85% 15%, rgba(227,148,24,0.12), transparent 45%),
              var(--bg);
  text-align: center;
}
.hero .eyebrow {
  text-transform: uppercase; letter-spacing: 2px; font-size: 13px;
  color: var(--blue); font-weight: 700; margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(38px, 6vw, 64px); color: var(--gold); font-style: italic;
}
.hero .sub {
  max-width: 640px; margin: 20px auto 34px; font-size: 19px; color: var(--muted);
}
.hero-small h1 { font-size: clamp(32px, 5vw, 48px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 15px 34px; border-radius: 999px;
  font-weight: 700; font-size: 16px; cursor: pointer; border: none;
}
.btn-primary { background: var(--gold); color: #ffffff; }
.btn-primary:hover { background: #c97e0e; text-decoration: none; }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); text-decoration: none; }

/* ---------- Sections ---------- */
section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-head .kicker {
  text-transform: uppercase; letter-spacing: 2px; font-size: 13px;
  color: var(--gold); font-weight: 700; margin-bottom: 10px; display: block;
}
.section-head h2 { font-size: clamp(28px, 4vw, 38px); }
.section-head p { color: var(--muted); font-size: 17px; }

/* ---------- Grids / Cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 30px 26px; box-shadow: 0 2px 10px rgba(33,29,25,0.04);
}
.card .icon-dot {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; font-size: 18px; margin-bottom: 16px;
}
.card h3 { font-size: 19px; color: var(--ink); }
.card p { color: var(--muted); font-size: 15px; margin-bottom: 0; }

/* ---------- Numbered steps ---------- */
.steps { counter-reset: step; }
.step {
  display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step .num {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--gold); color: var(--gold); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step h4 { color: var(--ink); font-size: 17px; margin-bottom: 4px; }
.step p { color: var(--muted); margin-bottom: 0; font-size: 15px; }

/* ---------- Quote / callout ---------- */
.callout {
  border-left: 3px solid var(--blue); padding: 4px 0 4px 24px;
  color: var(--ink); font-style: italic; font-size: 18px; margin: 30px 0;
}

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center; padding: 70px 0; background: linear-gradient(135deg, rgba(227,148,24,0.10), rgba(28,143,196,0.10));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-band h2 { color: var(--gold); font-style: italic; margin-bottom: 22px; }

/* ---------- Form ---------- */
.waitlist-form {
  max-width: 480px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px;
}
.waitlist-form input[type=email], .waitlist-form input[type=text] {
  padding: 15px 18px; border-radius: 10px; border: 1px solid var(--border);
  background: #ffffff; color: var(--ink); font-size: 16px;
}
.waitlist-form label.check {
  display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--muted);
}
.form-note { font-size: 13px; color: var(--muted); margin-top: 10px; }
#confirmMsg { display: none; margin-top: 18px; color: var(--gold); font-weight: 700; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border); padding: 44px 0 30px; background: var(--bg);
}
footer .wrap {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
}
footer .tagline { color: var(--gold); font-style: italic; }
footer .foot-links a { color: var(--muted); margin-left: 20px; font-size: 14px; }
footer .foot-links a:first-child { margin-left: 0; }
footer .copyright { color: var(--muted); font-size: 13px; margin-top: 18px; }

.pill-list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.pill {
  border: 1px solid var(--border); border-radius: 999px; padding: 8px 18px;
  font-size: 14px; color: var(--muted); background: var(--bg-alt);
}

/* ---------- Category icons ---------- */
.cat-icon {
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.cat-icon svg { width: 32px; height: 32px; }
.cat-gold { background: rgba(227,148,24,0.13); }
.cat-blue { background: rgba(28,143,196,0.13); }
.cat-pink { background: rgba(216,31,108,0.13); }
.cat-lime { background: rgba(122,158,10,0.15); }
.cat-navy { background: rgba(64,71,109,0.14); }

/* ---------- Colored content blocks (About page etc.) ---------- */
.block {
  border-radius: 20px; padding: 40px; border: 1px solid var(--border);
}
.block-pink { background: linear-gradient(160deg, rgba(216,31,108,0.10), rgba(216,31,108,0.02)); border-color: rgba(216,31,108,0.25); }
.block-blue { background: linear-gradient(160deg, rgba(28,143,196,0.10), rgba(28,143,196,0.02)); border-color: rgba(28,143,196,0.25); }
.block-gold { background: linear-gradient(160deg, rgba(227,148,24,0.12), rgba(227,148,24,0.02)); border-color: rgba(227,148,24,0.28); }
.block-lime { background: linear-gradient(160deg, rgba(122,158,10,0.12), rgba(122,158,10,0.02)); border-color: rgba(122,158,10,0.28); }
.block-navy { background: linear-gradient(160deg, rgba(64,71,109,0.10), rgba(64,71,109,0.02)); border-color: rgba(64,71,109,0.28); }
.block-navy .big-head, .block-navy p { color: var(--ink); }

.big-head {
  font-size: clamp(30px, 4.2vw, 44px);
  font-weight: 700;
  margin-bottom: 18px;
  font-family: 'Sora', 'Manrope', sans-serif;
}
.big-head.c-pink { color: var(--pink); }
.big-head.c-blue { color: var(--blue); }
.big-head.c-gold { color: var(--gold); }
.big-head.c-lime { color: var(--lime); }

/* ---------- Screenshot frames ---------- */
.screens-row {
  display: flex; gap: 24px; overflow-x: auto; padding: 10px 4px 20px;
  scroll-snap-type: x mandatory;
}
.screen-card {
  flex: none; width: 220px; scroll-snap-align: start; text-align: center;
}
.phone-frame {
  border: 6px solid #201c18; border-radius: 26px; overflow: hidden;
  background: #f1ece2; box-shadow: 0 16px 32px rgba(33,29,25,0.14);
  aspect-ratio: 9 / 19.5; display: flex; align-items: center; justify-content: center;
}
.phone-frame img { width: 100%; height: 100%; object-fit: cover; }
.phone-frame.placeholder { color: var(--muted); font-size: 13px; padding: 16px; }
.screen-caption { margin-top: 12px; color: var(--muted); font-size: 14px; }

.photo-frame {
  border-radius: 20px; overflow: hidden; border: 1px solid var(--border);
  aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center;
  background: var(--bg-alt); color: var(--muted); font-size: 14px; text-align: center; padding: 20px;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
