:root {
  --bg: #0b0b11;
  --bg-alt: #111118;
  --fg: #f0ede6;
  --fg-muted: #8a8880;
  --accent: #f5a623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --card-border: rgba(240, 237, 230, 0.08);
  --card-bg: #13131a;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 64px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 17, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo {
  width: 34px;
  height: 34px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: #0b0b11;
}
.nav__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
}
.nav__tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Shared section styles */
.section__label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 16px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--fg);
  max-width: 660px;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px 64px 120px;
  min-height: 680px;
  align-items: center;
  background: var(--bg);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero__sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero__pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero__pills li {
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 100px;
  background: var(--accent-dim);
  border: 1px solid rgba(245, 166, 35, 0.25);
  color: var(--accent);
  font-family: var(--font-display);
}

/* Hero Visual */
.hero__right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 480px;
}
.hero__visual {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero__shape {
  position: absolute;
  border-radius: 50%;
}
.hero__shape--1 {
  width: 320px;
  height: 320px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 30% 30%, rgba(245,166,35,0.18) 0%, transparent 70%);
  border: 1px solid rgba(245, 166, 35, 0.15);
}
.hero__shape--2 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 55%;
  transform: translate(-50%, -50%) rotate(15deg);
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 80%);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 36% 64% 55% 45% / 45% 55% 45% 55%;
}
.hero__shape--3 {
  width: 80px;
  height: 80px;
  top: 30%;
  left: 35%;
  transform: translate(-50%, -50%);
  background: var(--accent);
  opacity: 0.12;
  border-radius: 36% 64% 55% 45% / 45% 55% 45% 55%;
}
.hero__card {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.hero__card-icon {
  font-size: 18px;
  color: var(--accent);
}
.hero__card-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
  font-family: var(--font-display);
}
.hero__card--1 { top: 15%; left: 5%; }
.hero__card--2 { top: 25%; right: 10%; }
.hero__card--3 { bottom: 25%; left: 15%; }

/* Features */
.features {
  padding: 100px 64px;
  background: var(--bg-alt);
}
.features .section__title { margin-bottom: 60px; }
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 36px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: rgba(245,166,35,0.2);
  transform: translateY(-4px);
}
.feature-card__icon {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Industries */
.industries {
  padding: 100px 64px;
  background: var(--bg);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
.industries .section__title { margin-bottom: 48px; }
.industries__track {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.industry-tag {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 100px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--fg);
  transition: border-color 0.2s, background 0.2s;
}
.industry-tag:hover {
  border-color: rgba(245,166,35,0.3);
  background: var(--accent-dim);
  color: var(--accent);
}
.industries__sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 560px;
}

/* Pricing */
.pricing {
  padding: 100px 64px;
  background: var(--bg-alt);
}
.pricing .section__title { margin-bottom: 48px; }
.pricing__card {
  background: var(--card-bg);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 28px;
  padding: 56px;
  max-width: 640px;
  position: relative;
  overflow: hidden;
}
.pricing__card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.pricing__amount {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.pricing__period {
  font-size: 24px;
  font-weight: 400;
  color: var(--fg-muted);
}
.pricing__desc {
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 36px;
}
.pricing__divider {
  height: 1px;
  background: var(--card-border);
  margin-bottom: 36px;
}
.pricing__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.pricing__list li {
  font-size: 15px;
  color: var(--fg);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing__list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
}
.pricing__note {
  font-size: 14px;
  color: var(--fg-muted);
  font-style: italic;
  border-top: 1px solid var(--card-border);
  padding-top: 28px;
}

/* Manifesto */
.manifesto {
  padding: 100px 64px;
  background: var(--bg);
}
.manifesto__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.manifesto__headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 28px;
  line-height: 1.2;
}
.manifesto__body {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* Footer */
.footer {
  padding: 48px 64px;
  border-top: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  gap: 32px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
}
.footer__tagline {
  font-size: 14px;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 64px 28px 80px;
    gap: 48px;
  }
  .hero__right { height: 300px; }
  .features { padding: 64px 28px; }
  .features__grid { grid-template-columns: 1fr 1fr; }
  .industries { padding: 64px 28px; }
  .pricing { padding: 64px 28px; }
  .pricing__card { padding: 36px; }
  .pricing__amount { font-size: 52px; }
  .manifesto { padding: 64px 28px; }
  .nav { padding: 20px 28px; }
  .nav__tagline { display: none; }
  .footer { padding: 32px 28px; flex-direction: column; gap: 8px; }
}
@media (max-width: 600px) {
  .features__grid { grid-template-columns: 1fr; }
  .pricing__list { grid-template-columns: 1fr; }
  .hero__headline { font-size: 40px; }
}