:root {
  --bg: #0b1120;
  --fg: #f8fafc;
  --muted: #94a3b8;
  --primary: #eab308;
  --primary-15: rgba(234, 179, 8, 0.15);
  --primary-30: rgba(234, 179, 8, 0.3);
  --border: rgba(255, 255, 255, 0.1);
  --card-bg: rgba(255, 255, 255, 0.04);
  --blue: #3b82f6;
  --red: #ef4444;
  --emerald: #10b981;
}
* { box-sizing: border-box; }
.static-fallback {
  min-height: 100vh;
  background: var(--bg);
  color: var(--fg);
  font-family: Inter, system-ui, -apple-system, sans-serif;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}
.static-fallback a { color: inherit; text-decoration: none; }
.container { max-width: 72rem; margin: 0 auto; padding: 0 1rem; }
.header {
  border-bottom: 1px solid var(--border);
  background: rgba(11, 17, 32, 0.8);
  backdrop-filter: blur(8px);
}
.header-content {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
  color: var(--fg);
}
.logo img { height: 2rem; width: auto; }
.nav { display: flex; align-items: center; gap: 0.75rem; }
.nav a { color: var(--muted); font-size: 0.875rem; }
.nav a:hover { color: var(--fg); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.btn-primary { background: var(--primary); color: #0b1120; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.05); }
main { flex: 1; }
.hero {
  text-align: center;
  padding: 4rem 1rem 5rem;
  background: linear-gradient(to bottom, rgba(234, 179, 8, 0.05), transparent);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: var(--primary-15);
  border: 1px solid var(--primary-30);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.hero-logo {
  height: 6rem;
  width: auto;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}
.hero .primary { color: var(--primary); }
.hero p {
  color: var(--muted);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  font-size: 0.75rem;
  color: var(--muted);
}
.features {
  padding: 4rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features h2 {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.features .sub {
  text-align: center;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto 3rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); }
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.25rem;
}
.feature-card h3 { font-weight: 600; margin: 0 0 0.25rem; }
.feature-card p {
  color: var(--muted);
  font-size: 0.875rem;
  margin: 0;
}
.feature-icon {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 0.75rem;
  background: var(--primary-15);
  border: 1px solid var(--primary-30);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
}
.how-it-works {
  padding: 4rem 1rem;
}
.how-it-works h2 {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.how-it-works .sub {
  text-align: center;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto 3rem;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}
.step-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.step-number {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 9999px;
  background: var(--primary-15);
  border: 1px solid var(--primary-30);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1rem;
}
.step-card h3 { font-weight: 600; margin: 0 0 0.5rem; }
.step-card p { color: var(--muted); font-size: 0.875rem; margin: 0; }
.google-section {
  padding: 4rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.google-section h2 {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.google-section .sub {
  text-align: center;
  color: var(--muted);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}
.google-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .google-grid { grid-template-columns: repeat(2, 1fr); }
}
.google-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.google-card h3 { font-weight: 600; margin: 0 0 0.75rem; display: flex; align-items: center; gap: 0.75rem; }
.google-card p {
  color: var(--muted);
  font-size: 0.875rem;
  margin: 0 0 0.75rem;
}
.google-card ul {
  color: var(--muted);
  font-size: 0.875rem;
  margin: 0;
  padding-left: 1.25rem;
}
.google-card li { margin-bottom: 0.5rem; }
.icon-blue { color: var(--blue); }
.icon-red { color: var(--red); }
.notice {
  display: flex;
  gap: 0.75rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem;
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 2rem;
}
.notice a { color: var(--primary); text-decoration: underline; }
.cta { text-align: center; padding: 4rem 1rem; }
.cta h2 { font-size: 1.875rem; font-weight: 700; margin-bottom: 0.75rem; }
.cta p { color: var(--muted); margin-bottom: 2rem; }
.footer {
  border-top: 1px solid var(--border);
  background: rgba(11, 17, 32, 0.8);
  backdrop-filter: blur(8px);
  padding: 2rem 0;
}
.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--muted);
}
@media (min-width: 640px) {
  .footer-content { flex-direction: row; }
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a:hover { color: var(--primary); }
.sm-hidden { display: none; }
@media (min-width: 640px) {
  .sm-hidden { display: inline; }
}
@media (min-width: 768px) {
  .hero h1 { font-size: 4rem; }
}
@media (min-width: 1024px) {
  .hero h1 { font-size: 4.5rem; }
}
