/* =============================================
   POTATO APPS — style.css
   Edit colors in :root to rebrand quickly
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ── DARK MODE (default) ── */
:root {
  --bg:        #070707;
  --bg2:       #0b0b0d;
  --bg3:       #111114;
  --border:    rgba(214,166,74,0.18);
  --text:      #f4f1e8;
  --muted:     #9b9488;
  --accent:    #d6a64a;
  --accent2:   #f4d98b;
  --accent-glow: rgba(214,166,74,0.18);
  --green:     #d6a64a;
  --card-bg:   rgba(23,21,26,0.78);
  --button-start: #c8892b;
  --button-end: #f2c766;
  --gold-shadow: rgba(214,166,74,0.32);
  --radius:    16px;
  --radius-sm: 10px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --shadow:    0 20px 50px rgba(0,0,0,0.38);
}

/* ── LIGHT MODE ── */
body.light {
  --bg:        #f8f2e4;
  --bg2:       #efe4d0;
  --bg3:       #fff8e9;
  --border:    rgba(117,76,20,0.18);
  --text:      #21190f;
  --muted:     #756b5f;
  --accent:    #a96f22;
  --accent2:   #7a4b12;
  --accent-glow: rgba(200,137,43,0.18);
  --green:     #a96f22;
  --card-bg:   rgba(255,248,233,0.78);
  --button-start: #9f641d;
  --button-end: #d6a64a;
  --gold-shadow: rgba(169,111,34,0.24);
  --shadow:    0 20px 50px rgba(76,45,14,0.12);
}

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

html { scroll-behavior: auto; }
html.lenis,
html.lenis body {
  height: auto;
}
html.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
html.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
html.lenis.lenis-stopped {
  overflow: clip;
}

body {
  background: var(--bg);
  background-image:
    radial-gradient(circle at 78% -10%, rgba(214,166,74,0.13), transparent 34%),
    radial-gradient(circle at 6% 18%, rgba(244,217,139,0.055), transparent 28%);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  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.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  transform: translateZ(0);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 600; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--transition), backdrop-filter var(--transition), padding var(--transition);
}
nav.scrolled {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
body:not(.light) nav.scrolled { background: rgba(7,7,7,0.9); }
body.light nav.scrolled       { background: rgba(248,242,228,0.9); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.02em;
}
.nav-logo-icon {
  width: 30px; height: 30px;
  background: linear-gradient(145deg, rgba(244,217,139,0.24), rgba(200,137,43,0.12));
  border: 1px solid rgba(244,217,139,0.26);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(214,166,74,0.2);
}
.brand-icon-img,
.app-icon-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.krate-icon-img {
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color var(--transition);
  font-weight: 500;
}
.nav-links a:hover { color: var(--text); }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-mobile.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.nav-mobile a {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--text); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--button-start), var(--button-end));
  color: #17100a;
  box-shadow: 0 0 0 rgba(214,166,74,0);
  border-color: rgba(244,217,139,0.35);
}
.btn-primary:hover { box-shadow: 0 10px 32px var(--gold-shadow); }

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border-color: var(--border);
}
.btn-ghost:hover { color: var(--text); border-color: rgba(244,217,139,0.3); background: rgba(214,166,74,0.08); }

/* ── CARDS ── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: inset 0 1px 0 rgba(244,217,139,0.045);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background 0.4s ease;
  will-change: transform;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(244,217,139,0.34);
  box-shadow: 0 20px 50px rgba(0,0,0,0.34), 0 0 28px rgba(214,166,74,0.08);
}

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-accent { background: var(--accent-glow); color: var(--accent2); border: 1px solid rgba(244,217,139,0.28); }
.badge-green  { background: rgba(214,166,74,0.12); color: var(--green); border: 1px solid rgba(214,166,74,0.24); }
.badge-muted  { background: rgba(244,217,139,0.06); color: var(--muted); border: 1px solid var(--border); }

/* ── SECTION LABEL ── */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 16px;
}

/* ── DIVIDER ── */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 80px 0;
}

/* ── GLOW BLOB ── */
.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* ── HERO ── */
.hero {
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: rgba(214,166,74,0.14);
  top: -100px; right: -100px;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: rgba(244,217,139,0.07);
  bottom: 0; left: -150px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero-label { margin-bottom: 24px; }
.hero h1 { margin-bottom: 24px; }
.hero h1 span { color: var(--accent2); }
.hero-para {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* floating orbs in hero */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
  z-index: 0;
}
.hero-orb-1 {
  width: 12px; height: 12px;
  background: var(--accent);
  opacity: 0.6;
  top: 30%; right: 20%;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 6px; height: 6px;
  background: var(--accent2);
  opacity: 0.5;
  top: 60%; right: 35%;
  animation-delay: 2s;
}
.hero-orb-3 {
  width: 8px; height: 8px;
  background: var(--accent2);
  opacity: 0.4;
  top: 40%; right: 55%;
  animation-delay: 4s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%  { transform: translateY(-18px) rotate(5deg); }
  66%  { transform: translateY(10px) rotate(-5deg); }
}

/* ── STATS STRIP ── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 64px;
  position: relative;
  z-index: 1;
}
.stat-item {
  background: var(--bg2);
  padding: 28px 24px;
  text-align: center;
  transition: background var(--transition);
}
.stat-item:hover { background: var(--bg3); }
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  display: block;
}
.stat-label { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }

/* ── FEATURED APP ── */
.featured { padding: 80px 0; }
.featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.featured-app-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-mockup {
  width: 220px; height: 380px;
  background:
    radial-gradient(ellipse at 50% 8%, rgba(244,217,139,0.16), transparent 58%),
    linear-gradient(180deg, rgba(30,27,29,0.97) 0%, rgba(20,18,20,0.98) 52%, rgba(15,14,16,0.98) 100%);
  border-radius: 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: inset 0 1px 0 rgba(244,217,139,0.12), 0 42px 90px rgba(0,0,0,0.54), 0 0 42px rgba(214,166,74,0.12);
  position: relative;
  overflow: hidden;
  animation: mockup-float 6s ease-in-out infinite;
}
@keyframes mockup-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.app-mockup::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(244,217,139,0.12) 0%, rgba(244,217,139,0.045) 42%, transparent 74%),
    radial-gradient(circle at 50% 72%, rgba(214,166,74,0.07), transparent 44%);
  pointer-events: none;
}
.app-mockup-icon {
  width: 94px; height: 94px;
  background: transparent;
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(214,166,74,0.26);
}
.app-mockup-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}
.app-mockup-sub {
  font-size: 0.75rem;
  color: var(--muted);
  position: relative;
  z-index: 1;
}
.mockup-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(244,217,139,0.16);
  animation: ring-pulse 4s ease-in-out infinite;
}
.mockup-ring-1 { width: 280px; height: 280px; animation-delay: 0s; }
.mockup-ring-2 { width: 340px; height: 340px; animation-delay: 1s; }
.mockup-ring-3 { width: 400px; height: 400px; animation-delay: 2s; }
@keyframes ring-pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(1.02); }
}

.featured-text .section-label { margin-bottom: 12px; }
.featured-text h2 { margin-bottom: 16px; }
.featured-text p { color: var(--muted); margin-bottom: 32px; font-weight: 300; }
.privacy-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.privacy-pill {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(214,166,74,0.1);
  color: var(--green);
  border: 1px solid rgba(214,166,74,0.2);
}
.featured-btns { display: flex; gap: 12px; flex-wrap: wrap; }

body.light .featured .app-mockup {
  background:
    radial-gradient(ellipse at 50% 10%, rgba(244,217,139,0.34), transparent 58%),
    linear-gradient(180deg, rgba(255,252,242,0.97) 0%, rgba(247,237,214,0.96) 54%, rgba(235,219,190,0.95) 100%);
  border-color: rgba(169,111,34,0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.76), 0 34px 72px rgba(117,76,20,0.16), 0 0 42px rgba(214,166,74,0.16);
}

body.light .featured .app-mockup::before {
  background:
    linear-gradient(145deg, rgba(214,166,74,0.18) 0%, rgba(255,255,255,0.16) 48%, transparent 78%),
    radial-gradient(circle at 50% 72%, rgba(214,166,74,0.1), transparent 44%);
}

body.light .featured .app-mockup-icon {
  box-shadow: 0 14px 30px rgba(117,76,20,0.2), 0 0 0 1px rgba(255,255,255,0.72);
}

body.light .featured .app-mockup-name {
  color: #21190f;
  text-shadow: 0 1px 0 rgba(255,255,255,0.58);
}

body.light .featured .app-mockup-sub {
  color: #7a6250;
}

body.light .featured .mockup-ring {
  border-color: rgba(169,111,34,0.18);
}

.featured + .featured .app-mockup {
  background:
    radial-gradient(ellipse at 50% 18%, rgba(244,217,139,0.18), transparent 56%),
    radial-gradient(circle at 50% 78%, rgba(214,166,74,0.08), transparent 42%),
    linear-gradient(180deg, rgba(31,28,30,0.97) 0%, rgba(21,19,21,0.98) 52%, rgba(16,15,17,0.98) 100%);
}

body.light .featured + .featured .app-mockup {
  background:
    radial-gradient(ellipse at 50% 16%, rgba(244,217,139,0.38), transparent 58%),
    radial-gradient(circle at 50% 78%, rgba(214,166,74,0.13), transparent 42%),
    linear-gradient(180deg, rgba(255,252,242,0.98) 0%, rgba(248,238,216,0.96) 54%, rgba(234,217,188,0.95) 100%);
}

/* ── WHY CARDS ── */
.why { padding: 80px 0; }
.why-header { text-align: center; margin-bottom: 56px; }
.why-header p { color: var(--muted); margin-top: 12px; font-weight: 300; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card { position: relative; overflow: hidden; }
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, var(--accent-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.why-card:hover::before { opacity: 1; }
.why-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(244,217,139,0.11);
  line-height: 1;
  margin-bottom: 16px;
}
.why-card h3 { margin-bottom: 10px; }
.why-card p { color: var(--muted); font-size: 0.9rem; font-weight: 300; line-height: 1.6; }

/* ── FUTURE APPS ── */
.future { padding: 80px 0; }
.future-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.future-card-main {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.future-card-main h3 { font-size: 1.5rem; margin-bottom: 8px; }
.future-card-main p { color: var(--muted); font-weight: 300; max-width: 500px; }

.future-small-card {
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.future-icon {
  width: 42px; height: 42px;
  background: var(--bg3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
  color: var(--accent2);
}
.line-icon {
  width: 22px;
  height: 22px;
  color: var(--accent2);
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.future-small-card h3 { font-size: 0.95rem; margin-bottom: 6px; }
.future-small-card p { color: var(--muted); font-size: 0.85rem; font-weight: 300; }

/* ── PRIVACY BAND ── */
.privacy-band {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.privacy-band-inner {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.privacy-band-inner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(214,166,74,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.privacy-band-text h2 { margin-bottom: 12px; }
.privacy-band-text p { color: var(--muted); max-width: 480px; font-weight: 300; }
.privacy-band-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a { font-size: 0.85rem; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 0.82rem; color: var(--muted); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-blob {
  width: 400px; height: 400px;
  background: rgba(214,166,74,0.12);
  top: -80px; right: 0;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: var(--muted); max-width: 560px; font-weight: 300; font-size: 1.05rem; }

/* ── APPS PAGE ── */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  padding: 60px 0 100px;
}
.app-card { display: flex; flex-direction: column; gap: 20px; }
.app-card-header { display: flex; align-items: center; gap: 16px; }
.app-icon-box {
  width: 56px; height: 56px;
  background: linear-gradient(145deg, rgba(244,217,139,0.2), rgba(200,137,43,0.1));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid rgba(244,217,139,0.24);
  box-shadow: 0 6px 18px rgba(214,166,74,0.2);
}
.app-icon-box-empty {
  width: 56px; height: 56px;
  background: var(--bg3);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
  color: var(--accent2);
}
.luna-hero .ss-hero-blob {
  background: rgba(186,150,255,0.14);
}
.krate-hero .ss-hero-blob {
  background: rgba(214,118,39,0.14);
}
.app-card-info { flex: 1; }
.app-card-info h3 { font-size: 1.05rem; margin-bottom: 4px; }
.app-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.app-tag {
  padding: 3px 7px;
  background: rgba(244,217,139,0.055);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.72rem;
  color: var(--muted);
}
.app-card-desc { color: var(--muted); font-size: 0.9rem; font-weight: 300; line-height: 1.6; }
.app-card-btns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; }

/* ── STATUS SAVER PAGE ── */
.ss-hero { padding: 150px 0 80px; position: relative; overflow: hidden; }
.ss-hero-blob {
  width: 500px; height: 500px;
  background: rgba(214,166,74,0.12);
  top: -100px; right: -100px;
}
.ss-hero-content { position: relative; z-index: 1; }
.ss-hero h1 { margin-bottom: 20px; }
.ss-hero p { color: var(--muted); max-width: 560px; font-weight: 300; font-size: 1.05rem; margin-bottom: 32px; }
.ss-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.features-section { padding: 80px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), background var(--transition);
}
.feature-item:hover { border-color: rgba(244,217,139,0.28); background: rgba(214,166,74,0.06); }
.feature-check {
  width: 22px; height: 22px;
  background: rgba(214,166,74,0.12);
  border: 1px solid rgba(244,217,139,0.28);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-item p { font-size: 0.9rem; color: var(--muted); font-weight: 300; }

.cards-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 80px 0;
}
.cards-trio .card h3 { margin-bottom: 10px; }
.cards-trio .card p { color: var(--muted); font-size: 0.9rem; font-weight: 300; }
.card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(214,166,74,0.08);
  color: var(--accent2);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── PRIVACY PAGE ── */
.privacy-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 0 100px;
}
.privacy-date { font-size: 0.85rem; color: var(--muted); margin-bottom: 48px; }
.privacy-section { margin-bottom: 48px; }
.privacy-section h2 { font-size: 1.3rem; margin-bottom: 16px; color: var(--text); }
.privacy-section p, .privacy-section li {
  color: var(--muted);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.8;
}
.privacy-section ul { padding-left: 20px; margin-top: 8px; }
.privacy-section li { margin-bottom: 6px; }
.privacy-email-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--accent2);
  margin-top: 12px;
}

/* ── SUPPORT PAGE ── */
.privacy-link-card {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(214,166,74,0.08);
  color: var(--accent2);
  font-size: 0.92rem;
  font-weight: 600;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.privacy-link-card:hover {
  border-color: rgba(244,217,139,0.32);
  background: rgba(214,166,74,0.12);
  transform: translateY(-1px);
}

.support-content { padding: 60px 0 100px; }
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.support-left h2 { margin-bottom: 16px; }
.support-left p { color: var(--muted); font-weight: 300; margin-bottom: 24px; }
.support-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--button-start), var(--button-end));
  color: #17100a;
  border-radius: 50px;
  font-weight: 500;
  transition: transform var(--transition), box-shadow var(--transition);
}
.support-email-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-shadow);
}
.support-tips { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; }
.support-tip {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.tip-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--accent2);
  flex-shrink: 0;
  min-width: 28px;
}
.support-tip h4 { font-size: 0.95rem; margin-bottom: 4px; }
.support-tip p { color: var(--muted); font-size: 0.85rem; font-weight: 300; }

.support-donation-card,
.kofi-card {
  margin-top: 48px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(214,166,74,0.1), rgba(17,17,20,0.84));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: inset 0 1px 0 rgba(244,217,139,0.06);
}
.support-donation-card h2,
.kofi-card h2 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.support-donation-card p,
.kofi-card p {
  color: var(--muted);
  font-weight: 300;
  max-width: 640px;
}
.support-donation-card .btn,
.kofi-card .btn {
  flex-shrink: 0;
}

.kofi-card {
  margin: 0 0 96px;
}

/* contact form visual */
.contact-form-visual {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-form-visual h3 { margin-bottom: 24px; font-size: 1rem; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 0.8rem; color: var(--muted); margin-bottom: 6px; font-weight: 500; }
.form-field-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-field-input:focus { border-color: rgba(214,166,74,0.45); }
textarea.form-field-input { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, var(--button-start), var(--button-end));
  color: #17100a;
  border: none;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 8px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-shadow);
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }
.reveal-delay-5 { transition-delay: 0.60s; }

/* ── THEME TRANSITION ── */
body {
  transition: background 0.4s ease, color 0.4s ease;
}

/* ── THEME TOGGLE BUTTON ── */
.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card-bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background var(--transition), border-color var(--transition), transform 0.3s;
  flex-shrink: 0;
}
.theme-toggle:hover {
  border-color: rgba(244,217,139,0.35);
  transform: rotate(15deg) scale(1.1);
}
.theme-toggle .line-icon {
  width: 18px;
  height: 18px;
}
.btn .line-icon,
.support-email-btn .line-icon {
  color: currentColor;
}


.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,166,74,0.07) 0%, transparent 70%);
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  z-index: 9999;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .featured-inner { grid-template-columns: 1fr; }
  .featured-app-visual { order: -1; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .cards-trio { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .support-donation-card,
  .kofi-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .future-inner { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }
  .hero { padding: 130px 0 80px; }
  .why-grid { grid-template-columns: 1fr; }
  .privacy-band-inner { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .app-mockup { width: 180px; height: 300px; }
  .mockup-ring-1 { display: none; }
  .mockup-ring-2 { display: none; }
  .mockup-ring-3 { display: none; }
}
