:root {
  --bg: #050505;
  --bg-soft: #0e0e0e;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --text: #f4f4f2;
  --muted: #a7a7a2;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --brand: #ff3b30;
  --brand-2: #ff6a5f;
  --ok: #76f2a3;
  --shadow: 0 18px 60px rgba(255, 59, 48, 0.16);
  --shadow-soft: 0 30px 90px rgba(0, 0, 0, 0.32);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 59, 48, 0.14), transparent 28%),
    linear-gradient(180deg, #060606 0%, #040404 100%);
  line-height: 1.45;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  opacity: 0.22;
  z-index: -1;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

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

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  flex-wrap: wrap;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 0 24px rgba(255, 59, 48, 0.18);
}

.brand {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.top-nav,
.footer-links,
.support-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-nav a,
.footer-links a,
.support-links a,
.text-link {
  color: #fff;
  text-decoration: none;
}

.top-nav a:not(.btn),
.footer-links a,
.support-links a,
.text-link {
  color: rgba(255, 255, 255, 0.88);
}

.top-nav a:hover,
.footer-links a:hover,
.support-links a:hover,
.text-link:hover {
  color: var(--brand-2);
}

.top-nav a[aria-current="page"] {
  color: #fff;
}

main {
  overflow: clip;
}

.hero,
.grid-two,
.grid-three,
.strip-grid,
.order-layout,
.faq-grid,
.subpage-grid,
.article-grid {
  display: grid;
  gap: 1rem;
}

.hero {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  padding: 5.8rem 0 3rem;
  gap: 2.4rem;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--brand-2);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.05em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.08rem;
  margin-bottom: 0.45rem;
}

.lead,
.section-lead,
.panel p,
.info-card p,
.faq-grid p,
.strip-grid p,
.muted,
.feature-list,
.clean-list {
  color: var(--muted);
}

.lead {
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  max-width: 50ch;
}

.section,
.subpage-hero {
  padding: 2.9rem 0;
}

.compact {
  padding-top: 0;
}

.section-head {
  margin-bottom: 1.2rem;
}

.cta-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 0;
}

.center-row,
.center-hero {
  text-align: center;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--brand), #ff2a1d);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 24px 54px rgba(255, 59, 48, 0.22);
}

.btn-small {
  min-height: 40px;
  padding: 0.65rem 1rem;
  font-size: 0.92rem;
}

.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  box-shadow: none;
}

.hero-points,
.feature-list,
.clean-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-points {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.hero-points li,
.metric,
.strip-grid article,
.panel,
.price-card,
.order-form,
.faq-grid article,
.info-card {
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  border: 1px solid var(--line);
  border-radius: 24px;
}

.hero-points li {
  padding: 0.45rem 0.8rem;
  color: #fff;
}

.hero-frame {
  position: relative;
  justify-self: end;
  width: min(100%, 620px);
  padding: 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
    radial-gradient(circle at top right, rgba(255, 59, 48, 0.12), transparent 38%);
  box-shadow: var(--shadow-soft);
}

.hero-video {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 16;
  max-height: 760px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: #000;
  object-fit: cover;
}

.hero-transition {
  position: absolute;
  inset: 0.9rem;
  border-radius: 24px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.06), rgba(5, 5, 5, 0.22) 58%, rgba(5, 5, 5, 0.36));
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.hero-transition.is-active {
  opacity: 1;
}

.hero-badge,
.hero-caption {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(10px);
}

.hero-badge {
  top: 1.4rem;
  left: 1.4rem;
}

.hero-caption {
  right: 1.4rem;
  bottom: 1.4rem;
}

.hero-badge-logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.hero-badge span,
.hero-caption span {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-caption span + span {
  padding-left: 0.7rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

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

.grid-two,
.order-layout,
.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.strip-grid article,
.panel,
.price-card,
.order-form,
.faq-grid article,
.info-card {
  padding: 1.25rem;
}

.strip-grid article,
.panel,
.info-card,
.faq-grid article {
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.14);
}

.compact-panel,
.slim-panel {
  min-height: 160px;
}

.article-card {
  min-height: 100%;
}

.metric-panel {
  display: grid;
  gap: 1rem;
}

.metric {
  padding: 1rem 1.1rem;
}

.metric-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.06em;
}

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

.clean-list li,
.feature-list li {
  padding: 0.34rem 0;
}

.note-panel {
  display: grid;
  align-content: center;
}

.order {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.simple-order-layout {
  grid-template-columns: minmax(240px, 320px) minmax(0, 420px);
  align-items: start;
}

.price {
  margin: 0.2rem 0 0.8rem;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.08em;
  color: var(--brand-2);
}

.minimal-form {
  align-content: start;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.95rem;
}

input,
textarea,
select {
  width: 100%;
  background: #0b0b0b;
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  border-radius: 16px;
  padding: 0.85rem 0.9rem;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(255, 106, 95, 0.55);
  outline-offset: 1px;
}

.order-result {
  min-height: 1.2rem;
  margin: 0;
  font-weight: 600;
}

.order-result.success {
  color: var(--ok);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0 1.6rem;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .hero,
  .grid-two,
  .grid-three,
  .quick-grid,
  .order-layout,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .simple-order-layout {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.5rem, 11vw, 4.2rem);
  }

  .hero-art {
    order: -1;
  }

  .hero-frame {
    justify-self: stretch;
    width: 100%;
    margin-inline: auto;
    padding: 0.7rem;
  }

  .hero-video {
    aspect-ratio: 9 / 13;
    max-height: none;
  }
}

@media (max-width: 700px) {
  .hero {
    padding-top: 1.4rem;
    gap: 1.25rem;
  }

  .hero-copy {
    max-width: none;
  }

  .header-inner,
  .footer-inner {
    align-items: flex-start;
    min-height: auto;
    padding: 0.9rem 0;
  }

  .top-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero-badge,
  .hero-caption {
    position: static;
    margin-bottom: 0.8rem;
  }

  .hero-badge {
    display: inline-flex;
  }

  .hero-caption {
    margin-top: 0.8rem;
    margin-bottom: 0;
    justify-content: space-between;
  }

  .hero-video {
    aspect-ratio: 9 / 12;
  }

  .hero-points {
    gap: 0.5rem;
  }

  .hero-points li {
    font-size: 0.88rem;
  }
}
