:root {
  --bg: #0c0c0f;
  --bg-soft: #141419;
  --panel: rgba(18, 18, 24, 0.82);
  --panel-strong: #1a1b21;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f3f1eb;
  --muted: #b8b2a8;
  --accent: #fb9f4c;
  --accent-strong: #f2871f;
  --accent-soft: #ffd4a8;
  --danger: #ff6978;
  --info: #4dd0e1;
  --success: #9be37b;
  --radius: 24px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(251, 159, 76, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(251, 159, 76, 0.08), transparent 22%),
    linear-gradient(180deg, #09090c 0%, #111116 100%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 48px;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 10, 14, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 247, 238, 0.98), rgba(255, 224, 193, 0.94));
  border: 1px solid rgba(251, 159, 76, 0.18);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  text-decoration: none;
}

.brand-icon {
  width: 36px;
  height: 36px;
}

.brand-wordmark {
  height: 28px;
  width: auto;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  text-decoration: none;
  color: var(--muted);
  padding: 8px 12px;
}

.nav-link:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #1a1208;
  box-shadow: 0 12px 30px rgba(242, 135, 31, 0.28);
}

.button-demo,
.button-demo-primary,
.button-demo-secondary {
  position: relative;
}

.button-secondary,
.button-ghost {
  border-color: rgba(251, 159, 76, 0.26);
  background: rgba(251, 159, 76, 0.08);
  color: var(--accent-soft);
}

.button-demo {
  border-color: rgba(251, 159, 76, 0.34);
  background: linear-gradient(135deg, rgba(251, 159, 76, 0.24), rgba(242, 135, 31, 0.18));
  color: #fff4e7;
  box-shadow: 0 10px 24px rgba(242, 135, 31, 0.16);
}

.button-demo-primary,
.button-demo-secondary {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 18px;
  border-radius: 22px;
  line-height: 1.15;
}

.button-demo-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #1a1208;
  box-shadow: 0 14px 32px rgba(242, 135, 31, 0.3);
}

.button-demo-secondary {
  border-color: rgba(251, 159, 76, 0.34);
  background: linear-gradient(135deg, rgba(255, 176, 98, 0.22), rgba(251, 159, 76, 0.14));
  color: #fff4e7;
  box-shadow: 0 14px 30px rgba(242, 135, 31, 0.14);
}

.button-kicker {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 14px rgba(155, 227, 123, 0.65);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
  padding: 80px 0 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  margin: 0;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 0.94;
  max-width: 12ch;
}

.hero-lead,
.contact-copy p,
.feature-card p,
.benefit-card p,
.use-case p,
.testimonial span,
.footer p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-lead {
  max-width: 62ch;
  margin: 22px 0 0;
  font-size: 1.06rem;
}

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

.hero-points {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}

.hero-points li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(251, 159, 76, 0.5);
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.hero-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(24, 24, 30, 0.96), rgba(16, 16, 22, 0.96));
  box-shadow: var(--shadow);
}

.hero-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--accent-soft);
  font-size: 0.95rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.order-list {
  display: grid;
  gap: 14px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.order-item strong {
  display: block;
  margin-bottom: 4px;
}

.order-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.pill {
  height: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pill-received {
  color: var(--info);
  background: rgba(77, 208, 225, 0.12);
}

.pill-preparing {
  color: var(--accent);
  background: rgba(251, 159, 76, 0.12);
}

.pill-ready {
  color: var(--success);
  background: rgba(155, 227, 123, 0.12);
}

.metric-label {
  margin: 0;
  color: var(--muted);
}

.metric-value {
  margin: 12px 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  color: var(--accent);
}

.metric-note {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 56px 0;
}

.section-contrast {
  padding: 56px 28px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(251, 159, 76, 0.06), rgba(251, 159, 76, 0.015)),
    rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(251, 159, 76, 0.08);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.03;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.benefit-card,
.use-case,
.testimonial-box,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.feature-card,
.benefit-card,
.use-case {
  padding: 26px;
}

.feature-index {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.feature-card h3,
.benefit-card h3,
.use-case h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

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

.section-testimonials {
  display: grid;
  gap: 22px;
}

.testimonial-box {
  padding: 28px;
}

.testimonial {
  display: none;
}

.testimonial.is-active {
  display: block;
}

.testimonial p {
  margin: 0 0 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.2;
}

.testimonial-dots {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
}

.dot.is-active {
  background: var(--accent);
  box-shadow: 0 0 18px rgba(251, 159, 76, 0.5);
}

.section-contact {
  padding-bottom: 36px;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  padding: 28px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--accent-soft);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8f877a;
}

.contact-form em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.92em;
}

.form-status {
  min-height: 24px;
  margin: 4px 0 0;
  color: var(--muted);
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

.footer {
  display: grid;
  justify-items: start;
  gap: 12px;
  padding: 22px 4px 0;
  color: var(--muted);
}

.footer-logo {
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 247, 238, 0.98), rgba(255, 224, 193, 0.94));
  border: 1px solid rgba(251, 159, 76, 0.18);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  height: 34px;
  width: auto;
}

@media (max-width: 980px) {
  .hero,
  .contact-card,
  .grid-3,
  .use-cases {
    grid-template-columns: 1fr;
  }

  .topbar {
    border-radius: 26px;
    padding: 14px 16px;
  }

  .topbar,
  .topbar-actions {
    align-items: flex-start;
  }

  .topbar {
    flex-direction: column;
    gap: 14px;
  }

  .topbar-actions {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1200px);
    padding-top: 10px;
  }

  .topbar {
    position: static;
    border-radius: 24px;
    padding: 12px;
    gap: 12px;
  }

  .brand {
    width: 100%;
    justify-content: center;
    padding: 10px 12px;
  }

  .topbar-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .topbar-actions .button,
  .topbar-actions .nav-link {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    text-align: center;
    padding: 12px 10px;
  }

  .topbar-actions .nav-link {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
  }

  .hero {
    padding-top: 28px;
    gap: 24px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero-actions .button-demo-primary,
  .hero-actions .button-demo-secondary {
    align-items: center;
  }

  .hero-points {
    margin-top: 22px;
    gap: 10px;
  }

  .hero-card,
  .feature-card,
  .benefit-card,
  .use-case,
  .testimonial-box,
  .contact-card {
    border-radius: 22px;
  }

  .order-item {
    flex-direction: column;
  }

  .pill {
    width: fit-content;
  }

  .section {
    padding: 44px 0;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2 {
    font-size: clamp(1.75rem, 9vw, 2.4rem);
  }

  .section-contrast,
  .testimonial-box,
  .contact-card {
    padding: 22px;
  }

  .contact-card {
    gap: 18px;
  }

  .footer {
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .topbar-actions {
    grid-template-columns: 1fr;
  }

  .brand-wordmark {
    height: 24px;
  }

  .brand-icon {
    width: 32px;
    height: 32px;
  }

  .page-shell {
    width: min(100% - 16px, 1200px);
  }
}
