/*
 * Base design system — modelled on jeffrizall.com ("Mist & Abyss").
 * Each site overrides the tokens in its own <style> block: colours, display
 * font and a few radii. Everything else follows from here.
 */

@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-Variable.woff2") format("woff2");
  font-weight: 200 700;
  font-display: swap;
}

/* ---------- Tokens ---------- */

:root {
  --bg: #f2f4f7;
  --ink: #1c1e22;
  --abyss: #0a1a2f;
  --accent: #2f5bff;
  --accent-ink: #ffffff;
  --link: var(--accent);
  --orb-a: #9ccfe8;
  --orb-b: #c7b6f2;
  --orb-opacity: 0.75;

  --muted: color-mix(in srgb, var(--ink) 64%, transparent);
  --hairline: color-mix(in srgb, var(--ink) 11%, transparent);
  --on-abyss: #ffffff;
  --on-abyss-muted: rgb(255 255 255 / 0.68);
  --hairline-abyss: rgb(255 255 255 / 0.14);
  --card: #ffffff;
  --media-bg: #d9dde3;
  --seg-bg: color-mix(in srgb, var(--ink) 7%, transparent);

  --font-body: "General Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: var(--font-body);
  --display-weight: 600;
  --display-tracking: -0.035em;
  --h2-tracking: -0.025em;
  --display-leading: 0.96;
  --h2-leading: 1;

  --text-display: clamp(3rem, 9vw, 8.5rem);
  --text-h2: clamp(2.25rem, 5vw, 4.5rem);
  --text-h3: clamp(1.5rem, 2.4vw, 2rem);
  --text-lead: clamp(1.1875rem, 1.6vw, 1.4375rem);
  --text-body: 1.125rem;
  --text-small: 0.875rem;

  --r-pill: 999px;
  --r-media: 32px;
  --r-panel: 24px;
  --r-card: 20px;
  --r-chip: 12px;

  --section-y: clamp(96px, 14vw, 200px);
  --gutter: 20px;
  --max: 1280px;

  --shadow-float: 0 12px 40px rgb(10 26 47 / 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: light;
}

@media (min-width: 768px) {
  :root {
    --gutter: 24px;
  }
}

:root[data-theme="dark"] {
  --bg: #070c15;
  --ink: #eef1f5;
  --abyss: #0c1c33;
  --card: #0e1623;
  --media-bg: #111a28;
  --orb-opacity: 0.22;
  --link: #86a2ff;
  color-scheme: dark;
}

/* ---------- Reset & base ---------- */

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

html {
  background: var(--bg);
  color: var(--ink);
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.55;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

h1, h2, h3, h4, h5, p, ul, ol, dl, dd, figure, blockquote {
  margin: 0;
}

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

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

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

button {
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
}

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

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

.on-abyss :focus-visible {
  outline-color: #fff;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 14px;
  font-weight: 500;
}
.skip:focus {
  top: 16px;
}

/* Scroll-blended page colour (light ↔ abyss around dark sections) */
#backdrop {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--bg);
  pointer-events: none;
}
#backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--abyss);
  opacity: var(--blend, 0);
}

.i {
  width: 18px;
  height: 18px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Layout ---------- */

.container {
  width: 100%;
  max-width: calc(var(--max) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-y);
  position: relative;
}

.split {
  display: grid;
  gap: 24px 32px;
}
@media (min-width: 768px) {
  .split {
    grid-template-columns: 7fr 5fr;
    align-items: end;
  }
}

.side {
  display: grid;
  gap: 48px;
}
@media (min-width: 1024px) {
  .side {
    grid-template-columns: 4fr 8fr;
    gap: 32px;
  }
}

.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: clamp(48px, 6vw, 64px); }
.mt-80 { margin-top: clamp(56px, 7vw, 80px); }

/* ---------- Type ---------- */

.display {
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  line-height: var(--display-leading);
}

.h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: var(--display-weight);
  letter-spacing: var(--h2-tracking);
  line-height: var(--h2-leading);
}

.h3 {
  font-size: var(--text-h3);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.h4 {
  font-size: clamp(1.125rem, 1.5vw, 1.3125rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.lead {
  font-size: var(--text-lead);
  line-height: 1.5;
}

.ui {
  font-size: var(--text-small);
  font-weight: 500;
  line-height: 1.3;
}

.muted {
  color: var(--muted);
}
.on-abyss .muted {
  color: var(--on-abyss-muted);
}

.measure {
  max-width: 65ch;
}

.num {
  font-variant-numeric: tabular-nums;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--muted);
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.on-abyss .eyebrow {
  color: var(--on-abyss-muted);
}

.text-link {
  color: var(--link);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--link) 35%, transparent);
  text-underline-offset: 4px;
  transition: text-decoration-color 0.2s;
}
.text-link:hover {
  text-decoration-color: currentColor;
}

/* Masked line reveal */
.rl {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.rl > span {
  display: block;
}
@media (prefers-reduced-motion: no-preference) {
  .js .rl > span {
    transform: translateY(110%);
    transition: transform 1.1s var(--ease);
  }
  .js .is-in .rl > span {
    transform: none;
  }
  .js [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
    transition-delay: var(--d, 0s);
  }
  .js [data-reveal].is-in {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  user-select: none;
  transition: filter 0.2s, background-color 0.2s, box-shadow 0.2s, color 0.2s, transform 0.4s var(--ease);
}
.btn:active {
  transform: scale(0.97);
}
.btn-sm {
  min-height: 44px;
  padding: 0 20px;
  font-size: 14px;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn-primary:hover {
  filter: brightness(1.12);
}
.btn-secondary {
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--hairline);
}
.btn-secondary:hover {
  background: color-mix(in srgb, var(--ink) 6%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--ink) 30%, transparent);
}
.btn-light {
  background: #fff;
  color: var(--abyss);
}
.btn-light:hover {
  filter: brightness(0.96);
}
.btn-outline-light {
  color: #fff;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.3);
}
.btn-outline-light:hover {
  background: rgb(255 255 255 / 0.12);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.6);
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: background-color 0.2s;
}
.icon-btn:hover {
  background: color-mix(in srgb, currentColor 10%, transparent);
}

/* ---------- Liquid glass ---------- */

.glass {
  position: relative;
  isolation: isolate;
  background: linear-gradient(135deg, rgb(255 255 255 / 0.55), rgb(255 255 255 / 0.22));
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgb(255 255 255 / 0.5);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.75),
    inset 0 -1px 0 rgb(255 255 255 / 0.12),
    var(--shadow-float);
}
.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(140px circle at var(--mx, 50%) var(--my, 0%), rgb(255 255 255 / 0.5), rgb(255 255 255 / 0) 70%);
  opacity: 0.7;
}
.glass-dark,
[data-theme="dark"] .glass {
  background: linear-gradient(135deg, rgb(12 20 34 / 0.62), rgb(12 20 34 / 0.46));
  border-color: rgb(255 255 255 / 0.2);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.3),
    inset 0 -1px 0 rgb(255 255 255 / 0.06),
    0 12px 40px rgb(0 0 0 / 0.3);
}
.glass-dark::before,
[data-theme="dark"] .glass::before {
  background: radial-gradient(140px circle at var(--mx, 50%) var(--my, 0%), rgb(255 255 255 / 0.18), rgb(255 255 255 / 0) 70%);
}
@media (max-width: 767px), (pointer: coarse) {
  .glass {
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
  }
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass {
    background: rgb(242 244 247 / 0.94);
  }
  .glass-dark {
    background: rgb(10 26 47 / 0.94);
  }
}

/* ---------- Navigation ---------- */

.nav {
  position: fixed;
  inset: 16px 0 auto;
  z-index: 50;
  display: none;
  justify-content: center;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .nav {
    display: flex;
  }
}
.nav-pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 8px 8px 22px;
  border-radius: var(--r-pill);
  color: var(--ink);
  transition: padding 0.5s var(--ease), gap 0.5s var(--ease), background 0.5s, border-color 0.5s, color 0.3s;
}
.nav-pill[data-compact="true"] {
  padding: 5px 5px 5px 18px;
  gap: 2px;
}
.nav-pill.is-dark {
  color: #fff;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-right: 10px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  white-space: nowrap;
}
.brand svg {
  width: 24px;
  height: 24px;
  flex: none;
}
.nav-links {
  display: flex;
  align-items: center;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.72;
  transition: opacity 0.2s;
}
.nav-links a:hover,
.nav-links a[aria-current="true"] {
  opacity: 1;
}
.nav-tools {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Brand on small screens (scrolls away with the page) */
.m-brand {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .m-brand {
    display: none;
  }
}

.mnav {
  position: fixed;
  inset: auto 0 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 0 12px max(12px, env(safe-area-inset-bottom));
  pointer-events: none;
}
@media (min-width: 1024px) {
  .mnav {
    display: none;
  }
}
.mnav-pill {
  pointer-events: auto;
  width: 100%;
  max-width: 440px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  padding: 6px 6px 6px 8px;
  border-radius: var(--r-pill);
  color: var(--ink);
}
.mnav-pill.is-dark {
  color: #fff;
}
.mnav-pill nav {
  display: flex;
  align-items: center;
}
.mnav-pill nav a,
.mnav-pill nav button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
}

.scrim {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgb(6 12 22 / 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.scrim.open {
  opacity: 1;
  pointer-events: auto;
}
.sheet {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 70;
  max-width: 440px;
  margin-inline: auto;
  padding: 12px;
  border-radius: 28px;
  background: color-mix(in srgb, var(--bg) 90%, transparent) !important;
  transform: translateY(115%) scale(0.96);
  transform-origin: bottom center;
  transition: transform 0.6s var(--ease);
}
.sheet.open {
  transform: none;
}
.sheet-links a {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 14px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.sheet-links a:hover {
  background: color-mix(in srgb, var(--ink) 8%, transparent);
}
.sheet-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 8px;
  padding: 8px 16px 0;
  border-top: 1px solid var(--hairline);
}
.sheet-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--hairline);
}
.sheet-actions .btn {
  flex: 1;
}

/* Theme toggle icon swap */
.theme-toggle .moon {
  display: none;
}
[data-theme="dark"] .theme-toggle .sun {
  display: none;
}
[data-theme="dark"] .theme-toggle .moon {
  display: block;
}

.theme-vt::view-transition-old(root),
.theme-vt::view-transition-new(root) {
  animation: none;
  mix-blend-mode: normal;
}
.theme-vt::view-transition-new(root) {
  z-index: 1;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  isolation: isolate;
  padding-top: 112px;
}
@media (min-width: 768px) {
  .hero {
    padding-top: 150px;
  }
}
@media (min-width: 1024px) {
  .hero {
    padding-top: 168px;
  }
}
.orbs {
  position: absolute;
  inset: 0 0 auto;
  height: 90vh;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: var(--orb-opacity);
  will-change: transform;
}
.orb-a {
  left: -10vw;
  top: -12vh;
  width: 55vh;
  height: 55vh;
  background: var(--orb-a);
  animation: orb-a 26s ease-in-out infinite alternate;
}
.orb-b {
  right: -8vw;
  top: 18vh;
  width: 48vh;
  height: 48vh;
  background: var(--orb-b);
  animation: orb-b 32s ease-in-out infinite alternate;
}
@keyframes orb-a {
  to {
    transform: translate3d(12vw, 6vh, 0) scale(1.15);
  }
}
@keyframes orb-b {
  to {
    transform: translate3d(-10vw, -4vh, 0) scale(0.9);
  }
}

.hero-title {
  max-width: 11ch;
}
.hero-row {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .hero-row {
    margin-top: 48px;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.hero-row .lead {
  max-width: 38ch;
  color: var(--muted);
}

.hero-media-wrap {
  position: relative;
  margin-top: 56px;
}
@media (min-width: 768px) {
  .hero-media-wrap {
    margin-top: 80px;
  }
}
.hero-media {
  --p: 0;
  position: relative;
  margin-inline: auto;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--media-bg);
  transform-origin: top center;
  border-radius: calc(var(--r-media) * (1 - var(--p)));
  transform: scale(calc(0.9 + 0.1 * var(--p)));
  will-change: transform;
}
@media (min-width: 640px) {
  .hero-media {
    aspect-ratio: 4 / 3;
  }
}
@media (min-width: 1024px) {
  .hero-media {
    aspect-ratio: 16 / 9;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-media {
    transform: none;
    border-radius: 0;
  }
}
.reel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s var(--ease), transform 7s linear;
}
.reel img.on {
  opacity: 1;
  transform: scale(1);
}
.media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(0 0 0 / 0.38), rgb(0 0 0 / 0) 42%);
  pointer-events: none;
}
.media-badge {
  position: absolute;
  left: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: calc(100% - 32px);
  padding: 10px 18px 10px 10px;
  border-radius: var(--r-pill);
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
}
.media-badge .dot {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
}
.media-badge strong {
  display: block;
  font-weight: 600;
}
.media-badge span {
  opacity: 0.78;
}
.hero-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
}
.reel-dots {
  display: flex;
  gap: 6px;
}
.reel-dots button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
}
.reel-dots button::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--hairline);
  transition: width 0.5s var(--ease), background 0.3s;
}
.reel-dots button[aria-current="true"]::before {
  width: 28px;
  background: var(--ink);
}

/* ---------- Proof ---------- */

.marquee {
  position: relative;
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.marquee > ul {
  display: flex;
  flex: none;
  align-items: center;
  gap: clamp(48px, 5vw, 72px);
  padding-right: clamp(48px, 5vw, 72px);
  animation: marquee 48s linear infinite;
}
.marquee:hover > ul {
  animation-play-state: paused;
}
@keyframes marquee {
  to {
    transform: translate3d(-100%, 0, 0);
  }
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.logo:hover {
  opacity: 1;
}
.logo svg {
  width: 28px;
  height: 28px;
}
.logo.serif {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}
.logo.caps {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95em;
}

.facts {
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) {
  .facts {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .facts.four {
    grid-template-columns: repeat(4, 1fr);
  }
}
.fact {
  border-top: 1px solid var(--hairline);
  padding-top: 20px;
}
.on-abyss .fact {
  border-color: var(--hairline-abyss);
}
.fact-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: var(--display-weight);
  letter-spacing: -0.035em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.fact p {
  margin-top: 12px;
  max-width: 30ch;
  color: var(--muted);
}
.on-abyss .fact p {
  color: var(--on-abyss-muted);
}

.next-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-top: clamp(56px, 7vw, 88px);
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.next-link:hover {
  color: var(--ink);
}
.on-abyss .next-link {
  color: var(--on-abyss-muted);
}
.on-abyss .next-link:hover {
  color: #fff;
}
.next-link .i {
  transition: transform 0.4s var(--ease);
}
.next-link:hover .i {
  transform: translateY(3px);
}

/* ---------- Dark surface ---------- */

.on-abyss {
  background: var(--abyss);
  color: var(--on-abyss);
  --hairline: var(--hairline-abyss);
  --seg-bg: rgb(255 255 255 / 0.1);
}

/* ---------- Showcase (sticky index + chapters) ---------- */

.showcase {
  margin-top: 64px;
}
.showcase-aside {
  display: none;
}
.chapters {
  display: grid;
  gap: 80px;
}
.chapter {
  display: flex;
  flex-direction: column;
  gap: 24px;
  scroll-margin-top: 18vh;
}
.chapter-media {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  padding-bottom: 4px;
  scrollbar-width: none;
}
.chapter-media::-webkit-scrollbar {
  display: none;
}
.ph {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-card);
  background: rgb(127 127 127 / 0.12);
  aspect-ratio: 4 / 3;
}
.ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.8s var(--ease);
}
.chapter-media .ph {
  flex: 0 0 84%;
  scroll-snap-align: start;
}
@media (min-width: 640px) {
  .chapter-media .ph {
    flex-basis: 62%;
  }
}
.chapter-info .h3 {
  margin-top: 6px;
}
.chapter-info .lead {
  margin-top: 16px;
  max-width: 36ch;
}
.specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}
.specs dt {
  font-size: var(--text-small);
  color: var(--muted);
}
.on-abyss .specs dt {
  color: var(--on-abyss-muted);
}
.specs dd {
  margin-top: 4px;
  font-weight: 500;
}

@media (min-width: 1024px) {
  .showcase {
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 32px;
    margin-top: 80px;
  }
  .showcase-aside {
    display: block;
  }
  .showcase-sticky {
    position: sticky;
    top: 18vh;
  }
  .chapters {
    gap: 18vh;
    padding-bottom: 10vh;
  }
  .chapter-info {
    display: none;
  }
  .chapter-media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 0;
    padding: 0;
    overflow: visible;
  }
  .chapter-media .ph:first-child {
    grid-column: 1 / -1;
  }
  .chapter-media:hover .ph img {
    scale: 1.03;
  }
}
.index {
  display: grid;
  gap: 2px;
  margin-top: 20px;
}
.index a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 4px 0;
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  opacity: 0.55;
  transition: opacity 0.3s;
}
.index a:hover {
  opacity: 0.85;
}
.index a[aria-current="true"] {
  opacity: 1;
}
.index a::before {
  content: "";
  flex: none;
  width: 12px;
  height: 1px;
  background: currentColor;
  transition: width 0.5s var(--ease);
}
.index a[aria-current="true"]::before {
  width: 32px;
}
.detail {
  position: relative;
  min-height: 17rem;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), filter 0.3s var(--ease);
}
.detail.swap {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(4px);
}
.detail .h3 {
  display: none;
}
.detail .lead {
  margin-top: 14px;
  max-width: 36ch;
}

/* ---------- Accordion ---------- */

.acc {
  border-top: 1px solid var(--hairline);
}
.acc:last-child {
  border-bottom: 1px solid var(--hairline);
}
.acc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  cursor: pointer;
  list-style: none;
  font-size: var(--text-h3);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.acc summary::-webkit-details-marker {
  display: none;
}
.acc summary .n {
  display: inline-block;
  min-width: 2.6em;
  font-size: var(--text-small);
  font-weight: 500;
  letter-spacing: 0;
  color: var(--muted);
  vertical-align: middle;
  font-variant-numeric: tabular-nums;
}
.acc-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--hairline);
  transition: transform 0.5s var(--ease), background-color 0.3s, color 0.3s;
}
.acc[open]:not(.closing) .acc-icon {
  transform: rotate(45deg);
  background: var(--ink);
  color: var(--bg);
  box-shadow: none;
}
.on-abyss .acc[open]:not(.closing) .acc-icon {
  background: #fff;
  color: var(--abyss);
}
.acc-body {
  overflow: hidden;
}
.acc-content {
  padding-bottom: 36px;
}
.acc-grid {
  display: grid;
  gap: 28px;
}
@media (min-width: 768px) {
  .acc-grid {
    grid-template-columns: 3fr 2fr;
    gap: 32px;
  }
}
.acc-sm summary {
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  font-weight: 500;
  padding: 22px 0;
}
.acc-sm .acc-content {
  padding-bottom: 28px;
  max-width: 62ch;
  color: var(--muted);
}
.acc-sm .acc-icon {
  width: 32px;
  height: 32px;
}
.dl-list {
  display: grid;
  gap: 20px;
}
.dl-list dt {
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--muted);
}
.dl-list dd {
  margin-top: 8px;
}
.dl-list li + li {
  margin-top: 6px;
}

/* ---------- Process (horizontal on desktop) ---------- */

.process {
  overflow-x: clip;
}
.process-bar {
  position: relative;
  display: none;
  height: 1px;
  margin-top: 64px;
  background: var(--hairline);
}
.process-bar i {
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform-origin: left;
  transform: scaleX(var(--p, 0));
}
.steps {
  position: relative;
  display: grid;
  gap: 40px;
  margin-top: 48px;
  padding-left: 32px;
  border-left: 1px solid var(--hairline);
}
.steps > li {
  position: relative;
}
.steps > li::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink);
}
.step-n {
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.steps .h3 {
  margin-top: 12px;
}
.steps p:not(.step-n) {
  margin-top: 14px;
  max-width: 44ch;
  color: var(--muted);
}
.step-meta {
  display: inline-flex;
  margin-top: 18px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  box-shadow: inset 0 0 0 1px var(--hairline);
}
@media (min-width: 1024px) {
  .process.hs {
    padding-block: 0;
  }
  .process.hs .process-sticky {
    position: sticky;
    top: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: 96px;
  }
  .process-bar {
    display: block;
  }
  .steps {
    display: flex;
    gap: 0;
    margin-top: 48px;
    padding: 0;
    border: 0;
    transform: translate3d(calc(var(--x, 0) * -1px), 0, 0);
    will-change: transform;
  }
  .steps > li {
    flex: none;
    width: 38vw;
    max-width: 520px;
    padding-right: 64px;
  }
  .steps > li::before {
    display: none;
  }
}

/* ---------- About ---------- */

.about {
  display: grid;
  gap: 48px;
}
@media (min-width: 1024px) {
  .about {
    grid-template-columns: 5fr 1fr 6fr;
    gap: 0 32px;
  }
  .about > :last-child {
    grid-column: 3;
    padding-top: 32px;
  }
}
.frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-media);
  background: var(--media-bg);
  aspect-ratio: 4 / 5;
}
.frame > img,
.frame > .par {
  position: absolute;
  inset: -10% 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
}
.frame .par img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prose {
  display: grid;
  gap: 20px;
  max-width: 62ch;
}

/* ---------- Cards ---------- */

.cards {
  display: grid;
  gap: 20px;
}
@media (min-width: 700px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .cards.three {
    grid-template-columns: repeat(3, 1fr);
  }
  .cards.four {
    grid-template-columns: repeat(4, 1fr);
  }
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--r-panel);
  background: var(--card);
  box-shadow: 0 0 0 1px var(--hairline);
}
.on-abyss .card {
  background: rgb(255 255 255 / 0.04);
}
.card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--media-bg);
}
.card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.8s var(--ease);
}
.card:hover .card-media img {
  scale: 1.04;
}
.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 22px 24px;
}
.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
}
.tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}
.tile {
  border-radius: var(--r-panel);
  padding: clamp(24px, 3vw, 36px);
  background: var(--card);
  box-shadow: 0 0 0 1px var(--hairline);
}
.on-abyss .tile {
  background: rgb(255 255 255 / 0.04);
}
.tile-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
}
.tile-icon .i {
  width: 22px;
  height: 22px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  box-shadow: inset 0 0 0 1px var(--hairline);
  transition: background-color 0.25s, color 0.25s, box-shadow 0.25s;
}
button.chip:hover {
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--ink) 35%, transparent);
}
.chip[aria-pressed="true"] {
  background: var(--ink);
  color: var(--bg);
  box-shadow: none;
}
.chip .i {
  width: 16px;
  height: 16px;
}

/* ---------- Segmented control ---------- */

.seg {
  position: relative;
  display: inline-flex;
  padding: 4px;
  border-radius: var(--r-pill);
  background: var(--seg-bg);
}
.seg [role="tab"] {
  position: relative;
  z-index: 1;
  min-height: 42px;
  padding: 0 20px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0.78;
  transition: color 0.35s, opacity 0.35s;
}
.seg [role="tab"][aria-selected="true"] {
  opacity: 1;
  color: var(--bg);
}
.on-abyss .seg [role="tab"][aria-selected="true"] {
  color: var(--abyss);
}
.seg-ind {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 0;
  border-radius: var(--r-pill);
  background: var(--ink);
}
.on-abyss .seg-ind {
  background: #fff;
}
.seg.ready .seg-ind {
  transition: transform 0.55s var(--ease), width 0.55s var(--ease);
}
[role="tabpanel"]:not([hidden]) {
  animation: panel-in 0.5s var(--ease);
}
@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}

/* ---------- Forms ---------- */

.form-grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.form-grid .full {
  grid-column: 1 / -1;
}
.field {
  display: grid;
  gap: 8px;
}
.field > span {
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--muted);
}
.on-abyss .field > span {
  color: var(--on-abyss-muted);
}
.input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 0;
  border-radius: 14px;
  background: var(--card);
  font-size: 16px;
  box-shadow: inset 0 0 0 1px var(--hairline);
  transition: box-shadow 0.2s var(--ease), background-color 0.2s;
}
.input::placeholder {
  color: var(--muted);
  opacity: 0.8;
}
.input:focus {
  outline: none;
  box-shadow: inset 0 0 0 1.5px var(--accent), 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent);
}
.on-abyss .input {
  background: rgb(255 255 255 / 0.06);
  color: #fff;
  color-scheme: dark;
}
.on-abyss .input::placeholder {
  color: rgb(255 255 255 / 0.5);
}
.on-abyss .input:focus {
  box-shadow: inset 0 0 0 1.5px #fff, 0 0 0 4px rgb(255 255 255 / 0.12);
}
textarea.input {
  min-height: 128px;
  padding: 14px 16px;
  line-height: 1.5;
  resize: vertical;
}
select.input {
  appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 4.5l3 3 3-3' fill='none' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.on-abyss select.input option {
  color: #111;
}
.form-note {
  font-size: 13px;
  color: var(--muted);
}
.on-abyss .form-note {
  color: var(--on-abyss-muted);
}
.form-success {
  padding: 8px 0;
}
.form-success .check {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
}
.form-success .check .i {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
  height: 28px;
  cursor: pointer;
}
.on-abyss input[type="range"] {
  accent-color: #fff;
}

/* ---------- Panels ---------- */

.panel {
  border-radius: var(--r-panel);
  padding: 24px;
  background: var(--card);
  box-shadow: 0 0 0 1px var(--hairline);
}
@media (min-width: 768px) {
  .panel {
    padding: 40px;
  }
}
.on-abyss .panel {
  background: rgb(255 255 255 / 0.04);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.1);
}

/* ---------- Quotes ---------- */

.slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin-inline: calc(var(--gutter) * -1);
  padding: 2px var(--gutter);
  scrollbar-width: none;
  scroll-padding-inline: var(--gutter);
}
.slider::-webkit-scrollbar {
  display: none;
}
.quote {
  flex: 0 0 min(86%, 500px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--r-panel);
  background: var(--card);
  box-shadow: 0 0 0 1px var(--hairline);
}
.on-abyss .quote {
  background: rgb(255 255 255 / 0.05);
}
.quote blockquote {
  font-size: clamp(1.125rem, 1.5vw, 1.3125rem);
  line-height: 1.5;
  letter-spacing: -0.005em;
}
.person {
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: none;
  overflow: hidden;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  color: var(--accent);
  font-size: 15px;
  font-weight: 600;
}
.on-abyss .avatar {
  background: rgb(255 255 255 / 0.12);
  color: #fff;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stars {
  display: flex;
  gap: 2px;
  color: var(--accent);
}
.stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.slider-nav {
  display: flex;
  gap: 8px;
}
.slider-nav button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--hairline);
  transition: background-color 0.2s;
}
.slider-nav button:hover {
  background: color-mix(in srgb, var(--ink) 7%, transparent);
}
.on-abyss .slider-nav button:hover {
  background: rgb(255 255 255 / 0.1);
}

/* ---------- Team ---------- */

.team {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 16px;
}
@media (min-width: 1024px) {
  .team {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
.team .ph {
  aspect-ratio: 4 / 5;
  background: var(--media-bg);
}
.team .ph img {
  filter: grayscale(1);
  transition: filter 0.6s var(--ease), scale 0.8s var(--ease);
}
.team li:hover .ph img {
  filter: grayscale(0);
  scale: 1.03;
}
.team h3 {
  margin-top: 16px;
}

/* ---------- Posts ---------- */

.posts {
  display: grid;
  gap: 40px 20px;
}
@media (min-width: 768px) {
  .posts {
    grid-template-columns: repeat(3, 1fr);
  }
}
.post .ph {
  aspect-ratio: 16 / 11;
  background: var(--media-bg);
}
.post:hover .ph img {
  scale: 1.04;
}
.post .meta {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  font-size: var(--text-small);
  color: var(--muted);
}
.post h3 {
  margin-top: 8px;
}

/* ---------- Plans ---------- */

.plans {
  display: grid;
  gap: 20px;
}
@media (min-width: 900px) {
  .plans {
    grid-template-columns: repeat(3, 1fr);
  }
}
.plan {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--r-panel);
  background: var(--card);
  box-shadow: 0 0 0 1px var(--hairline);
}
.plan.featured {
  background: var(--abyss);
  color: #fff;
  box-shadow: none;
  --hairline: var(--hairline-abyss);
}
.plan.featured .muted {
  color: var(--on-abyss-muted);
}
.plan .price {
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 3.6vw, 3rem);
  font-weight: var(--display-weight);
  letter-spacing: -0.03em;
  line-height: 1;
}
.plan .price small {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  opacity: 0.65;
}
.ticks {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}
.ticks li {
  display: flex;
  gap: 12px;
  font-size: 16px;
}
.ticks .i {
  margin-top: 3px;
  color: var(--accent);
}
.plan.featured .ticks .i {
  color: #fff;
}
.plan .ticks {
  margin-bottom: 32px;
}
.plan .btn {
  margin-top: auto;
  align-self: flex-start;
}
.plan-flag {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: rgb(255 255 255 / 0.14);
  font-size: 13px;
  font-weight: 500;
}

/* ---------- CTA & footer ---------- */

.cta {
  display: grid;
  gap: 56px;
}
@media (min-width: 1024px) {
  .cta {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.footer {
  padding-bottom: 120px;
}
@media (min-width: 1024px) {
  .footer {
    padding-bottom: 48px;
  }
}
.footer-top {
  display: grid;
  gap: 40px;
  padding-top: 48px;
  border-top: 1px solid var(--hairline-abyss);
}
@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 5fr 4fr 3fr;
  }
}
.footer-links {
  display: grid;
  gap: 4px;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: var(--on-abyss-muted);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 64px;
  font-size: var(--text-small);
  color: rgb(255 255 255 / 0.5);
}
.footer-word {
  margin-top: 72px;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 15vw, 14rem);
  font-weight: var(--display-weight);
  letter-spacing: -0.05em;
  line-height: 0.8;
  color: rgb(255 255 255 / 0.06);
  white-space: nowrap;
  overflow: hidden;
  user-select: none;
}
.demo-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.16);
  font-size: 12px;
}

/* ---------- Misc ---------- */

.divider {
  height: 1px;
  background: var(--hairline);
}
.pill-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  border-radius: var(--r-pill);
  box-shadow: inset 0 0 0 1px var(--hairline);
  font-size: 14px;
  font-weight: 500;
}
.pill-note b {
  padding: 3px 10px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 12px;
  font-weight: 600;
}
.live-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34c759;
}
.live-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  animation: ping 2s var(--ease) infinite;
}
@keyframes ping {
  to {
    transform: scale(2.8);
    opacity: 0;
  }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .orb,
  .marquee > ul,
  .live-dot::after {
    animation: none !important;
  }
  .marquee {
    flex-wrap: wrap;
    justify-content: center;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .marquee > ul {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 24px;
    padding-inline: var(--gutter);
  }
  .marquee > ul[aria-hidden] {
    display: none;
  }
  .reel img {
    transition: opacity 0.3s;
    transform: none;
  }
  ::view-transition-old(*),
  ::view-transition-new(*) {
    animation-duration: 0s !important;
  }
}
