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

:root {
  --bg: #141210;
  --bg-2: #1c1915;
  --bg-3: #231f1a;
  --gold: #c9a96e;
  --gold-light: #d4b87e;
  --gold-dim: rgba(201, 169, 110, 0.15);
  --text: #e8e0d4;
  --text-muted: #8a7f72;
  --text-dim: #5a5248;
  --border: rgba(201, 169, 110, 0.12);
  --border-strong: rgba(201, 169, 110, 0.25);
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.1;
  color: var(--text);
}

h1 { font-size: clamp(36px, 6vw, 68px); font-weight: 900; }
h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 700; }
h3 { font-size: 22px; font-weight: 700; }

em {
  font-style: italic;
  color: var(--gold);
  font-family: 'Playfair Display', Georgia, serif;
}

p { color: var(--text-muted); }

.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.body-copy {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

.center { text-align: center; }

/* ── Layout ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  transition: opacity 0.2s;
}
.btn:hover { opacity: 0.85; }

.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-lg { padding: 18px 40px; font-size: 17px; }

.btn-primary {
  background: var(--gold);
  color: #141210;
  font-weight: 600;
}

/* ── Dot ── */
.dot { color: var(--gold); margin-right: 4px; }
.dot-sm { color: var(--gold); font-size: 8px; margin-right: 4px; }

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 24px;
  background: rgba(20, 18, 16, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text);
}

/* ── Phone Mockup ── */
.phone {
  width: 280px;
  background: #0e0c0a;
  border-radius: 44px;
  border: 1.5px solid rgba(255,255,255,0.08);
  padding: 20px 14px 24px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
}

.phone-sm {
  width: 260px;
}

.phone-notch {
  width: 100px;
  height: 28px;
  background: #0e0c0a;
  border-radius: 0 0 20px 20px;
  margin: 0 auto 12px;
  border: 1.5px solid rgba(255,255,255,0.06);
  border-top: none;
}

.phone-screen {
  background: #1a1612;
  border-radius: 28px;
  padding: 20px 16px;
  min-height: 420px;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,169,110,0.06) 0%, transparent 70%);
  overflow: hidden;
}

.hero-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero-text h1 { margin-bottom: 20px; }
.hero-text .hero-sub { font-size: 18px; margin-bottom: 36px; max-width: 440px; }

.hero-ctas { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.hero-fine { font-size: 12px; color: var(--text-dim); }

.hero-phone {
  display: flex;
  justify-content: center;
}

/* Hero screen content */
.hero-screen {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 500px;
  padding: 24px 18px;
}

.screen-eyebrow {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}

.screen-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--text);
}

.screen-crossout {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

.screen-crossout s { color: var(--text-dim); }

.screen-body {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
}

.screen-btn {
  margin-top: auto;
  background: var(--gold);
  color: #141210;
  border: none;
  border-radius: 100px;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.screen-signin {
  font-size: 10px;
  color: var(--text-dim);
  text-align: center;
}
.screen-signin .link { color: var(--gold); }

/* ── Brief Section ── */
.brief-section {
  padding: 120px 0;
  background: var(--bg-2);
}

.brief-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.brief-copy h2 { margin-bottom: 20px; }
.brief-copy .body-copy + .body-copy { margin-top: 16px; }

.brief-phone {
  display: flex;
  justify-content: center;
}

/* Brief UI inside phone */
.brief-ui {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.brief-col, .locked-col {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
}

.brief-label, .locked-note {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.brief-card {
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 6px;
}

.brief-card-label {
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 3px;
}

.brief-card-value {
  font-size: 10px;
  color: var(--text);
  font-weight: 500;
}

.locked-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  background: rgba(0,0,0,0.2);
}

.lock-icon { font-size: 20px; }

.locked-apps {
  font-size: 9px;
  color: var(--text-dim);
  line-height: 1.8;
}

.locked-note {
  font-size: 7.5px;
  color: var(--gold);
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0;
}

/* ── How It Works ── */
.how-section {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.how-section h2 { margin-bottom: 64px; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-2);
  transition: border-color 0.2s;
}
.step:hover { border-color: var(--border-strong); }

.step-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
}

.step h3 { margin-bottom: 12px; font-size: 20px; }
.step p { font-size: 15px; }

/* ── Integrations ── */
.integrations-section {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.integrations-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.integrations-copy h2 { margin-bottom: 20px; }

.int-group { margin-bottom: 32px; }

.int-group-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.int-list { display: flex; flex-direction: column; gap: 8px; }

.int-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-3);
}

.int-item.free { border-color: rgba(201, 169, 110, 0.2); }

.int-icon { font-size: 18px; width: 24px; text-align: center; }

.int-name { font-size: 14px; font-weight: 500; color: var(--text); }
.int-desc { font-size: 12px; color: var(--text-muted); margin-top: 1px; }

.pro-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid var(--border-strong);
  padding: 1px 6px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 4px;
}

/* ── Pricing ── */
.pricing-section {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-card-pro {
  border-color: var(--border-strong);
  background: linear-gradient(135deg, var(--bg-2) 0%, rgba(201,169,110,0.04) 100%);
}

.pricing-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.pricing-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin: 8px 0 4px;
}

.pricing-sub {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
}

/* ── Footer CTA ── */
.footer-cta {
  padding: 120px 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

/* App icon */
.app-icon-large {
  display: flex;
  justify-content: center;
}

.icon-rings {
  width: 96px;
  height: 96px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  overflow: hidden;
  background: #141210;
}

.ring {
  position: absolute;
  border-radius: 50%;
  background: transparent;
}

.r4 { width: 96px; height: 96px; background: rgba(201,169,110,0.06); border-radius: 22px; }
.r3 { width: 76px; height: 76px; background: rgba(201,169,110,0.08); border-radius: 50%; }
.r2 { width: 56px; height: 56px; background: rgba(201,169,110,0.10); border-radius: 50%; }
.r1 { width: 38px; height: 38px; background: rgba(201,169,110,0.14); border-radius: 50%; }

.icon-dot {
  width: 24px;
  height: 24px;
  background: var(--gold);
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

/* ── Footer ── */
footer {
  padding: 24px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-muted); }

/* ── App screen (real brief UI) ── */
.app-screen {
  padding: 14px 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 520px;
  background: #16120e;
}

.app-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.app-streak {
  font-size: 9px;
  background: rgba(201,169,110,0.12);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 2px 7px;
  color: var(--gold);
  letter-spacing: 0;
}

.app-greeting {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 2px;
}

.app-greeting em {
  color: var(--gold);
  font-style: italic;
}

.app-summary-card {
  background: rgba(201,169,110,0.06);
  border: 1px solid rgba(201,169,110,0.18);
  border-radius: 10px;
  padding: 10px 11px;
}

.app-summary-text {
  font-size: 10.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 6px 0 0;
}

.app-summary-text em {
  color: var(--gold);
  font-style: italic;
  font-family: inherit;
}

.app-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 9px 11px;
  flex: 1;
}

.app-card-label {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.app-card-wide { width: 100%; }

.app-row-cards { display: flex; gap: 7px; }
.app-two-col .app-card { flex: 1; }

.app-recovery-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.app-recovery-label {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  vertical-align: middle;
}

.app-recovery-sub {
  font-size: 8px;
  color: var(--text-dim);
  margin-top: 3px;
}

.app-metric {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
}

.app-metric-label {
  font-family: 'Inter', sans-serif;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  vertical-align: middle;
}

.app-sub {
  font-size: 8.5px;
  color: var(--text-dim);
  margin-top: 3px;
}

.app-sub strong { color: var(--text-muted); }

/* Calendar */
.app-cal-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.app-cal-item:last-of-type { border-bottom: none; }

.app-cal-time {
  font-size: 8.5px;
  color: var(--text-dim);
  width: 26px;
  flex-shrink: 0;
}

.app-cal-bar {
  width: 2px;
  height: 14px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
  opacity: 0.6;
}

.app-cal-title {
  font-size: 9.5px;
  color: var(--text);
  font-weight: 500;
  flex: 1;
}

.app-cal-dur {
  font-size: 8px;
  color: var(--text-dim);
}

.app-cal-free {
  font-size: 8px;
  color: var(--text-dim);
  margin-top: 6px;
}

.app-start-btn {
  margin-top: auto;
  background: var(--gold);
  color: #141210;
  border: none;
  border-radius: 100px;
  padding: 13px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  width: 100%;
  text-align: center;
  letter-spacing: 0.01em;
}

/* ── Flip animation ── */
.flip-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  height: 1.15em;
  position: relative;
}

.flip-word {
  display: inline-block;
  animation: flipOut 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transform-origin: bottom center;
}

.flip-word.flip-in {
  animation: flipIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.flip-word.flip-out {
  animation: flipOut 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes flipIn {
  from {
    opacity: 0;
    transform: rotateX(-60deg) translateY(10px);
  }
  to {
    opacity: 1;
    transform: rotateX(0deg) translateY(0);
  }
}

@keyframes flipOut {
  from {
    opacity: 1;
    transform: rotateX(0deg) translateY(0);
  }
  to {
    opacity: 0;
    transform: rotateX(60deg) translateY(-10px);
  }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-ctas { align-items: center; }
  .eyebrow { text-align: center; }
  .hero-phone { order: -1; }
  .phone { width: 240px; }

  .brief-grid,
  .integrations-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .brief-phone { order: -1; }

  .steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero { padding: 100px 20px 60px; }
  .brief-section, .how-section, .integrations-section, .pricing-section, .footer-cta { padding: 80px 20px; }
}
