/* Bold Little Oracle — Website */

:root {
  --cream: #FEFDFB;
  --warm: #FAF6F1;
  --ink: #1A1A1C;
  --ink-soft: #3A3A3C;
  --text-mid: #6B6B6E;
  --coral: #D4845A;
  --gold: #C4A265;
  --gold-light: rgba(196, 162, 101, 0.15);
  --amber: #E8B866;
  --sand: #F5E6D3;
  --border: #E8E0D8;
  --dark-bg: #0E0D0B;
  --dark-card: #1C1B18;
}

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

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

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================
   NAV
   ============================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2.5rem;
  background: rgba(14, 13, 11, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  margin-left: 2rem;
  transition: color 0.3s;
}

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

/* ============================================
   HERO — Dark atmospheric, mirrors card art
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 8rem 3rem 5rem;
  background: var(--dark-bg);
  overflow: hidden;
}

/* Radial amber glow behind the phone */
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(
    ellipse at center,
    rgba(232, 184, 102, 0.12) 0%,
    rgba(212, 132, 90, 0.06) 40%,
    transparent 70%
  );
  pointer-events: none;
  filter: blur(40px);
}

/* Subtle noise texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

/* Bottom fade to cream */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 420px;
}

.hero-kicker {
  font-size: 0.95rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero h1 .dot {
  color: var(--coral);
}

.hero-sub {
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(254, 253, 251, 0.55);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 340px;
}

.hero-phone {
  position: relative;
  z-index: 3;
}

/* ============================================
   PHONE FRAMES
   ============================================ */

.phone-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.4),
    0 8px 20px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  background: #000;
}

.phone-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-phone .phone-frame {
  width: 280px;
}

.phone-label {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text-mid);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ============================================
   CTA BUTTON
   ============================================ */

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--cream);
  color: var(--ink);
  padding: 0.85rem 1.8rem;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 184, 102, 0.2);
}

.cta-dark {
  background: var(--ink);
  color: var(--cream);
}

.cta-dark:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.apple-icon {
  width: 18px;
  height: 22px;
  flex-shrink: 0;
}

.cta-small {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  line-height: 1;
  opacity: 0.7;
  letter-spacing: 0.02em;
}

.cta-large {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* ============================================
   TONE SECTION — PG vs Sassy
   ============================================ */

.tone-section {
  padding: 6rem 2.5rem 7rem;
  background: var(--cream);
}

.tone-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 5rem;
}

.tone-text {
  flex: 1;
  max-width: 380px;
}

.tone-text h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.tone-text p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.tone-text strong {
  color: var(--ink);
  font-weight: 600;
}

.tone-phones {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.tone-phones .phone-frame {
  width: 220px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.04),
    inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.phone-tilt-left {
  transform: rotate(-3deg);
}

.phone-tilt-right {
  transform: rotate(2deg) translateY(2rem);
}

/* ============================================
   THEMES STRIP
   ============================================ */

.themes {
  padding: 4rem 2.5rem 5rem;
  text-align: center;
  background: var(--warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.themes h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 400;
  margin-bottom: 2rem;
}

.theme-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.theme-pill {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.6rem 1.75rem;
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  transition: border-color 0.3s, color 0.3s;
}

.theme-pill:hover {
  border-color: var(--gold);
  color: var(--ink);
}

.themes-sub {
  max-width: 440px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============================================
   DETAILS — Alternating phone + text
   ============================================ */

.details {
  padding: 5rem 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.detail-block {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 5rem;
}

.detail-block:last-child {
  margin-bottom: 0;
}

.detail-block-reverse {
  flex-direction: row-reverse;
}

.detail-phone .phone-frame {
  width: 200px;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.06),
    0 4px 10px rgba(0, 0, 0, 0.03),
    inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.detail-text {
  flex: 1;
}

.detail-text h3 {
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.detail-text p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 380px;
}

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta {
  text-align: center;
  padding: 5rem 2.5rem 6rem;
  background: var(--warm);
  border-top: 1px solid var(--border);
}

.final-kicker {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 2rem;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  padding: 2rem 2.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-mid);
}

.footer-inner {
  margin-bottom: 0.5rem;
}

.footer-inner a {
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-inner a:hover {
  color: var(--coral);
}

.footer-dot {
  margin: 0 0.75rem;
  opacity: 0.4;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .nav-links a {
    margin-left: 1.25rem;
    font-size: 0.85rem;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 7rem 1.5rem 4rem;
    gap: 3rem;
    min-height: auto;
  }

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

  .hero-sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-glow {
    right: 50%;
    transform: translate(50%, -50%);
  }

  .hero-phone .phone-frame {
    width: 240px;
    margin: 0 auto;
  }

  .tone-inner {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .tone-text {
    max-width: 100%;
  }

  .tone-phones {
    justify-content: center;
  }

  .tone-phones .phone-frame {
    width: 170px;
  }

  .detail-block,
  .detail-block-reverse {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .detail-text p {
    max-width: 100%;
  }

  .detail-phone .phone-frame {
    width: 180px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .tone-phones .phone-frame {
    width: 145px;
  }

  .phone-tilt-left {
    transform: rotate(-2deg);
  }

  .phone-tilt-right {
    transform: rotate(1.5deg) translateY(1rem);
  }

  .theme-row {
    gap: 0.6rem;
  }

  .theme-pill {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
  }
}

/* ============================================
   SUBPAGES (Privacy, Support)
   ============================================ */

.page-body {
  background: var(--cream);
}

.nav-light {
  background: rgba(254, 253, 251, 0.9);
  border-bottom: 1px solid var(--border);
}

.nav-light .nav-logo {
  color: var(--ink);
}

.nav-light .nav-links a {
  color: var(--text-mid);
}

.nav-light .nav-links a:hover {
  color: var(--coral);
}

.page-header {
  text-align: center;
  padding: 7rem 2.5rem 2.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.page-header h1 {
  font-size: 2.25rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.page-meta {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-style: italic;
}

.page-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.page-content section {
  margin-bottom: 2.5rem;
}

.page-content h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.page-content p,
.page-content li {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.page-content ul {
  padding-left: 1.25rem;
}

.page-content a {
  color: var(--coral);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.page-content a:hover {
  color: var(--gold);
}

.faq-item {
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-item h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.faq-item p {
  margin-bottom: 0;
  color: var(--text-mid);
  font-size: 0.95rem;
}

.contact-block {
  text-align: center;
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  margin-top: 2rem;
}

.contact-block h2 {
  border: none;
  padding-bottom: 0;
}

.contact-block p {
  color: var(--text-mid);
}

/* ============================================
   ENTRANCE ANIMATIONS
   ============================================ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-kicker {
  animation: fadeUp 0.8s ease-out both;
  animation-delay: 0.2s;
}

.hero h1 {
  animation: fadeUp 0.8s ease-out both;
  animation-delay: 0.35s;
}

.hero-sub {
  animation: fadeUp 0.8s ease-out both;
  animation-delay: 0.5s;
}

.hero-content .cta {
  animation: fadeUp 0.8s ease-out both;
  animation-delay: 0.65s;
}

.hero-phone {
  animation: fadeUp 1s ease-out both;
  animation-delay: 0.5s;
}
