/* =====================================================
   Fitnora Website — Shared Styles
   Palette: bg #0A0A0A, surface #1C1C1E, accent #FF8C00
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --bg:        #0A0A0A;
  --surface:   #141414;
  --surface2:  #1C1C1E;
  --surface3:  #242424;
  --accent:    #FF8C00;
  --accent-lt: #FFB340;
  --accent-dim: rgba(255,140,0,0.12);
  --fg:        #FFFFFF;
  --fg2:       rgba(255,255,255,0.62);
  --fg3:       rgba(255,255,255,0.32);
  --border:    rgba(255,255,255,0.07);
  --border-hi: rgba(255,255,255,0.12);
  --radius:    14px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.6);
}

html { scroll-behavior: smooth; }

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

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

/* ── Layout ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.section { padding: 112px 0; }
.section--tight { padding: 72px 0; }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  background: rgba(10,10,10,0.8);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 16px; color: #fff;
}
.nav__logo-img { width: 34px; height: 34px; border-radius: 8px; object-fit: contain; }
.nav__logo-text { font-size: 17px; font-weight: 700; letter-spacing: -0.4px; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a {
  font-size: 14px; font-weight: 500; color: var(--fg2);
  transition: color .2s; position: relative; padding-bottom: 2px;
}
.nav__links a::after {
  content: ""; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transition: transform .25s cubic-bezier(.22,1,.36,1);
  transform-origin: center;
}
.nav__links a:hover { color: var(--fg); }
.nav__links a:hover::after { transform: scaleX(1); }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all .2s; border: none; letter-spacing: 0.1px;
}
.btn-accent {
  background: var(--accent); color: #fff;
  box-shadow: 0 0 0 0 rgba(255,140,0,0.4);
}
.btn-accent:hover {
  background: var(--accent-lt);
  box-shadow: 0 4px 20px rgba(255,140,0,0.35);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent; border: 1px solid var(--border-hi); color: var(--fg);
}
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--fg); border-radius: 2px; transition: all .3s;
}

/* ── Hero ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 64px; position: relative; overflow: hidden;
}
/* Dot-grid background */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none; z-index: 0;
}
.hero::before {
  content: "";
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 800px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,140,0,0.1) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.hero__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; width: 100%; position: relative; z-index: 1;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-dim); border: 1px solid rgba(255,140,0,0.25);
  color: var(--accent); font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 22px;
}
.hero__title {
  font-size: clamp(44px, 5.2vw, 72px); font-weight: 900;
  line-height: 1.02; letter-spacing: -2.5px; margin-bottom: 20px;
}
.hero__subtitle {
  font-size: 17px; color: var(--fg2); line-height: 1.7;
  max-width: 440px; margin-bottom: 36px; font-weight: 400;
}
.hero__cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero__rating {
  display: flex; align-items: center; gap: 8px; margin-top: 20px;
}
.hero__rating-stars { color: var(--accent); font-size: 13px; letter-spacing: 1px; }
.hero__rating-text { font-size: 12px; color: var(--fg3); }

/* App Store badge — official style */
.badge-store {
  display: inline-flex; align-items: center; gap: 12px;
  background: #000; border: 1px solid rgba(255,255,255,0.18);
  border-radius: 13px; padding: 11px 20px;
}
.badge-store svg { flex-shrink: 0; }
.badge-store__text { display: flex; flex-direction: column; }
.badge-store__label { font-size: 9.5px; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.7px; line-height: 1; margin-bottom: 3px; }
.badge-store__name { font-size: 17px; font-weight: 600; line-height: 1.1; color: #fff; letter-spacing: -0.3px; }

/* Screenshots */
.hero__phone {
  position: relative; display: flex; justify-content: center; align-items: flex-end;
  perspective: 1200px;
}
.hero__screenshots { position: relative; width: 340px; height: 560px; }
.hero__screen {
  position: absolute; border-radius: 36px; object-fit: cover;
  transition: transform 0.1s ease-out;
}
.hero__screen--front {
  width: 250px; bottom: 0; right: 0; z-index: 2;
  box-shadow: 0 40px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.08), 0 0 60px rgba(255,140,0,0.08);
}
.hero__screen--back {
  width: 215px; bottom: 72px; left: 0; z-index: 1; opacity: 0.8;
  transform: rotate(-5deg);
  box-shadow: 0 24px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06);
}
.hero__glow {
  position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,140,0,0.15) 0%, transparent 70%);
  bottom: 10%; left: 50%; transform: translateX(-50%);
  pointer-events: none; filter: blur(8px);
}

/* ── Social proof strip ── */
.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  background: linear-gradient(90deg, transparent, rgba(255,140,0,0.03) 50%, transparent);
}
.strip__inner {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
}
.strip__item {
  text-align: center; padding: 8px 48px;
  border-right: 1px solid var(--border);
}
.strip__item:last-child { border-right: none; }
.strip__num { font-size: 28px; font-weight: 800; line-height: 1; }
.strip__label { font-size: 11px; color: var(--fg3); margin-top: 5px; text-transform: uppercase; letter-spacing: 0.8px; font-weight: 500; }

/* ── Section header ── */
.section__label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.section__label::before {
  content: ""; display: block; width: 16px; height: 1px; background: var(--accent);
}
.section__title {
  font-size: clamp(30px, 3.2vw, 46px); font-weight: 800;
  letter-spacing: -1.5px; line-height: 1.08; margin-bottom: 16px;
}
.section__sub { font-size: 16px; color: var(--fg2); max-width: 500px; line-height: 1.7; }
.section__header { margin-bottom: 60px; }

/* ── Features ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px 28px;
  position: relative; overflow: hidden;
  perspective: 800px;
  transition: border-color .25s, box-shadow .3s, transform .3s cubic-bezier(.22,1,.36,1);
}
/* Top accent line on hover */
.feature-card::before {
  content: ""; position: absolute; top: 0; left: 24px; right: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity .3s;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  border-color: rgba(255,140,0,0.2);
  box-shadow: 0 0 0 1px rgba(255,140,0,0.08), 0 24px 56px rgba(0,0,0,0.45);
}
.feature-card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--accent-dim); border: 1px solid rgba(255,140,0,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: transform .3s cubic-bezier(.22,1,.36,1), background .3s;
}
.feature-card:hover .feature-card__icon {
  transform: scale(1.12) rotate(-6deg);
  background: rgba(255,140,0,0.2);
}
.feature-card__icon svg { width: 22px; height: 22px; }
.feature-card__title { font-size: 16px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.2px; }
.feature-card__body { font-size: 13.5px; color: var(--fg2); line-height: 1.68; }

/* ── How it works ── */
.how-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 0;
  position: relative;
}
/* Connecting line */
.how-grid::before {
  content: ""; position: absolute;
  top: 24px; left: calc(16.67% + 24px); right: calc(16.67% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(255,140,0,0.2) 50%, var(--accent));
  opacity: 0.3;
}
.how-step { text-align: center; padding: 40px 32px 32px; }
.how-step__num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--surface2);
  border: 1.5px solid rgba(255,140,0,0.4); color: var(--accent);
  font-size: 17px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative; z-index: 1;
  transition: background .3s, color .3s, box-shadow .3s, border-color .3s;
}
.how-step:hover .how-step__num {
  background: var(--accent); color: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(255,140,0,0.4);
}
.how-step__title { font-size: 16px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.2px; }
.how-step__body { font-size: 13.5px; color: var(--fg2); line-height: 1.68; }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.testimonial {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px;
  position: relative;
  transition: border-color .25s, transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s;
}
.testimonial:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
/* Big quote mark */
.testimonial::before {
  content: "\201C"; position: absolute; top: 16px; right: 24px;
  font-size: 80px; line-height: 1; color: rgba(255,140,0,0.1);
  font-family: Georgia, serif; pointer-events: none;
}
.testimonial__stars { color: var(--accent); font-size: 12px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial__text { font-size: 14px; color: var(--fg2); line-height: 1.72; margin-bottom: 20px; font-style: italic; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #C46A00 100%);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: #fff; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(255,140,0,0.3);
}
.testimonial__name { font-size: 14px; font-weight: 600; }
.testimonial__role { font-size: 12px; color: var(--fg3); margin-top: 1px; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--surface);
  border: 1px solid rgba(255,140,0,0.18);
  border-radius: var(--radius-xl); padding: 80px 64px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::after {
  content: ""; position: absolute;
  inset: -1px; border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255,140,0,0.12) 0%, transparent 50%, rgba(255,140,0,0.06) 100%);
  pointer-events: none;
}
.cta-banner__title {
  font-size: clamp(28px, 3vw, 44px); font-weight: 900; letter-spacing: -1.5px; margin-bottom: 12px;
}
.cta-banner__sub { font-size: 16px; color: var(--fg2); margin-bottom: 36px; }
.cta-banner__actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── Footer ── */
.footer { border-top: 1px solid var(--border); padding: 56px 0 32px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__brand-desc { font-size: 13.5px; color: var(--fg2); margin-top: 14px; max-width: 240px; line-height: 1.68; }
.footer__col-title {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.8px; color: var(--fg3); margin-bottom: 18px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 13.5px; color: var(--fg2); transition: color .2s; }
.footer__links a:hover { color: var(--fg); }
.footer__bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer__copy { font-size: 12px; color: var(--fg3); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: 12px; color: var(--fg3); transition: color .2s; }
.footer__legal a:hover { color: var(--fg); }

/* ── Policy / Terms pages ── */
.policy { padding-top: 120px; padding-bottom: 80px; }
.policy__title { font-size: clamp(32px,4vw,52px); font-weight: 900; letter-spacing: -2px; margin-bottom: 8px; }
.policy__meta { font-size: 13px; color: var(--fg3); margin-bottom: 48px; }
.policy__body { max-width: 760px; }
.policy__body h2 { font-size: 19px; font-weight: 700; margin: 44px 0 12px; color: var(--fg); letter-spacing: -0.4px; }
.policy__body h3 { font-size: 15px; font-weight: 600; margin: 24px 0 8px; color: var(--fg); }
.policy__body p { font-size: 15px; color: var(--fg2); line-height: 1.78; margin-bottom: 14px; }
.policy__body ul, .policy__body ol { padding-left: 20px; margin-bottom: 14px; }
.policy__body li { font-size: 15px; color: var(--fg2); line-height: 1.78; margin-bottom: 6px; }
.policy__body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.policy__body strong { color: var(--fg); }

/* ── Scroll progress bar ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-lt));
  z-index: 200; transition: width .1s linear;
  box-shadow: 0 0 12px rgba(255,140,0,0.7);
}

/* ── Animations ── */
@keyframes glow-pulse {
  0%, 100% { opacity: 0.15; transform: translateX(-50%) scale(1); }
  50%       { opacity: 0.22; transform: translateX(-50%) scale(1.12); }
}
.hero::before { animation: glow-pulse 7s ease-in-out infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}
@keyframes float-back {
  0%, 100% { transform: rotate(-5deg) translateY(0px); }
  50%       { transform: rotate(-5deg) translateY(-9px); }
}
.hero__screen--front { animation: float 7s ease-in-out infinite; }
.hero__screen--back  { animation: float-back 7s ease-in-out infinite 1.2s; }
.hero__screen--front[style*="translate"],
.hero__screen--back[style*="translate"] { animation: none; }

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(90deg, #FF8C00 0%, #FFD090 45%, #FF8C00 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3.5s linear infinite;
}
.hero__eyebrow svg circle { transform-origin: center; animation: dot-ping 2.4s ease-in-out infinite; }
@keyframes dot-ping {
  0%, 80%, 100% { opacity: 1; }
  40%           { opacity: .5; }
}

/* ── Feature card tilt / badge lift / strip gradient ── */
.badge-store { transition: border-color .2s, background .2s, transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s; }
.badge-store:hover { border-color: rgba(255,255,255,0.35); background: #111; transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.5); }

.strip__num {
  background: linear-gradient(90deg, #FF9A1A, #FFD090);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

@keyframes border-sweep {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0; border-radius: var(--radius-xl);
  background: linear-gradient(90deg, transparent 0%, rgba(255,140,0,0.06) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: border-sweep 4s linear infinite;
  pointer-events: none;
}

/* ── Responsive ── */

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(10,10,10,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
}
.nav__logo-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 16px; color: #fff;
}
.nav__logo-img {
  width: 36px; height: 36px; border-radius: 9px; object-fit: contain;
}
.nav__logo-text { font-size: 18px; font-weight: 700; letter-spacing: -0.3px; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a { font-size: 14px; color: var(--fg2); transition: color .2s; }
.nav__links a:hover { color: var(--fg); }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 50px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: opacity .2s, transform .15s;
  border: none;
}
.nav__links a.btn {
  padding-bottom: 10px;
}
.nav__links a.btn::after {
  display: none;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--fg);
}
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--fg); border-radius: 2px; transition: all .3s;
}

/* ── Hero ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,140,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; width: 100%;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,140,0,0.12); border: 1px solid rgba(255,140,0,0.3);
  color: var(--accent); font-size: 12px; font-weight: 600;
  letter-spacing: 0.8px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800; line-height: 1.04; letter-spacing: -2px;
  margin-bottom: 20px;
}
.hero__title em {
  font-style: normal; color: var(--accent);
}
.hero__subtitle {
  font-size: 18px; color: var(--fg2); line-height: 1.65;
  max-width: 460px; margin-bottom: 36px;
}
.hero__cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.badge-store {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 10px 18px;
  transition: border-color .2s, background .2s;
}
.badge-store:hover {
  border-color: rgba(255,255,255,0.25);
  background: var(--surface2);
}
.badge-store svg { flex-shrink: 0; }
.badge-store__text { display: flex; flex-direction: column; }
.badge-store__label { font-size: 10px; color: var(--fg3); text-transform: uppercase; letter-spacing: 0.6px; }
.badge-store__name { font-size: 15px; font-weight: 600; line-height: 1.2; }
.hero__phone {
  position: relative; display: flex; justify-content: center; align-items: flex-end;
  perspective: 1000px;
}
.hero__screenshots {
  position: relative; width: 320px; height: 520px;
}
.hero__screen {
  position: absolute; border-radius: 32px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.07);
  object-fit: cover;
  transition: transform 0.12s ease-out;
}
.hero__screen--front {
  width: 240px; bottom: 0; right: 0; z-index: 2;
}
.hero__screen--back {
  width: 210px; bottom: 60px; left: 0; z-index: 1;
  opacity: 0.85;
  transform: rotate(-4deg);
}
.hero__glow {
  position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,140,0,0.18) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ── Social proof strip ── */
.strip {
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}
.strip__inner {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 48px;
}
.strip__item { text-align: center; }
.strip__num { font-size: 26px; font-weight: 800; color: var(--accent); line-height: 1; }
.strip__label { font-size: 12px; color: var(--fg3); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.6px; }

/* ── Features ── */
.section__label {
  display: inline-block; font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.section__title {
  font-size: clamp(32px, 3.5vw, 48px); font-weight: 800;
  letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 16px;
}
.section__sub { font-size: 17px; color: var(--fg2); max-width: 520px; }
.section__header { margin-bottom: 56px; }

.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg); padding: 32px;
  transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: rgba(255,140,0,0.3); transform: translateY(-4px); }
.feature-card__icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: rgba(255,140,0,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.feature-card__title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.feature-card__body { font-size: 14px; color: var(--fg2); line-height: 1.65; }

/* ── How it works ── */
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.how-step { text-align: center; padding: 24px; }
.how-step__num {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid var(--accent); color: var(--accent);
  font-size: 18px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.how-step__title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.how-step__body { font-size: 14px; color: var(--fg2); }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testimonial {
  background: var(--surface); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg); padding: 28px;
}
.testimonial__stars { color: var(--accent); font-size: 14px; margin-bottom: 12px; }
.testimonial__text { font-size: 14px; color: var(--fg2); line-height: 1.7; margin-bottom: 16px; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #E07A00);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: #fff;
}
.testimonial__name { font-size: 14px; font-weight: 600; }
.testimonial__role { font-size: 12px; color: var(--fg3); }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, rgba(255,140,0,0.15) 0%, rgba(255,140,0,0.05) 100%);
  border: 1px solid rgba(255,140,0,0.2); border-radius: var(--radius-lg);
  padding: 64px; text-align: center;
}
.cta-banner__title { font-size: clamp(28px, 3vw, 42px); font-weight: 800; letter-spacing: -1px; margin-bottom: 12px; }
.cta-banner__sub { font-size: 17px; color: var(--fg2); margin-bottom: 32px; }
.cta-banner__actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── Footer ── */
.footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 48px 0 32px;
}
.footer__inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
}
.footer__brand-desc { font-size: 14px; color: var(--fg2); margin-top: 12px; max-width: 260px; line-height: 1.65; }
.footer__col-title { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.6px; color: var(--fg3); margin-bottom: 16px; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 14px; color: var(--fg2); transition: color .2s; }
.footer__links a:hover { color: var(--fg); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer__copy { font-size: 13px; color: var(--fg3); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: 13px; color: var(--fg3); transition: color .2s; }
.footer__legal a:hover { color: var(--fg); }

/* ── Policy / Terms pages ── */
.policy { padding-top: 120px; padding-bottom: 80px; }
.policy__title { font-size: clamp(32px,4vw,52px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 8px; }
.policy__meta { font-size: 14px; color: var(--fg3); margin-bottom: 48px; }
.policy__body { max-width: 760px; }
.policy__body h2 {
  font-size: 20px; font-weight: 700; margin: 40px 0 12px;
  color: var(--fg); letter-spacing: -0.3px;
}
.policy__body h3 { font-size: 16px; font-weight: 600; margin: 24px 0 8px; color: var(--fg); }
.policy__body p { font-size: 15px; color: var(--fg2); line-height: 1.75; margin-bottom: 14px; }
.policy__body ul, .policy__body ol {
  padding-left: 20px; margin-bottom: 14px;
}
.policy__body li { font-size: 15px; color: var(--fg2); line-height: 1.75; margin-bottom: 6px; }
.policy__body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.policy__body strong { color: var(--fg); }

/* ── Scroll progress bar ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-lt));
  z-index: 200; transition: width .1s linear;
  box-shadow: 0 0 10px rgba(255,140,0,0.6);
}

/* ── Hero animations ── */
@keyframes glow-pulse {
  0%, 100% { opacity: 0.18; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 0.28; transform: translate(-50%,-50%) scale(1.15); }
}
.hero::before { animation: glow-pulse 6s ease-in-out infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes float-back {
  0%, 100% { transform: rotate(-4deg) translateY(0px); }
  50%       { transform: rotate(-4deg) translateY(-8px); }
}
.hero__screen--front { animation: float 6s ease-in-out infinite; }
.hero__screen--back  { animation: float-back 6s ease-in-out infinite 1s; }

/* Override float when mouse is active */
.hero__screen--front[style*="translate"],
.hero__screen--back[style*="translate"]  { animation: none; }

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.hero__title em {
  background: linear-gradient(90deg, #FF8C00 0%, #FFD080 45%, #FF8C00 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3.5s linear infinite;
}

/* eyebrow dot pulse */
.hero__eyebrow svg circle {
  transform-origin: center;
  animation: dot-ping 2.4s ease-in-out infinite;
}
@keyframes dot-ping {
  0%, 80%, 100% { opacity: 1; r: 6; }
  40%           { opacity: .6; r: 5; }
}

/* ── Feature card glow on hover ── */
.feature-card {
  perspective: 800px;
  transition: border-color .2s, box-shadow .3s, transform .3s cubic-bezier(.22,1,.36,1);
}
.feature-card:hover {
  border-color: rgba(255,140,0,0.4);
  box-shadow: 0 0 0 1px rgba(255,140,0,0.15), 0 20px 48px rgba(0,0,0,0.4);
}
.feature-card__icon { transition: transform .3s cubic-bezier(.22,1,.36,1); }
.feature-card:hover .feature-card__icon { transform: scale(1.18) rotate(-5deg); }

/* ── How-step number pulse ── */
.how-step__num {
  transition: background .3s, color .3s, box-shadow .3s;
}
.how-step:hover .how-step__num {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 20px rgba(255,140,0,0.45);
}

/* ── Badge-store lift ── */
.badge-store {
  transition: border-color .2s, background .2s, transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s;
}
.badge-store:hover {
  border-color: rgba(255,255,255,0.25);
  background: var(--surface2);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

/* ── Strip item counter animation ── */
.strip__num {
  background: linear-gradient(90deg, #FF8C00, #FFD080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── CTA banner animated border ── */
@keyframes border-rotate {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.cta-banner {
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0; border-radius: var(--radius-lg);
  background: linear-gradient(90deg, transparent 0%, rgba(255,140,0,0.08) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: border-rotate 3s linear infinite;
  pointer-events: none;
}

/* ── Section header slide-in ── */
.section__label {
  display: inline-block;
  animation: none;
}

/* ── Testimonial card hover ── */
.testimonial {
  transition: border-color .25s, transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s;
}
.testimonial:hover {
  border-color: rgba(255,140,0,0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__subtitle { margin: 0 auto 36px; }
  .hero__cta { justify-content: center; }
  .hero__phone { margin-top: 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .nav__links { display: none; }
  .nav__links.is-open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 20px;
    position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(10,10,10,0.97); padding: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .nav__hamburger { display: flex; }
  .strip__inner { gap: 32px; }
  .cta-banner { padding: 40px 24px; }
}
@media (max-width: 600px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
