:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-muted: #f6f6f6;
  --surface-soft: #fbfbfb;
  --text: #171717;
  --text-soft: #5d6671;
  --line: #d9d9d9;
  --line-strong: #b8bcc3;
  --accent: #111111;
  --accent-soft: #252a31;
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 16px 38px rgba(0, 0, 0, 0.06);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --site-width: min(1240px, calc(100vw - 56px));
  --title-font: Bahnschrift, "Trebuchet MS", "Segoe UI", sans-serif;
  --body-font: Bahnschrift, "Trebuchet MS", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: var(--body-font);
}

body.page-home {
  background: #ffffff;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.page {
  min-height: 100vh;
}

.site-width {
  width: var(--site-width);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(14px);
}

.topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand-title {
  font-family: var(--title-font);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-main,
.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-main a,
.nav-right a {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--accent-soft);
}

.nav-main a[aria-current="page"],
.nav-main a:hover,
.nav-right a:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.24em;
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cart-icon {
  font-size: 1rem;
  line-height: 1;
}

.account-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border: 1px solid #111111;
  border-radius: 12px;
  background: #111111;
  box-shadow: var(--shadow-card);
}

.account-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-logout {
  min-height: 44px;
  padding: 0 18px;
  border: 2px solid var(--accent);
  border-radius: 999px;
  background: #ffffff;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.subscribe-button,
.primary-button,
.secondary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease, border-color 0.16s ease;
}

.subscribe-button,
.secondary-button,
.ghost-button {
  color: var(--accent);
  border: 2px solid var(--accent);
  background: #ffffff;
}

.primary-button {
  color: #ffffff;
  border: 2px solid var(--accent);
  background: var(--accent);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.16);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.subscribe-button:hover {
  transform: translateY(-1px);
}

.subscribe-button[disabled],
.primary-button[disabled],
.secondary-button[disabled],
.ghost-button[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.footer {
  padding: 0 0 104px;
  background: #ffffff;
}

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

.footer-stack {
  display: grid;
  gap: 22px;
  padding: 28px 0 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.8fr));
  gap: 22px;
  align-items: start;
}

.footer-label {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
}

.footer-copy {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.footer-copy a:hover {
  text-decoration: underline;
}

.footer-note {
  margin: 0;
  color: var(--text-soft);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--text-soft);
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--line-strong);
  font-weight: 800;
}

.home-hero {
  position: relative;
  min-height: calc(100vh - 82px);
  padding: 28px 0 38px;
  background:
    linear-gradient(rgba(31, 12, 108, 0.14), rgba(31, 12, 108, 0.14)),
    url("./assets/images/hero.png") center center / cover no-repeat;
}

.video-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 150px);
}

.video-frame {
  position: relative;
  width: min(846px, 100%);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 12px solid rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)),
    linear-gradient(135deg, rgba(0, 143, 255, 0.55), rgba(0, 250, 163, 0.18) 40%, rgba(255, 0, 92, 0.32));
  box-shadow: 0 30px 80px rgba(7, 4, 20, 0.45);
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.3), transparent 38%),
    url("./assets/images/about-cover.jpg") center center / cover no-repeat;
  mix-blend-mode: screen;
  opacity: 0.9;
}

.video-overlay {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  height: 100%;
  padding: clamp(24px, 3vw, 34px);
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.56));
}

.video-tag {
  margin-bottom: 12px;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-title {
  max-width: 540px;
  margin: 0 0 8px;
  font-family: var(--title-font);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.video-subtitle {
  max-width: 440px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.play-chip {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 74px;
  transform: translate(-50%, -50%);
  border-radius: 24px;
  background: #ff2020;
  box-shadow: 0 20px 40px rgba(255, 32, 32, 0.34);
}

.play-chip::before {
  content: "";
  margin-left: 6px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #ffffff;
}

.split-section {
  padding: 64px 0 86px;
  background: #ffffff;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}

.split-copy h1,
.split-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 3.55rem);
  line-height: 1.14;
}

.split-copy p {
  margin: 0 0 18px;
  max-width: 560px;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.65;
}

.split-copy p:last-child {
  margin-bottom: 0;
}

.split-media {
  min-height: 680px;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-page {
  padding: 48px 0 86px;
  background: #ffffff;
}

.shop-title {
  margin: 0 0 34px;
  text-align: center;
  font-family: var(--title-font);
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.creator-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 180px));
  justify-content: center;
  gap: 34px;
  max-width: 760px;
  margin: 0 auto;
}

.creator-card {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.creator-card-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 170px;
  overflow: hidden;
  border-radius: 50%;
  background: radial-gradient(circle at top, #3a1d84 0%, #140630 72%);
  box-shadow: 0 18px 46px rgba(20, 6, 48, 0.26);
}

.creator-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-card:nth-child(3) .creator-card-thumb {
  background: radial-gradient(circle at top, #5325a6 0%, #180833 78%);
}

.creator-card:nth-child(3) .creator-card-thumb img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.creator-card-title {
  margin: 0;
  font-size: 1.48rem;
  letter-spacing: 0.02em;
}

.creator-panel {
  display: grid;
  gap: 24px;
}

.creator-toolbar {
  display: grid;
  gap: 16px;
  justify-items: center;
  padding-bottom: 12px;
}

.creator-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.creator-channel-button {
  min-width: 220px;
}

.creator-subtitle {
  margin: 0;
  text-align: center;
  color: var(--text-soft);
  font-size: 1rem;
}

.shop-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  margin-top: 22px;
}

.filters {
  position: sticky;
  top: 104px;
}

.filter-panel {
  padding-top: 2px;
}

.filter-title {
  margin: 0 0 18px;
  font-size: 0.98rem;
  font-weight: 800;
}

.filter-group {
  padding: 16px 0 18px;
  border-top: 1px solid var(--line);
}

.filter-group:first-child {
  border-top: 0;
  padding-top: 0;
}

.filter-group h3 {
  margin: 0 0 16px;
  font-size: 0.98rem;
}

.price-scale {
  display: grid;
  gap: 12px;
}

.range-values {
  display: flex;
  justify-content: space-between;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.range-pair {
  display: grid;
  gap: 10px;
}

.range-pair input[type="range"] {
  width: 100%;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
}

.check-item input {
  width: 16px;
  height: 16px;
}

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

.catalog-grid.is-empty {
  grid-template-columns: 1fr;
}

.product-card {
  display: block;
  text-align: center;
}

.product-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--surface-soft);
  box-shadow: var(--shadow-card);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-name {
  margin: 16px auto 8px;
  max-width: 250px;
  font-size: 1.2rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-price {
  font-size: 1.26rem;
  font-weight: 800;
}

.product-status {
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.empty-state {
  padding: 42px 28px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-md);
  text-align: center;
  color: var(--text-soft);
}

.detail-page {
  padding: 42px 0 76px;
  background: #ffffff;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--accent-soft);
  font-weight: 700;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.detail-gallery {
  display: grid;
  gap: 12px;
}

.detail-main-image {
  overflow: hidden;
  background: var(--surface-soft);
}

.detail-main-image img {
  width: 100%;
  aspect-ratio: 1 / 0.93;
  object-fit: cover;
}

.thumb-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.thumb-button {
  width: 36px;
  height: 36px;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  background: var(--surface-soft);
}

.thumb-button.is-active {
  border-color: var(--accent);
}

.thumb-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-copy {
  max-width: 460px;
}

.detail-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  text-transform: uppercase;
}

.detail-price {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 1.55rem;
}

.detail-description {
  margin: 0 0 24px;
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.7;
}

.variant-grid {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}

.variant-group {
  display: grid;
  gap: 10px;
}

.variant-label {
  font-weight: 700;
}

.option-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.option-button {
  min-width: 58px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #ffffff;
  font-weight: 700;
}

.option-button.is-active {
  color: #ffffff;
  border-color: var(--accent);
  background: var(--accent);
}

.qty-row {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.qty-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 8px;
}

.qty-stepper button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--line-strong);
  font-size: 2rem;
  line-height: 1;
}

.qty-value {
  min-width: 28px;
  text-align: center;
  font-size: 1.4rem;
}

.detail-divider {
  height: 1px;
  background: var(--line);
}

.detail-actions {
  display: grid;
  gap: 14px;
}

.status-box {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-soft);
  background: #f5f5f5;
}

.status-box.success {
  color: #14532d;
  background: #dcfce7;
}

.status-box.error {
  color: #991b1b;
  background: #fee2e2;
}

.panel-page {
  padding: 44px 0 82px;
  background: #ffffff;
}

.panel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 360px;
  gap: 28px;
  align-items: start;
}

.panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.panel h1,
.panel h2 {
  margin: 0 0 18px;
}

.cart-list {
  display: grid;
  gap: 18px;
}

.cart-item {
  display: grid;
  grid-template-columns: 114px minmax(0, 1fr);
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.cart-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--surface-soft);
}

.cart-meta {
  display: grid;
  gap: 10px;
}

.cart-meta h3 {
  margin: 0;
  font-size: 1.2rem;
}

.cart-meta p {
  margin: 0;
  color: var(--text-soft);
}

.cart-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.inline-stepper {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 4px 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.inline-stepper button {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: var(--surface-soft);
}

.text-link {
  border: 0;
  padding: 0;
  color: var(--accent);
  background: transparent;
  font-weight: 700;
}

.summary-stack {
  display: grid;
  gap: 14px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--text-soft);
}

.summary-row strong,
.summary-row.total {
  color: var(--accent);
}

.summary-row.total {
  font-size: 1.12rem;
  font-weight: 800;
}

.summary-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.checkout-form {
  display: grid;
  gap: 18px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label,
.fieldset-title {
  font-size: 0.96rem;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.radio-list {
  display: grid;
  gap: 12px;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.auth-shell {
  padding: 46px 0 84px;
  background: #ffffff;
}

.auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 30px;
}

.auth-panel,
.auth-media {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.auth-panel {
  padding: 30px;
}

.auth-panel h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-transform: uppercase;
}

.auth-panel p {
  margin: 0 0 20px;
  color: var(--text-soft);
  line-height: 1.65;
}

.social-grid {
  display: grid;
  gap: 12px;
}

.social-button {
  width: 100%;
  justify-content: center;
}

.social-button[disabled] {
  opacity: 0.62;
  cursor: not-allowed;
}

.google-signin-shell {
  display: grid;
  gap: 10px;
}

.auth-provider-note {
  font-size: 0.9rem;
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

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

.auth-media {
  overflow: hidden;
  min-height: 560px;
}

.auth-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-auth {
  margin-bottom: 18px;
}

.paypal-shell {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
}

.paypal-buttons {
  min-height: 48px;
}

.helper-copy {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.home-page {
  display: grid;
  gap: 32px;
  padding: 28px 0 72px;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(0, 237, 255, 0.22), transparent 30%),
    linear-gradient(135deg, #13063b 0%, #20106c 42%, #0d0424 100%);
  box-shadow: 0 30px 80px rgba(13, 4, 36, 0.2);
}

.hero-slider-track {
  position: relative;
  min-height: 560px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 32px;
  align-items: center;
  padding: 54px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.hero-copy {
  display: grid;
  gap: 18px;
  color: #ffffff;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  max-width: 680px;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.hero-text {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.06rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stat {
  min-width: 150px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-stat strong {
  display: block;
  font-size: 1.36rem;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.hero-media {
  position: relative;
  min-height: 440px;
}

.hero-media-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.26);
}

.hero-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider-controls {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.hero-slider-controls button {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 1.3rem;
  backdrop-filter: blur(12px);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

.hero-dot.is-active {
  width: 34px;
  background: #ffffff;
}

.section-shell {
  padding: 34px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-transform: uppercase;
}

.section-head p {
  margin: 0;
  max-width: 540px;
  color: var(--text-soft);
  line-height: 1.65;
}

.video-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.82fr);
  gap: 24px;
  align-items: start;
}

.video-feature-media {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: end;
  min-height: 100%;
  padding: 28px;
  border-radius: 24px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(7, 4, 20, 0.04), rgba(7, 4, 20, 0.76)),
    linear-gradient(135deg, rgba(80, 34, 190, 0.46), rgba(23, 11, 64, 0.18)),
    url("./assets/images/about-cover.jpg") center center / cover no-repeat;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-card);
}

.video-feature-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-feature-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(99, 61, 255, 0.36), transparent 28%),
    radial-gradient(circle at left bottom, rgba(0, 193, 255, 0.26), transparent 32%);
  pointer-events: none;
}

.video-feature-media-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  max-width: 520px;
}

.video-feature-media-copy h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.video-feature-media-copy p {
  margin: 0;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
}

.play-pill {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  width: 92px;
  height: 68px;
  transform: translate(-50%, -50%);
  border-radius: 22px;
  background: #ff2222;
  box-shadow: 0 18px 50px rgba(255, 34, 34, 0.34);
}

.play-pill::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-38%, -50%);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #ffffff;
}

.chip-invert {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.video-embed {
  overflow: hidden;
  border-radius: 24px;
  background: #101010;
  aspect-ratio: 16 / 9;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-feature-card {
  display: grid;
  gap: 16px;
  height: 100%;
  padding: 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f7f8fb 0%, #eef1f7 100%);
}

.video-feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.news-card-media,
.sloduo-video-thumb {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 18px;
  background: var(--surface-soft);
  box-shadow: var(--shadow-card);
}

.news-card-media {
  aspect-ratio: 16 / 9;
}

.sloduo-video-thumb {
  aspect-ratio: 16 / 9;
}

.news-card-media img,
.sloduo-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--text-soft);
  font-size: 0.84rem;
}

.video-feature-card h3,
.news-card h3,
.stat-card h3,
.pick-card h3,
.sloduo-card h2,
.legal-panel h1 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
  text-transform: uppercase;
}

.video-feature-card p,
.news-card p,
.stat-card p,
.pick-card p,
.sloduo-card p,
.legal-panel p,
.legal-panel li {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.news-grid,
.stats-grid,
.pick-grid,
.sloduo-grid {
  display: grid;
  gap: 20px;
}

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

.news-card,
.stat-card,
.pick-card,
.sloduo-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background: #ffffff;
}

.news-card .chip-row,
.stat-card .chip-row,
.sloduo-card .chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

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

.stat-card strong {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
}

.stat-list {
  display: grid;
  gap: 10px;
}

.stat-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
}

.stat-line strong {
  font-size: 1rem;
}

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

.pick-card {
  overflow: hidden;
  padding: 0;
}

.pick-card-media {
  aspect-ratio: 1 / 1;
  background: var(--surface-soft);
}

.pick-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pick-card-copy {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.pick-card-copy h3 {
  font-size: 1.08rem;
}

.pick-price {
  font-size: 1.3rem;
  font-weight: 800;
}

.newsletter-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(0, 242, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #111111 0%, #1f2854 100%);
  color: #ffffff;
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.16);
}

.newsletter-copy {
  display: grid;
  gap: 14px;
}

.newsletter-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.newsletter-copy p {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.newsletter-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.newsletter-fields {
  display: grid;
  gap: 12px;
}

.newsletter-fields input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.newsletter-fields input::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.newsletter-actions {
  display: grid;
  gap: 12px;
}

.newsletter-actions .status-box {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.newsletter-actions .status-box.success {
  color: #dcfce7;
  background: rgba(20, 83, 45, 0.8);
}

.newsletter-actions .status-box.error {
  color: #fee2e2;
  background: rgba(127, 29, 29, 0.82);
}

.sloduo-page {
  display: grid;
  gap: 28px;
  padding: 34px 0 72px;
}

.sloduo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.82fr);
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(33, 16, 108, 0.96), rgba(12, 5, 39, 0.96)),
    url("./assets/images/hero.png") center center / cover no-repeat;
  color: #ffffff;
}

.sloduo-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.sloduo-hero p {
  margin: 0 0 18px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
}

.sloduo-hero-media {
  overflow: hidden;
  border-radius: 28px;
  min-height: 360px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.sloduo-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.sloduo-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sloduo-avatar {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  object-fit: cover;
}

.legal-shell {
  padding: 38px 0 72px;
}

.legal-panel {
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.legal-panel ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text-soft);
}

.assistant-launcher {
  position: fixed;
  right: 26px;
  bottom: 28px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  min-height: 58px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #111111, #2d2d2d);
  color: #ffffff;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.assistant-panel {
  position: fixed;
  right: 26px;
  bottom: 98px;
  z-index: 81;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(420px, calc(100vw - 26px));
  max-height: min(72vh, 760px);
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.assistant-panel.hide {
  display: none !important;
}

.assistant-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.assistant-header strong {
  display: block;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.assistant-header p {
  margin: 4px 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.assistant-close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--accent);
  font-size: 1.25rem;
}

.assistant-messages {
  display: grid;
  gap: 14px;
  padding: 18px;
  overflow-y: auto;
  background:
    radial-gradient(circle at top right, rgba(73, 96, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.assistant-bubble {
  display: grid;
  gap: 12px;
  max-width: 92%;
  padding: 14px 16px;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.assistant-bubble.user {
  justify-self: end;
  color: #ffffff;
  background: var(--accent);
}

.assistant-bubble.assistant {
  justify-self: start;
  background: #ffffff;
}

.assistant-bubble p {
  margin: 0;
  line-height: 1.6;
}

.assistant-result {
  display: grid;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.assistant-result:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.assistant-result strong {
  font-size: 0.98rem;
  text-transform: uppercase;
}

.assistant-links,
.assistant-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.assistant-links a,
.assistant-suggestion {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 700;
}

.assistant-compose {
  display: grid;
  gap: 12px;
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  background: #ffffff;
}

.assistant-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.assistant-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}

.assistant-form button {
  min-width: 96px;
}

.mobile-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  object-fit: cover;
}

.hide {
  display: none !important;
}

.mobile-bar {
  position: fixed;
  inset: auto 0 0;
  z-index: 65;
  display: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
}

.mobile-bar a {
  padding: 14px 4px;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-soft);
  white-space: nowrap;
}

.mobile-bar a[aria-current="page"] {
  color: var(--accent);
}

@media (max-width: 1120px) {
  .hero-slide,
  .video-feature-grid,
  .sloduo-hero,
  .newsletter-shell {
    grid-template-columns: 1fr;
  }

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

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

  .sloduo-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .auth-layout,
  .detail-layout,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .split-media {
    min-height: 420px;
  }

  .filters {
    position: static;
  }
}

@media (max-width: 860px) {
  .hero-slider-track {
    min-height: 0;
  }

  .hero-slide {
    position: relative;
    inset: auto;
    display: none;
    padding: 28px;
  }

  .hero-slide.is-active {
    display: grid;
  }

  .hero-media {
    min-height: 300px;
  }

  :root {
    --site-width: min(100vw - 34px, 900px);
  }

  .topbar-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 22px;
    padding: 14px 0;
  }

  .nav-main {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
  }

  .nav-right {
    gap: 16px;
  }

  .subscribe-button {
    min-height: 46px;
    padding: 0 22px;
  }

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

  .creator-grid {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface-soft);
  }

  .field-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .section-shell,
  .sloduo-hero,
  .newsletter-shell {
    padding: 22px;
    border-radius: 24px;
  }

  .news-grid,
  .stats-grid,
  .pick-grid,
  .sloduo-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-slider-controls {
    right: 16px;
    bottom: 16px;
  }

  .hero-slider-controls button {
    width: 40px;
    height: 40px;
  }

  :root {
    --site-width: calc(100vw - 24px);
  }

  body {
    padding-bottom: 72px;
  }

  .topbar-row {
    min-height: 74px;
  }

  .brand-title {
    font-size: 1rem;
  }

  .nav-main {
    display: none;
  }

  .nav-right .subscribe-button {
    display: none;
  }

  .nav-right {
    gap: 10px;
  }

  .video-frame {
    border-width: 8px;
  }

  .play-chip {
    width: 82px;
    height: 60px;
  }

  .play-chip::before {
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 18px;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-name {
    font-size: 1.08rem;
  }

  .panel,
  .auth-panel {
    padding: 22px;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .footer {
    padding-bottom: 90px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mobile-bar {
    display: grid;
  }

  .assistant-launcher {
    right: 14px;
    bottom: 86px;
    min-width: 124px;
    min-height: 52px;
    padding: 0 16px;
    font-size: 0.82rem;
  }

  .assistant-panel {
    right: 12px;
    bottom: 148px;
    width: calc(100vw - 24px);
    max-height: min(68vh, 720px);
  }
}
