/* Roche Limit — marketing site
   Tokens from docs/DESIGN_SYSTEM.md */

:root {
  --void: #000000;
  --nebula-blue: rgba(20, 40, 80, 0.1);
  --nebula-magenta: rgba(60, 10, 50, 0.08);
  --speed-cyan: #00e5ff;
  --speed-magenta: #ff2e88;
  --horizon-crimson: #ff1744;
  --core: #40fff4;
  --gold: #ffd54f;
  --text-dim: rgba(255, 255, 255, 0.5);
  --text-body: rgba(255, 255, 255, 0.74);
  --text-bright: rgba(255, 255, 255, 0.92);
  --glass-hairline: rgba(255, 255, 255, 0.16);
  --font: -apple-system, "SF Pro Display", "Segoe UI", Roboto, "Helvetica Neue",
    sans-serif;
  --max: 720px;
  --pad: clamp(1.25rem, 4vw, 2rem);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.55;
  letter-spacing: 0.03em;
  color: var(--text-body);
  background: var(--void);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--speed-cyan);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

a:focus-visible {
  outline: 1px solid var(--speed-cyan);
  outline-offset: 3px;
}

/* —— Atmosphere —— */

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

.sky canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.sky::before,
.sky::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.sky::before {
  width: min(70vw, 520px);
  height: min(70vw, 520px);
  top: -12%;
  left: -8%;
  background: radial-gradient(
    circle,
    rgba(20, 40, 80, 0.55) 0%,
    transparent 70%
  );
  animation: nebula-drift 24s ease-in-out infinite;
}

.sky::after {
  width: min(65vw, 480px);
  height: min(65vw, 480px);
  bottom: -10%;
  right: -6%;
  background: radial-gradient(
    circle,
    rgba(60, 10, 50, 0.5) 0%,
    transparent 70%
  );
  animation: nebula-drift 28s ease-in-out infinite reverse;
}

@keyframes nebula-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate3d(0, 14px, 0) scale(1.05);
    opacity: 0.82;
  }
}

/* —— Scroll progress —— */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 0;
  background: linear-gradient(
    90deg,
    var(--speed-cyan) 0%,
    #ffffff 50%,
    var(--speed-magenta) 100%
  );
  z-index: 3;
  transition: transform 0.15s linear;
  pointer-events: none;
}

/* —— Scroll reveal —— */

.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.99);
  /* ease-out-expo: fast start, long gentle settle — the "Apple" feel.
     transform + opacity only, so it composites on the GPU and never
     triggers layout during scroll. */
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* —— Scroll-driven motion (progressive enhancement) ——
   Pure-CSS scroll timelines: Chrome 115+, Safari 26+; older browsers and
   Firefox simply skip this block and keep the IntersectionObserver reveals.
   Compositor-only properties (transform/opacity) — no layout work per frame.

   NOTE: an animation with `both` fill owns `transform` outright, overriding
   the .reveal transition on the same element. That's intentional for
   .shot-frame — its entrance slide is replaced by the scroll-linked drift
   below while the .reveal opacity fade still runs. Don't add view()
   animations to other .reveal targets without the same reasoning. */
@supports (animation-timeline: view()) {
  /* Hero recedes as you scroll past it — content sinks and dims like the
     comet leaving the well. Children (wordmark, CTAs, scroll cue) ride the
     parent transform, so their own reveal transforms are untouched. */
  .hero {
    animation: hero-exit linear both;
    animation-timeline: view();
    animation-range: exit 0% exit 90%;
  }

  @keyframes hero-exit {
    to {
      opacity: 0.08;
      transform: translateY(-48px) scale(0.985);
    }
  }

  /* Screenshots drift slower than the page — classic parallax. From +28px
     when they enter to -28px as they leave, easing through true position
     mid-viewport. */
  .shot-frame {
    animation: shot-parallax linear both;
    animation-timeline: view();
  }

  @keyframes shot-parallax {
    from {
      transform: translateY(28px);
    }
    to {
      transform: translateY(-28px);
    }
  }

  /* Section divider draws itself in from the centre as the section arrives —
     brand gradient over the existing hairline border. */
  .section + .section::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    width: min(520px, 78%);
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 229, 255, 0.5) 25%,
      rgba(255, 255, 255, 0.75) 50%,
      rgba(255, 46, 136, 0.5) 75%,
      transparent 100%
    );
    transform: translateX(-50%) scaleX(0);
    animation: line-draw linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 45%;
  }

  @keyframes line-draw {
    to {
      transform: translateX(-50%) scaleX(1);
    }
  }

  /* Android beta steps surface one by one on their own view progress —
     each card is independent, so the cascade follows the scroll. */
  .beta-step {
    animation: step-in linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 70%;
  }

  @keyframes step-in {
    from {
      opacity: 0;
      transform: translateY(26px);
    }
  }

  /* Scroll timelines ignore animation-duration, so the global reduced-motion
     duration clamp doesn't neutralize them — switch them off explicitly. */
  @media (prefers-reduced-motion: reduce) {
    .hero,
    .shot-frame,
    .section + .section::before,
    .beta-step {
      animation: none;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
    transition-delay: 0s !important;
  }
}

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

/* —— Layout —— */

.wrap {
  width: min(100% - 2 * var(--pad), var(--max));
  margin-inline: auto;
}

.wrap-wide {
  width: min(100% - 2 * var(--pad), 880px);
  margin-inline: auto;
}

/* —— Wordmark —— */

.wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.wordmark-roche {
  margin: 0;
  font-weight: 100;
  font-size: clamp(2.75rem, 12vw, 4.5rem);
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  line-height: 1;
  background: linear-gradient(
    90deg,
    var(--speed-cyan) 0%,
    #ffffff 50%,
    var(--speed-magenta) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(0, 229, 255, 0.35));
}

.wordmark-limit {
  margin: 0.35em 0 0;
  font-weight: 500;
  font-size: clamp(0.7rem, 2.8vw, 1rem);
  letter-spacing: 0.62em;
  text-indent: 0.62em;
  color: var(--horizon-crimson);
  text-shadow: 0 0 14px rgba(255, 23, 68, 0.45);
}

/* —— Hero —— */

.hero {
  min-height: 100vh;
  /* svh = SMALL viewport height (toolbar-visible). Critical on mobile:
     dvh/vh grow as the address bar retracts during scroll, which would
     grow the hero and push all content below it down mid-scroll — a
     reflow that reads as the page stuttering/snapping backward. svh is
     pinned to the smallest viewport, so nothing shifts while scrolling. */
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--pad) + 1rem) var(--pad) 4rem;
  position: relative;
}

.hero-orbit {
  position: absolute;
  inset: 18% 0 auto;
  height: 42%;
  pointer-events: none;
  opacity: 0.55;
}

.hero-orbit svg {
  width: 100%;
  height: 100%;
}

.hero .wordmark {
  position: relative;
  margin-bottom: 2.5rem;
}

.hero h1 {
  position: relative;
  margin: 0 0 1rem;
  max-width: 16ch;
  font-weight: 400;
  font-size: clamp(1.35rem, 4.2vw, 1.85rem);
  letter-spacing: 0.02em;
  line-height: 1.35;
  color: var(--text-bright);
}

.hero .lede {
  position: relative;
  margin: 0 auto 2.25rem;
  max-width: 36ch;
  font-size: clamp(0.95rem, 2.4vw, 1.05rem);
  color: var(--text-dim);
}

.cta-row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.cta-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.cta-stack-left {
  align-items: flex-start;
}

.cta-soon {
  gap: 0.55rem;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  border: 1px solid var(--glass-hairline);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.09) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  color: var(--text-bright);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

/* Light-streak sweep across the pill on hover — long-exposure language. */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 32%,
    rgba(255, 255, 255, 0.16) 50%,
    transparent 68%
  );
  transform: translateX(-130%);
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(130%);
}

.btn:hover {
  opacity: 1;
  border-color: rgba(0, 229, 255, 0.45);
  background: linear-gradient(
    180deg,
    rgba(0, 229, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  transform: translateY(-1px);
}

.btn-primary {
  border-color: rgba(0, 229, 255, 0.35);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.12);
}

.btn-soon {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-indent: 0.16em;
  padding: 0.55rem 1rem;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.1);
}

/* Platform glyph inside a .btn — scales with the label, inherits its color.
   The label lives in its own span so the button's text-indent doesn't push
   the glyph off-centre. */
.btn-glyph {
  flex: 0 0 auto;
  width: 1.35em;
  height: 1.35em;
  margin-right: -0.15rem;
}

/* Quiet secondary CTA — reads like .btn-soon but stays clickable. */
.btn-quiet {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-indent: 0.16em;
  padding: 0.55rem 1rem;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
}

.btn[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
  cursor: default;
}

.scroll-cue {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
}

.scroll-cue-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* Thin track with a cyan segment that descends on a loop — a clear,
   minimal "scroll down" indicator in the brand's long-exposure language. */
.scroll-cue-track {
  position: relative;
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.scroll-cue-track::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 9px;
  background: var(--speed-cyan);
  box-shadow: 0 0 6px rgba(0, 229, 255, 0.6);
  animation: scroll-dot 1.8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes scroll-dot {
  0% {
    transform: translateY(-9px);
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateY(30px);
    opacity: 0;
  }
}

/* —— Sections —— */

.section {
  padding: 5rem 0;
  /* Anchor for the scroll-drawn divider (::before, in the @supports block). */
  position: relative;
}

.section + .section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-label {
  margin: 0 0 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  text-transform: uppercase;
  color: var(--speed-cyan);
}

.section h2 {
  margin: 0 0 1rem;
  font-weight: 300;
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  letter-spacing: 0.04em;
  color: var(--text-bright);
  line-height: 1.3;
}

.section p {
  margin: 0;
  max-width: 42ch;
}

.section p + p {
  margin-top: 1rem;
}

.section strong {
  color: var(--text-bright);
  font-weight: 560;
}

/* —— Android closed-beta steps —— */

.beta-lede {
  max-width: 48ch;
  margin: 0 0 1.75rem;
  color: var(--text-dim);
}

.beta-lede strong {
  color: var(--text-bright);
  font-weight: 560;
}

.beta-title {
  margin: 0 0 0.5rem;
  font-weight: 400;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  color: var(--text-bright);
}

.beta-copy {
  margin: 0 0 1.2rem;
  max-width: 46ch;
  color: var(--text-dim);
  font-size: 0.95rem;
}

.beta-copy strong {
  color: var(--text-body);
  font-weight: 560;
}

.beta-btn {
  align-self: flex-start;
}

.beta-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 620px;
}

.beta-step {
  list-style: none;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  border: 1px solid var(--glass-hairline);
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.015) 100%
  );
  padding: 1.5rem 1.5rem;
}

.beta-steps > .beta-step::marker {
  content: none;
  font-size: 0;
}

.beta-step-num {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 255, 0.55);
  background: rgba(0, 229, 255, 0.12);
  color: var(--speed-cyan);
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 0.15rem;
}

.beta-step-body {
  min-width: 0;
}

.beta-step-body .beta-copy {
  margin-bottom: 1rem;
}

/* —— Section screenshots —— */
/* Text stays left-aligned and full-width on mobile, with the screenshot
   below it. From ~780px up, they sit side by side, alternating which side
   the image is on (.media-left) for visual rhythm down the page. */

.section-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "label" "heading" "body" "shot";
  row-gap: 0.85rem;
}

.section-grid > .section-label {
  grid-area: label;
}
.section-grid > h2 {
  grid-area: heading;
}
.section-grid > p {
  grid-area: body;
}
.section-grid > .shot-frame {
  grid-area: shot;
  margin-top: 1.75rem;
}

@media (min-width: 780px) {
  .section-grid {
    grid-template-columns: 1fr 260px;
    grid-template-areas: "label shot" "heading shot" "body shot";
    column-gap: 4rem;
    row-gap: 0.85rem;
    align-items: center;
  }
  .section-grid.media-left {
    grid-template-columns: 260px 1fr;
    grid-template-areas: "shot label" "shot heading" "shot body";
  }
  .section-grid > .shot-frame {
    margin-top: 0;
  }
}

/* Hairline device silhouette on black — DESIGN_SYSTEM §10. */
.shot-frame {
  position: relative;
  width: min(220px, 62vw);
  margin-inline: auto;
  padding: 9px;
  border-radius: 32px;
  border: 1px solid var(--glass-hairline);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.015) 100%
  );
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.06);
}

/* Hover glow lives on a pseudo-element with its own opacity transition, so
   it can't collide with the .reveal / parallax transforms on the frame. */
.shot-frame::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 32px;
  border: 1px solid rgba(0, 229, 255, 0.35);
  box-shadow: 0 0 52px rgba(0, 229, 255, 0.16);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

@media (hover: hover) {
  .shot-frame:hover::after {
    opacity: 1;
  }
}

@media (min-width: 780px) {
  .shot-frame {
    width: 100%;
    max-width: 260px;
  }
}

.shot-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}

/* —— FAQ —— */

.faq details {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.1rem 0;
}

.faq details:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 500;
  color: var(--text-bright);
  letter-spacing: 0.02em;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

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

.faq summary::after {
  content: "+";
  font-weight: 200;
  font-size: 1.25rem;
  color: var(--text-dim);
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin: 0.75rem 0 0;
  color: var(--text-dim);
  max-width: 48ch;
}

/* Smooth FAQ open/close where ::details-content is supported (Chrome 131+,
   Safari 26+); elsewhere the selector is ignored and details toggles
   instantly, exactly as before. Needs interpolate-size to tween to `auto`. */
@supports (interpolate-size: allow-keywords) {
  :root {
    interpolate-size: allow-keywords;
  }

  .faq details::details-content {
    block-size: 0;
    overflow-y: clip;
    transition: block-size 0.4s cubic-bezier(0.16, 1, 0.3, 1),
      content-visibility 0.4s allow-discrete;
  }

  .faq details[open]::details-content {
    block-size: auto;
  }
}

/* —— About / SEO blurb —— */
/* Reads like every other section: left-aligned under a section label, body
   scale — a centered one-off looked orphaned on desktop. */

.about-line {
  margin: 0;
  max-width: 52ch;
  color: var(--text-body);
}

.about-line strong {
  color: var(--text-bright);
  font-weight: 560;
}

/* —— Legal pages —— */

.legal-header {
  padding: 2.5rem var(--pad) 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-header .wordmark-roche {
  font-size: 1.75rem;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
}

.legal-header .wordmark-limit {
  font-size: 0.55rem;
}

.legal {
  padding: 3rem 0 5rem;
}

.legal h1 {
  margin: 0 0 0.5rem;
  font-weight: 300;
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: 0.06em;
  color: var(--text-bright);
}

.legal .meta {
  margin: 0 0 2.5rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.legal h2 {
  margin: 2.25rem 0 0.75rem;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--speed-cyan);
}

.legal p,
.legal li {
  max-width: 58ch;
  color: var(--text-body);
}

.legal ul {
  padding-left: 1.15rem;
  margin: 0.5rem 0 0;
}

.legal li + li {
  margin-top: 0.4rem;
}

.legal p + p {
  margin-top: 0.85rem;
}

/* —— Press kit page —— */

.press-oneliner {
  margin: 0 0 2.5rem;
  padding-left: 1.1rem;
  border-left: 2px solid var(--speed-cyan);
  max-width: 44ch;
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-bright);
}

.press-facts {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.press-facts th,
.press-facts td {
  padding: 0.65rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
  text-align: left;
}

.press-facts tr:last-child th,
.press-facts tr:last-child td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.press-facts th {
  width: 11em;
  padding-right: 1.25rem;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.press-facts td {
  color: var(--text-body);
  max-width: 46ch;
}

.press-shots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 1.25rem;
}

.press-shots img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--glass-hairline);
}

/* —— Footer —— */

.site-footer {
  padding: 3rem var(--pad) 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.site-footer .mark {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 0.85rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer nav a {
  color: var(--text-dim);
}

.site-footer nav a:hover {
  color: var(--speed-cyan);
}

.site-footer .fine {
  margin: 1.25rem 0 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.32);
}
