:root {
  --bg: #FDFCFA;
  --text: #2B2E33;
  --text-soft: #5A6472;
  --text-faint: #8A93A0;
  --border: #E8E9EB;
  --accent: #29ABE2;
  --accent-hover: #1690C6;
  --accent-tint: #EAF6FC;
  --pricing-bg: #F4F8FB;
  --card-border: #E0E4E8;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

[data-fade] {
  opacity: 0;
}
[data-fade].in-view {
  animation: fadeUp 0.7s ease both;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn:hover { background: var(--accent-hover); color: #fff; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 252, 250, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-link { display: flex; align-items: center; }
.logo-link img { height: 34px; display: block; }
.main-nav { display: flex; gap: 32px; font-size: 15px; font-weight: 600; }
.main-nav a { color: var(--text); }
.main-nav a:hover { color: var(--accent); }
.header-cta {
  font-size: 15px;
  padding: 11px 22px;
  white-space: nowrap;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(41,171,226,0.07) 0%, rgba(41,171,226,0) 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 110px 32px 90px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #DDE7EC;
  background: #fff;
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 32px;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.hero h1 {
  font-size: 58px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 26px;
  text-wrap: balance;
}
.hero-lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 640px;
  margin: 0 auto 18px;
  text-wrap: pretty;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 640px;
  margin: 0 auto 20px;
  text-wrap: pretty;
}
.hero-price {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}
.hero-terms {
  font-size: 15.5px;
  color: var(--text-soft);
  margin: 0 0 36px;
}
.hero .btn {
  font-size: 17px;
  padding: 16px 36px;
  box-shadow: 0 8px 20px rgba(41,171,226,0.25);
}
.hero-note {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-faint);
  margin: 18px 0 0;
}

/* Ticker */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
  overflow: hidden;
  padding: 20px 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 46s linear infinite;
}
.ticker-item {
  display: flex;
  align-items: center;
}
.ticker-item span:first-child {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  padding: 0 22px;
}
.ticker-item .star { color: var(--accent); font-size: 13px; }

/* Section headings */
.eyebrow {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 56px;
}

/* How it works */
.how { padding: 100px 32px 90px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 34px 30px;
}
.step-num {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--accent-tint);
  color: var(--accent-hover);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step-card h3 { font-size: 21px; font-weight: 800; margin: 0 0 10px; }
.step-card p { font-size: 15.5px; line-height: 1.65; color: var(--text-soft); margin: 0; text-wrap: pretty; }
.how-note {
  text-align: center;
  font-size: 16px;
  color: var(--text-soft);
  margin: 44px auto 0;
  max-width: 620px;
  text-wrap: pretty;
}

/* About */
.about {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 100px 32px;
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 64px;
  align-items: center;
}
.about-photo { position: relative; }
.about-photo::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  background: var(--accent-tint);
  border-radius: 20px;
}
.about-photo img {
  position: relative;
  width: 100%;
  border-radius: 20px;
  display: block;
  border: 1px solid var(--border);
}
.about-copy h2 { font-size: 42px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 22px; }
.about-copy p { font-size: 16.5px; line-height: 1.75; color: var(--text-soft); margin: 0 0 16px; text-wrap: pretty; }
.about-copy p.lead { font-size: 17px; line-height: 1.7; color: var(--text); font-weight: 700; }
.about-copy p.strong { color: var(--text); font-weight: 700; }
.about-copy p:last-child { margin-bottom: 0; }

/* Pricing */
.pricing { background: var(--pricing-bg); border-bottom: 1px solid var(--border); }
.pricing-inner { max-width: 1120px; margin: 0 auto; padding: 100px 32px; }
.pricing-intro {
  text-align: center;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 620px;
  margin: 0 auto 48px;
  text-wrap: pretty;
}
.pricing-card {
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 44px 42px;
  box-shadow: 0 12px 40px rgba(43,46,51,0.06);
}
.pricing-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.pricing-card-head h3 { font-size: 20px; font-weight: 800; margin: 0; }
.pricing-badge {
  background: var(--accent-tint);
  color: var(--accent-hover);
  font-size: 12.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-amount { font-size: 44px; font-weight: 800; letter-spacing: -0.02em; margin: 6px 0 26px; }
.pricing-amount span { font-size: 17px; font-weight: 600; color: var(--text-faint); }
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 13px;
  border-top: 1px solid #EDEFF1;
  padding-top: 26px;
  margin-bottom: 32px;
  list-style: none;
  padding-left: 0;
}
.pricing-features li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--text);
  margin: 0;
}
.pricing-features li .check { color: var(--accent); font-weight: 800; line-height: 1.4; }
.pricing-card .btn {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 16.5px;
  padding: 15px 0;
}
.pricing-fine {
  text-align: center;
  font-size: 13.5px;
  color: var(--text-faint);
  line-height: 1.6;
  margin: 16px 0 0;
  text-wrap: pretty;
}

/* FAQs */
.faqs { max-width: 760px; margin: 0 auto; padding: 100px 32px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  font-family: inherit;
  text-align: left;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--text);
  padding: 20px 24px;
  cursor: pointer;
}
.faq-chevron {
  color: var(--accent);
  font-size: 20px;
  font-weight: 600;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-chevron { transform: rotate(45deg); }
.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq-item.open .faq-panel { grid-template-rows: 1fr; }
.faq-panel-inner { overflow: hidden; }
.faq-panel p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 0;
  padding: 0 24px 20px;
  text-wrap: pretty;
}

/* Final CTA */
.final-cta { background: #fff; border-top: 1px solid var(--border); }
.final-cta-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 110px 32px;
  text-align: center;
}
.final-cta h2 {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
  text-wrap: balance;
}
.final-cta p {
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 0 auto 14px;
  max-width: 580px;
  text-wrap: pretty;
}
.final-cta .price-line { font-size: 16px; font-weight: 700; color: var(--text); margin: 0 0 34px; }
.final-cta .btn { font-size: 17px; padding: 16px 36px; box-shadow: 0 8px 20px rgba(41,171,226,0.25); }
.final-cta-note { font-size: 13.5px; font-weight: 600; color: var(--text-faint); margin: 18px 0 0; }

/* Footer */
.site-footer { background: var(--bg); border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer-inner img { height: 30px; }
.footer-inner p.tagline { font-size: 15px; color: var(--text-soft); margin: 0; }
.footer-links { display: flex; gap: 28px; font-size: 15px; font-weight: 600; }
.footer-copyright { font-size: 13px; color: var(--text-faint); margin: 10px 0 0; }

/* Responsive */
@media (max-width: 800px) {
  .hero h1 { font-size: 40px; }
  .hero-lead, .hero-sub { font-size: 16px; }
  .section-title { font-size: 32px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; padding: 70px 24px; }
  .about-photo { max-width: 320px; margin: 0 auto; }
  .final-cta h2 { font-size: 32px; }
  .how, .pricing-inner, .faqs { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 640px) {
  .header-inner { padding: 14px 20px; }
  .main-nav { display: none; }
  .hero-inner { padding: 80px 20px 60px; }
  .hero h1 { font-size: 32px; }
  .pricing-card { padding: 32px 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
