:root {
  --bg: #ffffff;
  --text: #0b0b0f;
  --muted: rgba(11, 11, 15, 0.66);
  --border: rgba(11, 11, 15, 0.12);
  --orange: #f48120;
  --orange-dark: #d96500;
  --shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.muted {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11, 11, 15, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-logo {
  display: block;
  width: auto;
  height: 28px;
  border-radius: 7px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.site-header .brand-logo {
  height: 36px;
}

.brand-name {
  font-size: 15px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: rgba(11, 11, 15, 0.78);
}

.nav a:hover {
  color: rgba(11, 11, 15, 0.92);
  text-decoration: none;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-link {
  font-size: 13px;
  color: rgba(11, 11, 15, 0.72);
}

.header-link a {
  color: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
}

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

.btn-primary {
  background: var(--orange);
  color: #0b0b0f;
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 20px rgba(244, 129, 32, 0.25);
}

.btn-primary:hover {
  background: #f08a2a;
}

.btn-outline {
  background: #ffffff;
  border-color: var(--border);
  color: rgba(11, 11, 15, 0.86);
}

.btn-outline:hover {
  border-color: rgba(11, 11, 15, 0.22);
}

.hero {
  padding: 72px 0 26px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 46px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.accent {
  color: var(--orange);
}

.hero-subtitle {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(11, 11, 15, 0.72);
  max-width: 54ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.hero-note {
  margin-top: 14px;
  font-size: 13px;
  max-width: 62ch;
}

.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
}

.orb {
  width: min(460px, 100%);
  aspect-ratio: 1 / 1;
}

.orb svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ticker {
  position: relative;
  padding: 22px 0 30px;
}

.ticker-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 18px 18px;
  border: 1px solid rgba(11, 11, 15, 0.10);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.ticker-item {
  padding: 10px 12px;
  border-radius: 12px;
}

.ticker-item:hover {
  background: rgba(244, 129, 32, 0.06);
  text-decoration: none;
}

.ticker-eyebrow {
  font-size: 12px;
  color: rgba(11, 11, 15, 0.56);
  margin-bottom: 6px;
}

.ticker-title {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.ticker-desc {
  font-size: 13px;
  line-height: 1.45;
  margin-top: 6px;
}

.ticker-accent {
  height: 6px;
  width: min(1200px, calc(100% - 48px));
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), rgba(244, 129, 32, 0.15));
}

.section {
  padding: 60px 0;
}

.section h2 {
  margin: 0 0 18px;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.section-muted {
  background: rgba(11, 11, 15, 0.02);
  border-top: 1px solid rgba(11, 11, 15, 0.05);
  border-bottom: 1px solid rgba(11, 11, 15, 0.05);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  border: 1px solid rgba(11, 11, 15, 0.10);
  border-radius: 16px;
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.pricing-card {
  display: grid;
  gap: 10px;
}

.pricing-tier {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.pricing-price {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pricing-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(11, 11, 15, 0.72);
  font-size: 13px;
  line-height: 1.6;
}

.site-footer {
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-title {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer-links {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: rgba(11, 11, 15, 0.70);
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 48px;
  }
  .hero-actions {
    flex-wrap: wrap;
  }
  .ticker-inner {
    grid-template-columns: 1fr;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .pricing {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
