/* ============================================================
   BUILD & FIX — Landing
   Dark premium · Apple-grade restraint · trilingual
   ============================================================ */

:root{
  --bg-main:       #0E0E10;
  --bg-deep:       #0A0A0C;
  --bg-card:       #1C1C1E;
  --bg-card-2:     #161618;
  --orange:        #FF5A1F;
  --orange-light:  #FF7A47;
  --teal:          #00D1B2;
  --teal-deep:     #0FB89E;
  --gold:          #FFD700;
  --purple-start:  #8B5CF6;
  --purple-end:    #D946EF;
  --text-main:     #FFFFFF;
  --text-muted:    rgba(255,255,255,0.62);
  --text-faint:    rgba(255,255,255,0.36);
  --border:        rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);

  --ease: cubic-bezier(.22,.61,.36,1);
  --radius-card: 22px;
  --radius-lg: 28px;

  --container: 1180px;
}

*,*::before,*::after{ box-sizing: border-box; }
html,body{ margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  background: var(--bg-main);
  color: var(--text-main);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  letter-spacing: -0.01em;
}
img{ display:block; max-width:100%; }
a{ color: inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; border:0; background:transparent; color:inherit; }
ul,ol{ margin:0; padding:0; list-style:none; }

.container{ max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ─────────────  Type scale  ───────────── */
h1,h2,h3{
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
}
h1{ font-size: clamp(40px, 6vw, 76px); }
h2{ font-size: clamp(32px, 4.4vw, 54px); }
h3{ font-size: 19px; letter-spacing: -0.02em; line-height: 1.25; }

p{ margin: 0; }

.eyebrow{
  display:inline-block;
  font-family:'Inter', sans-serif;
  font-weight:600;
  font-size:11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
}

/* ─────────────  Reveal animation  ───────────── */
.reveal{
  opacity:0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease) var(--reveal-delay, 0s), transform .9s var(--ease) var(--reveal-delay, 0s);
  will-change: transform, opacity;
}
.reveal.in{
  opacity:1;
  transform: none;
}
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
}

/* ─────────────  Header  ───────────── */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index: 60;
  padding: 14px 0;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled{
  background: rgba(14,14,16,0.7);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--border);
}
.header-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display:flex;
  align-items:center;
  gap: 24px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-family:'Sora', sans-serif; font-weight:800;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.brand-name .amp{ color: var(--orange); margin: 0 2px; font-weight: 700; }
.brand-logo{
  width: 32px; height:32px;
  border-radius: 9px;
  overflow:hidden;
  flex-shrink:0;
  box-shadow: 0 4px 16px rgba(255,90,31,0.25), 0 0 0 1px var(--border-strong) inset;
}
.brand-logo.small{ width:24px; height:24px; border-radius:7px; }
.brand-logo img{ width:100%; height:100%; object-fit: cover; }

.header-nav{
  margin-left: 28px;
  display:flex; gap: 28px;
  font-size: 14px;
  color: var(--text-muted);
}
.header-nav a{ transition: color .2s ease; white-space: nowrap; }
.header-nav a:hover{ color: var(--text-main); }

.lang-switch{
  margin-left:auto;
  display:flex;
  padding: 4px;
  background: rgba(28,28,30,0.85);
  border: 1px solid var(--border);
  border-radius: 999px;
  gap: 2px;
}
.lang-switch button{
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  border-radius: 999px;
  transition: color .2s, background .2s;
}
.lang-switch button.active{
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255,90,31,0.35);
}
.lang-switch button:not(.active):hover{ color: var(--text-main); }

@media (max-width: 1040px){
  .header-nav{ gap: 20px; font-size: 13px; }
}
@media (max-width: 960px){
  .header-nav{ display:none; }
}

/* ─────────────  Buttons  ───────────── */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .2s var(--ease);
  white-space: nowrap;
}
.btn svg{ flex-shrink:0; }
.btn-orange{
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff;
  box-shadow: 0 8px 28px rgba(255,90,31,0.35), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-orange:hover{ transform: translateY(-2px); box-shadow: 0 14px 36px rgba(255,90,31,0.45), inset 0 1px 0 rgba(255,255,255,0.18); }
.btn-teal{
  background: var(--teal);
  color: #061513;
  box-shadow: 0 8px 28px rgba(0,209,178,0.30), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-teal:hover{ transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,209,178,0.42), inset 0 1px 0 rgba(255,255,255,0.18); }
.btn-light{
  background: #fff;
  color: #0c0c0e;
  box-shadow: 0 12px 40px rgba(255,255,255,0.18);
}
.btn-light:hover{ transform: translateY(-2px); box-shadow: 0 18px 50px rgba(255,255,255,0.28); }
.btn-lg{
  padding: 18px 32px;
  font-size: 16px;
  border-radius: 16px;
}

/* ─────────────  HERO  ───────────── */
.hero{
  position: relative;
  padding: 180px 24px 80px;
  text-align: center;
  overflow: hidden;
}
.orb{
  position:absolute;
  width: 620px; height: 620px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
  z-index: 0;
}
.orb-orange{
  background: var(--orange);
  top: -80px; left: -180px;
}
.orb-teal{
  background: var(--teal);
  top: 40px; right: -200px;
  animation-delay: -3s;
}
@keyframes orbFloat{
  0%,100%{ transform: translate(0,0) scale(1); opacity:.40; }
  50%   { transform: translate(20px, -30px) scale(1.07); opacity:.50; }
}

.hero-inner{
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.hero-inner .eyebrow{ margin-bottom: 28px; }
.hero-title{
  margin-bottom: 22px;
  font-weight: 800;
}
.hero-gradient{
  background: linear-gradient(110deg, var(--orange) 0%, #FFB070 40%, #6FE5D2 70%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub{
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-muted);
}
.cta-row{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.trust{
  color: var(--text-faint);
  font-size: 13px;
  letter-spacing: 0.02em;
}

/* Phone mockup */
.hero-phone{
  position: relative;
  z-index: 2;
  margin: 80px auto 0;
  max-width: 720px;
  display:flex;
  justify-content: center;
  perspective: 1400px;
}
.phone{
  position: relative;
  width: 290px;
  aspect-ratio: 9/19;
  background: linear-gradient(180deg, #1f1f22, #0e0e11);
  border-radius: 44px;
  padding: 9px;
  box-shadow:
    0 60px 120px -30px rgba(255,90,31,0.30),
    0 40px 90px -20px rgba(0,209,178,0.25),
    0 0 0 1.5px rgba(255,255,255,0.10),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  transform: rotateY(-6deg) rotateX(2deg) translateZ(0);
  transition: transform 1.2s var(--ease);
}
.phone-back{
  position: absolute;
  left: 50%;
  transform: translate(-66%, 18px) rotateY(14deg) rotateX(2deg) scale(0.94);
  filter: brightness(0.85) saturate(0.9);
  z-index: -1;
  opacity: 0.92;
}
.phone-notch{
  position:absolute;
  top: 14px; left:50%;
  transform: translateX(-50%);
  width: 92px; height: 22px;
  background:#000;
  border-radius: 999px;
  z-index: 5;
}
.phone-screen{
  position: relative;
  width:100%; height:100%;
  background: var(--bg-main);
  border-radius: 36px;
  overflow: hidden;
  display:flex;
  flex-direction: column;
}
.ps-header{
  display:flex; justify-content:space-between; align-items:center;
  padding: 14px 22px 6px;
  font-size: 12px; font-weight:600;
}
.ps-time{ font-variant-numeric: tabular-nums; }
.ps-icons{ display:flex; gap:6px; align-items:center; }
.ps-appbar{
  background: #1A1410;
  margin: 8px 12px 0;
  border-radius: 14px;
  padding: 10px 14px;
  display:flex; align-items:center; justify-content:space-between;
  border: 1px solid rgba(255,90,31,0.18);
}
.ps-appbar.fix{
  background: #0F1714;
  border-color: rgba(0,209,178,0.20);
}
.ps-brand{ font-family:'Sora'; font-weight:800; font-size: 13px; color: var(--orange); letter-spacing: -0.01em; }
.ps-appbar.fix .ps-brand{ color: var(--teal); }
.ps-brand span{ opacity: 0.7; margin: 0 1px; }
.ps-mode{
  font-size: 9px; font-weight:800; letter-spacing: 0.14em;
  padding: 4px 8px; border-radius: 6px;
  background: rgba(255,90,31,0.18);
  color: var(--orange);
}
.ps-mode.teal{ background: rgba(0,209,178,0.18); color: var(--teal); }
.ps-photo{
  margin: 10px 12px;
  background: #2A2018;
  border-radius: 14px;
  flex: 1.2;
  min-height: 110px;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
}
.ps-photo.fix{
  background: #14201C;
  color: var(--teal);
  flex: 1;
}
.ps-photo-shimmer{
  position:absolute; inset:0;
  background: radial-gradient(ellipse at 30% 30%, rgba(255,90,31,0.20), transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(255,90,31,0.10), transparent 60%);
  pointer-events:none;
}
.ps-cam{ color: rgba(255,255,255,0.45); z-index:1; }
.ps-photo-label{
  font-size: 10px; font-weight: 500;
  color: rgba(255,255,255,0.55);
  z-index:1;
}
.ps-card{
  margin: 0 12px 8px;
  background: var(--bg-card);
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid var(--border);
}
.ps-card-head{
  display:flex; justify-content: space-between; align-items:center;
  margin-bottom: 10px;
}
.ps-card-title{ font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: 0.06em; text-transform: uppercase; }
.ps-card-pill{
  font-size: 9px; font-weight:600;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
}
.ps-line{
  height: 6px; border-radius: 4px;
  background: rgba(255,255,255,0.10);
  margin-bottom: 6px;
}
.ps-line.w-full{ width:100%; }
.ps-line.w-80{ width: 80%; }
.ps-line.w-60{ width: 60%; }
.ps-budget{
  margin: 0 12px 12px;
  display:flex; align-items:center; gap: 12px;
  padding: 10px 14px;
  background: linear-gradient(120deg, rgba(0,209,178,0.10), rgba(0,209,178,0.04));
  border: 1px solid rgba(0,209,178,0.20);
  border-radius: 14px;
}
.ps-budget-label{ font-size: 9px; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: uppercase; }
.ps-budget-amount{ font-family:'Sora'; font-weight: 800; font-size: 17px; color: var(--teal); }
.ps-budget-bar{
  flex: 1; height: 6px; border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow:hidden;
}
.ps-budget-fill{
  width: 62%; height:100%;
  background: linear-gradient(90deg, var(--teal), #6FE5D2);
}
.ps-tabbar{
  margin-top:auto;
  display:flex;
  justify-content: space-around;
  padding: 10px 24px 14px;
  border-top: 1px solid var(--border);
}
.ps-tabbar span{
  width: 26px; height: 26px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
}
.ps-tabbar span.active{ background: var(--orange); box-shadow: 0 4px 12px rgba(255,90,31,0.4); }

/* FIX phone */
.ps-steps{
  margin: 8px 14px;
  display:flex; flex-direction:column; gap: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.85);
}
.ps-steps li{
  display:flex; align-items:center; gap: 10px;
  padding: 10px 12px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.check{
  width: 16px; height: 16px;
  border-radius: 5px;
  border: 1.5px solid rgba(255,255,255,0.25);
  flex-shrink:0;
  position: relative;
}
.check.on{
  background: var(--teal);
  border-color: var(--teal);
}
.check.on::after{
  content:"";
  position:absolute;
  left: 4px; top: 1px;
  width: 4px; height: 8px;
  border-right: 2px solid #061513;
  border-bottom: 2px solid #061513;
  transform: rotate(45deg);
}
.ps-done{
  margin: auto 14px 14px;
  text-align:center;
  padding: 10px;
  background: rgba(0,209,178,0.15);
  border: 1px solid rgba(0,209,178,0.30);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.04em;
}

@media (max-width: 720px){
  .phone-back{ display:none; }
  .phone{ transform: none; width: 260px; }
  .hero{ padding-top: 130px; }
  .hero-sub{ font-size: 17px; }
  .hero-phone{ margin-top: 64px; }
}

/* ─────────────  Section heads  ───────────── */
section{ padding: 120px 0; position: relative; }
.section-head{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.section-head .eyebrow{ margin-bottom: 18px; }
.section-head h2{ margin: 0 auto; }
.section-sub{
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 17px;
}

/* ─────────────  Dual mode  ───────────── */
.dual-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.mode-card{
  position: relative;
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid;
  overflow: hidden;
  isolation: isolate;
}
.mode-build{
  background: linear-gradient(160deg, #1A1410 0%, #14100D 100%);
  border-color: rgba(255,90,31,0.35);
}
.mode-build::after{
  content:""; position:absolute; inset:0;
  background: radial-gradient(ellipse at top right, rgba(255,90,31,0.18), transparent 60%);
  z-index: -1;
}
.mode-fix{
  background: linear-gradient(160deg, #0F1714 0%, #0C1310 100%);
  border-color: rgba(0,209,178,0.32);
}
.mode-fix::after{
  content:""; position:absolute; inset:0;
  background: radial-gradient(ellipse at top right, rgba(0,209,178,0.16), transparent 60%);
  z-index: -1;
}
.mode-head{ display:flex; align-items:center; justify-content: space-between; margin-bottom: 28px; }
.mode-badge{
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.18em;
  padding: 6px 12px;
  border-radius: 999px;
}
.mode-badge.build{ background: rgba(255,90,31,0.18); color: var(--orange); border: 1px solid rgba(255,90,31,0.35); }
.mode-badge.fix{ background: rgba(0,209,178,0.16); color: var(--teal); border: 1px solid rgba(0,209,178,0.32); }
.mode-icon{
  width: 56px; height: 56px;
  border-radius: 16px;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(140deg, var(--orange), var(--orange-light));
  color: #fff;
  box-shadow: 0 12px 32px rgba(255,90,31,0.30);
}
.mode-icon.teal{
  background: linear-gradient(140deg, var(--teal), #6FE5D2);
  color: #061513;
  box-shadow: 0 12px 32px rgba(0,209,178,0.30);
}
.mode-card h3{ font-size: 28px; margin-bottom: 14px; }
.mode-card > p{ color: var(--text-muted); font-size: 16px; line-height: 1.6; margin-bottom: 26px; }
.mode-points{ display:flex; flex-direction:column; gap: 12px; }
.mode-points li{ display:flex; align-items:center; gap: 12px; font-size: 14.5px; color: rgba(255,255,255,0.85); }
.dot{
  width: 8px; height: 8px; border-radius: 50%;
  flex-shrink:0;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.04);
}
.dot.build{ background: var(--orange); }
.dot.fix{ background: var(--teal); }

@media (max-width: 820px){
  .dual-grid{ grid-template-columns: 1fr; }
  .mode-card{ padding: 28px; }
}

/* ─────────────  How it works  ───────────── */
.how{ background: var(--bg-deep); }
.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
}
.steps::before{
  content:"";
  position: absolute;
  top: 64px; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,90,31,0.4) 20%, rgba(0,209,178,0.4) 80%, transparent);
  z-index: 0;
}
.step{
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  position: relative;
  z-index: 1;
  transition: transform .4s var(--ease), border-color .3s ease;
}
.step:hover{ transform: translateY(-4px); border-color: var(--border-strong); }
.step-num{
  font-family:'Sora';
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(120deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}
.step-icon{
  position: absolute;
  top: 32px; right: 32px;
  width: 38px; height: 38px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display:flex; align-items:center; justify-content:center;
}
.step h3{ margin-bottom: 8px; }
.step p{ color: var(--text-muted); font-size: 15px; }

@media (max-width: 820px){
  .steps{ grid-template-columns: 1fr; }
  .steps::before{ display:none; }
}

/* ─────────────  Features  ───────────── */
.feat-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feat{
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  transition: transform .4s var(--ease), border-color .3s ease, background .3s ease;
}
.feat:hover{ transform: translateY(-4px); border-color: var(--border-strong); background: var(--bg-card-2); }
.feat-ico{
  width: 44px; height: 44px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 22px;
}
.feat-ico.orange{
  background: rgba(255,90,31,0.14);
  color: var(--orange);
  border: 1px solid rgba(255,90,31,0.25);
}
.feat-ico.teal{
  background: rgba(0,209,178,0.12);
  color: var(--teal);
  border: 1px solid rgba(0,209,178,0.25);
}
.feat h3{ margin-bottom: 8px; }
.feat p{ color: var(--text-muted); font-size: 15px; }

@media (max-width: 980px){ .feat-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .feat-grid{ grid-template-columns: 1fr; } }

/* ─────────────  Pricing  ───────────── */
.pricing{ background: var(--bg-deep); }
.price-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.plan{
  position: relative;
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  display:flex; flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform .4s var(--ease);
}
.plan:hover{ transform: translateY(-4px); }
.plan-head h3{
  font-family:'Sora';
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.plan-tag{ font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.plan-price{
  display:flex; align-items: baseline; gap: 6px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.plan-price .amt{
  font-family: 'Sora';
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.plan-price .per{ color: var(--text-muted); font-size: 14px; }
.plan-list{
  flex: 1;
  display:flex; flex-direction: column; gap: 12px;
  margin-bottom: 28px;
}
.plan-list li{
  display:flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.88);
  line-height: 1.4;
}
.ck{
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--teal);
  color: #061513;
  flex-shrink:0;
  position: relative;
  margin-top: 1px;
}
.ck::after{
  content:"";
  position:absolute;
  left: 5px; top: 2px;
  width: 4px; height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}
.ck.gold{ background: var(--gold); color: #2a1d00; }
.ck.white{ background: #fff; color: #2a1a3d; }
.plan-cta{
  padding: 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: transform .25s var(--ease), filter .2s;
}
.plan-cta.disabled{
  background: rgba(255,255,255,0.06);
  color: var(--text-faint);
  cursor: not-allowed;
}
.plan-cta.gold{
  background: var(--gold);
  color: #1a1100;
  box-shadow: 0 8px 24px rgba(255,215,0,0.30);
}
.plan-cta.gold:hover{ transform: translateY(-2px); }
.plan-cta.light{
  background: #fff;
  color: #1a1a1a;
}
.plan-cta.light:hover{ transform: translateY(-2px); }

/* CREATOR card */
.plan-creator{
  background: linear-gradient(155deg, #FF5A1F 0%, #FF7A47 100%);
  border: 1.5px solid rgba(255,215,0,0.7);
  box-shadow:
    0 24px 60px -20px rgba(255,90,31,0.55),
    0 0 0 6px rgba(255,215,0,0.06);
  transform: translateY(-12px);
}
.plan-creator:hover{ transform: translateY(-16px); }
.plan-creator .plan-tag{ color: rgba(255,255,255,0.85); }
.plan-creator .plan-price{ border-bottom-color: rgba(255,255,255,0.20); }
.plan-creator .plan-list li{ color: #fff; }
.popular{
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #1a1100;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  box-shadow: 0 8px 20px rgba(255,215,0,0.35);
  white-space: nowrap;
}

/* PRO card */
.plan-pro{
  background: linear-gradient(160deg, var(--purple-start) 0%, var(--purple-end) 100%);
  border: 1px solid rgba(139,92,246,0.6);
  box-shadow: 0 20px 50px -20px rgba(139,92,246,0.50);
}
.plan-pro .plan-tag{ color: rgba(255,255,255,0.85); }
.plan-pro .plan-price{ border-bottom-color: rgba(255,255,255,0.22); }
.plan-pro .plan-list li{ color: #fff; }
.plan-pro .crown{
  display:inline-block;
  color: var(--gold);
  margin-left: 4px;
  font-size: 16px;
  transform: translateY(-1px);
}

@media (max-width: 980px){
  .price-grid{ grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .plan-creator{ transform: none; }
  .plan-creator:hover{ transform: translateY(-4px); }
}

/* ─────────────  Social proof  ───────────── */
.social{ padding: 60px 0; }
.social-inner{
  display:flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}
.proof-block{
  display:flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center;
}
.proof-divider{
  width: 1px; height: 50px;
  background: var(--border);
}
.avatars{ display:flex; }
.av{
  width: 36px; height: 36px;
  border-radius: 50%;
  margin-left: -8px;
  background: linear-gradient(135deg, var(--orange), var(--teal));
  border: 2px solid var(--bg-card);
  position: relative;
  overflow: hidden;
}
.av:first-child{ margin-left: 0; }
.av1{ background: linear-gradient(135deg, #FF5A1F, #FFB070); }
.av2{ background: linear-gradient(135deg, #FF7A47, #FFD700); }
.av3{ background: linear-gradient(135deg, #FFD700, #00D1B2); }
.av4{ background: linear-gradient(135deg, #00D1B2, #6FE5D2); }
.av5{ background: linear-gradient(135deg, #8B5CF6, #D946EF); }
.av6{ background: linear-gradient(135deg, #FF5A1F, #8B5CF6); }
.av::after{
  content:"";
  position:absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.4), transparent 60%);
}
.stars{ display:flex; gap: 3px; }
.pay-logos{
  display:flex; gap: 18px; flex-wrap: wrap; justify-content: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}
.pay-logos span{
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
}
.proof-headline{ font-size: 14px; font-weight:600; color: var(--text-main); }
.proof-headline.small{ color: var(--text-muted); font-weight:500; font-size: 13px; }

@media (max-width: 820px){
  .social-inner{ gap: 28px; flex-direction: column; }
  .proof-divider{ width: 60%; height: 1px; }
}

/* ─────────────  FAQ  ───────────── */
.faq{ background: var(--bg-deep); }
.faq-list{
  max-width: 800px;
  margin: 0 auto;
  display:flex; flex-direction: column;
  gap: 12px;
}
.faq-item{
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .3s ease;
}
.faq-item[open]{ border-color: var(--border-strong); }
.faq-item summary{
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display:flex; align-items:center; justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary:hover{ color: var(--orange); }
.chev{
  width: 16px; height: 16px;
  position: relative;
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.chev::before, .chev::after{
  content:"";
  position:absolute;
  background: var(--text-muted);
  border-radius: 2px;
  transition: transform .3s var(--ease), background .2s;
}
.chev::before{ width:12px; height:1.5px; top:7px; left:2px; }
.chev::after{ width:1.5px; height:12px; top:2px; left:7px; }
.faq-item[open] .chev::after{ transform: scaleY(0); }
.faq-item[open] .chev::before{ background: var(--orange); }
.faq-body{
  padding: 0 26px 22px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ─────────────  Final CTA  ───────────── */
.final-cta{
  position: relative;
  text-align: center;
  overflow:hidden;
  padding: 140px 24px;
}
.final-grad{
  position:absolute; inset:-20% -10%;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(255,90,31,0.40) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 50%, rgba(0,209,178,0.30) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-main), var(--bg-deep));
  filter: blur(20px);
  z-index: 0;
}
.final-inner{
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.final-inner h2{
  margin-bottom: 14px;
  background: linear-gradient(110deg, #fff 0%, #fff 50%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.final-sub{
  font-size: 19px;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.final-trust{
  margin-top: 22px;
  font-size: 13px;
  color: var(--text-faint);
  letter-spacing: 0.02em;
}

/* ─────────────  Footer  ───────────── */
.site-footer{
  padding: 40px 0 60px;
  border-top: 1px solid var(--border);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  color: var(--text-muted);
}
.foot-brand{
  display:flex; align-items:center; gap: 8px;
  font-family:'Sora'; font-weight: 700;
  color: var(--text-main);
}
.foot-brand .amp{ color: var(--orange); }
.foot-nav{ display:flex; gap: 28px; flex-wrap: wrap; }
.foot-nav a{ white-space: nowrap; }
.foot-nav a{ transition: color .2s; }
.foot-nav a:hover{ color: var(--text-main); }
.foot-copy{ font-size: 12px; color: var(--text-faint); }

/* ─────────────  Reduced motion  ───────────── */
@media (prefers-reduced-motion: reduce){
  .orb{ animation: none; }
  *{ scroll-behavior: auto !important; }
}

/* ─────────────  Selection  ───────────── */
::selection{ background: rgba(255,90,31,0.35); color:#fff; }

/* ─────────────  Earn / Social section  ───────────── */
.earn{
  position: relative;
  overflow: hidden;
}
.earn::before{
  content:"";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 30%, rgba(255,90,31,0.10), transparent 50%),
    radial-gradient(ellipse at 85% 70%, rgba(0,209,178,0.10), transparent 50%);
  z-index: 0;
  pointer-events: none;
}
.earn .container{ position: relative; z-index: 1; }
.earn-grad{
  background: linear-gradient(110deg, var(--gold) 0%, var(--orange) 50%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.earn-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.earn-phone-wrap{
  position: relative;
  display: flex;
  justify-content: center;
  padding: 40px 0;
}
.phone-flat{
  transform: rotateY(-3deg) rotateX(2deg);
  width: 300px;
}

/* Feed mockup */
.ps-feed-head{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 18px 12px;
  border-bottom: 1px solid var(--border);
}
.ps-feed-title{
  font-family:'Sora';
  font-weight: 800;
  font-size: 18px;
  margin-right: auto;
  letter-spacing: -0.02em;
}
.ps-feed-tab{
  font-size: 11px;
  font-weight: 600;
  color: var(--text-faint);
  padding: 4px 0;
  position: relative;
}
.ps-feed-tab.active{ color: var(--text-main); }
.ps-feed-tab.active::after{
  content:"";
  position: absolute;
  bottom: -13px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.ps-post{
  margin: 12px 12px 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.ps-post-head{
  display:flex; align-items:center; gap: 10px;
  padding: 10px 12px;
}
.ps-avatar{
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF5A1F, #FFD700);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.ps-avatar::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.45), transparent 60%);
}
.ps-avatar.av-b{ background: linear-gradient(135deg, #8B5CF6, #D946EF); }
.ps-post-name{
  font-size: 11px;
  font-weight: 700;
  display:flex; align-items:center; gap: 6px;
  letter-spacing: -0.005em;
}
.ps-badge-creator{
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 2px 5px;
  border-radius: 4px;
  background: var(--gold);
  color: #1a1100;
}
.ps-badge-pro{
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 2px 5px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--purple-start), var(--purple-end));
  color: #fff;
}
.ps-post-meta{
  font-size: 9.5px;
  color: var(--text-faint);
}
.ps-post-img{
  height: 110px;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255,90,31,0.18), transparent 60%),
    linear-gradient(135deg, #2A2018, #1f1812);
  display:flex; align-items:center; justify-content:center;
  position: relative;
}
.ps-post-tag{
  position: absolute;
  bottom: 10px; right: 10px;
  font-size: 9px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  color: var(--teal);
  border: 1px solid rgba(0,209,178,0.30);
}
.ps-post-foot{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  gap: 10px;
}
.ps-post-stats{
  display: flex; gap: 10px;
  font-size: 10px;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}
.ps-post-earn{
  display: flex; align-items: center; gap: 6px;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(255,215,0,0.10);
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: 999px;
  padding: 3px 8px;
}
.ps-earn-pulse{
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(255,215,0,0.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(255,215,0,0.7); }
  70%{ box-shadow: 0 0 0 6px rgba(255,215,0,0); }
  100%{ box-shadow: 0 0 0 0 rgba(255,215,0,0); }
}
.ps-post.compact{
  margin-top: 0;
  padding-bottom: 4px;
}

/* Floating chips */
.float-chip{
  position: absolute;
  display:flex; align-items:center; gap: 12px;
  background: rgba(28,28,30,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  animation: floatChip 6s ease-in-out infinite;
}
.chip-1{
  top: 60px; left: -10px;
  box-shadow: 0 20px 50px rgba(255,215,0,0.15), 0 20px 50px rgba(0,0,0,0.4);
}
.chip-2{
  bottom: 80px; right: -20px;
  animation-delay: -3s;
  box-shadow: 0 20px 50px rgba(0,209,178,0.15), 0 20px 50px rgba(0,0,0,0.4);
}
@keyframes floatChip{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}
.chip-ico{ font-size: 22px; }
.chip-val{
  font-family:'Sora';
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.chip-1 .chip-val{ color: var(--gold); }
.chip-2 .chip-val{ color: var(--teal); }
.chip-lbl{
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-top: 3px;
}

/* Earn cards */
.earn-paths{
  display:flex; flex-direction: column; gap: 16px;
}
.earn-card{
  position: relative;
  padding: 28px 28px 28px 80px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  transition: transform .4s var(--ease), border-color .3s ease;
}
.earn-card:hover{
  transform: translateX(4px);
  border-color: var(--border-strong);
}
.earn-card-num{
  position: absolute;
  left: 28px; top: 28px;
  font-family:'Sora';
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 7px 11px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff;
  border-radius: 10px;
  line-height: 1;
}
.earn-card:nth-child(2) .earn-card-num{
  background: linear-gradient(135deg, var(--teal), #6FE5D2);
  color: #061513;
}
.earn-card:nth-child(3) .earn-card-num{
  background: linear-gradient(135deg, var(--gold), #FFE56A);
  color: #1a1100;
}
.earn-card h3{ margin-bottom: 8px; }
.earn-card p{ color: var(--text-muted); font-size: 15px; line-height: 1.55; }
.earn-card p strong{ color: var(--text-main); font-weight: 600; }

@media (max-width: 980px){
  .earn-grid{ grid-template-columns: 1fr; gap: 60px; }
  .float-chip{ display: none; }
}

/* ─────────────  Revenue calculator  ───────────── */
.revenue{ background: var(--bg-deep); position: relative; overflow: hidden; }
.revenue::before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(ellipse at 80% 20%, rgba(255,215,0,0.06), transparent 55%);
  pointer-events:none;
}
.revenue .container{ position: relative; z-index: 1; }
.calc{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 90px -40px rgba(0,0,0,0.6);
}

/* Inputs side */
.calc-inputs{
  padding: 44px;
  display:flex; flex-direction: column;
  gap: 34px;
  border-right: 1px solid var(--border);
}
.calc-field-top{
  display:flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 16px;
}
.calc-field label{
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: -0.005em;
}
.calc-out{
  font-family:'Sora';
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--text-main);
  font-variant-numeric: tabular-nums;
}

/* Range inputs */
.calc-field input[type=range]{
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  outline: none;
  cursor: pointer;
}
.calc-field input[type=range]::-webkit-slider-runnable-track{
  height: 6px;
  border-radius: 999px;
  background: transparent;
}
.calc-field input[type=range]::-moz-range-track{
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}
.calc-field input[type=range]::-moz-range-progress{
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
}
.calc-field input[type=range]::-webkit-slider-thumb{
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  margin-top: -8px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--orange);
  box-shadow: 0 4px 14px rgba(255,90,31,0.4);
  transition: transform .15s var(--ease);
}
.calc-field input[type=range]::-webkit-slider-thumb:active{ transform: scale(1.15); }
.calc-field input[type=range]::-moz-range-thumb{
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--orange);
  box-shadow: 0 4px 14px rgba(255,90,31,0.4);
}
.calc-note{
  margin-top: auto;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-muted);
  letter-spacing: 0.005em;
  padding-left: 12px;
  border-left: 2px solid rgba(255,90,31,0.5);
}
.calc-disclaimer{
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--text-faint);
  letter-spacing: 0.01em;
}

/* Result side */
.calc-result{
  padding: 44px;
  background:
    radial-gradient(ellipse at 70% 0%, rgba(255,90,31,0.08), transparent 60%),
    var(--bg-card-2);
  display:flex; flex-direction: column;
}
.calc-total-label{
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.calc-total{
  font-family:'Sora';
  font-weight: 800;
  font-size: clamp(40px, 5vw, 60px);
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(110deg, #fff 0%, #fff 55%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.calc-dash{
  margin: 0 .12em;
  -webkit-text-fill-color: var(--text-faint);
  font-weight: 600;
}
.calc-total-year{
  font-size: 14px;
  color: var(--text-faint);
  margin-top: 8px;
  font-variant-numeric: tabular-nums;
}
.calc-streams{
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display:flex; flex-direction: column;
  gap: 18px;
}
.calc-stream .cs-top{
  display:flex; align-items:center; gap: 10px;
  margin-bottom: 9px;
}
.cs-dot{
  width: 9px; height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.d-orange{ background: var(--orange); }
.d-gold{ background: var(--gold); }
.d-teal{ background: var(--teal); }
.d-purple{ background: var(--purple-start); }
.cs-label{
  font-size: 14px;
  color: var(--text-muted);
  margin-right: auto;
}
.cs-amt{
  font-family:'Sora';
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.cs-bar{
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}
.cs-fill{
  display:block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  border-radius: 999px;
  transition: transform .6s var(--ease);
}
.f-orange{ background: linear-gradient(90deg, var(--orange), var(--orange-light)); }
.f-gold{ background: linear-gradient(90deg, var(--gold), #FFE56A); }
.f-teal{ background: linear-gradient(90deg, var(--teal), #6FE5D2); }
.f-purple{ background: linear-gradient(90deg, var(--purple-start), var(--purple-end)); }

@media (max-width: 880px){
  .calc{ grid-template-columns: 1fr; }
  .calc-inputs{ border-right: none; border-bottom: 1px solid var(--border); }
  .calc-inputs, .calc-result{ padding: 32px; }
}

.ps-q{display:flex;gap:8px;align-items:flex-start;margin:8px 0 0;padding:9px 10px;border-radius:10px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08)}
.ps-q-mark{flex:0 0 16px;height:16px;border-radius:5px;display:grid;place-items:center;font:700 11px/1 Inter,sans-serif;color:#0d0d0f;background:#f5a524}
.ps-q-text{font:500 10.5px/1.35 Inter,sans-serif;color:rgba(255,255,255,.86)}
.ps-q-replies{display:flex;align-items:center;gap:7px;margin-top:7px;font:500 9.5px/1 Inter,sans-serif;color:rgba(255,255,255,.5)}
.ps-reply-avs{display:flex}
.ps-reply-avs span{width:14px;height:14px;border-radius:50%;border:1.5px solid #16161a;margin-left:-5px;background:linear-gradient(135deg,#f5a524,#2dd4bf)}
.ps-reply-avs span:first-child{margin-left:0;background:linear-gradient(135deg,#2dd4bf,#818cf8)}
.ps-reply-avs span:nth-child(3){background:linear-gradient(135deg,#818cf8,#f5a524)}

.ps-post-strip{display:flex;gap:6px;margin-top:8px}
.ps-strip-thumb{flex:1;height:38px;border-radius:8px;background:linear-gradient(135deg,rgba(255,255,255,.09),rgba(255,255,255,.03));border:1px solid rgba(255,255,255,.07)}
.ps-avatar.av-c{background:linear-gradient(135deg,#818cf8,#2dd4bf)}

.store-row{display:flex;justify-content:center;gap:10px;flex-wrap:wrap;margin-top:18px}
.store-badge{display:flex;align-items:center;gap:10px;padding:8px 14px 8px 12px;border-radius:12px;border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.04);color:rgba(255,255,255,.9);text-decoration:none;transition:border-color .2s,background .2s,transform .2s}
.store-badge:hover{border-color:rgba(255,255,255,.28);background:rgba(255,255,255,.07);transform:translateY(-1px)}
.store-badge[aria-disabled="true"]{cursor:default;opacity:.62}
.store-badge[aria-disabled="true"]:hover{transform:none;border-color:rgba(255,255,255,.14);background:rgba(255,255,255,.04)}
.store-logo{flex:0 0 auto;opacity:.92}
.store-txt{display:flex;flex-direction:column;line-height:1.15;text-align:left}
.store-pre{font:500 9.5px/1.2 Inter,sans-serif;letter-spacing:.06em;text-transform:uppercase;color:rgba(255,255,255,.5)}
.store-name{font:600 14px/1.2 Inter,sans-serif}
.final-stores{margin-top:14px;font:500 13px/1.4 Inter,sans-serif;color:rgba(255,255,255,.55)}
@media(max-width:640px){.store-row{gap:8px}.store-badge{flex:1 1 auto;justify-content:center}}

/* Real app screenshots */
.phone-shot .phone-screen{ display:block; background:#000; }
.phone-shot .phone-screen img{ display:block; width:100%; height:100%; object-fit:cover; object-position:top center; }
.mode-shot{ margin:30px -36px -36px; padding:0 28px; border-radius:0 0 var(--r-lg,24px) var(--r-lg,24px); overflow:hidden; }
.mode-shot img{ display:block; width:100%; height:auto; border-radius:20px 20px 0 0; border:1px solid rgba(255,255,255,.10); border-bottom:0; -webkit-mask-image:linear-gradient(180deg,#000 58%,transparent 100%); mask-image:linear-gradient(180deg,#000 58%,transparent 100%); }
.how-shots{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px; margin-top:64px; }
.how-shot{ margin:0; }
.how-shot img{ display:block; width:100%; height:auto; border-radius:20px; border:1px solid rgba(255,255,255,.09); background:#0b0b0d; }
.how-shot figcaption{ margin-top:12px; font-size:13px; letter-spacing:.02em; color:var(--text-muted); text-align:center; }
@media (max-width:820px){ .mode-shot{ margin:24px -24px -24px; padding:0 20px; } .how-shots{ grid-template-columns:1fr; gap:18px; margin-top:44px; } }
