/* ===== RESET & VARS ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

:root {
  --black:       #1a1208;
  --white:       #ffffff;
  --honey:       #D4A017;
  --honey-dark:  #a37800;
  --honey-light: #fdf0c4;
  --beige-100:   #fffdf7;
  --beige-200:   #f5edd8;
  --beige-300:   #e8d9b8;
  --beige-400:   #d4c090;
  --beige-500:   #b09060;
  --text-primary:   #1a1208;
  --text-secondary: #4a3c1e;
  --text-muted:     #8a7a5a;
  --shadow-sm: 0 2px 12px rgba(26,18,8,.06);
  --shadow-md: 0 8px 32px rgba(26,18,8,.11);
  --shadow-lg: 0 20px 60px rgba(26,18,8,.16);
  --radius-pill: 999px;
  --radius-lg:   32px;
  --radius-md:   20px;
  --radius-sm:   12px;
  --font-head: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: .3s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--beige-100); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPE ===== */
h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; }
p { color: var(--text-secondary); }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 16px;
}
.section-label::before { content:''; width:20px; height:1px; background:var(--beige-400); display:block; }
.section-title { font-size: clamp(36px,5vw,60px); color: var(--text-primary); margin-bottom: 16px; }
.section-title em { font-style: italic; color: var(--honey-dark); }
.section-sub { font-size: 18px; max-width: 520px; color: var(--text-secondary); margin-bottom: 48px; line-height: 1.7; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-pill);
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all var(--transition); white-space: nowrap;
}
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: #2d1e0a; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--text-primary); }
.btn-ghost:hover { background: var(--beige-200); }
.btn-outline { background: transparent; color: var(--black); border: 1.5px solid var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-lg { padding: 16px 32px; font-size: 15px; }

.nav-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(26, 18, 8, 0.15);
  transition: all var(--transition);
}
.nav-download-btn:hover {
  background: var(--honey-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(163, 120, 0, 0.3);
}
.nav-download-btn svg, .btn svg {
  flex-shrink: 0;
  fill: currentColor;
}


/* ===== SITE HEADER / NAVBAR ===== */
.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0 16px;
  z-index: 1000;
  box-sizing: border-box;
}

.header-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 253, 247, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 160, 23, 0.22);
  border-radius: 999px;
  padding: 8px 16px;
  box-shadow: 0 4px 20px rgba(26, 18, 8, 0.08);
  box-sizing: border-box;
  width: 100%;
}

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

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  color: var(--black);
  letter-spacing: -0.02em;
}

.brand-subtitle {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
}

/* Desktop Menu */
.desktop-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.desktop-menu a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.desktop-menu a:hover {
  background: var(--beige-200);
  color: var(--black);
}

.header-action .btn {
  padding: 9px 20px;
  font-size: 14px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--beige-200);
  border: 1px solid var(--beige-300);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.mobile-toggle:hover {
  background: var(--beige-300);
}

.mobile-toggle .bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-toggle.open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.open .bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Dropdown */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  max-width: 1100px;
  margin: 8px auto 0;
  padding: 12px;
  background: rgba(255, 253, 247, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--beige-300);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  box-sizing: border-box;
  width: 100%;
}

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

.mobile-menu a {
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 12px;
  display: block;
}

.mobile-menu a:hover {
  background: var(--beige-200);
}

.mobile-menu .btn {
  margin-top: 6px;
  justify-content: center;
  width: 100%;
}

/* Responsive Media Queries for Header */
@media (max-width: 900px) {
  .site-header {
    top: 10px;
    padding: 0 10px;
  }
  .desktop-menu,
  .header-action {
    display: none !important;
  }
  .mobile-toggle {
    display: flex !important;
  }
  .brand-subtitle {
    display: none;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes blobFloat  { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-18px) scale(1.04)} }
@keyframes blobFloat2 { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(14px) scale(.97)} }
@keyframes blobMorph  { 0%,100%{border-radius:50% 40% 60% 45%/55% 45% 55% 40%} 50%{border-radius:60% 50% 40% 55%/40% 60% 45% 55%} }
@keyframes fadeUp     { from{opacity:0;transform:translateY(32px)} to{opacity:1;transform:translateY(0)} }
@keyframes marquee    { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes phoneFloat { 0%,100%{transform:rotate(-2deg) translateY(0)} 50%{transform:rotate(-2deg) translateY(-14px)} }
@keyframes phoneFloat2{ 0%,100%{transform:rotate(7deg) translateX(160px) translateY(28px)} 50%{transform:rotate(7deg) translateX(160px) translateY(14px)} }
@keyframes pulse      { 0%,100%{transform:scale(1);opacity:.6} 50%{transform:scale(1.15);opacity:1} }
@keyframes reveal     { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; padding: 140px 24px 80px;
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px; position: relative;
}
.hero-blobs { position: absolute; top: 10%; right: -10%; width: 560px; height: 560px; pointer-events: none; z-index: 0; }
.hblob { position: absolute; border-radius: 50%; filter: blur(48px); opacity: .5; }
.hb1 { width:300px;height:300px; background:#f7e099; top:0;left:0; animation:blobFloat 8s ease-in-out infinite; }
.hb2 { width:220px;height:220px; background:#e8c44a; top:25%;left:35%; animation:blobFloat2 10s ease-in-out infinite; animation-delay:-2s; }
.hb3 { width:260px;height:260px; background:#fdf0c4; top:55%;left:8%; animation:blobFloat 12s ease-in-out infinite; animation-delay:-5s; }

.hero-content { position: relative; z-index: 1; animation: fadeUp .8s ease both; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--honey-light); border: 1px solid rgba(212,160,23,.3);
  border-radius: var(--radius-pill); padding: 6px 14px;
  font-size: 12px; font-weight: 600; color: var(--honey-dark);
  letter-spacing: .06em; margin-bottom: 24px;
}
.badge-dot { width:6px;height:6px; background:var(--honey); border-radius:50%; animation:pulse 2s ease-in-out infinite; }
.hero-title { font-size: clamp(48px,6vw,72px); margin-bottom: 24px; }
.hero-title em { font-style: italic; color: var(--honey-dark); }
.hero-sub { font-size: 18px; line-height: 1.7; max-width: 480px; margin-bottom: 40px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-proof { display: flex; align-items: center; gap: 12px; }
.proof-dots { display: flex; }
.pdot { width:30px;height:30px;border-radius:50%;border:2px solid #fff;margin-left:-8px; }
.pdot:first-child { margin-left:0; }
.hero-proof p { font-size: 13px; font-weight: 500; color: var(--text-muted); }

/* ===== HERO PHONES ===== */
.hero-phones { position: relative; z-index: 1; height: 620px; display: flex; align-items: center; justify-content: center; animation: fadeUp .9s ease .2s both; }
.phone-glow { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.pg-left  { width:260px;height:260px; background:radial-gradient(circle,#f7e099,transparent 70%); top:20%;left:5%; animation:blobFloat 9s ease-in-out infinite; opacity:.7; }
.pg-right { width:220px;height:220px; background:radial-gradient(circle,#e8c44a,transparent 70%); bottom:10%;right:5%; animation:blobFloat2 11s ease-in-out infinite; opacity:.5; }
.phone-frame { position: absolute; border-radius: 44px; overflow: hidden; background: #111; border: 1.5px solid rgba(255,255,255,.4); }
.phone-frame img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.pf-front { width:260px;height:544px; z-index:3; box-shadow:0 40px 100px rgba(26,18,8,.28),0 12px 32px rgba(26,18,8,.14); animation:phoneFloat 6s ease-in-out infinite; }
.pf-back  { width:235px;height:492px; z-index:2; transform:rotate(7deg) translateX(155px) translateY(28px); box-shadow:0 28px 70px rgba(26,18,8,.2); opacity:.9; animation:phoneFloat2 7s ease-in-out infinite; animation-delay:-2s; }
.pf-far   { width:205px;height:430px; z-index:1; transform:rotate(-12deg) translateX(-165px) translateY(50px); box-shadow:0 20px 56px rgba(26,18,8,.16); opacity:.76; animation:phoneFloat 8s ease-in-out infinite; animation-delay:-4s; }

/* ===== MARQUEE ===== */
.marquee-wrap { background: var(--black); color: var(--white); padding: 14px 0; overflow: hidden; }
.marquee-track { display: flex; white-space: nowrap; animation: marquee 28s linear infinite; width: max-content; }
.marquee-track span { font-size: 13px; font-weight: 500; padding: 0 16px; letter-spacing: .05em; }
.msep { color: var(--honey)!important; padding: 0 4px!important; }

/* ===== PILLARS ===== */
.pillars-section { padding: 100px 0; background: var(--beige-200); }
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.pillar-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px 40px;
  border: 1px solid var(--beige-300); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar-card.pillar-dark { background: var(--black); border-color: var(--black); }
.pillar-card.pillar-dark h3 { color: var(--white); }
.pillar-card.pillar-dark p  { color: #8a7060; }
.pillar-icon {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 160px; margin-bottom: 20px; overflow: hidden;
}
.pillar-icon lottie-player { display: block; width: 160px !important; height: 160px !important; flex-shrink: 0; }
.pillar-card h3 { font-size: 22px; margin-bottom: 12px; }
.pillar-card p  { font-size: 15px; line-height: 1.7; }

/* ===== SCREENS ===== */
.screens-section { padding: 100px 0; background: var(--beige-100); }
.screens-section .section-sub { margin-bottom: 72px; }
.screen-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  margin-bottom: 100px; padding-bottom: 100px;
  border-bottom: 1px solid var(--beige-300);
}
.screen-row:last-child { margin-bottom:0; padding-bottom:0; border-bottom:none; }
.screen-row-flip .screen-row-phone { order: 2; }
.screen-row-flip .screen-row-text  { order: 1; }
.screen-row-phone { display: flex; justify-content: center; align-items: center; }
.screen-row-frame {
  width: 255px; height: 534px; border-radius: 44px;
  overflow: hidden; background: #111;
  box-shadow: 0 40px 100px rgba(26,18,8,.22), 0 10px 30px rgba(26,18,8,.12);
  position: relative; transition: transform .5s ease, box-shadow .5s ease;
  border: 1.5px solid rgba(255,255,255,.3);
}
.screen-row-frame::before { content:''; position:absolute; top:12px; left:50%; transform:translateX(-50%); width:60px; height:6px; background:rgba(255,255,255,.15); border-radius:3px; z-index:2; }
.screen-row-frame img { display:block;width:100%;height:100%;object-fit:cover;object-position:top; }
.screen-row:hover .screen-row-frame { transform: translateY(-8px) rotate(1deg); box-shadow: 0 56px 120px rgba(26,18,8,.28); }
.screen-row-text { max-width: 460px; }
.screen-row-tag { font-size:11px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--honey-dark);margin-bottom:16px;display:block; }
.screen-row-text h3 { font-family:var(--font-head);font-size:clamp(24px,3vw,34px);font-weight:800;color:var(--text-primary);margin-bottom:14px; }
.screen-row-text p  { font-size:16px;line-height:1.8;color:var(--text-secondary);margin-bottom:24px; }
.screen-row-bullets { list-style:none; display:flex; flex-direction:column; gap:10px; }
.screen-row-bullets li { font-size:14px;font-weight:600;color:var(--text-secondary);padding-left:20px;position:relative; }
.screen-row-bullets li::before { content:'✓';position:absolute;left:0;color:var(--honey-dark);font-weight:700; }

/* ===== FEATURES BENTO ===== */
.features { padding: 100px 0; background: var(--white); overflow: hidden; }
.features-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 20px; margin-top: 56px; width: 100%; box-sizing: border-box; }
.feat-card {
  background: var(--beige-100); border-radius: var(--radius-lg); padding: 32px;
  border: 1px solid var(--beige-200); display: flex; flex-direction: column; gap: 24px;
  grid-column: span 4; max-width: 100%; width: 100%; box-sizing: border-box; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feat-large { grid-column: span 8; flex-direction: row; align-items: center; }
.feat-accent { background: var(--black); border-color: var(--black); }
.feat-accent .feat-tag { background: #2a2010; color: var(--beige-400); }
.feat-accent h3 { color: var(--white); }
.feat-accent p  { color: #8a7060; }
.feat-visual { flex-shrink:0; display:flex; flex-direction:column; align-items:center; justify-content:center; max-width:100%; width:100%; box-sizing:border-box; overflow:hidden; }
.feat-large .feat-visual { width:260px; height:auto; min-height:160px; }
.feat-card:not(.feat-large) .feat-visual { height:auto; min-height:130px; width:100%; }
.feat-text { width:100%; max-width:100%; box-sizing:border-box; overflow:hidden; }
.feat-tag { display:inline-block;background:var(--beige-200);color:var(--text-muted);font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:4px 12px;border-radius:var(--radius-pill);margin-bottom:8px; }
.feat-text h3 { font-size:21px;margin-bottom:10px; word-break:break-word; }
.feat-text p  { font-size:15px;line-height:1.7; word-break:break-word; }

/* streak visual */
.streak-badge { text-align:center; max-width:100%; }
.streak-flame { font-size:40px;line-height:1; }
.streak-num   { font-family:var(--font-head);font-size:52px;font-weight:800;color:var(--honey-dark);line-height:1; }
.streak-label { font-size:12px;font-weight:600;color:var(--text-muted);letter-spacing:.08em;text-transform:uppercase; }
.freeze-row   { display:flex;gap:6px;justify-content:center;margin-top:16px;flex-wrap:wrap; }
.freeze-pip   { width:14px;height:14px;border-radius:50%;background:var(--beige-300);flex-shrink:0; }
.freeze-pip.filled { background:var(--honey); }
.freeze-label { font-size:11px;color:var(--text-muted);text-align:center;margin-top:6px;word-break:break-word; }

/* carry-forward visual */
.carry-card { background:var(--white);border-radius:var(--radius-md);padding:14px;border:1px solid var(--beige-300);display:flex;align-items:center;gap:10px;width:100%;max-width:100%;box-sizing:border-box;overflow:hidden; }
.carry-icon { font-size:22px;flex-shrink:0; }
.carry-text { flex-grow:1; min-width:0; overflow:hidden; }
.carry-title { font-size:12px;font-weight:700;color:var(--text-primary);white-space:nowrap;overflow:hidden;text-overflow:ellipsis; }
.carry-sub   { font-size:10px;color:var(--text-muted);margin-top:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis; }
.carry-btn   { margin-left:auto;background:var(--honey);color:var(--white);padding:5px 12px;border-radius:var(--radius-pill);font-size:11px;font-weight:700;flex-shrink:0; }

/* heatmap visual */
.heatmap-visual { width:100%; max-width:100%; overflow-x:auto; -webkit-overflow-scrolling:touch; box-sizing:border-box; }
.mini-heatmap { display:flex;flex-direction:column;gap:3px;max-width:100%; width:max-content; margin:0 auto; }
.hm-row { display:flex;gap:3px; }
.hm-row div { width:10px;height:10px;border-radius:2px;flex-shrink:0; }
.hm-label { font-size:10px; color:var(--text-muted); margin-top:8px; text-align:center; }

/* letter visual */
.letter-lines { display:flex;flex-direction:column;gap:8px;width:100%;max-width:100%; }
.ll { height:8px;background:var(--beige-400);border-radius:4px;animation:pulse 2.5s ease-in-out infinite;width:100%; }
.ll.short { width:55%; animation-delay:.4s; }
.letter-badge { display:inline-block;background:var(--honey-light);color:var(--honey-dark);font-size:11px;font-weight:700;padding:4px 10px;border-radius:var(--radius-pill);margin-top:12px; }

/* mood calendar visual */
.mood-mini-grid { display:grid;grid-template-columns:repeat(6,1fr);gap:6px;width:100%;max-width:100%;box-sizing:border-box; }
.mm-day { height:28px;border-radius:50%;width:100%;max-width:28px;margin:0 auto; }
.mm-day.empty { background:var(--beige-200); }

/* theme swatches */
.theme-swatches { display:grid;grid-template-columns:repeat(2,1fr);gap:10px;width:100%;max-width:100%;box-sizing:border-box; }
.tswatch { height:60px;border-radius:var(--radius-md);display:flex;align-items:flex-end;padding:8px 10px;cursor:default;transition:transform var(--transition);box-sizing:border-box;max-width:100%;overflow:hidden; }
.tswatch span { font-size:11px;font-weight:700;letter-spacing:.04em;white-space:nowrap;overflow:hidden;text-overflow:ellipsis; }
.tswatch:hover { transform:scale(1.03); }
.tswatch.sky    { background:linear-gradient(135deg,#e8f4fd,#b8dcf8); }
.tswatch.sky span { color:#1a6fa8; }
.tswatch.amber.active  { background:linear-gradient(135deg,#fdf0c4,#f7e099); border:2px solid var(--honey); }
.tswatch.amber span { color:var(--honey-dark); }
.tswatch.blush  { background:linear-gradient(135deg,#fef0f0,#f8d7d7); }
.tswatch.blush span { color:#a85050; }
.tswatch.mono   { background:linear-gradient(135deg,#f8f8f8,#e0e0e0); }
.tswatch.mono span { color:#444; }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 100px 0; background: var(--black); color: var(--white); }
.how-it-works .section-label { color: var(--beige-500); }
.how-it-works .section-label::before { background: #333; }
.how-it-works .section-title { color: var(--white); }
.steps { display: flex; align-items: flex-start; gap: 0; margin-top: 60px; }
.step { flex: 1; padding: 0 32px; }
.step:first-child { padding-left: 0; }
.step:last-child  { padding-right: 0; }
.step-num { font-family:var(--font-head);font-size:11px;font-weight:800;letter-spacing:.15em;color:var(--honey);margin-bottom:20px; }
.step h3  { font-size:20px;color:var(--white);margin-bottom:12px; }
.step p   { font-size:15px;color:#7a6a4a;line-height:1.7; }
.step-divider { width:1px;min-height:140px;background:#2a2010;flex-shrink:0;margin-top:32px; }

/* ===== PRIVACY ===== */
.privacy-section { padding: 100px 0; background: var(--beige-200); }
.privacy-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.privacy-text .section-title { margin-bottom: 20px; }
.privacy-text p { font-size: 16px; line-height: 1.8; margin-bottom: 32px; }
.privacy-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.privacy-list li { font-size: 15px; font-weight: 500; color: var(--text-secondary); }
.privacy-visual { display: flex; justify-content: center; }
.lock-card { background: var(--black); color: var(--white); border-radius: var(--radius-lg); padding: 40px; text-align: center; width: 100%; max-width: 360px; }
.lock-icon { display: flex; justify-content: center; margin-bottom: 20px; }
.lock-card h4 { font-size: 18px; margin-bottom: 32px; color: var(--beige-200); line-height: 1.4; }
.lock-stats { display: flex; gap: 0; border-top: 1px solid #2a2010; padding-top: 28px; }
.lock-stat { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.lock-stat + .lock-stat { border-left: 1px solid #2a2010; }
.ls-num { font-family:var(--font-head);font-size:28px;font-weight:800;color:var(--honey); }
.lock-stat span:last-child { font-size:11px;color:var(--beige-500);font-weight:500; }

/* ===== DOWNLOAD ===== */
.download-section { padding: 100px 0; background: var(--white); overflow: hidden; }
.download-inner { background: var(--beige-100); border-radius: 40px; padding: 80px 60px; text-align: center; position: relative; overflow: hidden; border: 1px solid var(--beige-200); }
.download-blobs { position: absolute; top: -50%; left: -10%; width: 120%; height: 200%; pointer-events: none; }
.download-content { position: relative; z-index: 1; }
.download-title { font-size: clamp(36px,5vw,56px); line-height: 1.1; margin-bottom: 16px; }
.download-content p { font-size: 17px; color: var(--text-secondary); margin-bottom: 40px; }
.download-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.download-note { font-size: 12px; color: var(--text-muted); font-weight: 500; }

/* ===== FOOTER ===== */
.footer { background: var(--black); color: var(--white); padding: 64px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid #2a2010; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; text-decoration: none; }
.footer-logo-mark { width: 48px; height: 48px; border-radius: 13px; background: linear-gradient(135deg,#3a2800,#2a1e00); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.footer-logo-name { font-family:var(--font-head);font-weight:800;font-size:18px;color:var(--white); }
.footer-logo-by   { font-size:10px;color:#666; }
.footer-brand p { font-size: 14px; color: #666; line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h5 { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #555; margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: #888; text-decoration: none; transition: color var(--transition); }
.footer-col a:hover { color: var(--honey); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: #444; flex-wrap: wrap; gap: 8px; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 130px 32px 60px; min-height: unset; gap: 40px; text-align: center; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-sub { max-width: 580px; }
  .hero-cta { justify-content: center; }
  .hero-proof { justify-content: center; }
  .hero-blobs { right: -20%; opacity: .5; }
  .pillars-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .privacy-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .steps { flex-direction: column; gap: 0; }
  .step { padding: 32px 0; }
  .step:first-child { padding-top: 0; }
  .step-divider { width: 40px; height: 1px; min-height: unset; margin: 0; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feat-card { grid-column: span 1; }
  .feat-large { grid-column: span 2; flex-direction: column; }
  .feat-large .feat-visual { width: 100%; }
  .screen-row { gap: 48px; }
}

@media (max-width: 768px) {
  /* Hero */
  .hero { padding: 110px 24px 60px; gap: 32px; overflow: hidden; }
  .hero-blobs { display: none; }
  .hero-phones { height: 420px; margin: 0 auto; width: 100%; }
  .pf-front { width: 200px; height: 418px; }
  .pf-back  { display: none; }
  .pf-far   { display: none; }
  .hero-title { font-size: 44px; }
  .hero-sub { font-size: 16px; }
  .hero-cta { flex-direction: column; width: 100%; max-width: 320px; }
  .hero-cta .btn { text-align: center; justify-content: center; width: 100%; }

  /* Sections */
  .pillars-section, .screens-section, .features, .how-it-works,
  .privacy-section, .download-section { padding: 64px 0; }

  /* Screens */
  .screen-row { grid-template-columns: 1fr; gap: 32px; margin-bottom: 60px; padding-bottom: 60px; }
  .screen-row-flip .screen-row-phone { order: 1; }
  .screen-row-flip .screen-row-text  { order: 2; }
  .screen-row-text { max-width: 100%; }
  .screen-row-frame { width: 220px; height: 460px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr !important; gap: 16px !important; width: 100% !important; }
  .feat-card {
    grid-column: span 1 !important;
    padding: 24px 18px !important;
    border-radius: 24px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .feat-large { grid-column: span 1 !important; flex-direction: column !important; }
  .feat-large .feat-visual { width: 100% !important; height: auto !important; margin-bottom: 12px !important; }
  .carry-card { padding: 10px !important; gap: 8px !important; }
  .theme-swatches { gap: 8px !important; }
  .tswatch { height: 50px !important; padding: 6px 8px !important; }
  .tswatch span { font-size: 10px !important; }

  /* Footer */
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Download */
  .download-inner { padding: 48px 24px; border-radius: 28px; }
  .download-btns { flex-direction: column; align-items: center; }
  .download-btns .btn { width: 100%; max-width: 300px; justify-content: center; }

  /* Privacy */
  .privacy-inner { grid-template-columns: 1fr; gap: 40px; }
  .lock-card { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero { padding: 96px 20px 48px; }
  .hero-title { font-size: 36px; }
  .hero-phones { height: 360px; margin: 0 auto; width: 100%; }
  .pf-front { width: 170px; height: 356px; transform: rotate(-2deg); }
  .section-title { font-size: 30px !important; }
  .section-sub   { font-size: 15px; margin-bottom: 32px; }
  .screen-row-frame { width: 190px; height: 398px; border-radius: 36px; }
  .download-inner { padding: 40px 16px; border-radius: 20px; }
  .footer-links { grid-template-columns: 1fr; }
  .footer { padding: 48px 0 24px; }
  .lock-stats { flex-direction: column; gap: 20px; }
  .lock-stat + .lock-stat { border-left: none; border-top: 1px solid #2a2010; padding-top: 20px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar-card { padding: 28px 20px 32px; }
}

/* ===== LEGAL PAGES ===== */
.legal-page-wrapper {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.legal-card {
  background: var(--white);
  border: 1px solid var(--beige-300);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  max-width: 840px;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-break: break-word;
}

.legal-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--honey-dark);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all var(--transition);
  padding: 8px 16px;
  background: var(--honey-light);
  border-radius: var(--radius-pill);
}

.legal-back-btn:hover {
  transform: translateX(-3px);
  background: var(--beige-200);
  color: var(--black);
}

.legal-header {
  border-bottom: 1px solid var(--beige-200);
  padding-bottom: 24px;
  margin-bottom: 32px;
}

.legal-header h1 {
  font-size: clamp(26px, 4vw, 40px);
  color: var(--black);
  margin-bottom: 10px;
  font-family: var(--font-head);
  line-height: 1.25;
}

.legal-meta {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px 14px;
  flex-wrap: wrap;
}

.legal-badge {
  background: var(--beige-200);
  color: var(--text-secondary);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.legal-content h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  margin-top: 36px;
  margin-bottom: 16px;
  font-family: var(--font-head);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--beige-200);
}

.legal-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--honey-dark);
  margin-top: 22px;
  margin-bottom: 10px;
  font-family: var(--font-head);
}

.legal-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.legal-content p strong {
  color: var(--black);
  font-weight: 700;
}

.legal-topic-item {
  margin-bottom: 16px;
  padding: 14px 18px;
  background: var(--beige-100);
  border-left: 3px solid var(--honey);
  border-radius: 0 10px 10px 0;
}

.legal-topic-item p {
  margin-bottom: 0;
}

.legal-callout {
  background: var(--honey-light);
  border-left: 4px solid var(--honey-dark);
  padding: 18px 20px;
  border-radius: 12px;
  margin: 24px 0;
}

.legal-callout p {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--black);
  line-height: 1.6;
}

.legal-contact-box {
  background: #fffefb;
  border: 1px solid var(--beige-300);
  border-radius: 20px;
  padding: 24px;
  margin-top: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
}

.legal-contact-box h4 {
  margin-top: 0;
  margin-bottom: 18px;
  color: var(--honey-dark);
  font-size: 18px;
  border-bottom: 1px solid var(--beige-200);
  padding-bottom: 8px;
}

.legal-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.legal-contact-item {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  word-break: break-word;
  overflow-wrap: break-word;
}

.legal-contact-item a {
  word-break: break-all;
  overflow-wrap: anywhere;
}

.legal-contact-item strong {
  display: block;
  color: var(--black);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .legal-page-wrapper {
    padding-top: 90px;
    padding-bottom: 48px;
  }
  .legal-card {
    padding: 24px 16px;
    border-radius: 20px;
  }
  .legal-header {
    padding-bottom: 16px;
    margin-bottom: 24px;
  }
  .legal-header h1 {
    font-size: 24px;
  }
  .legal-meta {
    gap: 8px;
    font-size: 12px;
  }
  .legal-content h3 {
    font-size: 18px;
    margin-top: 28px;
    margin-bottom: 12px;
  }
  .legal-content p {
    font-size: 14px;
    line-height: 1.7;
  }
  .legal-topic-item {
    padding: 12px 14px;
    margin-bottom: 12px;
  }
  .legal-contact-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .legal-contact-box {
    padding: 18px 14px;
    border-radius: 16px;
  }
}



