/* ============================================
   POKE — Landing Page Styles
   Warm California / Premium Consumer Feel
   ============================================ */

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

:root {
  --cream: #faf8f3;
  --cream-2: #f5f0e8;
  --sand: #ede5d4;
  --warm-white: #fffdf8;
  --gold: #e8a832;
  --gold-light: #f5c761;
  --amber: #d4824a;
  --amber-light: #f0a46a;
  --sunset: #e07044;
  --green: #4a9e6b;
  --teal: #3b8fa0;
  --dark: #1a1410;
  --dark-2: #2d2520;
  --mid: #6b5e52;
  --light-mid: #9c8e82;
  --border: rgba(120, 100, 80, 0.15);
  --shadow-warm: 0 4px 24px rgba(180, 120, 60, 0.12);
  --shadow-strong: 0 12px 60px rgba(100, 60, 20, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 28px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===================== NAV ===================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 243, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--dark);
}

.logo-icon {
  font-size: 22px;
  line-height: 1;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--dark);
}

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

.nav-links a {
  text-decoration: none;
  color: var(--mid);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--dark) !important;
  color: var(--cream) !important;
  padding: 9px 20px !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s !important;
}

.nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 16px rgba(26, 20, 16, 0.25) !important;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 80px;
  overflow: hidden;
  background: var(--warm-white);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 168, 50, 0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: glow-pulse 8s ease-in-out infinite;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(208, 112, 68, 0.1) 0%, transparent 70%);
  bottom: 0;
  left: -100px;
  animation: glow-pulse 10s ease-in-out infinite reverse;
}

@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.7; }
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74, 158, 107, 0.12);
  border: 1px solid rgba(74, 158, 107, 0.25);
  color: #3a7a56;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: #4a9e6b;
  border-radius: 50%;
  animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--dark);
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: italic;
  color: var(--amber);
  background: linear-gradient(135deg, var(--amber) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--mid);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--cream);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.2px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 16px rgba(26, 20, 16, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26, 20, 16, 0.3);
}

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

.btn-large {
  padding: 18px 40px;
  font-size: 18px;
  gap: 12px;
}

.hero-free {
  font-size: 14px;
  color: var(--light-mid);
  font-weight: 500;
}

.hero-platforms {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--border);
}

.platform-pill.imessage {
  background: rgba(0, 180, 0, 0.06);
  border-color: rgba(0, 150, 0, 0.2);
  color: #0a7a1a;
}

.platform-pill.whatsapp {
  background: rgba(37, 211, 102, 0.07);
  border-color: rgba(37, 211, 102, 0.25);
  color: #1a7a42;
}

.platform-pill.telegram {
  background: rgba(42, 174, 235, 0.07);
  border-color: rgba(42, 174, 235, 0.25);
  color: #1565a0;
}

/* ===================== PHONE MOCKUP ===================== */
.hero-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-phone {
  width: 320px;
  background: #1a1a1a;
  border-radius: 44px;
  padding: 0;
  overflow: hidden;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.08),
    0 0 0 6px rgba(0,0,0,0.15),
    0 40px 80px rgba(0,0,0,0.35),
    0 20px 40px rgba(180, 120, 60, 0.15);
  position: relative;
  animation: phone-float 6s ease-in-out infinite;
  border: 1px solid rgba(255,255,255,0.05);
}

@keyframes phone-float {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

.phone-notch {
  width: 110px;
  height: 30px;
  background: #1a1a1a;
  border-radius: 0 0 20px 20px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 20px 8px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  margin-top: -4px;
}

.phone-status-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
}

.phone-header {
  background: rgba(255,255,255,0.04);
  padding: 10px 16px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.phone-contact {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-name {
  color: white;
  font-size: 15px;
  font-weight: 600;
}

.contact-status {
  color: rgba(255,255,255,0.5);
  font-size: 11px;
}

.phone-messages {
  padding: 12px 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 340px;
  background: #000;
}

.msg {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.msg-in {
  align-items: flex-start;
}

.msg-out {
  align-items: flex-end;
}

.msg-bubble {
  max-width: 85%;
  padding: 10px 13px;
  border-radius: 18px;
  font-size: 13px;
  line-height: 1.5;
}

.msg-in .msg-bubble {
  background: #1c1c1e;
  color: #f0f0f0;
  border-bottom-left-radius: 4px;
}

.msg-in .msg-bubble strong {
  color: var(--gold-light);
}

.msg-out .msg-bubble {
  background: #0a84ff;
  color: white;
  border-bottom-right-radius: 4px;
}

.msg-time {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  padding: 0 4px;
}

.phone-input-bar {
  background: #1a1a1a;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.phone-input-pill {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 9px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}

.phone-send-btn {
  width: 32px;
  height: 32px;
  background: #0a84ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}

.phone-shadow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 60px;
  background: radial-gradient(ellipse, rgba(180, 100, 40, 0.3) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--light-mid);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: scroll-hint 2s ease-in-out infinite;
}

@keyframes scroll-hint {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(4px); }
}

/* ===================== FEATURES ===================== */
.features {
  background: var(--cream);
  padding: 100px 24px;
}

.features-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-label {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 60px;
}

.section-headline em {
  font-style: italic;
  color: var(--amber);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.feature-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm);
}

.feature-card--large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--cream-2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}

.feature-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.feature-card p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 0;
}

.feature-example {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.mini-msg {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  font-style: italic;
}

.mini-in {
  background: var(--cream-2);
  color: var(--dark-2);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}

.integration-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.integration-chips span {
  background: var(--cream-2);
  border: 1px solid var(--border);
  color: var(--dark-2);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
}

/* ===================== PROOF ===================== */
.proof {
  background: linear-gradient(135deg, #1a1410 0%, #2d2018 50%, #1e1810 100%);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.proof-palm-bg {
  position: absolute;
  right: -20px;
  bottom: -20px;
  font-size: 200px;
  opacity: 0.06;
  pointer-events: none;
  line-height: 1;
  transform: rotate(-15deg);
}

.proof-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.proof-content {
  text-align: center;
}

.proof-content blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 28px;
}

.proof-content blockquote em {
  color: var(--gold-light);
  font-style: normal;
}

.proof-content cite {
  font-size: 15px;
  color: rgba(250, 240, 220, 0.45);
  font-style: normal;
  font-weight: 500;
}

/* ===================== BACKERS ===================== */
.backers {
  background: var(--warm-white);
  padding: 100px 24px;
}

.backers-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.backers-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.3px;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 56px;
  max-width: 640px;
}

.backers-logos {
  display: flex;
  gap: 20px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.backer-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 24px;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.backer-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-warm);
}

.backer-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.backer-spark {
  background: linear-gradient(135deg, #f5c761, #e8a832);
  color: white;
}

.backer-gc {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.backer-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

.backer-role {
  font-size: 12px;
  color: var(--light-mid);
  font-weight: 500;
}

.angels-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-mid);
  margin-bottom: 24px;
}

.angels-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.angel-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  transition: transform 0.2s;
}

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

.angel-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--sand), var(--cream-2));
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-2);
  flex-shrink: 0;
}

.angel-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.angel-role {
  font-size: 12px;
  color: var(--light-mid);
}

.company-note {
  font-size: 14px;
  color: var(--light-mid);
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.company-note strong {
  color: var(--mid);
}

/* ===================== FINAL CTA ===================== */
.cta-section {
  background: linear-gradient(150deg, var(--cream-2) 0%, #ede0c8 50%, var(--sand) 100%);
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.cta-glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 168, 50, 0.2) 0%, transparent 70%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
}

.cta-glow-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(208, 112, 68, 0.15) 0%, transparent 70%);
  bottom: -50px;
  right: 10%;
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-palm {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
  animation: palm-sway 4s ease-in-out infinite;
}

@keyframes palm-sway {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

.cta-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 18px;
  color: var(--mid);
  margin-bottom: 40px;
}

.cta-fine {
  margin-top: 20px;
  font-size: 13px;
  color: var(--light-mid);
}

.cta-fine a {
  color: var(--amber);
  text-decoration: none;
  font-weight: 500;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--dark);
  padding: 40px 24px;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand .logo-text {
  color: var(--cream);
  font-size: 16px;
}

.footer-by {
  font-size: 13px;
  color: rgba(250, 248, 243, 0.35);
  margin-left: 4px;
}

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

.footer-links a {
  font-size: 14px;
  color: rgba(250, 248, 243, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 13px;
  color: rgba(250, 248, 243, 0.25);
  width: 100%;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 8px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-copy {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

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

  .hero-phone-wrap {
    order: 2;
  }

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

  .feature-card--large {
    grid-column: auto;
    grid-row: auto;
  }

  .backers-logos {
    flex-direction: column;
  }

  .backer-pill {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .hero {
    padding: 90px 20px 60px;
  }

  .hero-phone {
    width: 280px;
  }

  .features, .proof, .backers, .cta-section {
    padding: 72px 20px;
  }

  .angels-grid {
    flex-direction: column;
  }

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

  .footer-links {
    justify-content: center;
  }
}

/* ===================== ANIMATIONS ===================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
