:root {
  --bg: #0a0a0c;
  --bg-soft: #101014;
  --surface: #17171c;
  --surface-2: #1f1f25;
  --surface-3: #26262d;
  --light: #d6d4d1;
  --ink: #121214;
  --text: #f5f3f0;
  --muted: #9c9892;
  --muted-dim: #6f6b66;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.18);
  --accent: #e3641f;
  --accent-hot: #ff8b3a;
  --accent-deep: #8a3308;
  --glow: rgba(227, 100, 31, 0.42);
  --radius-xs: 8px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.45);
  --shadow-lift: 0 28px 60px rgba(0, 0, 0, 0.6);
  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --body: "Jost", "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --container: 1220px;
  --gutter: 20px;
  --header-h: 68px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 300;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--accent-hot);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 200;
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-pill);
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 14px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-dim);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-pill);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 22px;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), color 0.28s var(--ease);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, var(--accent-hot), var(--accent));
  transform: scale(0);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  z-index: -1;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::before {
  transform: scale(1.6);
  opacity: 1;
}

.btn--solid {
  background: var(--accent);
  color: #fff;
  isolation: isolate;
  box-shadow: 0 10px 26px rgba(227, 100, 31, 0.25);
}

.btn--pill {
  background: rgba(227, 100, 31, 0.12);
  border: 1px solid rgba(227, 100, 31, 0.5);
  color: var(--accent-hot);
  isolation: isolate;
}

.btn--pill:hover {
  color: #fff;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 11px;
}

.btn--xs {
  padding: 9px 16px;
  font-size: 10px;
}

.btn__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.btn__arrow {
  font-size: 14px;
}

.link-underline {
  position: relative;
  display: inline-block;
}

.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.34s var(--ease);
}

.link-underline:hover::after,
.link-underline:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}

.header.is-stuck {
  background: rgba(10, 10, 12, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px rgba(0, 0, 0, 0.4);
}

.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 15px;
}

.brand__mark {
  width: 22px;
  height: 22px;
  border: 2px solid var(--accent);
  border-radius: 6px;
  transform: rotate(45deg);
  background: linear-gradient(140deg, rgba(227, 100, 31, 0.6), transparent 70%);
  transition: transform 0.4s var(--ease);
}

.brand:hover .brand__mark {
  transform: rotate(135deg);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 5px;
}

.nav__link {
  display: block;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--muted);
  transition: color 0.25s var(--ease), background-color 0.25s var(--ease);
}

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

.nav__link.is-current {
  background: var(--surface-3);
  color: var(--text);
}

.header__cta {
  display: none;
}

.burger {
  width: 42px;
  height: 42px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.burger__bar {
  width: 16px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.burger[aria-expanded="true"] .burger__bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.burger[aria-expanded="true"] .burger__bar:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] .burger__bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 899px) {
  .nav {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 12, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav__list {
    flex-direction: column;
    gap: 8px;
    background: none;
    border: 0;
  }

  .nav__link {
    font-family: var(--display);
    font-size: 26px;
    font-weight: 600;
    padding: 10px 18px;
  }
}

@media (min-width: 900px) {
  .burger {
    display: none;
  }

  .header__cta {
    display: inline-flex;
  }
}

.hero {
  position: relative;
  padding: 40px 0 60px;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  left: 50%;
  top: -220px;
  width: 900px;
  height: 620px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(227, 100, 31, 0.5), rgba(227, 100, 31, 0.08) 62%, transparent 75%);
  filter: blur(18px);
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}

.blob--one {
  width: 320px;
  height: 320px;
  left: -80px;
  top: 180px;
  background: rgba(227, 100, 31, 0.3);
  animation: float 18s ease-in-out infinite;
}

.blob--two {
  width: 260px;
  height: 260px;
  right: -60px;
  top: 60px;
  background: rgba(138, 51, 8, 0.4);
  animation: float 22s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -28px, 0); }
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__media {
  margin: 0 0 28px;
  width: 62%;
  max-width: 260px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  transform: rotate(-7deg);
  transition: transform 0.6s var(--ease);
}

.hero__media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.8s var(--ease);
}

.hero__media:hover img {
  transform: scale(1.08);
}

.hero__title {
  font-size: clamp(42px, 15vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.hero__line {
  display: block;
}

.hero__line--top {
  background: linear-gradient(180deg, #ffffff 20%, #cfcbc6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__line--bottom {
  color: var(--text);
}

.hero__demo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
  color: var(--muted);
  font-style: italic;
  font-size: 14px;
}

.hero__rule {
  display: block;
  width: 80px;
  height: 1px;
  background: var(--line-strong);
}

.hero__tip {
  position: relative;
  max-width: 330px;
  padding: 20px 22px 16px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  backdrop-filter: blur(6px);
}

.hero__tip-icon {
  position: absolute;
  left: -14px;
  top: 18px;
  width: 26px;
  height: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: var(--surface);
  transform: rotate(45deg);
}

.hero__tip-text {
  font-size: 14px;
  color: #ddd9d4;
}

.hero__tip-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}

.hero__tip-link:hover {
  color: var(--accent-hot);
}

.hero__shop {
  display: inline-block;
  margin-top: 26px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

@media (min-width: 1024px) {
  .hero {
    padding: 30px 0 90px;
  }

  .hero__inner {
    min-height: 620px;
  }

  .hero__media {
    position: absolute;
    left: var(--gutter);
    top: 0;
    width: 280px;
    max-width: none;
    margin: 0;
    z-index: 2;
  }

  .hero__title {
    font-size: clamp(88px, 10.5vw, 150px);
  }

  .hero__line--top {
    text-align: right;
  }

  .hero__line--bottom {
    text-align: left;
    margin-top: 108px;
  }

  .hero__demo {
    position: absolute;
    left: 50%;
    top: 205px;
    transform: translateX(-40%);
    flex-direction: column;
    gap: 10px;
    margin: 0;
  }

  .hero__tip {
    position: absolute;
    right: var(--gutter);
    top: 235px;
    z-index: 2;
  }

  .hero__shop {
    margin-top: 34px;
  }
}

.band {
  position: relative;
  background: var(--light);
}

.band__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.band__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 12, 0.85), rgba(10, 10, 12, 0) 28%, rgba(10, 10, 12, 0) 72%, rgba(10, 10, 12, 0.85));
}

@media (min-width: 768px) {
  .band__img {
    height: 260px;
  }
}

.marquee {
  overflow: hidden;
  background: var(--accent);
  color: #1a0d05;
  padding: 12px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.marquee__item {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee__sep {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.65;
}

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.intro {
  position: relative;
  padding: 70px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--light) 22%, var(--light) 78%, var(--bg) 100%);
}

.intro__inner {
  position: relative;
  display: grid;
  gap: 36px;
}

.intro__side {
  color: var(--ink);
}

.intro__side .eyebrow {
  color: rgba(18, 18, 20, 0.5);
}

.intro__title {
  position: relative;
  margin: 10px 0 24px;
  font-size: clamp(30px, 7vw, 46px);
  color: var(--ink);
}

.intro__ghost {
  display: block;
  color: rgba(18, 18, 20, 0.14);
  font-weight: 800;
}

.intro__word {
  display: block;
  margin-top: -6px;
}

.device {
  background: linear-gradient(180deg, #232228 0%, #171519 60%, #241408 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-lift);
  justify-self: center;
  width: 100%;
  max-width: 330px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.device:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.65), 0 0 40px rgba(227, 100, 31, 0.18);
}

.device__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.device__frame {
  position: relative;
  margin: 18px auto 20px;
  width: 62%;
  border-radius: var(--radius-xs);
  overflow: hidden;
  box-shadow: 0 0 46px rgba(227, 100, 31, 0.35);
}

.device__frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.device__name {
  font-size: 22px;
  font-weight: 700;
}

.device__code {
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--muted-dim);
}

.device__stats {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  text-align: left;
}

.device__stat--end {
  text-align: right;
}

.device__stat-value {
  display: block;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
}

.device__stat-label {
  display: block;
  font-size: 11px;
  color: var(--muted-dim);
}

.device__wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 28px;
}

.device__wave i {
  width: 3px;
  height: 40%;
  border-radius: 2px;
  background: var(--accent-hot);
  transform-origin: center;
  animation: pulse 1.6s ease-in-out infinite;
}

.device__wave i:nth-child(2n) { animation-delay: 0.12s; }
.device__wave i:nth-child(3n) { animation-delay: 0.24s; }
.device__wave i:nth-child(4n) { animation-delay: 0.36s; }
.device__wave i:nth-child(5n) { animation-delay: 0.48s; }

@keyframes pulse {
  0%, 100% { transform: scaleY(0.5); opacity: 0.6; }
  50% { transform: scaleY(1.9); opacity: 1; }
}

.intro__index {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: rgba(18, 18, 20, 0.5);
}

.intro__index-rule {
  width: 60px;
  height: 1px;
  background: rgba(18, 18, 20, 0.3);
}

@media (min-width: 900px) {
  .intro {
    padding: 110px 0;
  }

  .intro__inner {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
  }

  .intro__index {
    align-self: center;
  }
}

.pitch {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
  text-align: center;
}

.pitch__ghost {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-size: clamp(90px, 22vw, 260px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.09);
  white-space: nowrap;
  pointer-events: none;
}

.pitch__inner {
  position: relative;
}

.pitch__text {
  max-width: 620px;
  margin: 0 auto 24px;
  color: #cfcbc6;
  font-size: 17px;
}

.pitch__stem {
  display: block;
  width: 1px;
  height: 70px;
  margin: 26px auto 0;
  background: linear-gradient(180deg, var(--accent), transparent);
}

.pitch__dot {
  display: block;
  width: 26px;
  height: 26px;
  margin: -8px auto 0;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, var(--accent-hot), var(--accent-deep));
  box-shadow: 0 0 30px var(--glow);
}

.range {
  padding: 40px 0 90px;
}

.range__cards {
  display: grid;
  gap: 26px;
}

.product {
  position: relative;
  padding: 18px 18px 22px;
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.product__media {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--light);
}

.product__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.product:hover .product__media img {
  transform: scale(1.06);
}

.product__badge {
  position: absolute;
  right: 26px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  box-shadow: 0 0 24px var(--glow);
}

.product__cat {
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-dim);
}

.product__name {
  margin-top: 4px;
  font-size: 20px;
}

.product__more {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
}

.product__price {
  margin-top: 12px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-hot);
}

.range__note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 380px;
  margin: 44px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.range__icon {
  flex: none;
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  position: relative;
}

.range__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 4px;
  width: 1.5px;
  height: 11px;
  background: var(--accent);
  transform: translateX(-50%);
}

.range__title {
  margin-top: 44px;
  font-size: clamp(28px, 6.4vw, 48px);
}

.range__title-thin {
  display: block;
  font-weight: 400;
  font-style: italic;
  color: #cfcbc6;
}

.range__title-bold {
  display: block;
  font-weight: 700;
}

@media (min-width: 900px) {
  .range {
    padding: 20px 0 120px;
  }

  .range__inner {
    position: relative;
  }

  .range__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    max-width: 780px;
  }

  .product {
    max-width: 300px;
  }

  .product:nth-child(1) { transform: rotate(-7deg) translateY(-10px); z-index: 3; }
  .product:nth-child(2) { transform: rotate(-11deg) translateY(60px); margin-left: -40px; z-index: 2; }
  .product:nth-child(3) { transform: rotate(-9deg) translateY(110px); margin-left: -40px; z-index: 1; }

  .product:hover {
    transform: rotate(0deg) translateY(-6px);
    box-shadow: var(--shadow-lift), 0 0 50px rgba(227, 100, 31, 0.14);
    z-index: 4;
  }

  .range__note {
    position: absolute;
    right: var(--gutter);
    top: 40px;
    margin: 0;
    max-width: 260px;
  }

  .range__title {
    margin-top: 150px;
  }
}

.premium {
  padding: 70px 0 80px;
}

.premium__title {
  margin: 0;
  font-size: clamp(28px, 6.4vw, 48px);
}

.premium__title-thin {
  display: block;
  font-weight: 400;
  font-style: italic;
  color: #cfcbc6;
}

.premium__title-bold {
  display: block;
  font-weight: 700;
}

.premium__sub {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.premium__grid {
  display: grid;
  gap: 20px;
  margin-top: 42px;
}

.pcard {
  display: flex;
  flex-direction: column;
  padding: 16px 16px 20px;
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}

.pcard:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lift), 0 0 50px rgba(227, 100, 31, 0.14);
}

.pcard__media {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--light);
}

.pcard__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.pcard:hover .pcard__media img {
  transform: scale(1.06);
}

.pcard__cat {
  margin: 18px 0 0;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-dim);
}

.pcard__name {
  margin: 4px 0 0;
  font-size: 19px;
  line-height: 1.3;
}

.pcard__note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.pcard__foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
}

.pcard__price {
  margin: 0;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-hot);
}

.pcard__more {
  font-size: 12px;
  color: var(--muted);
}

.premium__note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 520px;
  margin: 40px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.premium__note p {
  margin: 0;
}

.premium__icon {
  flex: none;
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  position: relative;
}

.premium__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 4px;
  width: 1.5px;
  height: 11px;
  background: var(--accent);
  transform: translateX(-50%);
}

@media (min-width: 640px) {
  .premium__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .premium {
    padding: 90px 0 100px;
  }

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

.choose {
  padding: 80px 0;
  background: radial-gradient(60% 50% at 50% 40%, rgba(227, 100, 31, 0.12), transparent 70%);
  text-align: center;
}

.choose__title {
  font-size: clamp(26px, 6vw, 42px);
  background: linear-gradient(100deg, var(--accent) 10%, var(--accent-hot) 60%, #ffc79a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.choose__sub {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
}

.choose__grid {
  display: grid;
  gap: 34px;
  margin-top: 48px;
  align-items: center;
}

.core {
  position: relative;
  margin: 0 auto;
  padding: 16px;
  width: 100%;
  max-width: 340px;
  border: 1px solid rgba(227, 100, 31, 0.55);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(227, 100, 31, 0.08), rgba(10, 10, 12, 0.6));
  overflow: hidden;
}

.core__glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 260px;
  height: 260px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 139, 58, 0.45), transparent 70%);
  filter: blur(10px);
  animation: breathe 6s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(0.92); opacity: 0.75; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

.core img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform 0.8s var(--ease);
}

.core:hover img {
  transform: scale(1.04);
}

.choose__side {
  display: grid;
  gap: 26px;
  justify-items: center;
}

.chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  text-align: left;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}

.chip:hover {
  transform: translateY(-4px);
  border-color: rgba(227, 100, 31, 0.5);
}

.chip__text {
  font-size: 13px;
  color: #ddd9d4;
}

.chip__icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: linear-gradient(140deg, rgba(227, 100, 31, 0.5), transparent);
  flex: none;
}

.arrow-links {
  display: grid;
  gap: 0;
  width: 100%;
  max-width: 260px;
}

.arrow-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}

.arrow-link span {
  transition: transform 0.3s var(--ease);
}

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

.arrow-link:hover span {
  transform: translateX(5px);
}

@media (min-width: 900px) {
  .choose {
    padding: 110px 0;
  }

  .choose__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
  }

  .core {
    margin-left: auto;
    margin-right: 0;
  }

  .choose__side {
    justify-items: start;
  }
}

.story {
  padding: 70px 0;
}

.story__controls {
  display: flex;
  gap: 10px;
  margin-bottom: 26px;
}

.story__arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 18px;
  line-height: 1;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}

.story__arrow:hover {
  transform: translateY(-2px);
  color: var(--text);
}

.story__arrow--active {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
}

.story__title {
  font-size: clamp(26px, 6vw, 42px);
  margin-bottom: 34px;
}

.story__title-thin {
  display: block;
  font-weight: 500;
}

.story__title-accent {
  display: block;
  color: var(--accent);
}

.story__viewport {
  overflow: hidden;
}

.story__track {
  display: flex;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

.story__slide {
  flex: 0 0 100%;
  display: grid;
  gap: 20px;
  align-content: start;
}

.mini {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  align-self: end;
}

.mini__eyebrow {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
}

.mini__text {
  margin: 8px 0 16px;
  font-size: 13px;
  color: var(--muted);
}

.story__media {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--light);
}

.story__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.story__media:hover img {
  transform: scale(1.05);
}

.story__info {
  display: grid;
  gap: 14px;
  align-content: start;
}

.story__info-media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--light);
}

.story__info-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.story__tag {
  position: absolute;
  right: 0;
  top: 0;
  padding: 12px 16px;
  background: var(--accent);
  color: #fff;
  border-bottom-left-radius: var(--radius-md);
  font-size: 11px;
  line-height: 1.2;
  text-align: right;
}

.story__tag strong {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
}

.story__info-text {
  font-size: 14px;
  color: var(--muted);
}

.story__info .btn {
  justify-self: start;
}

@media (min-width: 900px) {
  .story {
    padding: 40px 0 110px;
  }

  .story__slide {
    grid-template-columns: 0.9fr 1.1fr 1fr;
    gap: 26px;
    align-items: center;
    padding-right: 4px;
  }
}

.faq {
  padding: 70px 0 90px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02));
}

.faq__title {
  font-size: clamp(30px, 7vw, 52px);
}

.faq__note {
  margin-top: 16px;
  max-width: 320px;
  font-size: 14px;
  color: var(--muted);
}

.faq__list {
  display: grid;
  gap: 14px;
  margin-top: 40px;
}

.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.faq__item:hover {
  border-color: var(--line-strong);
}

.faq__item.is-open {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border-color: rgba(227, 100, 31, 0.35);
}

.faq__q {
  margin: 0;
  font-size: inherit;
}

.faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  text-align: left;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
}

.faq__icon {
  position: relative;
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.4s var(--ease);
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease), opacity 0.3s var(--ease);
}

.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.is-open .faq__icon {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
  transform: rotate(180deg);
}

.is-open .faq__icon::after {
  opacity: 0;
}

.faq__panel {
  padding: 0 22px 22px;
  max-width: 640px;
  color: var(--muted);
  font-size: 14px;
}

.js .faq__panel {
  animation: panel 0.4s var(--ease) both;
}

@keyframes panel {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

@media (min-width: 900px) {
  .faq__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    align-items: start;
  }

  .faq__note {
    justify-self: end;
    padding-top: 12px;
  }

  .faq__list {
    grid-column: 1 / -1;
  }
}

.footer {
  padding: 40px 0 30px;
  border-top: 1px solid var(--line);
}

.footer__disclaimer {
  padding-bottom: 20px;
}

.footer__toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}

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

.footer__toggle-icon {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

.footer__toggle[aria-expanded="true"] .footer__toggle-icon {
  transform: rotate(45deg);
}

.footer__note {
  max-width: 620px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted-dim);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}

.footer__links a {
  transition: color 0.25s var(--ease);
}

.footer__links a:hover {
  color: var(--accent-hot);
}

.footer__cols {
  display: grid;
  gap: 24px;
  padding: 28px 0;
}

.footer__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-dim);
}

.footer__value {
  display: inline-block;
  margin-top: 6px;
  font-size: 15px;
  word-break: break-word;
}

a.footer__value {
  transition: color 0.25s var(--ease);
}

a.footer__value:hover {
  color: var(--accent-hot);
}

.footer__text {
  font-size: 13px;
  color: var(--muted);
}

.footer__copy {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted-dim);
}

.footer__cta {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  min-height: 150px;
  padding: 22px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
}

.footer__cta-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 1s var(--ease);
}

.footer__cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 10, 12, 0.85), rgba(10, 10, 12, 0.25));
  z-index: -1;
}

.footer__cta:hover .footer__cta-img {
  transform: scale(1.06);
}

.footer__cta-text {
  font-family: var(--display);
  font-size: clamp(22px, 5vw, 34px);
  font-weight: 700;
  line-height: 1.05;
}

.footer__cta-arrow {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 18px;
  transition: transform 0.35s var(--ease);
}

.footer__cta:hover .footer__cta-arrow {
  transform: translate(4px, -4px);
}

@media (min-width: 768px) {
  .footer__cols {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
  }

  .footer__col--wide {
    grid-column: span 2;
  }
}

.progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 120;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
}

.progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--accent), var(--accent-hot));
}

.legal {
  padding: 50px 0 70px;
}

.legal__inner {
  max-width: 820px;
}

.legal__head {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.legal__title {
  margin: 10px 0 12px;
  font-size: clamp(34px, 8vw, 60px);
  text-transform: uppercase;
}

.legal__updated {
  font-size: 13px;
  color: var(--muted-dim);
}

.legal__lede {
  margin-top: 18px;
  font-size: 17px;
  color: #cfcbc6;
}

.toc {
  margin: 34px 0 10px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.toc__title {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-dim);
  margin-bottom: 14px;
}

.toc__list {
  display: grid;
  gap: 8px;
  counter-reset: toc;
  font-size: 14px;
}

.toc__list li {
  counter-increment: toc;
}

.toc__list a {
  color: var(--muted);
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
  display: inline-block;
}

.toc__list a::before {
  content: counter(toc, decimal-leading-zero) " ";
  color: var(--accent);
  font-family: var(--display);
  font-size: 12px;
  margin-right: 8px;
}

.toc__list a:hover {
  color: var(--text);
  transform: translateX(3px);
}

@media (min-width: 700px) {
  .toc__list {
    grid-template-columns: 1fr 1fr;
  }
}

.legal__section {
  margin-top: 44px;
  scroll-margin-top: 100px;
}

.legal__section h2 {
  font-size: clamp(20px, 4vw, 26px);
  margin-bottom: 14px;
}

.legal__section p + p,
.legal__section p + ul,
.legal__section ul + p {
  margin-top: 14px;
}

.legal__section ul {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
}

.legal__section ul li {
  position: relative;
  padding-left: 20px;
}

.legal__section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 1.5px;
  background: var(--accent);
}

.legal__section p {
  color: #c9c5c0;
  font-size: 15px;
}

.legal__section strong {
  color: var(--text);
  font-weight: 500;
}

.legal__section a {
  color: var(--accent-hot);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal__facts {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
}

.legal__facts li {
  padding-left: 0;
  display: grid;
  gap: 2px;
}

.legal__facts li::before {
  display: none;
}

.legal__facts-key {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-dim);
}

.legal__table-wrap {
  overflow-x: auto;
  margin-top: 8px;
}

.legal__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 460px;
}

.legal__table th,
.legal__table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.legal__table th {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-dim);
}

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

.legal__table tbody tr:hover td {
  color: var(--text);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .marquee__track {
    animation: none;
  }
}
