@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,800;9..144,900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg:        #0A0A0A;
  --bg-alt:    #111111;
  --bg-card:   #1C1C1E;
  --bg-card2:  #252527;
  --ink:       #FFFFFF;
  --ink2:      #A0A0A0;
  --ink3:      rgba(255,255,255,0.35);
  --accent:    #E8192C;
  --accent-dk: #C81525;
  --yellow:    #FF9F0A;
  --mint:      #30D158;
  --border:    rgba(255,255,255,0.08);
  --border-hi: rgba(255,255,255,0.18);

  --font-d: 'Fraunces', Georgia, serif;
  --font-b: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --r-sm:   10px;
  --r-md:   14px;
  --r-lg:   18px;
  --r-xl:   20px;
  --r-btn:  14px;
  --r-full: 9999px;

  --sh-card:  0 2px 16px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  --sh-btn:   0 8px 24px rgba(232,25,44,0.40);
  --sh-phone: 0 40px 80px rgba(0,0,0,0.75), 0 8px 20px rgba(232,25,44,0.15);
  --sh-nav:   0 1px 0 rgba(255,255,255,0.06);

  --sec-py: 88px;
  --max-w:  1160px;
  --px:     24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-b);
  font-weight: 500;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--font-b); }

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

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(10,10,10,0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--sh-nav);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-mark {
  width: 36px; height: 36px; background: var(--accent); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(232,25,44,0.4);
}
.nav-logo-text {
  font-family: var(--font-d); font-weight: 900; font-size: 22px;
  color: var(--ink); letter-spacing: -0.3px;
}
.nav-logo-text .red { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links li a {
  font-size: 14px; font-weight: 600; color: var(--ink2);
  padding: 8px 14px; border-radius: var(--r-sm);
  transition: color .2s, background .2s;
}
.nav-links li a:hover { color: var(--ink); background: rgba(255,255,255,0.07); }
.nav-links li a.active { color: var(--accent); }
.nav-cta {
  background: var(--accent); color: #fff !important;
  padding: 9px 20px !important; border-radius: var(--r-btn) !important;
  font-weight: 700 !important; font-size: 14px !important;
  box-shadow: var(--sh-btn); transition: background .2s, transform .15s, box-shadow .2s !important;
}
.nav-cta:hover {
  background: var(--accent-dk) !important; transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(232,25,44,0.45) !important;
}
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s; }
.nav-mobile {
  display: none; padding: 12px var(--px) 20px;
  border-top: 1px solid var(--border); background: rgba(10,10,10,0.97);
}
.nav-mobile li a {
  display: block; padding: 12px 16px; font-weight: 600; font-size: 16px;
  color: var(--ink2); border-radius: var(--r-sm);
}
.nav-mobile li a:hover { background: rgba(255,255,255,0.07); color: var(--ink); }
.nav-mobile .nav-cta { display: block; text-align: center; margin-top: 8px; padding: 13px 20px !important; font-size: 16px !important; }
.nav-mobile.open { display: block; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-b); font-weight: 700; font-size: 16px;
  border: none; cursor: pointer; border-radius: var(--r-btn);
  transition: transform .15s, box-shadow .2s, background .2s, color .2s;
  text-decoration: none; white-space: nowrap; line-height: 1;
}
.btn-primary { background: var(--accent); color: #fff; padding: 14px 28px; box-shadow: var(--sh-btn); }
.btn-primary:hover { background: var(--accent-dk); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(232,25,44,0.45); }
.btn-dark { background: var(--bg-card2); color: #fff; padding: 14px 28px; box-shadow: var(--sh-card); border: 1px solid var(--border-hi); }
.btn-dark:hover { background: #333; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); padding: 14px 28px; border: 1px solid var(--border-hi); }
.btn-ghost:hover { background: rgba(255,255,255,0.07); transform: translateY(-2px); }
.btn-lg { font-size: 17px; padding: 16px 34px; border-radius: 16px; }

/* ===== STORE BADGES ===== */
.store-badges { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bg-card2); color: #fff; padding: 11px 18px;
  border-radius: var(--r-md); text-decoration: none;
  border: 1px solid var(--border-hi);
  transition: background .2s, transform .15s;
}
.store-badge:hover { background: #333; transform: translateY(-2px); }
.store-badge.light { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
.store-badge.light:hover { background: rgba(255,255,255,0.14); }
.store-badge-icon { font-size: 22px; line-height: 1; }
.store-badge-text { display: flex; flex-direction: column; line-height: 1.25; }
.store-badge-sub { font-size: 10px; font-weight: 500; opacity: 0.6; }
.store-badge-name { font-size: 15px; font-weight: 700; }

/* ===== SECTIONS ===== */
section { padding: var(--sec-py) 0; }
.section-label {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(30px, 3.8vw, 46px);
  color: var(--ink); line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; font-weight: 500; color: var(--ink2); line-height: 1.65; max-width: 580px;
}
.section-hd { margin-bottom: 56px; }
.section-hd.center { text-align: center; }
.section-hd.center .section-sub { margin: 0 auto; }

/* ===== HERO ===== */
.hero { padding: clamp(28px,5dvh,80px) 0 clamp(24px,4dvh,64px); overflow: hidden; min-height: 420px; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(232,25,44,0.12); color: var(--accent);
  font-size: 13px; font-weight: 700;
  padding: 6px 14px; border-radius: var(--r-full);
  border: 1px solid rgba(232,25,44,0.25); margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(38px, 5.5vw, 68px);
  color: var(--ink); line-height: 1.06; letter-spacing: -0.03em; margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-tagline {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ink3); margin-bottom: 10px;
}
.hero-sub { font-size: 17px; font-weight: 500; color: var(--ink2); line-height: 1.68; margin-bottom: 36px; max-width: 460px; }
.hero-social { margin-top: 28px; display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--ink3); flex-wrap: wrap; }
.hero-stars { color: var(--yellow); font-size: 14px; letter-spacing: 1px; }

/* ===== PHONE MOCKUP (hero) ===== */
.hero-visual { display: flex; align-items: flex-end; justify-content: center; gap: 20px; position: relative; }
.mockup-phone {
  border-radius: 48px; padding: 10px;
  background: #1C1C1E;
  box-shadow: var(--sh-phone);
  border: 1px solid rgba(255,255,255,0.10);
  flex-shrink: 0; overflow: hidden;
  width: clamp(150px, calc((65dvh - 140px) * 9 / 19.5), 210px);
}
.mockup-phone img { border-radius: 40px; width: 100%; display: block; }
.mockup-phone--1 { transform: rotate(-3deg); }
.mockup-phone--2 { transform: rotate(3.5deg) translateY(-24px); }
.hero-deco { position: absolute; pointer-events: none; user-select: none; font-size: 28px; animation: float 3.5s ease-in-out infinite; }
.hero-deco-1 { top: 8%; right: 0%; animation-delay: 0s; }
.hero-deco-2 { bottom: 10%; left: 0%; animation-delay: 1.2s; }
.hero-deco-3 { top: 42%; right: -2%; animation-delay: 0.6s; font-size: 22px; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ===== FEATURES ===== */
.features-section { background: var(--bg-alt); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feat-card {
  background: var(--bg-card); border-radius: var(--r-xl);
  padding: 28px; border: 1px solid var(--border); box-shadow: var(--sh-card);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.feat-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(0,0,0,0.6); border-color: var(--border-hi); }
.feat-icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
}
.feat-icon.c { background: rgba(232,25,44,0.15); }
.feat-icon.n { background: rgba(255,255,255,0.07); }
.feat-icon.m { background: rgba(48,209,88,0.12); }
.feat-icon.y { background: rgba(255,159,10,0.12); }
.feat-card h3 { font-family: var(--font-d); font-weight: 800; font-size: 19px; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.01em; }
.feat-card p { font-size: 14px; color: var(--ink2); line-height: 1.70; }

/* ===== STEPS ===== */
.steps-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; position: relative; }
.steps-row::before {
  content: ''; position: absolute; top: 27px; left: calc(100%/6); right: calc(100%/6);
  height: 2px; background: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 6px, transparent 6px, transparent 14px);
}
.step { text-align: center; }
.step-num {
  width: 54px; height: 54px; background: var(--accent); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-weight: 900; font-size: 22px;
  margin: 0 auto 20px; box-shadow: 0 6px 20px rgba(232,25,44,0.40); position: relative; z-index: 1;
}
.step h3 { font-family: var(--font-d); font-weight: 800; font-size: 18px; color: var(--ink); margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--ink2); line-height: 1.65; max-width: 240px; margin: 0 auto; }

/* ===== CTA BAND ===== */
.cta-band {
  background: #111; border: 1px solid rgba(232,25,44,0.20);
  border-radius: 28px; padding: 64px 48px; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before { content: ''; position: absolute; top: -60px; right: -60px; width: 240px; height: 240px; background: rgba(232,25,44,0.12); border-radius: 50%; }
.cta-band::after  { content: ''; position: absolute; bottom: -70px; left: -40px; width: 200px; height: 200px; background: rgba(255,159,10,0.07); border-radius: 50%; }
.cta-band h2 {
  font-family: var(--font-d); font-weight: 900; font-size: clamp(26px,3.5vw,44px);
  color: #fff; margin-bottom: 14px; letter-spacing: -0.025em; position: relative; z-index: 1;
}
.cta-band h2 em { font-style: normal; color: var(--accent); }
.cta-band p { font-size: 17px; color: var(--ink2); margin-bottom: 32px; position: relative; z-index: 1; }
.btn-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; max-width: 680px; margin: 0 auto; }
.pricing-card {
  background: var(--bg-card); border-radius: var(--r-xl);
  padding: 32px; border: 1px solid var(--border); position: relative;
  transition: transform .25s, box-shadow .25s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,0.5); }
.pricing-card.featured { border-color: var(--accent); box-shadow: 0 0 0 1px rgba(232,25,44,0.3), 0 8px 32px rgba(232,25,44,0.15); }
.pricing-top-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 16px; border-radius: var(--r-full); white-space: nowrap;
  box-shadow: 0 4px 12px rgba(232,25,44,0.4);
}
.pricing-name { font-size: 11px; font-weight: 700; color: var(--ink3); text-transform: uppercase; letter-spacing: 0.10em; margin-bottom: 16px; }
.pricing-price { font-family: var(--font-d); font-weight: 900; font-size: 44px; color: var(--ink); letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px; }
.pricing-price sup { font-size: 20px; vertical-align: super; }
.pricing-price span { font-family: var(--font-b); font-size: 16px; font-weight: 500; color: var(--ink2); }
.pricing-period { font-size: 13px; color: var(--ink3); margin-bottom: 24px; }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--ink2); }
.pricing-features li::before { content: '✓'; font-weight: 700; color: var(--mint); flex-shrink: 0; margin-top: 1px; }
.pricing-features li.no { opacity: .4; }
.pricing-features li.no::before { content: '×'; color: var(--ink3); }
.pricing-note { font-size: 12px; color: var(--ink3); margin-top: 12px; line-height: 1.5; }

/* ===== PAGE HERO ===== */
.page-hero { padding: 56px 0 40px; text-align: center; border-bottom: 1px solid var(--border); margin-bottom: 0; }
.page-hero h1 { font-family: var(--font-d); font-weight: 900; font-size: clamp(34px,5vw,56px); color: var(--ink); letter-spacing: -0.03em; margin-bottom: 14px; line-height: 1.08; }
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p { font-size: 17px; color: var(--ink2); max-width: 520px; margin: 0 auto; line-height: 1.6; }

/* ===== LEGAL ===== */
.legal-wrap { max-width: 760px; margin: 0 auto; padding: 56px var(--px) 80px; }
.legal-wrap h1 { font-family: var(--font-d); font-weight: 900; font-size: clamp(30px,4vw,44px); color: var(--ink); letter-spacing: -0.025em; margin-bottom: 6px; }
.legal-wrap .meta { font-size: 13px; color: var(--ink3); margin-bottom: 44px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.legal-wrap h2 { font-family: var(--font-d); font-weight: 800; font-size: 22px; color: var(--ink); margin: 44px 0 14px; letter-spacing: -0.01em; }
.legal-wrap h3 { font-weight: 700; font-size: 16px; color: var(--ink); margin: 28px 0 10px; }
.legal-wrap p { font-size: 15px; color: var(--ink2); line-height: 1.80; margin-bottom: 14px; }
.legal-wrap ul, .legal-wrap ol { margin: 10px 0 18px 20px; }
.legal-wrap li { font-size: 15px; color: var(--ink2); line-height: 1.80; margin-bottom: 8px; }
.legal-wrap ul li { list-style: disc; }
.legal-wrap ol li { list-style: decimal; }
.legal-wrap a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal-wrap a:hover { color: var(--accent-dk); }
.legal-wrap table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 16px 0; }
.legal-wrap th { background: var(--bg-card); color: var(--ink); font-weight: 700; padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--border-hi); }
.legal-wrap td { padding: 10px 14px; border-top: 1px solid var(--border); color: var(--ink2); }
.placeholder { background: rgba(232,25,44,0.12); border: 1px solid rgba(232,25,44,0.25); border-radius: 6px; padding: 2px 8px; color: var(--accent); font-size: 13px; font-weight: 600; }

/* ===== FOOTER ===== */
footer { background: #060606; color: rgba(255,255,255,0.55); padding: 60px 0 32px; border-top: 1px solid var(--border); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 28px;
}
.footer-brand .logo-text { font-family: var(--font-d); font-weight: 900; font-size: 26px; color: #fff; display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .logo-mark { width: 32px; height: 32px; background: var(--accent); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 17px; box-shadow: 0 4px 12px rgba(232,25,44,0.35); }
.footer-brand .logo-text .red { color: var(--accent); }
.footer-brand p { font-size: 14px; line-height: 1.65; margin-bottom: 24px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(255,255,255,0.30); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color .2s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.28); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.30); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.80); }

/* ===== UTILS ===== */
.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.divider { height: 1px; background: var(--border); margin: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .steps-row { grid-template-columns: 1fr; gap: 32px; }
  .steps-row::before { display: none; }
  .step { display: flex; gap: 20px; text-align: left; align-items: flex-start; }
  .step-num { flex-shrink: 0; margin: 0; }
  .step p { max-width: 100%; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  :root { --sec-py: 56px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero { padding: 48px 0 52px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero h1 { font-size: 42px; }
  .hero-sub { max-width: 100%; margin: 0 auto 36px; }
  .store-badges { justify-content: center; }
  .hero-visual { display: none; }
  .hero-social { justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 24px; border-radius: 20px; }
  .btn-row { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}
