/* ===================================================================
   Inwardly Landing Page — Dark Premium / Golden Hour
   Canvas #1C1A24 · Indigo #7B6BAA · Gold #D4A854
   =================================================================== */

:root {
  --indigo: #7B6BAA;
  --indigo-light: #9B8EC4;
  --indigo-dark: #5B4A8A;
  --indigo-glow: rgba(123, 107, 170, 0.35);
  --gold: #D4A854;
  --gold-light: #E0B96E;
  --gold-glow: rgba(212, 168, 84, 0.25);

  --canvas: #1C1A24;
  --surface: rgba(37, 34, 48, 0.65);
  --surface-solid: #252230;
  --elevated: #2E2A3B;

  --text-primary: #F0EDF8;
  --text-secondary: #B0A9C4;
  --text-tertiary: #7A728E;
  --text-inverse: #FFFFFF;

  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-medium: rgba(255, 255, 255, 0.12);
  --border-gold: rgba(212, 168, 84, 0.30);
  --border-indigo: rgba(123, 107, 170, 0.30);

  --max-width: 1120px;
  --section-padding: 120px 24px;
  --nav-height: 68px;

  --glass-bg: rgba(37, 34, 48, 0.60);
  --glass-blur: blur(24px);
  --glass-border: 1px solid rgba(255, 255, 255, 0.08);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: var(--canvas);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

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

/* ===================================================================
   Floating Orbs — page-level background atmosphere
   =================================================================== */

.orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91, 74, 138, 0.28) 0%, transparent 70%);
  top: -180px;
  left: -160px;
  filter: blur(60px);
  animation: orbFloat1 18s ease-in-out infinite;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 168, 84, 0.18) 0%, transparent 70%);
  top: 10%;
  right: -140px;
  filter: blur(70px);
  animation: orbFloat2 22s ease-in-out infinite;
}

.orb-3 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(123, 107, 170, 0.22) 0%, transparent 70%);
  top: 45%;
  left: 35%;
  filter: blur(80px);
  animation: orbFloat3 26s ease-in-out infinite;
}

.orb-4 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(212, 168, 84, 0.14) 0%, transparent 70%);
  top: 68%;
  right: 8%;
  filter: blur(65px);
  animation: orbFloat4 20s ease-in-out infinite;
}

.orb-5 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(91, 74, 138, 0.20) 0%, transparent 70%);
  bottom: 5%;
  left: 10%;
  filter: blur(55px);
  animation: orbFloat1 24s ease-in-out infinite reverse;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(40px, 30px) scale(1.05); }
  66%       { transform: translate(-20px, 50px) scale(0.97); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(-50px, 40px) scale(1.08); }
  70%       { transform: translate(30px, -30px) scale(0.95); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-30px, -40px) scale(1.06); }
}
@keyframes orbFloat4 {
  0%, 100% { transform: translate(0, 0); }
  45%       { transform: translate(40px, -50px) scale(1.04); }
  80%       { transform: translate(-20px, 20px) scale(0.98); }
}

/* ===================================================================
   Nav — glassmorphic
   =================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(28, 26, 36, 0.75);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 100;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-icon-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(91, 74, 138, 0.40);
}

.nav-wordmark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-tertiary);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-link-guide {
  color: var(--gold) !important;
  border: 1px solid rgba(212, 168, 84, 0.25);
  background: rgba(212, 168, 84, 0.08);
  border-radius: 100px;
  padding: 4px 14px;
  transition: background 0.2s, border-color 0.2s;
}

.nav-link-guide:hover {
  background: rgba(212, 168, 84, 0.15) !important;
  border-color: rgba(212, 168, 84, 0.45) !important;
  color: var(--gold) !important;
}

/* ===================================================================
   Hero
   =================================================================== */

.hero {
  position: relative;
  padding: 160px 24px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 100vh;
  z-index: 1;
}

.hero-glow {
  display: none; /* replaced by persistent orbs */
}

.hero-content {
  flex: 1;
  max-width: 520px;
}

.hero-tagline {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  background: rgba(212, 168, 84, 0.12);
  border: 1px solid rgba(212, 168, 84, 0.25);
  border-radius: 100px;
  padding: 5px 14px;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.hero-accent {
  color: var(--indigo);
  font-style: italic;
  background: linear-gradient(135deg, var(--indigo-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 440px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.hero-note {
  font-size: 13px;
  color: var(--text-tertiary);
  font-weight: 400;
  margin-top: 4px;
}

/* Trust pills — inline below subtitle */
.hero-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-tertiary);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  padding: 5px 12px;
  letter-spacing: 0.02em;
}

.hero-trust-pill-gold {
  color: var(--gold);
  background: rgba(212,168,84,0.07);
  border-color: rgba(212,168,84,0.2);
}

/* Secondary CTA — text link with arrow */
.hero-secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  margin-left: 4px;
}

.hero-secondary-cta:hover {
  color: var(--text-primary);
}

.hero-cta-arrow {
  display: inline-block;
  transition: transform 0.2s;
}

.hero-secondary-cta:hover .hero-cta-arrow {
  transform: translateY(3px);
}

/* ===================================================================
   Buttons
   =================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  border: none;
  position: relative;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

/* Primary — gradient with glow */
.btn-primary {
  background: linear-gradient(135deg, #5B4A8A 0%, #7B6BAA 60%, #6B5A9A 100%);
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(123, 107, 170, 0.50) inset,
    0 6px 28px rgba(91, 74, 138, 0.45),
    0 2px 8px rgba(91, 74, 138, 0.30);
}

.btn-primary:hover {
  box-shadow:
    0 0 0 1px rgba(155, 142, 196, 0.50) inset,
    0 8px 36px rgba(91, 74, 138, 0.60),
    0 2px 12px rgba(91, 74, 138, 0.40);
}

/* Secondary — glassmorphic */
.btn-secondary {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.btn-secondary:hover {
  border-color: var(--border-indigo);
  box-shadow: 0 4px 20px rgba(91, 74, 138, 0.20);
}

.btn-icon {
  flex-shrink: 0;
}

/* ===================================================================
   Phone mockup
   =================================================================== */

.hero-phone {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  z-index: 1;
}

.phone-frame {
  position: relative;
  width: 310px;
  height: 640px;
  background: #0E0D14;
  border-radius: 52px;
  padding: 14px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.10) inset,
    0 0 0 1px rgba(123, 107, 170, 0.25),
    0 32px 80px rgba(91, 74, 138, 0.40),
    0 16px 40px rgba(0, 0, 0, 0.60),
    0 0 60px rgba(212, 168, 84, 0.08);
  animation: gentleFloat 5s ease-in-out infinite;
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 28px;
  background: #0E0D14;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

.phone-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
}

.phone-screen {
  position: absolute;
  inset: 0;
  background: #1C1A24;
  border-radius: 40px;
  padding: 52px 16px 18px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}

.phone-screen.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* Carousel navigation */
.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(212, 168, 84, 0.50);
}

.carousel-labels {
  display: flex;
  gap: 20px;
}

.carousel-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-tertiary);
  cursor: pointer;
  transition: color 0.2s;
}

.carousel-label.active {
  color: var(--gold);
  font-weight: 600;
}

/* ===================================================================
   Phone screen content — dark palette throughout
   =================================================================== */

/* ---- Screen 1: Home ---- */
.mock-header {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
}

.mock-icon-img {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  object-fit: cover;
}

.mock-wordmark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 14px;
  font-weight: 600;
  color: #B0A9C4;
}

.mock-greeting {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  color: #F0EDF8;
  line-height: 1.2;
  margin-bottom: 2px;
}

.mock-date-sub {
  font-size: 9px;
  color: #7A728E;
  font-weight: 500;
  margin-bottom: 10px;
}

.mock-stats-card {
  background: rgba(46, 42, 59, 0.80);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 10px;
  backdrop-filter: blur(10px);
}

.mock-stats-left, .mock-stats-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mock-stats-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.08);
  margin: 0 10px;
}

.mock-stats-num {
  font-size: 20px;
  font-weight: 700;
  color: #F0EDF8;
  line-height: 1;
}

.mock-stats-num-streak {
  color: #D4A854;
}

.mock-flame-glow {
  font-size: 10px;
  line-height: 1;
  margin: 1px 0;
}

.mock-stats-label {
  font-size: 8px;
  color: #7A728E;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.mock-section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}

.mock-section-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #7A728E;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.mock-section-gold {
  color: #D4A854;
}

.mock-personalized-pill {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #D4A854;
  background: rgba(212, 168, 84, 0.15);
  border: 1px solid rgba(212, 168, 84, 0.25);
  border-radius: 100px;
  padding: 2px 7px;
  text-transform: uppercase;
}

.mock-prompt-card {
  background: rgba(46, 42, 59, 0.70);
  border: 1px solid rgba(212, 168, 84, 0.25);
  border-radius: 10px;
  padding: 9px 11px;
  margin-bottom: 10px;
  backdrop-filter: blur(8px);
}

.mock-prompt-text {
  font-size: 9px;
  color: #B0A9C4;
  line-height: 1.5;
  font-style: italic;
}

.mock-cta-btn {
  background: linear-gradient(135deg, #5B4A8A, #7B6BAA);
  border-radius: 10px;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
  box-shadow: 0 4px 16px rgba(91, 74, 138, 0.45);
}

.mock-cta-icon {
  font-size: 10px;
  color: rgba(255,255,255,0.85);
}

.mock-cta-text {
  font-size: 10px;
  font-weight: 600;
  color: #fff;
}

.mock-month-cards-wrap {
  display: flex;
  gap: 8px;
  overflow: hidden;
  margin-bottom: 6px;
}

.mock-month-card {
  flex: 0 0 140px;
  background: rgba(46, 42, 59, 0.80);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 8px 10px;
  backdrop-filter: blur(8px);
}

.mock-month-card-peek {
  flex: 0 0 70px;
  overflow: hidden;
  opacity: 0.6;
}

.mock-month-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}

.mock-mood-badge {
  font-size: 7px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 100px;
}

.mock-mood-badge-good {
  background: rgba(226, 201, 122, 0.18);
  color: #E2C97A;
}

.mock-mood-badge-great {
  background: rgba(232, 168, 124, 0.18);
  color: #E8A87C;
}

.mock-month-card-date {
  font-size: 7px;
  color: #7A728E;
  font-weight: 500;
}

.mock-month-card-preview {
  font-size: 7.5px;
  color: #B0A9C4;
  line-height: 1.5;
}

.mock-carousel-dots {
  display: flex;
  gap: 4px;
  justify-content: center;
}

.mock-carousel-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}

.mock-carousel-dot-active {
  background: #D4A854;
  width: 12px;
  border-radius: 2px;
}

/* ---- Screen 2: Write ---- */
.mock-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.mock-cancel-btn {
  font-size: 10px;
  color: #7A728E;
  font-weight: 500;
}

.mock-modal-date {
  font-size: 11px;
  font-weight: 600;
  color: #F0EDF8;
}

.mock-save-pill {
  font-size: 10px;
  font-weight: 700;
  color: #7B6BAA;
  background: rgba(123, 107, 170, 0.15);
  border: 1px solid rgba(123, 107, 170, 0.30);
  border-radius: 100px;
  padding: 3px 10px;
}

.mock-prompt-label {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #D4A854;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.mock-write-area {
  background: rgba(42, 38, 54, 0.60);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 8px;
  min-height: 80px;
  backdrop-filter: blur(8px);
}

.mock-write-text {
  font-size: 9px;
  color: #B0A9C4;
  line-height: 1.6;
}

.mock-cursor {
  display: inline-block;
  width: 1px;
  height: 10px;
  background: #7B6BAA;
  margin-left: 1px;
  vertical-align: middle;
  animation: cursorBlink 1s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.mock-toolbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.mock-word-count {
  font-size: 8px;
  color: #7A728E;
  font-weight: 500;
}

.mock-pills-row {
  display: flex;
  gap: 4px;
}

.mock-pill {
  font-size: 7px;
  font-weight: 600;
  color: #7A728E;
  background: rgba(46, 42, 59, 0.70);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 100px;
  padding: 2px 7px;
}

.mock-pill-active {
  color: #7B6BAA;
  background: rgba(123, 107, 170, 0.15);
  border-color: rgba(123, 107, 170, 0.30);
}

.mock-mood-section-label {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #7A728E;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.mock-mood-buttons-row {
  display: flex;
  gap: 5px;
  justify-content: space-between;
  margin-bottom: 5px;
}

.mock-mood-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
  background: rgba(46, 42, 59, 0.70);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 5px 0;
}

.mock-mood-btn-selected {
  background: rgba(123, 107, 170, 0.20);
  border-color: rgba(123, 107, 170, 0.40);
}

.mock-mood-emoji {
  font-size: 11px;
}

.mock-mood-name {
  font-size: 6.5px;
  color: #7A728E;
  font-weight: 500;
}

.mock-mood-hint {
  font-size: 7px;
  color: #7A728E;
  text-align: center;
}

/* ---- Screen 3: Insights ---- */
.mock-insights-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #F0EDF8;
  margin-bottom: 10px;
}

.mock-mood-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.mock-day-toggle {
  display: flex;
  gap: 3px;
}

.mock-day-btn {
  font-size: 7.5px;
  font-weight: 600;
  color: #7A728E;
  background: rgba(46, 42, 59, 0.70);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 2px 6px;
}

.mock-day-btn-active {
  background: rgba(123, 107, 170, 0.20);
  border-color: rgba(123, 107, 170, 0.35);
  color: #B0A9C4;
}

.mock-mood-chart {
  background: rgba(46, 42, 59, 0.60);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 8px 10px;
  margin-bottom: 6px;
  backdrop-filter: blur(8px);
}

.mock-chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 52px;
  gap: 4px;
}

.mock-bar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.mock-bar-emoji { font-size: 8px; }

.mock-bar {
  width: 100%;
  border-radius: 4px 4px 0 0;
  max-width: 20px;
}

.mock-bar-meh    { background: #9DABB8; }
.mock-bar-okay   { background: #B8C4A8; }
.mock-bar-good   { background: #E2C97A; }
.mock-bar-great  { background: #E8A87C; }
.mock-bar-today  { background: linear-gradient(180deg, #7B6BAA, #5B4A8A); }

.mock-bar-day {
  font-size: 7px;
  color: #7A728E;
  font-weight: 500;
}

.mock-bar-day-today { color: #7B6BAA; font-weight: 700; }
.mock-bar-wrap-today .mock-bar { box-shadow: 0 0 6px rgba(123,107,170,0.50); }

.mock-mood-stats-row {
  display: flex;
  gap: 5px;
  margin-bottom: 8px;
}

.mock-mood-stat {
  flex: 1;
  background: rgba(46, 42, 59, 0.60);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 5px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.mock-mood-stat-val {
  font-size: 12px;
  font-weight: 700;
  color: #F0EDF8;
  line-height: 1;
}

.mock-mood-stat-lbl {
  font-size: 6px;
  color: #7A728E;
  font-weight: 500;
  margin-top: 2px;
}

.mock-week-date-range {
  font-size: 7.5px;
  color: #7A728E;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.mock-week-review {
  font-size: 8px;
  color: #B0A9C4;
  line-height: 1.55;
  margin-bottom: 8px;
}

.mock-pattern-card {
  background: rgba(46, 42, 59, 0.60);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 7px 9px;
  margin-bottom: 5px;
  backdrop-filter: blur(6px);
}

.mock-pattern-title {
  font-size: 8.5px;
  font-weight: 600;
  color: #F0EDF8;
  margin-bottom: 2px;
}

.mock-pattern-text {
  font-size: 7.5px;
  color: #7A728E;
  line-height: 1.45;
}

.mock-segment-control {
  display: flex;
  background: rgba(46, 42, 59, 0.70);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 2px;
  margin-bottom: 5px;
}

.mock-segment-btn {
  flex: 1;
  text-align: center;
  font-size: 8px;
  font-weight: 600;
  color: #7A728E;
  padding: 4px;
  border-radius: 6px;
}

.mock-segment-active {
  background: rgba(123, 107, 170, 0.25);
  color: #B0A9C4;
}

.mock-generate-btn {
  background: linear-gradient(135deg, #5B4A8A, #7B6BAA);
  border-radius: 8px;
  text-align: center;
  font-size: 9px;
  font-weight: 600;
  color: #fff;
  padding: 7px;
  box-shadow: 0 3px 12px rgba(91,74,138,0.45);
}

/* ===================================================================
   Shared section layout
   =================================================================== */

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

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

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  letter-spacing: -0.3px;
  margin-bottom: 60px;
}

/* ===================================================================
   Features
   =================================================================== */

.features {
  position: relative;
  z-index: 1;
}

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

.feature-card {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-indigo);
  box-shadow: 0 20px 60px rgba(0,0,0,0.30), 0 0 0 1px rgba(123, 107, 170, 0.15);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.30);
}

.feature-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.feature-badge {
  display: inline-block;
  margin-top: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 168, 84, 0.12);
  border: 1px solid rgba(212, 168, 84, 0.25);
  border-radius: 100px;
  padding: 3px 10px;
}

/* ===================================================================
   Privacy
   =================================================================== */

.privacy-section {
  position: relative;
  z-index: 1;
}

.privacy-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-gold);
  border-radius: 32px;
  padding: 64px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.privacy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 84, 0.40), transparent);
}

.privacy-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(212, 168, 84, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.privacy-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  background: rgba(91, 74, 138, 0.15);
  border: 1px solid var(--border-indigo);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.privacy-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.privacy-desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.privacy-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  padding: 6px 16px;
  transition: border-color 0.2s, color 0.2s;
}

.badge:hover {
  border-color: var(--border-gold);
  color: var(--gold);
}

/* ===================================================================
   Pricing
   =================================================================== */

.pricing-section {
  position: relative;
  z-index: 1;
}

.pricing-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 60px;
  margin-top: -40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

/* Free card */
.pricing-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: 28px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}

/* Premium card — gold border glow */
.pricing-card-premium {
  border-color: var(--border-gold);
  box-shadow:
    0 0 0 1px rgba(212, 168, 84, 0.10) inset,
    0 24px 60px rgba(0,0,0,0.30),
    0 0 40px rgba(212, 168, 84, 0.08);
}

.pricing-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 84, 0.50), transparent);
}

.pricing-card-premium::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 168, 84, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-popular-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 168, 84, 0.12);
  border: 1px solid rgba(212, 168, 84, 0.30);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.pricing-card-header {
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.pricing-tier {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.pricing-amount {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -1px;
  line-height: 1;
}

.pricing-period {
  font-size: 16px;
  color: var(--text-tertiary);
  font-weight: 500;
}

.pricing-annual-note {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}

.pricing-annual-note strong {
  color: var(--gold);
}

.pricing-tagline {
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.pf-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(123, 107, 170, 0.15);
  border: 1px solid rgba(123, 107, 170, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--indigo);
  margin-top: 1px;
}

.pf-check-gold {
  background: rgba(212, 168, 84, 0.12);
  border-color: rgba(212, 168, 84, 0.25);
  color: var(--gold);
}

.pf-ai-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--gold);
  background: rgba(212, 168, 84, 0.10);
  border: 1px solid rgba(212, 168, 84, 0.20);
  border-radius: 4px;
  padding: 1px 6px;
  margin-left: 4px;
  vertical-align: middle;
  text-transform: uppercase;
}

.pricing-btn {
  width: 100%;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.pricing-trial-note {
  font-size: 12px;
  color: var(--text-tertiary);
  text-align: center;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

/* ===================================================================
   CTA section
   =================================================================== */

.cta-section {
  position: relative;
  padding: var(--section-padding);
  text-align: center;
  z-index: 1;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(91, 74, 138, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

/* ===================================================================
   Footer
   =================================================================== */

.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 48px 24px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-wordmark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-tertiary);
}

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

.footer-links a {
  font-size: 13px;
  color: var(--text-tertiary);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text-secondary);
}

.footer-copy {
  font-size: 12px;
  color: var(--text-tertiary);
}

/* ===================================================================
   Scroll Reveal
   =================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.privacy-card,
.cta-title,
.cta-subtitle {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.privacy-card.revealed,
.cta-title.revealed,
.cta-subtitle.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================================
   FAQ
   =================================================================== */

.faq-section {
  position: relative;
  z-index: 1;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  overflow: hidden;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.55s ease,
    transform 0.55s ease;
}

.faq-item.open {
  border-color: var(--border-indigo);
  box-shadow: 0 8px 32px rgba(0,0,0,0.20);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--indigo-light);
}

.faq-item.open .faq-question {
  color: var(--indigo-light);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-tertiary);
  transition: transform 0.3s ease, color 0.2s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--indigo);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ===================================================================
   Sticky Mobile CTA
   =================================================================== */

.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 20px 20px;
  background: rgba(28, 26, 36, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-subtle);
  z-index: 90;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-sticky-cta.visible {
  transform: translateY(0);
}

.mobile-sticky-btn {
  width: 100%;
  max-width: 400px;
  justify-content: center;
}

.mobile-sticky-note {
  font-size: 12px;
  color: var(--text-tertiary);
  text-align: center;
}

/* ===================================================================
   Animations
   =================================================================== */

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

/* ===================================================================
   Responsive
   =================================================================== */

@media (max-width: 960px) {
  .hero {
    flex-direction: column;
    padding: 140px 24px 80px;
    gap: 60px;
    text-align: center;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-cta {
    align-items: center;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .privacy-card {
    padding: 48px 32px;
  }
}

@media (max-width: 640px) {
  :root {
    --section-padding: 80px 20px;
  }

  .mobile-sticky-cta {
    display: flex;
  }

  /* Give footer breathing room above sticky bar */
  .footer {
    padding-bottom: 100px;
  }

  .hero {
    padding: 120px 20px 60px;
    gap: 48px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .phone-frame {
    width: 280px;
    height: 580px;
  }

  .nav-links {
    display: none;
  }

  .privacy-card {
    padding: 36px 24px;
  }

  .section-title {
    margin-bottom: 40px;
  }
}
