﻿/* ============================================
   LinibTech / JunranFlow — Landing Page CSS
   ============================================ */

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

:root {
  --bg:        #080b12;
  --bg2:       #0d1117;
  --surface:   rgba(255,255,255,0.04);
  --border:    rgba(255,255,255,0.08);
  --border2:   rgba(255,255,255,0.12);
  --text:      #e8eaf0;
  --muted:     #7a8394;
  --accent:    #6c63ff;
  --accent2:   #a78bfa;
  --accent3:   #38bdf8;
  --grad-a:    #6c63ff;
  --grad-b:    #38bdf8;
  --radius:    14px;
  --radius-lg: 20px;
  --nav-h:     80px;
  --font:      'Inter', system-ui, -apple-system, sans-serif;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(108,99,255,0.4); border-radius: 3px; }

/* ---- Utilities ---- */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.grad {
  background: linear-gradient(135deg, var(--grad-a), var(--grad-b));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(8,11,18,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}
.about-logo-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 18px;
}
.logo-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--grad-a), var(--grad-b));
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ---- Mobile Menu ---- */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(8,11,18,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 16px 24px 24px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-menu li:last-child a { border-bottom: none; color: var(--accent2); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: transform 0.2s var(--ease), opacity 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--grad-a), var(--grad-b));
  color: #fff;
  box-shadow: 0 4px 24px rgba(108,99,255,0.35);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(108,99,255,0.5); }

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.18); }

.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ---- Section Shared ---- */
.sec-header { text-align: center; margin-bottom: 64px; }
.sec-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(108,99,255,0.12);
  border: 1px solid rgba(108,99,255,0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.sec-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.sec-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.g1 { width: 600px; height: 600px; background: var(--accent); top: -200px; left: 50%; transform: translateX(-60%); }
.g2 { width: 400px; height: 400px; background: var(--accent3); top: 100px; right: -100px; opacity: 0.12; }
.g3 { width: 300px; height: 300px; background: var(--accent2); bottom: 0; left: -50px; opacity: 0.1; }

.hero .container { position: relative; z-index: 1; text-align: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(108,99,255,0.1);
  border: 1px solid rgba(108,99,255,0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent2);
  margin-bottom: 28px;
}
.bdot {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 6px #4ade80;
}
.bdot.pulse { animation: pulse 2s infinite; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 6px #4ade80; opacity: 1; }
  50% { box-shadow: 0 0 14px #4ade80; opacity: 0.7; }
}

.hero-headline {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  color: var(--muted);
}
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  margin: 0 auto;
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================
   SHOWCASE
   ============================================ */
.showcase {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

/* Shared frame style — macOS-like window chrome */
.ss-frame {
  background: #0d1117;
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.ss-frame:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(108,99,255,0.2);
  border-color: rgba(108,99,255,0.3);
}
.ss-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--border);
}
.dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.dot.r { background: #ff5f57; }
.dot.y { background: #febc2e; }
.dot.g { background: #28c840; }
.ss-bar-title {
  font-size: 11px;
  color: var(--muted);
  margin-left: 6px;
  font-weight: 500;
}
.ss-frame img {
  width: 100%;
  height: auto;
  display: block;
  line-height: 0;
}

/* Full-width hero screenshot */
.ss-hero {
  margin-bottom: 16px;
}
.ss-hero .ss-frame img {
  max-height: 560px;
  object-fit: cover;
  object-position: top;
}

/* Two-column rows */
.ss-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.ss-row:last-child { margin-bottom: 0; }
.ss-row .ss-frame img {
  max-height: 320px;
  object-fit: cover;
  object-position: top;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: 100px 0;
  background: var(--bg2);
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feat-wide { grid-column: span 2; }

.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108,99,255,0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feat-card:hover {
  border-color: rgba(108,99,255,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.feat-card:hover::before { opacity: 1; }

.feat-icon {
  width: 44px; height: 44px;
  background: rgba(108,99,255,0.12);
  border: 1px solid rgba(108,99,255,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent2);
  margin-bottom: 18px;
}
.feat-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.feat-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================
   WHY
   ============================================ */
.why {
  padding: 100px 0;
  background: var(--bg);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-text .sec-title { text-align: left; }
.why-text p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 28px;
}
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.check-list svg { color: #4ade80; flex-shrink: 0; }

.why-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 320px;
}
.why-card {
  position: relative;
  z-index: 2;
  padding: 32px 40px;
  border-radius: var(--radius-lg);
  text-align: center;
}
.wc-icon {
  width: 60px; height: 60px;
  background: rgba(108,99,255,0.15);
  border: 1px solid rgba(108,99,255,0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent2);
  margin: 0 auto 16px;
}
.wc-label {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.wc-sub {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ob {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--grad-a), var(--grad-b));
}
.ob1 { width: 10px; height: 10px; top: 20%; left: 10%; animation: float1 4s ease-in-out infinite; opacity: 0.7; }
.ob2 { width: 7px; height: 7px; top: 70%; right: 12%; animation: float2 5s ease-in-out infinite; opacity: 0.5; }
.ob3 { width: 14px; height: 14px; bottom: 15%; left: 30%; animation: float3 6s ease-in-out infinite; opacity: 0.4; }

@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(12px)} }
@keyframes float3 { 0%,100%{transform:translateY(0) translateX(0)} 50%{transform:translateY(-10px) translateX(8px)} }

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 80px 0;
  background: var(--bg2);
}
.about-card {
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.about-logo { flex-shrink: 0; }
.lm-lg {
  width: 72px; height: 72px;
  font-size: 32px;
  border-radius: 18px;
}
.about-body h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.about-body p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 12px;
}
.slogan {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--accent2) !important;
  font-style: italic;
}

/* ============================================
   LAUNCH
   ============================================ */
.launch {
  padding: 100px 0;
  background: var(--bg);
}
.launch-card {
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
}
.launch-glow {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(108,99,255,0.2) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(108,99,255,0.1);
  border: 1px solid rgba(108,99,255,0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.launch-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.launch-sub {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 40px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.launch-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  text-align: left;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.li-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.li-icon {
  width: 40px; height: 40px;
  background: rgba(108,99,255,0.1);
  border: 1px solid rgba(108,99,255,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent2);
  flex-shrink: 0;
  margin-top: 2px;
}
.li-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 3px;
}
.li-desc {
  font-size: 13px;
  color: var(--muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 32px;
  background: var(--bg);
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-slogan { font-size: 13px; color: var(--muted); }
.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--accent2);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-email:hover { color: #fff; }
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 13px; color: var(--muted); }
.fp { color: rgba(108,99,255,0.6) !important; }

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 100px 0;
  background: var(--bg2);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 32px;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  border-color: rgba(108,99,255,0.3);
}

/* Featured — Pro Yearly */
.price-featured {
  background: linear-gradient(160deg, rgba(108,99,255,0.12), rgba(56,189,248,0.06));
  border-color: rgba(108,99,255,0.35);
  box-shadow: 0 8px 40px rgba(108,99,255,0.15);
}
.price-featured:hover {
  box-shadow: 0 24px 60px rgba(108,99,255,0.3);
  border-color: rgba(108,99,255,0.55);
}

/* Lifetime card */
.price-lifetime {
  background: linear-gradient(160deg, rgba(251,191,36,0.07), rgba(245,158,11,0.03));
  border-color: rgba(251,191,36,0.25);
}
.price-lifetime:hover {
  box-shadow: 0 24px 60px rgba(251,191,36,0.15);
  border-color: rgba(251,191,36,0.45);
}

/* Top badge */
.price-badge-top {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: linear-gradient(135deg, var(--grad-a), var(--grad-b));
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-badge-limited {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.price-plan {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.price-amount {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 4px;
  line-height: 1;
}
.price-currency {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-top: 8px;
}
.price-num {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
}
.price-featured .price-num,
.price-featured .price-currency {
  background: linear-gradient(135deg, var(--grad-a), var(--grad-b));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-lifetime .price-num,
.price-lifetime .price-currency {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-period {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-save {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(74,222,128,0.12);
  border: 1px solid rgba(74,222,128,0.25);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: #4ade80;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.price-features svg {
  color: #4ade80;
  flex-shrink: 0;
  margin-top: 2px;
}

.price-btn {
  width: 100%;
  justify-content: center;
}
.price-btn-gold {
  background: linear-gradient(135deg, #f59e0b, #fbbf24) !important;
  box-shadow: 0 4px 24px rgba(245,158,11,0.35) !important;
  color: #1a1000 !important;
}
.price-btn-gold:hover {
  box-shadow: 0 8px 32px rgba(245,158,11,0.5) !important;
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(255,255,255,0.02);
}

/* ============================================
   ANIMATIONS — Fade-in on scroll
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-wide { grid-column: span 2; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { height: 240px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-wide { grid-column: span 1; }
  .about-card { flex-direction: column; padding: 32px 24px; text-align: center; }
  .launch-card { padding: 40px 24px; }
  .ss-row { grid-template-columns: 1fr; }
  .ss-hero .ss-frame img, .ss-row .ss-frame img { max-height: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .btn { padding: 11px 22px; font-size: 14px; }
  .btn-lg { padding: 14px 28px; font-size: 15px; }
  .sec-header { margin-bottom: 40px; }
}
