/* ===== FONTS ===== */
@font-face { font-family: 'SN Pro'; src: url('./fonts/SNPro-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; }
@font-face { font-family: 'SN Pro'; src: url('./fonts/SNPro-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; }
@font-face { font-family: 'SN Pro'; src: url('./fonts/SNPro-SemiBold.ttf') format('truetype'); font-weight: 600; font-style: normal; }
@font-face { font-family: 'SN Pro'; src: url('./fonts/SNPro-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; }

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

:root {
  --primary: #D1FE17;
  --primary-dark: #A3C612;
  --red: #ED1572;
  --bg: #0F1113;
  --bg-card: #131517;
  --bg-elevated: #141618;
  --border: #1B1D1F;
  --border-light: #2A2D30;
  --text: #FFFFFF;
  --text-sub: rgba(255,255,255,0.5);
  --text-muted: rgba(255,255,255,0.4);
  --text-faint: rgba(255,255,255,0.32);
  --secondary: #78797E;
}

html { scroll-behavior: smooth; overscroll-behavior: none; }

body {
  font-family: 'SN Pro', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, video { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ===== UTILITIES ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 640px) { .container { padding: 0 24px; } }
@media (min-width: 1024px) { .container { padding: 0 32px; } }

/* Shine animation for CTA buttons */
.btn-shine { position: relative; overflow: hidden; }
.btn-shine::after {
  content: "";
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0% 42%, rgba(255,255,255,0.5) 50%, transparent 58% 100%);
  animation: btnShine 2.5s ease-in-out infinite;
  position: absolute;
  inset: 0;
}
@keyframes btnShine {
  0% { transform: translate(-100%) skew(-15deg); }
  to { transform: translate(200%) skew(-15deg); }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== SECTION BADGE (pill) ===== */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sub);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.section-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
.section-badge .label { color: var(--text-sub); }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  background: rgba(15, 17, 19, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-icon {
  width: 32px; height: 32px;
  color: var(--primary);
  flex-shrink: 0;
}
.logo-text {
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo-portal {
  font-weight: 600;
  font-size: 0.65em;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(209, 254, 23, 0.08);
  padding: 3px 10px;
  border-radius: 6px;
}
.btn-login {
  background: var(--primary);
  color: #000;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 12px;
  transition: opacity 0.2s;
}
.btn-login:hover { opacity: 0.85; }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding-top: 120px;
  padding-bottom: 40px;
  text-align: center;
  overflow: hidden;
  min-height: 100vh;
  background: var(--bg-card);
  border-radius: 0 0 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Concentric circles bg */
.hero-bg-circles {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 160vw;
  max-width: 1500px;
  aspect-ratio: 1;
  transform: translateX(-50%) translateY(28%);
  background: url('./images/bg.png') center / contain no-repeat;
  pointer-events: none;
  z-index: 0;
  filter: brightness(1.8);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Title */
.hero h1 {
  font-size: clamp(38px, 6.5vw, 76px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 960px;
  letter-spacing: -0.02em;
}
.hero h1 .hi { font-style: italic; }
.hero-hl {
  background: var(--primary);
  color: #000;
  padding: 2px 24px 6px;
  border-radius: 16px;
  display: inline-block;
  font-style: italic;
  line-height: 1.15;
}

/* Subtitle pill */
.hero-sub {
  display: inline-block;
  background: rgba(209,254,23,0.1);
  border: 1px solid rgba(209,254,23,0.08);
  color: rgba(255,255,255,0.85);
  padding: 14px 28px;
  border-radius: 18px;
  font-size: 16px;
  max-width: 520px;
  line-height: 1.55;
  margin-bottom: 8px;
}

/* Phone scene — holds phone, icons, CTA */
.hero-scene {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-phone-img {
  width: min(42vw, 340px);
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
}
@media (min-width: 768px) {
  .hero-phone-img { width: min(30vw, 340px); }
}

/* CTA overlapping phone bottom */
.hero-cta {
  position: relative;
  z-index: 10;
  margin-top: -40px;
  padding-bottom: 20px;
}

/* Floating provider icons */
.fi {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  z-index: 5;
}
.fi svg { width: 50%; height: 50%; }

.fi--openai   { width: 68px; height: 68px; top: 38%; left: 6%;  animation: heroFloat 3.6s ease-in-out infinite; }
.fi--claude   { width: 72px; height: 72px; top: 4%;  right: 6%; animation: heroFloat 4.2s ease-in-out infinite 0.4s; }
.fi--grok     { width: 64px; height: 64px; bottom: 20%; left: 8%; animation: heroFloat 3.2s ease-in-out infinite 0.9s; }
.fi--banana   { width: 72px; height: 72px; bottom: 24%; right: 4%; animation: heroFloat 3.8s ease-in-out infinite 0.2s; }
.fi--banana img { width: 38px; height: 38px; }

@media (max-width: 768px) {
  .fi--openai { width: 52px; height: 52px; left: 4%; }
  .fi--claude { width: 56px; height: 56px; right: 4%; }
  .fi--grok   { width: 48px; height: 48px; left: 4%; }
  .fi--banana { width: 56px; height: 56px; right: 4%; }
  .fi--banana img { width: 28px; height: 28px; }
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Decorative green dots */
.hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-dots i {
  position: absolute;
  background: var(--primary);
  border-radius: 50%;
}

/* CTA button */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: #000;
  font-weight: 700;
  font-size: 18px;
  padding: 18px 44px;
  border-radius: 16px;
  border-bottom: 4px solid var(--primary-dark);
  box-shadow: 0 4px 32px rgba(209,254,23,0.35);
  transition: transform 0.15s;
  letter-spacing: -0.01em;
}
.cta-primary:hover { transform: scale(0.98); }
.cta-primary:active { transform: scale(0.96); }

/* ===== CREATE CARDS ===== */
.create-section {
  padding: 24px 0 80px;
}
.create-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 640px) {
  .create-grid { grid-template-columns: 1fr; }
}
.create-card {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  aspect-ratio: 1 / 1.1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: border-color 0.3s;
  background: var(--bg-card);
}
.create-card:hover { border-color: rgba(255,255,255,0.12); }
.create-card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.create-card-media img,
.create-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.create-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
  z-index: 1;
}
.create-card-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}
.create-card-label {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 3;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(255,255,255,0.9);
  color: #000;
}
.create-card-label.red {
  background: var(--red);
  color: #fff;
}
.create-card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 2px;
}
.create-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

/* ===== HOW IT WORKS ===== */
.how-section {
  padding: 64px 0 80px;
}
.how-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 1024px) {
  .how-layout { grid-template-columns: 1fr; gap: 32px; }
  .how-left { text-align: center; }
}
.how-left h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
}
.how-left p {
  font-size: 15px;
  color: var(--text-sub);
  max-width: 400px;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .how-left p { margin: 0 auto; }
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.3s;
}
.step-card:hover { border-color: rgba(255,255,255,0.12); }
.step-num {
  width: 36px; height: 36px;
  min-width: 36px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #000;
}
.step-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.step-desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.5;
}

/* ===== PRICING ===== */
.pricing-section {
  padding: 64px 0 80px;
}
.pricing-header {
  text-align: center;
  margin-bottom: 40px;
}
.pricing-header h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  max-width: 600px;
  margin: 0 auto 8px;
}
.pricing-header .sub {
  color: var(--text-sub);
  font-size: 15px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
.price-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 24px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}
.price-card:hover { border-color: rgba(255,255,255,0.12); }
.price-card.profitable {
  background: linear-gradient(to bottom right, rgba(237, 21, 114, 0.1), transparent 70%);
}
.price-card.profitable::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  border: 1px solid rgba(237, 21, 114, 0.3);
  pointer-events: none;
}
.price-top {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 2px;
}
.price-amount {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-currency { font-size: inherit; }
.price-old {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.price-badge-bonus {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--primary);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 8px;
}
.price-badge-deal {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 8px;
  text-transform: uppercase;
}
.price-features {
  margin: 12px 0 16px;
  flex: 1;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.price-features li .bullet {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  flex-shrink: 0;
}
.price-features li.bonus { color: var(--primary); }
.price-features li.bonus .bullet { background: var(--primary); }
.price-features li.no-bonus { color: rgba(255,255,255,0.5); }
.price-features li.no-bonus .bullet { background: rgba(255,255,255,0.3); }
.profitable .price-features li .bullet { background: var(--red); }
.profitable .price-features li.bonus .bullet { background: var(--red); }
.profitable .price-features li.bonus { color: var(--text); }

.price-btn {
  display: block;
  width: 100%;
  padding: 10px;
  border-radius: 12px;
  background: var(--border-light);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: background 0.2s;
  border: none;
}
.price-btn:hover { background: #3B3D40; }
.price-btn.red-btn {
  background: var(--red);
  color: #fff;
}
.price-btn.red-btn:hover { background: #c41260; }

.pricing-footer {
  text-align: center;
  margin-top: 32px;
}
.pricing-footer p {
  font-size: 14px;
  color: var(--text-muted);
}
.pricing-footer p + p {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-faint);
}

/* ===== FAQ ===== */
.faq-section {
  padding: 64px 0 80px;
}
.faq-header {
  text-align: center;
  margin-bottom: 32px;
}
.faq-header h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  max-width: 600px;
  margin: 0 auto;
}
.faq-list {
  max-width: 672px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover { border-color: rgba(255,255,255,0.12); }
.faq-question {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  gap: 12px;
}
.faq-bar {
  width: 3px;
  align-self: stretch;
  background: var(--primary);
  border-radius: 2px;
  flex-shrink: 0;
}
.faq-q-text {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
}
.faq-chevron {
  width: 20px; height: 20px;
  color: var(--secondary);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 20px 18px 35px;
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.6;
}

/* ===== FINAL CTA ===== */
.final-cta-section {
  padding: 16px 16px 80px;
}
.final-cta-outer {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}
.final-cta-border-1 {
  position: absolute;
  inset: -8px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.05);
  pointer-events: none;
}
.final-cta-border-2 {
  position: absolute;
  inset: -4px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.07);
  pointer-events: none;
}
.final-cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  padding: 48px 24px 48px;
  text-align: center;
  background-image:
    linear-gradient(rgba(27,29,31,0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,29,31,0.4) 1px, transparent 1px);
  background-size: 24px 24px;
}
.final-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60%, rgba(209,254,23,0.08), transparent 70%);
  pointer-events: none;
}
@media (min-width: 640px) {
  .final-cta-card { padding: 64px 40px; }
}
.final-cta-card h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 8px;
  position: relative; z-index: 2;
}
.final-cta-card > p {
  color: var(--text-sub);
  font-size: 15px;
  margin-bottom: 24px;
  position: relative; z-index: 2;
}
.final-cta-card .section-badge { position: relative; z-index: 2; }
.final-cta-card .cta-primary { position: relative; z-index: 2; }

/* CTA Dots */
.cta-dot {
  position: absolute;
  background: rgba(209, 254, 23, 0.6);
  border-radius: 50%;
  width: 4px; height: 4px;
  box-shadow: 0 0 8px rgba(209, 254, 23, 0.5);
  pointer-events: none;
  animation: ctaPulse 3s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.cta-rating {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}
.cta-stars { display: flex; gap: 2px; }
.cta-stars svg { width: 20px; height: 20px; color: var(--primary); }
.cta-stars .partial { position: relative; width: 20px; height: 20px; overflow: hidden; }
.cta-stars .partial svg { position: absolute; left: 0; top: 0; clip-path: inset(0 30% 0 0); }
.cta-rating-text { font-size: 14px; font-weight: 500; }

/* ===== FOOTER ===== */
.footer {
  margin: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg);
  padding: 20px 24px;
}
.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-sub);
}
.footer-right a {
  color: var(--text-sub);
  transition: color 0.2s;
}
.footer-right a:hover { color: var(--text); }

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .hero h1 { font-size: 32px; }
  .hero-phone img { max-width: 260px; }
  .fi { width: 36px; height: 36px; }
  .fi svg { width: 18px; height: 18px; }
  .fi-4 img { width: 22px; height: 22px; }
  .create-card { aspect-ratio: 1 / 1; }
  .price-card { padding: 18px 14px; }
  .price-amount { font-size: 24px; }
  .footer .container { flex-direction: column; text-align: center; }
}
