:root {
  --bg: #0c0c10;
  --panel: #141420;
  --panel-2: #1b1d2a;
  --text: #f5f2ea;
  --muted: #b9b3a6;
  --accent: #ff7a18;
  --accent-2: #ffd166;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.5;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 122, 24, 0.2), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 209, 102, 0.14), transparent 24%),
    linear-gradient(180deg, #0a0a0d 0%, #11111a 55%, #0c0c10 100%);
}

a {
  color: inherit;
}

a:hover,
a:focus-visible {
  color: var(--accent-2);
}

.page {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.demo-banner {
  background: linear-gradient(90deg, #ff7a18, #ffd166);
  color: #1a1207;
  text-align: center;
  font-weight: 800;
  padding: 0.7rem 1rem;
  letter-spacing: 0.04em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(12, 12, 16, 0.72);
  border-bottom: 1px solid var(--line);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo-shell,
.hero-logo-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #050507;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.brand-logo-shell {
  min-width: 112px;
  padding: 0.4rem 0.65rem;
  border-radius: 18px;
}

.brand-logo {
  width: clamp(92px, 12vw, 132px);
  height: auto;
  display: block;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-2);
  font-weight: 800;
  font-size: 0.75rem;
}

.header-note {
  color: var(--muted);
  margin-top: 0.25rem;
  font-size: 0.95rem;
}

.phone-chip {
  text-decoration: none;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.8rem 1rem;
  box-shadow: var(--shadow);
  white-space: nowrap;
}

.phone-chip:hover,
.phone-chip:focus-visible,
.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 1.9rem 0 1.2rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.09), transparent 48%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 0.85rem;
  align-items: start;
}

.hero-copy {
  display: grid;
  gap: 0.75rem;
}

.hero-copy-top {
  display: grid;
  gap: 0.55rem;
}

.hero-copy h1 {
  max-width: 18ch;
  margin-top: 0.2rem;
  font-family: "Arial Black", "Trebuchet MS", sans-serif;
  font-size: clamp(1.45rem, 2.35vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-logo-shell {
  width: fit-content;
  margin-bottom: 0.5rem;
  padding: 0.42rem 0.72rem;
  border-radius: 20px;
}

.hero-logo {
  width: min(164px, 100%);
  height: auto;
  display: block;
}

.hero-kicker,
.hero-text,
.panel-card p,
.category-card p,
.practical-card p,
.steps li,
.info-card li {
  color: var(--muted);
}

.hero-text {
  max-width: 72ch;
  font-size: 0.92rem;
}

.cta-group {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.quick-actions {
  display: grid;
  gap: 0.65rem;
}

.quick-action {
  display: grid;
  gap: 0.2rem;
  padding: 0.82rem 0.9rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
  box-shadow: var(--shadow);
}

.quick-action strong {
  font-size: 0.98rem;
}

.quick-action small,
.quick-action-label {
  color: var(--muted);
}

.quick-action-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
}

.quick-action-primary {
  border-color: rgba(255, 122, 24, 0.28);
  background:
    radial-gradient(circle at top right, rgba(255, 122, 24, 0.18), transparent 42%),
    rgba(255, 255, 255, 0.06);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.15rem;
  border-radius: 14px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(180deg, #ff8b31, #ff6f11);
  color: #130b05;
  box-shadow: 0 16px 30px rgba(255, 111, 17, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: transparent;
}

.btn:focus-visible,
.phone-chip:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

.choice-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.choice-pills span {
  padding: 0.48rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  font-weight: 800;
  font-size: 0.88rem;
}

.choice-pills-muted span {
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.hero-panel {
  display: grid;
  gap: 0.8rem;
}

.panel-card,
.category-card,
.practical-card,
.info-card,
.section-block {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.panel-card {
  padding: 1rem;
}

.panel-compact {
  padding-block: 0.95rem;
}

.panel-hot {
  background:
    radial-gradient(circle at top right, rgba(255, 122, 24, 0.16), transparent 32%),
    rgba(255, 255, 255, 0.05);
}

.panel-card h2,
.section-heading h2,
.practical-card h2 {
  margin-top: 0.35rem;
  font-family: "Arial Black", "Trebuchet MS", sans-serif;
  letter-spacing: -0.03em;
}

.panel-card ul,
.info-card ul {
  margin-top: 0.75rem;
  padding-left: 1.1rem;
}

.section-block {
  margin-top: 1rem;
  padding: 1.2rem;
}

.section-heading {
  margin-bottom: 1rem;
}

.section-intro {
  max-width: 56ch;
  color: var(--muted);
}

.category-grid {
  display: grid;
  gap: 0.85rem;
}

.category-card {
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.category-card.accent {
  border-color: rgba(255, 122, 24, 0.32);
}

.category-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.split-block {
  display: grid;
  gap: 1rem;
}

.steps {
  padding-left: 1.15rem;
  margin-top: 0.85rem;
}

.steps li + li,
.info-card li + li {
  margin-top: 0.55rem;
}

.info-stack {
  display: grid;
  gap: 0.85rem;
}

.info-card {
  padding: 1rem;
}

.showcase-block {
  padding: 1.25rem;
  background:
    radial-gradient(circle at top right, rgba(255, 122, 24, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.04);
}

.showcase-heading {
  display: grid;
  gap: 0.85rem;
}

.showcase-note {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 122, 24, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.showcase-note span {
  display: inline-flex;
  width: fit-content;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 209, 102, 0.12);
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 900;
}

.showcase-note p,
.product-description,
.config-summary,
.section-intro {
  color: var(--muted);
}

.showcase-micro-note {
  margin: -0.1rem 0 0.95rem;
  color: rgba(255, 209, 102, 0.9);
  font-size: 0.84rem;
  font-weight: 700;
}

.smart-grid {
  display: grid;
  gap: 1rem;
}

.smart-product {
  display: grid;
  gap: 1.1rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(20, 20, 32, 0.82);
  box-shadow: var(--shadow);
}

.smart-product-featured {
  border-color: rgba(255, 122, 24, 0.24);
  background:
    radial-gradient(circle at top right, rgba(255, 122, 24, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(20, 20, 32, 0.82);
}

.product-top {
  display: grid;
  gap: 0.85rem;
}

.product-top h3 {
  margin-top: 0.35rem;
  font-family: "Arial Black", "Trebuchet MS", sans-serif;
  font-size: clamp(1.55rem, 4vw, 2rem);
  letter-spacing: -0.04em;
}

.product-description {
  margin-top: 0.5rem;
  max-width: 48ch;
  font-size: 0.95rem;
}

.price-badge {
  display: grid;
  gap: 0.25rem;
  align-content: start;
  width: fit-content;
  padding: 0.9rem 0.95rem;
  border-radius: 20px;
  background: rgba(10, 10, 14, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 209, 102, 0.08);
  text-align: right;
}

.price-badge span {
  color: var(--accent-2);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
}

.price-badge strong {
  font-size: clamp(1.8rem, 4vw, 2.25rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #fff7eb;
}

.price-badge small {
  color: var(--muted);
  font-size: 0.8rem;
}

.product-config {
  display: grid;
  gap: 0.85rem;
}

.option-group {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.025);
}

.option-group legend {
  padding: 0 0.45rem;
  margin-bottom: 0.55rem;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.option-group-primary {
  border-color: rgba(255, 209, 102, 0.2);
  background: linear-gradient(180deg, rgba(255, 209, 102, 0.06), rgba(255, 255, 255, 0.025));
}

.option-group-formula {
  border-color: rgba(255, 122, 24, 0.28);
  background: linear-gradient(180deg, rgba(255, 122, 24, 0.08), rgba(255, 255, 255, 0.025));
}

.option-group-extra {
  border-color: rgba(255, 255, 255, 0.11);
}

.option-group-sauce {
  border-color: rgba(255, 255, 255, 0.11);
}

.option-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.option-pill {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 118px;
  padding: 0.72rem 0.88rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.option-pill:hover,
.option-pill:focus-within {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 24, 0.38);
}

.option-pill.is-selected {
  border-color: rgba(255, 122, 24, 0.52);
  background: linear-gradient(180deg, rgba(255, 122, 24, 0.18), rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 0 0 1px rgba(255, 209, 102, 0.12);
}

.option-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-pill span {
  font-weight: 800;
}

.option-pill small {
  color: var(--muted);
  font-size: 0.78rem;
}

.option-pill-checkbox {
  min-width: 142px;
}

.product-footer {
  display: grid;
  gap: 0.85rem;
  align-items: center;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.config-summary {
  min-height: 1.5rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 122, 24, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 209, 102, 0.12);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
  color: #fff7eb;
}

.product-footer .btn {
  min-width: 152px;
  cursor: default;
}

.panel-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-2);
  font-size: 0.72rem;
  font-weight: 900;
}

.practical-grid {
  display: grid;
  gap: 1rem;
}

.practical-card {
  padding: 1.2rem;
}

.practical-card.dark {
  background: linear-gradient(180deg, rgba(255, 122, 24, 0.12), rgba(255, 255, 255, 0.05));
}

.practical-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.practical-list span {
  display: block;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
}

.practical-list strong {
  display: block;
  margin-top: 0.2rem;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.18);
}

.footer-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.2rem 0 1.5rem;
  color: var(--muted);
}

@media (min-width: 720px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(290px, 0.8fr);
    gap: 1rem;
  }

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

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

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

  .split-block {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  }

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

  .showcase-heading {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    align-items: end;
  }

  .product-top {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  .product-footer {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (max-width: 719px) {
  .header-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding-top: 1.35rem;
  }

  .hero-copy h1 {
    max-width: 15ch;
  }

  .showcase-block {
    padding: 1rem;
  }

  .smart-product {
    padding: 1rem;
    gap: 1rem;
  }

  .option-group {
    padding: 0.8rem;
  }

  .option-list {
    gap: 0.6rem;
  }

  .option-pill,
  .option-pill-checkbox {
    min-width: calc(50% - 0.3rem);
    flex: 1 1 calc(50% - 0.3rem);
  }

  .price-badge {
    width: 100%;
    text-align: left;
  }

  .brand-block {
    width: 100%;
    justify-content: space-between;
  }

  .quick-action {
    padding: 0.9rem;
  }
}

@media (max-width: 479px) {
  .option-pill,
  .option-pill-checkbox {
    min-width: 100%;
    flex-basis: 100%;
  }

  .config-summary {
    font-size: 0.94rem;
  }
}

@media (min-width: 980px) {
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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