@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --bg-primary: #1A1212;
  --bg-secondary: #211818;
  --bg-card: #251D1D;
  --coral: #E8796A;
  --gold: #F4A261;
  --cream: #FAF7F2;
  --cream-muted: #D4C9BB;
  --rose: #C97B6E;
  --rose-dark: #A35D52;
  --gradient: linear-gradient(135deg, #E8796A, #F4A261);
  --gradient-hover: linear-gradient(135deg, #D96A5A, #E59251);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--cream);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  display: block;
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
}

.nav.scrolled {
  background: rgba(26, 18, 18, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 32px;
  border-bottom: 1px solid rgba(201, 123, 110, 0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  color: #fff;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--cream-muted);
  transition: color 0.2s;
  letter-spacing: 0.3px;
}

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

.nav-cta {
  background: var(--gradient);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: opacity 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.nav-mobile-menu.open {
  display: flex;
}

.nav-mobile-menu a {
  font-size: 28px;
  font-weight: 700;
  color: var(--cream);
  transition: color 0.2s;
}

.nav-mobile-menu a:hover {
  color: var(--coral);
}

.nav-mobile-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cream);
  font-size: 28px;
  line-height: 1;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
  letter-spacing: 0.2px;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 24px rgba(232, 121, 106, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232, 121, 106, 0.4);
  opacity: 0.92;
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(250, 247, 242, 0.25);
}

.btn-outline:hover {
  border-color: rgba(250, 247, 242, 0.5);
  background: rgba(250, 247, 242, 0.05);
  transform: translateY(-2px);
}

/* ========== DOWNLOAD BUTTONS ========== */
.download-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: 14px;
  background: var(--gradient);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(232, 121, 106, 0.25);
  text-decoration: none;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232, 121, 106, 0.4);
}

.download-btn-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.download-btn-text small {
  display: block;
  font-size: 10px;
  opacity: 0.85;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 400;
}

.download-btn-text strong {
  font-size: 15px;
  font-weight: 700;
  display: block;
  letter-spacing: -0.2px;
}

/* ========== SUNBURST ========== */
.sunburst {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.sunburst-lines {
  position: absolute;
  pointer-events: none;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 32px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 121, 106, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-glow-2 {
  position: absolute;
  bottom: 10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 162, 97, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-sunburst {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  opacity: 0.06;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 121, 106, 0.12);
  border: 1px solid rgba(232, 121, 106, 0.25);
  color: var(--coral);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

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

.hero-title {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -2px;
  color: var(--cream);
  margin-bottom: 20px;
}

.hero-title .gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 18px;
  font-weight: 300;
  color: var(--cream-muted);
  margin-bottom: 40px;
  max-width: 460px;
  line-height: 1.65;
  letter-spacing: 0.2px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  width: 280px;
  height: 580px;
}

.phone-frame {
  width: 100%;
  height: 100%;
  background: #251D1D;
  border-radius: 44px;
  border: 2px solid rgba(201, 123, 110, 0.3);
  overflow: hidden;
  position: relative;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(201, 123, 110, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.phone-notch {
  width: 100px;
  height: 28px;
  background: var(--bg-primary);
  border-radius: 0 0 20px 20px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.phone-screen {
  padding: 16px;
  height: calc(100% - 28px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phone-screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phone-greeting {
  font-size: 10px;
  color: var(--cream-muted);
  font-weight: 400;
}

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

.phone-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient);
}

.phone-ring-container {
  display: flex;
  justify-content: center;
  padding: 8px 0;
}

.phone-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: conic-gradient(
    from -90deg,
    #E8796A 0deg,
    #F4A261 200deg,
    #251D1D 200deg 360deg
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.phone-ring::before {
  content: '';
  position: absolute;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #251D1D;
}

.phone-ring-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.phone-ring-pct {
  font-size: 22px;
  font-weight: 800;
  color: var(--cream);
  display: block;
  line-height: 1.1;
}

.phone-ring-label {
  font-size: 8px;
  color: var(--cream-muted);
  letter-spacing: 0.5px;
}

.phone-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.phone-stat {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 10px;
  border: 1px solid rgba(201, 123, 110, 0.1);
}

.phone-stat-val {
  font-size: 16px;
  font-weight: 700;
  color: var(--cream);
  display: block;
}

.phone-stat-label {
  font-size: 8px;
  color: var(--cream-muted);
  letter-spacing: 0.5px;
}

.phone-activity-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--cream-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.phone-activity-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 48px;
}

.bar {
  flex: 1;
  background: rgba(232, 121, 106, 0.2);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gradient);
  border-radius: 3px;
}

.bar.h20::after { height: 20%; }
.bar.h40::after { height: 40%; }
.bar.h60::after { height: 60%; }
.bar.h80::after { height: 80%; }
.bar.h100::after { height: 100%; }
.bar.h35::after { height: 35%; }
.bar.h55::after { height: 55%; }

.phone-pill {
  background: rgba(232, 121, 106, 0.12);
  border: 1px solid rgba(232, 121, 106, 0.2);
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-pill-icon {
  width: 24px;
  height: 24px;
  background: var(--gradient);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.phone-pill-text {
  font-size: 10px;
}

.phone-pill-text strong {
  color: var(--cream);
  font-size: 11px;
  display: block;
}

.phone-pill-text span {
  color: var(--cream-muted);
}

.phone-float-card {
  position: absolute;
  background: rgba(37, 29, 29, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 123, 110, 0.2);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.phone-float-card.card-right {
  right: -100px;
  top: 100px;
  min-width: 140px;
}

.phone-float-card.card-left {
  left: -80px;
  bottom: 140px;
  min-width: 120px;
}

.float-card-label {
  font-size: 9px;
  color: var(--cream-muted);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.float-card-value {
  font-size: 20px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.float-card-sub {
  font-size: 9px;
  color: var(--cream-muted);
  margin-top: 2px;
}

/* ========== SECTIONS ========== */
.section {
  padding: 100px 32px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 17px;
  font-weight: 300;
  color: var(--cream-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ========== FEATURES ========== */
.features {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.features-header {
  text-align: center;
  margin-bottom: 72px;
}

.features-header .section-subtitle {
  margin: 0 auto;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 123, 110, 0.1);
  border-radius: 24px;
  padding: 36px 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 121, 106, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: rgba(232, 121, 106, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(232, 121, 106, 0.1);
  border: 1px solid rgba(232, 121, 106, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s;
}

.feature-card:hover .feature-icon {
  background: rgba(232, 121, 106, 0.2);
  border-color: rgba(232, 121, 106, 0.4);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--coral);
  stroke-width: 1.75;
  fill: none;
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.feature-desc {
  font-size: 14px;
  color: var(--cream-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ========== PRIVACY STRIP ========== */
.privacy-strip {
  padding: 80px 32px;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.privacy-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.privacy-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-container {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(232, 121, 106, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.shield-ring {
  position: absolute;
  border: 1px solid rgba(232, 121, 106, 0.15);
  border-radius: 50%;
  animation: ring-pulse 3s ease-in-out infinite;
}

.shield-ring:nth-child(2) { width: 180px; height: 180px; animation-delay: 0s; }
.shield-ring:nth-child(3) { width: 220px; height: 220px; animation-delay: 0.5s; }
.shield-ring:nth-child(4) { width: 258px; height: 258px; animation-delay: 1s; }

@keyframes ring-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.15; }
}

.shield-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(232, 121, 106, 0.3);
  position: relative;
  z-index: 1;
}

.shield-icon svg {
  width: 52px;
  height: 52px;
  stroke: #fff;
  stroke-width: 1.5;
  fill: none;
}

.privacy-content .section-title {
  margin-bottom: 16px;
}

.privacy-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.privacy-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.privacy-point-icon {
  width: 22px;
  height: 22px;
  background: rgba(232, 121, 106, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.privacy-point-icon svg {
  width: 11px;
  height: 11px;
  stroke: var(--coral);
  stroke-width: 2.5;
  fill: none;
}

.privacy-point p {
  font-size: 14px;
  color: var(--cream-muted);
  line-height: 1.6;
}

.privacy-point p strong {
  color: var(--cream);
  font-weight: 600;
}

/* ========== CTA ========== */
.cta-section {
  padding: 120px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(232, 121, 106, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-sunburst {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.04;
  pointer-events: none;
}

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

.cta-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--cream);
}

.cta-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--cream-muted);
  margin-bottom: 48px;
  line-height: 1.65;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid rgba(201, 123, 110, 0.12);
  padding: 60px 32px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--gradient);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 13px;
  color: #fff;
}

.footer-logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
}

.footer-desc {
  font-size: 13px;
  color: var(--cream-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-email {
  font-size: 13px;
  color: var(--rose);
  font-weight: 500;
  transition: color 0.2s;
}

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

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(201, 123, 110, 0.1);
}

.footer-copy {
  font-size: 12px;
  color: rgba(212, 201, 187, 0.5);
  letter-spacing: 0.3px;
}

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

.footer-legal a {
  font-size: 12px;
  color: rgba(212, 201, 187, 0.5);
  transition: color 0.2s;
}

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

/* ========== INNER PAGES ========== */
.inner-hero {
  padding: 160px 32px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.inner-hero-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 121, 106, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.inner-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 16px;
}

.inner-hero p {
  font-size: 16px;
  color: var(--cream-muted);
  font-weight: 300;
}

.content-section {
  padding: 40px 32px 100px;
}

.content-inner {
  max-width: 780px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(201, 123, 110, 0.1);
  border-radius: 24px;
  padding: 56px;
}

.content-inner h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  margin: 36px 0 14px;
  letter-spacing: -0.5px;
}

.content-inner h2:first-child {
  margin-top: 0;
}

.content-inner p {
  font-size: 15px;
  color: var(--cream-muted);
  line-height: 1.75;
  margin-bottom: 16px;
  font-weight: 300;
}

.content-inner ul {
  margin: 12px 0 20px 20px;
}

.content-inner li {
  font-size: 15px;
  color: var(--cream-muted);
  line-height: 1.75;
  margin-bottom: 8px;
  font-weight: 300;
}

.content-placeholder {
  background: rgba(232, 121, 106, 0.05);
  border: 1px dashed rgba(232, 121, 106, 0.2);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  color: rgba(212, 201, 187, 0.4);
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* ========== SHOP PAGE ========== */
.shop-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 32px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.shop-sunburst {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.shop-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 121, 106, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.shop-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 121, 106, 0.1);
  border: 1px solid rgba(232, 121, 106, 0.2);
  color: var(--coral);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.shop-title {
  font-size: clamp(56px, 10vw, 120px);
  font-weight: 900;
  letter-spacing: -4px;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.shop-title .gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shop-subtitle {
  font-size: 17px;
  font-weight: 300;
  color: var(--cream-muted);
  max-width: 480px;
  line-height: 1.65;
  margin: 20px auto 48px;
  position: relative;
  z-index: 1;
}

.email-capture {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.email-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 123, 110, 0.25);
  border-radius: 100px;
  padding: 14px 24px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.email-input::placeholder {
  color: rgba(212, 201, 187, 0.4);
}

.email-input:focus {
  border-color: rgba(232, 121, 106, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.email-submit {
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(232, 121, 106, 0.3);
}

.email-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232, 121, 106, 0.4);
}

.email-note {
  font-size: 12px;
  color: rgba(212, 201, 187, 0.35);
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

.notify-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(232, 121, 106, 0.1);
  border: 1px solid rgba(232, 121, 106, 0.2);
  border-radius: 100px;
  padding: 12px 24px;
  color: var(--coral);
  font-size: 14px;
  font-weight: 500;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.notify-success.show {
  display: flex;
}

/* ========== SVG SUNBURST ========== */
.sb-svg {
  animation: rotate-slow 40s linear infinite;
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: start;
  }

  .privacy-strip-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .privacy-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .nav {
    padding: 16px 24px;
  }

  .hero {
    padding: 100px 24px 60px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 56px;
    text-align: center;
  }

  .hero-badge {
    margin: 0 auto 28px;
  }

  .hero-tagline {
    margin: 0 auto 40px;
  }

  .download-btns {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .phone-float-card.card-right {
    right: -40px;
  }

  .phone-float-card.card-left {
    left: -20px;
  }

  .section {
    padding: 70px 24px;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    display: block;
  }

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

  .email-capture {
    flex-direction: column;
  }

  .content-inner {
    padding: 32px 24px;
  }

  .cta-section {
    padding: 80px 24px;
  }

  .hero-sunburst {
    display: none;
  }
}

@media (max-width: 480px) {
  .phone-mockup {
    width: 240px;
    height: 500px;
  }

  .phone-float-card.card-right,
  .phone-float-card.card-left {
    display: none;
  }
}
