:root {
  --black: #111111;
  --white: #ffffff;
  --gray-bg: #f0f0f0;
  --gray-text: #8a8a8a;
  --gold: #cf9c4e;
  --gold-dark: #b8863c;
  --red: #ea4335;
  --yellow: #fbbc04;
  --green: #34a853;
  --blue: #4285f4;
  --dark-card: #161616;
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.mono {
  font-family: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;
}

a { color: inherit; text-decoration: none; }

img, svg { display: block; max-width: 100%; }

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

/* Stars */
.stars { display: flex; gap: 4px; }
.stars svg { width: 22px; height: 22px; }
.stars.small svg { width: 16px; height: 16px; }
.stars.large svg { width: 30px; height: 30px; }
.stars svg path { fill: var(--gold); }

/* Header */
.site-header {
  border-bottom: 1px solid #ececec;
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  z-index: 100;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.logo .word {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.main-nav .links {
  display: flex;
  gap: 32px;
  font-weight: 600;
  font-size: 15px;
}

.main-nav .links a {
  position: relative;
  padding: 4px 0;
  opacity: 0.7;
  transition: opacity 0.15s ease;
}

.main-nav .links a:hover,
.main-nav .links a.active { opacity: 1; }

.main-nav .links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
}

.header-phone {
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.header-phone svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--black);
  color: var(--white);
}
.btn-primary:hover { opacity: 0.85; }

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover { opacity: 0.88; }

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Google stripe */
.stripe {
  height: 8px;
  display: flex;
  width: 100%;
}
.stripe span { flex: 1; }
.stripe .r { background: var(--red); }
.stripe .y { background: var(--yellow); }
.stripe .g { background: var(--green); }
.stripe .b { background: var(--blue); }

/* Hero */
.hero {
  padding: 96px 0 80px;
}
.hero .stars { margin-bottom: 24px; }
.eyebrow {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 820px;
}
.hero p.lead {
  margin-top: 24px;
  font-size: 19px;
  color: #444;
  max-width: 560px;
}
.hero .cta-row { margin-top: 36px; }
.hero .microcopy {
  margin-top: 18px;
  font-size: 14px;
  color: var(--gray-text);
}

/* Section */
section { padding: 72px 0; }
.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head .eyebrow { margin-bottom: 12px; }
.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.section-head p { margin-top: 14px; color: #555; font-size: 16px; }

.alt-bg { background: var(--gray-bg); }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid #e8e8e8;
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  margin-bottom: 20px;
  font-size: 15px;
}
.step-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.step-card p { color: #555; font-size: 15px; }

/* Feature grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature {
  padding: 26px 22px;
  border-radius: var(--radius);
  border: 1px solid #e8e8e8;
}
.feature .icon {
  width: 40px; height: 40px;
  margin-bottom: 16px;
}
.feature .icon svg { width: 100%; height: 100%; }
.feature h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.feature p { font-size: 14px; color: #666; }

/* Tap demo */
.tap-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  background: var(--black);
  color: var(--white);
  border-radius: 24px;
  padding: 64px 40px;
}
.tap-demo .demo-left { max-width: 380px; }
.tap-demo .stars { margin-bottom: 20px; }
.tap-demo h2 { font-size: 30px; font-weight: 800; margin-bottom: 14px; }
.tap-demo p { color: #c9c9c9; font-size: 15px; }
.tap-icon svg { width: 200px; height: auto; }
.tap-icon path, .tap-icon circle, .tap-icon rect { stroke: var(--white); }
.tap-icon .label { fill: var(--white); }

/* Pricing */
.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
}
.price-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 30px 36px;
  position: relative;
}
.price-card.dark {
  background: var(--dark-card);
  color: var(--white);
}
.price-card .plan-name {
  font-size: 24px;
  font-weight: 800;
}
.price-card .per-card {
  font-size: 14px;
  color: var(--gray-text);
  margin-top: 6px;
}
.price-card.dark .per-card { color: #9a9a9a; }
.price-card .amount {
  font-size: 40px;
  font-weight: 800;
}
.price-card.dark .amount { color: var(--gold); }
.badge {
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--gold);
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
}
.pricing-note {
  text-align: center;
  margin-top: 32px;
  color: var(--gray-text);
  font-size: 15px;
}
.pricing-cta {
  text-align: center;
  margin-top: 40px;
}

/* Compare table */
.compare {
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  overflow: hidden;
}
.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: center;
  padding: 18px 28px;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}
.compare-row:last-child { border-bottom: none; }
.compare-row.head { font-weight: 700; background: var(--gray-bg); }
.compare-row .yes { color: var(--green); font-weight: 700; }
.compare-row .no { color: #bbb; }
.compare-row div:not(:first-child) { text-align: center; }

/* About */
.about-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.founder-card {
  background: var(--black);
  color: var(--white);
  border-radius: 20px;
  padding: 40px;
}
.founder-card .avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 26px;
  margin-bottom: 20px;
}
.founder-card h3 { font-size: 22px; font-weight: 800; }
.founder-card .role {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  margin-bottom: 20px;
}
.founder-card p { color: #cfcfcf; font-size: 14.5px; }
.founder-card .contact-line {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #333;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid #e8e8e8;
}
.value-card .num {
  font-family: 'JetBrains Mono', monospace;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 14px;
}
.value-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: 14.5px; color: #555; }

/* CTA banner */
.cta-banner {
  background: var(--black);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
}
.cta-banner .stars { justify-content: center; margin-bottom: 20px; }
.cta-banner h2 { color: var(--white); font-size: 32px; font-weight: 800; margin-bottom: 14px; }
.cta-banner p { color: #c9c9c9; margin-bottom: 32px; }
.cta-banner .cta-row { justify-content: center; }
.cta-banner .btn-outline { border-color: var(--white); color: var(--white); }
.cta-banner .btn-outline:hover { background: var(--white); color: var(--black); }

/* Footer */
footer {
  border-top: 1px solid #ececec;
  padding-top: 48px;
  margin-top: 40px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 40px;
}
.footer-col .logo .word { font-size: 18px; }
.footer-col .stars { margin-top: 8px; }
.footer-links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-links .col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 14px;
}
.footer-links .col a, .footer-links .col p {
  display: block;
  font-size: 14.5px;
  margin-bottom: 10px;
  color: var(--black);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 13px;
  color: var(--gray-text);
  flex-wrap: wrap;
  gap: 10px;
}

/* Responsive */
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-hero { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .compare-row { grid-template-columns: 1.4fr 1fr 1fr; padding: 16px; font-size: 13.5px; }
}

@media (max-width: 720px) {
  .main-nav .links, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .site-header.open .main-nav {
    display: flex;
  }
  .main-nav {
    position: fixed;
    top: 84px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 32px 32px;
    border-bottom: 1px solid #ececec;
    display: none;
  }
  .site-header.open .main-nav { display: flex; }
  .main-nav .links { flex-direction: column; gap: 20px; }
  .header-phone { display: none; }
  .site-header.open .header-phone { display: flex; margin-top: 16px; }
  .price-card { flex-direction: column; align-items: flex-start; gap: 14px; }
  .tap-demo { padding: 40px 24px; }
  .footer-inner { flex-direction: column; }
}
