/*
  Woven Looks — marketing site.

  Same material as the storefront widget: a translucent, blurred, saturated
  pane with a specular rim and a soft cast shadow. Two things carry it:

  1. The ambient layer. Glass over a flat colour is a grey box — it needs
     something behind it worth refracting, so drifting colour fields sit under
     the entire page and every panel samples them.

  2. Restraint on backdrop-filter. Only the shell surfaces get a real one;
     cards fake the material with translucency plus rim lighting. Nesting blurs
     re-blurs an already-composited layer: a second full-screen pass for a
     muddier result.

  Type is the platform's rounded grotesque, matching the widget. No webfont —
  the two surfaces should feel like one product, and this costs nothing.
*/

:root {
  --ink: #10131a;
  --ink-soft: #4f5867;
  --ink-faint: #6d7788;
  --ink-ghost: #9aa4b3;

  --canvas: #f4f1ee;

  /* Material */
  --pane: rgba(255, 255, 255, 0.62);
  --pane-hi: rgba(255, 255, 255, 0.78);
  --rim: rgba(255, 255, 255, 0.85);
  --rim-dim: rgba(255, 255, 255, 0.6);
  --hairline: rgba(16, 19, 26, 0.1);
  --well: rgba(16, 19, 26, 0.05);

  /* The one non-neutral thing here. */
  --accent: #a84d0d;
  --accent-lift: #d9761f;
  --accent-glow: rgba(217, 118, 31, 0.26);

  --r-lg: 30px;
  --r-md: 22px;
  --r-sm: 14px;
  --r-pill: 999px;

  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --spring: cubic-bezier(0.34, 1.42, 0.5, 1);

  --raise: 0 2px 12px -6px rgba(10, 13, 20, 0.28);
  --lift: 0 28px 70px -28px rgba(10, 13, 20, 0.42);

  --bound: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

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

html {
  scroll-behavior: smooth;
  /* The sticky rail would otherwise cover whatever an anchor lands on. */
  scroll-padding-top: 6.5rem;
}

body {
  margin: 0;
  font-family: ui-rounded, "SF Pro Rounded", "Segoe UI Variable Display", "Segoe UI",
    system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.035em;
  line-height: 1.04;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.75rem, 1.6rem + 4.6vw, 5rem);
  font-weight: 650;
}

h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

h2 {
  font-size: clamp(1.9rem, 1.2rem + 2.4vw, 3rem);
  font-weight: 620;
}

h3 {
  font-size: 1.1875rem;
  font-weight: 640;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: #fff;
  border-radius: 0 0 var(--r-sm) 0;
}

.skip:focus {
  left: 0;
}

/* --- Ambient ------------------------------------------------------------- */

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.ambient__bloom {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  will-change: transform;
}

.ambient__bloom--copper {
  top: -14vh;
  left: -6vw;
  width: 58vw;
  height: 58vw;
  background: radial-gradient(circle, #e08b3c, transparent 68%);
  animation: drift-a 34s ease-in-out infinite alternate;
}

.ambient__bloom--plum {
  top: 34vh;
  right: -16vw;
  width: 62vw;
  height: 62vw;
  background: radial-gradient(circle, #8d5c8f, transparent 68%);
  animation: drift-b 42s ease-in-out infinite alternate;
}

.ambient__bloom--jade {
  bottom: -22vh;
  left: 22vw;
  width: 54vw;
  height: 54vw;
  background: radial-gradient(circle, #4d8f7e, transparent 68%);
  opacity: 0.36;
  animation: drift-c 38s ease-in-out infinite alternate;
}

/* Fine noise keeps the big soft gradients from banding on wide displays. */
.ambient__grain {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

@keyframes drift-a {
  to {
    transform: translate3d(9vw, 7vh, 0) scale(1.14);
  }
}
@keyframes drift-b {
  to {
    transform: translate3d(-11vw, -8vh, 0) scale(1.1);
  }
}
@keyframes drift-c {
  to {
    transform: translate3d(7vw, -6vh, 0) scale(1.18);
  }
}

/* --- Glass primitives ---------------------------------------------------- */

/*
  --x/--y are written by the pointer tracker. The reflection is absent at rest:
  a standing gradient over a tinted surface reads as a 2003 gel button, not as
  glass. Light should arrive with the cursor.
*/
[data-sheen] {
  position: relative;
  isolation: isolate;
}

[data-sheen]::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(
    260px 180px at var(--x, 50%) var(--y, 50%),
    rgba(255, 255, 255, 0.4),
    transparent 70%
  );
  transition: opacity 0.4s var(--ease);
}

[data-sheen]:hover::after {
  opacity: 1;
}

.card {
  position: relative;
  padding: 1.75rem;
  background: var(--pane);
  border: 1px solid var(--rim-dim);
  border-radius: var(--r-md);
  box-shadow:
    inset 0 1px 0 var(--rim),
    var(--raise);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  font: inherit;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition:
    transform 0.4s var(--spring),
    box-shadow 0.3s var(--ease);
}

.btn--lg {
  min-height: 56px;
  padding: 0.875rem 2rem;
  font-size: 1.0625rem;
}

.btn--ink {
  color: #fff;
  background: #12161d;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 12px 26px -14px rgba(10, 13, 20, 0.75);
}

.btn--glass {
  color: var(--ink);
  background: var(--pane-hi);
  border-color: var(--hairline);
  box-shadow:
    inset 0 1px 0 var(--rim),
    var(--raise);
}

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

.btn:active {
  transform: translateY(0) scale(0.985);
}

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

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

/* --- Rail ---------------------------------------------------------------- */

.rail {
  position: sticky;
  top: 0.875rem;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: min(var(--bound), calc(100% - 2 * var(--gutter)));
  margin: 0.875rem auto 0;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--rim-dim);
  border-radius: var(--r-pill);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  backdrop-filter: saturate(180%) blur(24px);
  box-shadow:
    inset 0 1px 0 var(--rim),
    var(--raise);
}

.rail__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 660;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.rail__mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--accent);
  background: var(--pane-hi);
  border: 1px solid var(--hairline);
  border-radius: 10px;
}

.rail__nav {
  display: flex;
  gap: 0.375rem;
  margin-left: auto;
}

.rail__nav a {
  padding: 0.5rem 0.8125rem;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  text-decoration: none;
  border-radius: var(--r-pill);
  transition:
    color 0.25s var(--ease),
    background 0.25s var(--ease);
}

.rail__nav a:hover {
  color: var(--ink);
  background: var(--well);
}

@media (max-width: 900px) {
  .rail__nav {
    display: none;
  }

  .rail__cta {
    margin-left: auto;
  }
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  width: min(var(--bound), calc(100% - 2 * var(--gutter)));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.lede {
  max-width: 46ch;
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-soft);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.hero__note {
  font-size: 0.875rem;
  color: var(--ink-faint);
}

@media (max-width: 940px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__stage {
    order: -1;
  }
}

/* --- Product mock -------------------------------------------------------- */

.mock {
  border: 1px solid var(--rim-dim);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: saturate(180%) blur(30px);
  backdrop-filter: saturate(180%) blur(30px);
  box-shadow:
    inset 0 1px 0 var(--rim),
    var(--lift);
  transform: perspective(1400px) rotateY(-7deg) rotateX(2deg);
  transition: transform 0.7s var(--ease);
}

.mock:hover {
  transform: perspective(1400px) rotateY(-3deg) rotateX(1deg) translateY(-4px);
}

.mock__body {
  display: grid;
  grid-template-columns: 4fr 6fr;
}

.mock__media {
  position: relative;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  overflow: hidden;
  border-right: 1px solid var(--hairline);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
}

/* Stands in for the garment lighting its own stage in the real widget. */
.mock__garment {
  width: 88%;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  background:
    radial-gradient(60% 50% at 50% 34%, rgba(255, 255, 255, 0.5), transparent 70%),
    linear-gradient(158deg, #c0603a, #7c4a72 58%, #3f4d76);
  box-shadow: 0 18px 34px -18px rgba(10, 13, 20, 0.6);
}

.mock__panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.mock__chrome {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 0.75rem;
  background: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid var(--hairline);
}

.mock__tab {
  display: inline-flex;
  align-items: center;
  gap: 0.3125rem;
  padding: 0.3125rem 0.5625rem;
  font-size: 0.6875rem;
  font-weight: 550;
  color: var(--ink-faint);
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.mock__tab.is-active {
  color: var(--ink);
  font-weight: 640;
  background: var(--pane-hi);
  border-color: var(--hairline);
  box-shadow: inset 0 1px 0 var(--rim);
}

.mock__pill {
  margin-left: auto;
  padding: 0.25rem 0.5625rem;
  font-size: 0.625rem;
  font-weight: 620;
  color: var(--ink);
  background: var(--pane-hi);
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.mock__scroll {
  flex: 1;
  padding: 1rem 1.125rem;
}

.mock__headline {
  margin-bottom: 0.75rem;
  font-size: 1.0625rem;
  font-weight: 640;
  letter-spacing: -0.025em;
}

.mock__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 0.875rem;
  padding: 3px;
  background: var(--well);
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
}

.mock__thumb {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc((100% - 6px) / 3);
  background: var(--pane-hi);
  border: 1px solid var(--rim-dim);
  border-radius: var(--r-pill);
  box-shadow: inset 0 1px 0 var(--rim);
}

.mock__step {
  position: relative;
  z-index: 1;
  padding: 0.3125rem 0;
  font-size: 0.6875rem;
  text-align: center;
  color: var(--ink-ghost);
}

.mock__step.is-active {
  color: var(--ink);
  font-weight: 640;
}

.mock__label {
  margin-bottom: 0.375rem;
  font-size: 0.75rem;
  font-weight: 620;
}

.mock__drop {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
  padding: 0.625rem 0.75rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--rim-dim);
  border-radius: var(--r-sm);
  box-shadow: inset 0 1px 0 var(--rim);
}

.mock__drop--ghost {
  opacity: 0.72;
}

.mock__drop b {
  display: block;
  font-size: 0.75rem;
  font-weight: 620;
}

.mock__drop i {
  font-size: 0.6875rem;
  font-style: normal;
  color: var(--ink-faint);
}

.mock__avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--pane-hi);
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
}

.mock__action {
  padding: 0.75rem 1.125rem 1rem;
  background: rgba(255, 255, 255, 0.6);
  border-top: 1px solid var(--hairline);
}

.mock__cta {
  display: block;
  padding: 0.6875rem;
  font-size: 0.8125rem;
  font-weight: 620;
  color: #fff;
  text-align: center;
  background: #12161d;
  border-radius: var(--r-pill);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.mock__foot {
  padding: 0.625rem;
  font-size: 0.6875rem;
  font-weight: 550;
  text-align: center;
  color: var(--ink-faint);
  background: var(--well);
  border-top: 1px solid var(--hairline);
}

@media (max-width: 620px) {
  .mock {
    transform: none;
  }

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

  .mock__media {
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }

  .mock__garment {
    width: 45%;
  }
}

/* --- Bands --------------------------------------------------------------- */

.band {
  width: min(var(--bound), calc(100% - 2 * var(--gutter)));
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.band--tight {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.band__head {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  max-width: 52ch;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.band__lede {
  font-size: 1.0625rem;
  color: var(--ink-soft);
}

/* --- Steps + feature grid ------------------------------------------------ */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.card--step {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-top: 2.75rem;
}

.card__index {
  position: absolute;
  top: 1.5rem;
  left: 1.75rem;
  font-size: 0.75rem;
  font-weight: 660;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.card p {
  color: var(--ink-soft);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 1rem;
}

.grid .card {
  display: flex;
  flex-direction: column;
  gap: 0.5625rem;
}

/* Two anchors in the grid so it reads as composed rather than tiled. */
@media (min-width: 860px) {
  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card--wide:first-child {
    grid-column: span 2;
  }
}

/* --- Privacy ------------------------------------------------------------- */

.privacy {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.75rem, 4vw, 3rem);
  border-radius: var(--r-lg);
}

.privacy h2 {
  margin: 0.5rem 0 1rem;
}

.privacy__body {
  max-width: 54ch;
  margin-bottom: 0.875rem;
  color: var(--ink-soft);
}

.ticks {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ticks li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.9375rem;
  color: var(--ink);
}

.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 1.125rem;
  height: 1.125rem;
  background: var(--accent-glow);
  border-radius: var(--r-pill);
}

.ticks li::after {
  content: "";
  position: absolute;
  left: 0.34rem;
  top: 0.62em;
  width: 0.4rem;
  height: 0.2rem;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.ticks--sm li {
  font-size: 0.875rem;
  color: var(--ink-soft);
}

@media (max-width: 780px) {
  .privacy {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* --- Pricing ------------------------------------------------------------- */

.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1rem;
  align-items: start;
}

.tier {
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
}

.tier__price {
  display: flex;
  align-items: baseline;
  gap: 0.0625rem;
  font-size: 2.5rem;
  font-weight: 640;
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
}

.tier__price span {
  font-size: 1.25rem;
  font-weight: 550;
  color: var(--ink-faint);
}

.tier__price small {
  font-size: 0.875rem;
  font-weight: 550;
  color: var(--ink-faint);
  letter-spacing: 0;
}

.tier__meta {
  font-size: 0.875rem;
  color: var(--ink-faint);
}

.tier .ticks {
  margin: 0.75rem 0 1.25rem;
}

.tier .btn {
  margin-top: auto;
  width: 100%;
}

/* The recommended tier lifts out of the row rather than shouting in colour. */
.tier--feature {
  background: var(--pane-hi);
  border-color: var(--accent-glow);
  box-shadow:
    inset 0 1px 0 var(--rim),
    0 0 0 3px var(--accent-glow),
    var(--lift);
}

.tier__flag {
  align-self: flex-start;
  margin-bottom: 0.25rem;
  padding: 0.1875rem 0.5625rem;
  font-size: 0.6875rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  border-radius: var(--r-pill);
}

/* --- FAQ ----------------------------------------------------------------- */

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  padding: 0;
  overflow: hidden;
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.5rem;
  font-size: 1.0625rem;
  font-weight: 620;
  letter-spacing: -0.015em;
  cursor: pointer;
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

/* A plus that becomes a minus. Cheaper than an icon and it animates. */
.faq__item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  background:
    linear-gradient(var(--accent), var(--accent)) center / 100% 2px no-repeat,
    linear-gradient(var(--accent), var(--accent)) center / 2px 100% no-repeat;
  transition: transform 0.4s var(--spring);
}

.faq__item[open] summary::after {
  transform: rotate(90deg);
  background:
    linear-gradient(var(--accent), var(--accent)) center / 100% 2px no-repeat;
}

.faq__item p {
  padding: 0 1.5rem 1.375rem;
  max-width: 68ch;
}

/* --- Finale + footer ----------------------------------------------------- */

.finale {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.5rem;
  text-align: center;
  border-radius: var(--r-lg);
}

.finale p {
  color: var(--ink-soft);
}

.finale .btn {
  margin-top: 0.5rem;
}

.foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
  width: min(var(--bound), calc(100% - 2 * var(--gutter)));
  margin: 0 auto;
  padding: 2.5rem 0 3.5rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.875rem;
  color: var(--ink-faint);
}

.foot__brand {
  font-weight: 660;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.foot__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-left: auto;
}

.foot__nav a {
  text-decoration: none;
  color: var(--ink-faint);
}

.foot__nav a:hover {
  color: var(--ink);
}

.foot__fine {
  flex-basis: 100%;
}

/* --- Reveal -------------------------------------------------------------- */

/*
  Applied by script, so a no-JS visitor is never left with invisible content —
  the class only exists once something is there to remove it.
*/
.is-armed [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.is-armed [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* --- Capability + preference fallbacks ----------------------------------- */

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .rail,
  .mock {
    background: rgba(255, 255, 255, 0.94);
  }
}

@media (prefers-contrast: more) {
  :root {
    --pane: #fff;
    --pane-hi: #fff;
    --rim-dim: rgba(16, 19, 26, 0.32);
    --hairline: rgba(16, 19, 26, 0.32);
    --ink-soft: #333b47;
    --ink-faint: #333b47;
  }

  .ambient {
    opacity: 0.25;
  }
}

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

  .ambient__bloom,
  .mock,
  .btn,
  .faq__item summary::after,
  .is-armed [data-reveal] {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

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

  .mock:hover {
    transform: perspective(1400px) rotateY(-7deg) rotateX(2deg);
  }
}

@media print {
  .ambient,
  .rail {
    display: none;
  }
}
