:root {
  --bg: #0c0b0a;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.72);
  --text-soft: rgba(255, 255, 255, 0.52);
  --accent: #ff7a2f;
  --accent-deep: #e24a12;
  --radius-frame: clamp(18px, 2.4vw, 28px);
  --radius-pill: 999px;
  --page-max: 920px;
  --page-inline-pad: clamp(1.25rem, 4vw, 2.5rem);
  --content-width: min(var(--page-max), calc(100vw - var(--page-inline-pad) * 2));
  --carousel-peek: clamp(4.75rem, calc(var(--content-width) * 2 / 3 * 0.26), 10.5rem);
  --page-section-gap: clamp(1.25rem, 2.5vh, 2rem);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", system-ui, sans-serif;
  --font-brand: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", system-ui, sans-serif;
}

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

html {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: hidden;
}

/* Dark base + warm fallback if WebGL is unavailable */
.bg-base {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 120% 70% at 50% -15%, rgba(255, 173, 0, 0.18), transparent 55%),
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 117, 0, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(255, 15, 0, 0.08), transparent 55%);
}

.aurora-layer {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.site-nav {
  position: fixed;
  top: max(0.85rem, env(safe-area-inset-top, 0px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
  width: max-content;
  max-width: calc(100% - 1.5rem);
  pointer-events: none;
}

.site-nav-pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.35rem 0.4rem 0.35rem 0.45rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 0.5px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0.5px 0 rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
}

.site-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-right: 0.2rem;
  padding: 0.28rem 0.7rem 0.28rem 0.35rem;
  border-radius: var(--radius-pill);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease;
}

.site-nav-brand:hover {
  background: rgba(255, 255, 255, 0.08);
}

.site-nav-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.site-nav-name {
  font-family: var(--font-brand);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}

.site-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.48rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 550;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.site-nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.site-nav-link--download {
  color: #fff;
  background: rgba(255, 122, 47, 0.16);
  border: 0.5px solid rgba(255, 200, 150, 0.28);
  box-shadow: inset 0 0.5px 0 rgba(255, 230, 210, 0.35);
  margin-left: 0.1rem;
}

.site-nav-link--download:hover {
  color: #fff;
  background: rgba(255, 122, 47, 0.26);
  border-color: rgba(255, 200, 150, 0.42);
}

.site-nav-brand:focus-visible,
.site-nav-link:focus-visible {
  outline: 2px solid rgba(255, 200, 150, 0.7);
  outline-offset: 2px;
}

.page {
  position: relative;
  z-index: 2;
  width: min(var(--page-max), calc(100% - var(--page-inline-pad) * 2));
  max-width: 100%;
  margin: 0 auto;
  padding: clamp(1rem, 2.5vh, 1.75rem) 0 clamp(2.5rem, 5vh, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--page-section-gap);
}

#features,
#pricing {
  scroll-margin-top: 5rem;
}

.intro-scroll {
  width: 100%;
  position: relative;
}

.hero {
  position: sticky;
  top: 0;
  z-index: 0;
  width: 100%;
  min-height: max(
    16rem,
    calc(100dvh - var(--carousel-peek) - var(--page-section-gap))
  );
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vh, 4rem) clamp(0.5rem, 2vw, 1rem) clamp(1.25rem, 3vh, 2rem);
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.85rem, 2vh, 1.15rem);
  width: 100%;
  max-width: 100%;
  transform-origin: center center;
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: scroll()) {
    @keyframes hero-recede {
      to {
        transform: scale(0.82);
        opacity: 0;
      }
    }

    .hero-content {
      animation: hero-recede linear both;
      animation-timeline: scroll(root block);
      animation-range: 0 50vh;
    }
  }
}

.hero-headline {
  margin: 0;
  width: 100%;
  max-width: none;
  font-family: var(--font-brand);
  font-size: clamp(1.35rem, 3.4vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
  text-align: center;
  color: var(--text-muted);
}

.hero-headline .hero-type {
  display: inline;
  white-space: normal;
  font: inherit;
  letter-spacing: inherit;
  color: inherit;
}

.hero-headline .hero-type .text-type__content {
  white-space: normal;
}

.hero-headline .hero-type .text-type__cursor {
  margin-left: 0.08em;
  color: var(--accent, currentColor);
}

.brand-row {
  --hero-icon-size: clamp(52px, 8vw, 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.65rem, 1.6vw, 0.9rem);
}

.hero-icon {
  width: var(--hero-icon-size);
  height: var(--hero-icon-size);
  border-radius: 0;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}

.brand {
  margin: 0;
  font-family: var(--font-brand);
  font-size: var(--hero-icon-size);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}

.carousel {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}

/* Single rounded clip — no mismatched stroke corners */
.carousel-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  max-height: min(calc(100dvh - 6rem), calc(var(--content-width) * 2 / 3));
  border-radius: var(--radius-frame);
  overflow: hidden;
  background: #111;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
  isolation: isolate;
}

.carousel-track {
  display: flex;
  height: 100%;
  will-change: transform;
}

.carousel-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.carousel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.carousel-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(34px, 4.5vw, 38px);
  height: clamp(34px, 4.5vw, 38px);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(12, 11, 10, 0.42);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.carousel-arrow--prev {
  justify-self: start;
}

.carousel-arrow--next {
  justify-self: end;
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}

.carousel-arrow:active {
  transform: scale(0.96);
}

.carousel-arrow:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

.carousel-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.carousel-bottom {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: clamp(0.65rem, 2vw, 1rem);
  padding: clamp(0.85rem, 2.2vw, 1.15rem) clamp(0.85rem, 2.4vw, 1.15rem);
  max-height: 52%;
  background: linear-gradient(to top, rgba(12, 11, 10, 0.94) 0%, rgba(12, 11, 10, 0.72) 42%, transparent 100%);
  pointer-events: none;
}

.carousel-copy-viewport {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  pointer-events: auto;
}

.carousel-copy-track {
  display: flex;
  will-change: transform;
}

.carousel-copy-slide {
  flex: 0 0 100%;
  min-width: 0;
  text-align: left;
}

.slide-title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.slide-text {
  margin: 0;
  font-size: clamp(0.88rem, 1.7vw, 1rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 450;
}

.carousel-dots {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(12, 11, 10, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  pointer-events: auto;
}

.dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

.dot:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

.features {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  padding-bottom: var(--page-section-gap);
}

.features-heading {
  margin: 0;
  padding-top: var(--page-section-gap);
  width: 100%;
  font-family: var(--font-brand);
  font-size: clamp(1.75rem, 4.2vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  text-align: left;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.85rem, 2vw, 1.1rem);
  align-items: start;
}

.feature-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.75rem;
  row-gap: 0.45rem;
  align-content: start;
  height: 100%;
  padding: clamp(1rem, 2.2vw, 1.15rem) clamp(1rem, 2.4vw, 1.2rem);
  border-radius: clamp(14px, 1.8vw, 18px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}

.feature-icon {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(42px, 5vw, 46px);
  height: clamp(42px, 5vw, 46px);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 122, 47, 0.1);
  border: 1px solid rgba(255, 200, 150, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.feature-body {
  display: contents;
}

.feature-title {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  margin: 0;
  font-size: clamp(0.98rem, 1.8vw, 1.06rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.feature-text {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
  font-size: clamp(0.86rem, 1.5vw, 0.93rem);
  line-height: 1.5;
  color: var(--text-muted);
  font-weight: 450;
}

.pricing {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(0.85rem, 2vw, 1.15rem);
  padding-top: var(--page-section-gap);
  text-align: left;
}

.pricing-heading {
  margin: 0;
  width: 100%;
  font-family: var(--font-brand);
  font-size: clamp(1.75rem, 4.2vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  text-align: left;
}

.pricing-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(0.65rem, 1.2vw, 1rem);
  width: 100%;
}

.pricing-lead {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.45;
  color: var(--text-muted);
  font-weight: 450;
}

.store-badge {
  display: inline-flex;
  flex-shrink: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.store-badge--inline {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  pointer-events: auto;
}

.store-badge--inline img {
  height: 100%;
  width: auto;
}

.store-badge img {
  display: block;
  height: clamp(40px, 5vw, 44px);
  width: auto;
}

.store-badge:hover {
  transform: translateY(-1px);
  opacity: 0.94;
}

.price-line {
  margin: 0 0 0 auto;
  flex: 0 0 auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
}

/*
  Liquid glass capsules — matches SwiftUI .glass / .glassProminent:
  mostly transparent, heavy blur, thin rim light, no boxed tray or 3D bevel.
*/
.glass-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.56rem 1.05rem;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 560;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.06);
  border: 0.5px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0.5px 0 rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

a.glass-pill:link,
a.glass-pill:visited,
a.glass-pill:hover,
a.glass-pill:active,
a.glass-pill:focus {
  color: rgba(255, 255, 255, 0.94);
  text-decoration: none;
}

a.glass-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.32);
}

a.glass-pill:focus-visible {
  outline: 2px solid rgba(255, 200, 150, 0.7);
  outline-offset: 3px;
}

.glass-pill--prominent {
  color: #fff;
  background: rgba(255, 122, 47, 0.14);
  border-color: rgba(255, 200, 150, 0.28);
  box-shadow: inset 0 0.5px 0 rgba(255, 230, 210, 0.4);
}

a.glass-pill--prominent:link,
a.glass-pill--prominent:visited,
a.glass-pill--prominent:hover,
a.glass-pill--prominent:active,
a.glass-pill--prominent:focus {
  color: #fff;
  text-decoration: none;
}

a.glass-pill--prominent:hover {
  background: rgba(255, 122, 47, 0.22);
  border-color: rgba(255, 200, 150, 0.4);
}

.footer {
  margin-top: clamp(1.5rem, 4vh, 2.5rem);
  padding-top: clamp(2rem, 5vh, 3.25rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.45rem;
  padding-inline: 0.5rem;
}

.footer-links a,
.footer a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover,
.footer a:hover {
  color: #fff;
}

.footer-sep {
  color: rgba(255, 255, 255, 0.28);
}

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

@media (min-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-nav {
    top: max(0.65rem, env(safe-area-inset-top, 0px));
    left: 0.5rem;
    right: 0.5rem;
    transform: none;
    width: auto;
    max-width: none;
  }

  .site-nav-pill {
    width: 100%;
    justify-content: space-between;
    gap: 0;
    padding: 0.28rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  .site-nav-pill::-webkit-scrollbar {
    display: none;
  }

  .site-nav-brand {
    gap: 0;
    padding: 0.35rem;
    margin-right: 0;
    flex-shrink: 0;
  }

  .site-nav-icon {
    width: 22px;
    height: 22px;
  }

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

  .site-nav-link {
    flex: 1 1 auto;
    padding: 0.45rem 0.45rem;
    font-size: 0.78rem;
    min-height: 2.5rem;
  }

  .site-nav-link--download {
    margin-left: 0;
    flex: 0 0 auto;
    padding-inline: 0.7rem;
  }

  .hero-headline {
    font-size: clamp(1.2rem, 5.5vw, 1.55rem);
  }

  .brand-row {
    --hero-icon-size: clamp(44px, 12vw, 56px);
  }

  .carousel-frame {
    max-height: min(calc(100dvh - 5rem), calc(var(--content-width) * 2 / 3));
  }

  .carousel-bottom {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    align-items: end;
    gap: 0.55rem;
    padding: 0.75rem 0.85rem;
  }

  .slide-title {
    font-size: clamp(0.95rem, 4.2vw, 1.1rem);
  }

  .slide-text {
    font-size: clamp(0.8rem, 3.5vw, 0.9rem);
  }

  .store-badge--inline {
    align-self: end;
    justify-self: stretch;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    min-width: 0;
  }

  .store-badge--inline img {
    width: 100%;
    height: auto;
    max-height: clamp(36px, 10vw, 42px);
    object-fit: contain;
    object-position: bottom right;
  }

  .glass-pill {
    font-size: 0.88rem;
    padding: 0.5rem 0.9rem;
  }

  .pricing-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .price-line {
    margin-left: 0;
    flex-wrap: wrap;
  }

  .footer {
    padding-inline: 0.25rem;
  }

  .footer p {
    font-size: 0.78rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .footer-links {
    gap: 0.5rem 0.85rem;
  }

  .footer-sep {
    display: none;
  }
}

@media (max-width: 380px) {
  .site-nav-link {
    padding: 0.42rem 0.35rem;
    font-size: 0.72rem;
  }

  .site-nav-link--download {
    padding-inline: 0.55rem;
  }
}

@media (min-width: 1200px) {
  :root {
    --page-max: 980px;
  }
}

@media (min-width: 1600px) {
  :root {
    --page-max: 1040px;
  }
}

/* Coming soon modal — glossy panel + blurred scrim (matches floating nav glass) */
body.coming-soon-open {
  overflow: hidden;
}

.coming-soon {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.coming-soon[hidden] {
  display: none;
}

.coming-soon-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: rgba(12, 11, 10, 0.55);
}

.coming-soon-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 320px);
  padding: 1.55rem 1.4rem 1.25rem;
  text-align: center;
  border-radius: 22px;
  background: rgba(28, 26, 24, 0.72);
  border: 0.5px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  animation: coming-soon-in 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.coming-soon-title {
  margin: 0 0 1.15rem;
  font-family: var(--font-brand);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
}

.coming-soon-ok {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  padding: 0.52rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 0.5px solid rgba(255, 200, 150, 0.32);
  background: rgba(255, 122, 47, 0.2);
  box-shadow: inset 0 0.5px 0 rgba(255, 230, 210, 0.35);
  color: #fff;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 560;
  letter-spacing: -0.015em;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.coming-soon-ok:hover {
  background: rgba(255, 122, 47, 0.3);
  border-color: rgba(255, 200, 150, 0.45);
}

.coming-soon-ok:focus-visible {
  outline: 2px solid rgba(255, 200, 150, 0.7);
  outline-offset: 3px;
}

@keyframes coming-soon-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .coming-soon-panel {
    animation: none;
  }
}
.text-type {
  display: inline-block;
  white-space: pre-wrap;
}

.text-type__cursor {
  margin-left: 0.25rem;
  display: inline-block;
  opacity: 1;
}

.text-type__cursor--hidden {
  display: none;
}
.card-spotlight {
  position: relative;
  overflow: hidden;
  --mouse-x: 50%;
  --mouse-y: 50%;
  --spotlight-color: rgba(255, 255, 255, 0.05);
}

.card-spotlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at var(--mouse-x) var(--mouse-y),
    var(--spotlight-color),
    transparent 80%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.card-spotlight:hover::before,
.card-spotlight:focus-within::before {
  opacity: 0.6;
}
.legal-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.legal-shell {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  width: min(760px, calc(100% - clamp(1.25rem, 4vw, 2.5rem)));
  margin: 0 auto;
  padding: clamp(5.5rem, 12vh, 7rem) 0 clamp(3rem, 6vh, 4.5rem);
}

.legal-shell > .footer {
  margin-top: auto;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.legal-back:hover {
  color: #fff;
}

.legal-content {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.65;
}

.legal-content h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: -0.03em;
  color: #fff;
}

.legal-content h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.legal-content h3 {
  margin: 1.4rem 0 0.55rem;
  font-size: 1.05rem;
  color: #fff;
}

.legal-content p {
  margin: 0 0 0.9rem;
}

.legal-content ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.legal-content li {
  margin: 0.35rem 0;
}

.legal-content a {
  color: #ffb078;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: #ffd0b0;
}

.legal-content strong {
  color: #fff;
  font-weight: 600;
}

.legal-loading {
  color: var(--text-soft);
}

/* Support page — flat liquid glass, homepage-aligned */
.support-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.support-layout {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: min(640px, calc(100% - var(--page-inline-pad) * 2));
  padding-top: clamp(5.5rem, 12vh, 7rem);
}

.support-layout > .footer {
  margin-top: auto;
}

.support-header {
  margin-bottom: clamp(1.5rem, 3vh, 2rem);
  text-align: left;
}

.support-title {
  margin: 0 0 0.55rem;
  font-family: var(--font-brand);
  font-size: clamp(1.75rem, 4.2vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #fff;
}

.support-lead {
  margin: 0;
  max-width: 36rem;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.5;
  color: var(--text-muted);
}

.support-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.35rem;
  width: 100%;
  margin-bottom: clamp(2rem, 5vh, 3rem);
}

.support-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.support-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-inline-size: 0;
  width: 100%;
}

.support-label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
  font-weight: 560;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.9);
}

.support-label abbr {
  color: var(--accent);
  text-decoration: none;
}

.support-choice-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.support-choice {
  position: relative;
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  cursor: pointer;
}

.support-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.support-choice span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 0.56rem 1.05rem;
  border-radius: var(--radius-pill);
  font-size: 0.94rem;
  font-weight: 560;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.06);
  border: 0.5px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0.5px 0 rgba(255, 255, 255, 0.35);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.support-choice:hover span {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.32);
}

.support-choice input:focus-visible + span {
  outline: 2px solid rgba(255, 200, 150, 0.7);
  outline-offset: 3px;
}

.support-choice input:checked + span {
  color: #fff;
  background: rgba(255, 122, 47, 0.14);
  border-color: rgba(255, 200, 150, 0.28);
  box-shadow: inset 0 0.5px 0 rgba(255, 230, 210, 0.4);
}

.support-panel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.1rem;
  width: 100%;
  max-width: 28rem;
}

.support-panel[hidden] {
  display: none;
}

.support-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
}

.support-input {
  width: 100%;
  padding: 0.7rem 1.05rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  outline: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.support-textarea {
  border-radius: 16px;
  min-height: 7rem;
  resize: vertical;
  line-height: 1.45;
}

.support-input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.support-input:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
}

.support-input:focus {
  border-color: rgba(255, 200, 150, 0.35);
  background: rgba(255, 255, 255, 0.07);
}

.support-file {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  width: fit-content;
  max-width: 100%;
}

.support-file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.support-file-btn {
  pointer-events: none;
}

.support-file-name {
  font-size: 0.88rem;
  color: var(--text-soft);
  pointer-events: none;
}

.support-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.support-actions[hidden] {
  display: none;
}

button.support-submit {
  cursor: pointer;
  font: inherit;
}

.support-hint {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.support-hint a {
  color: #ffb078;
  text-decoration: none;
}

.support-hint a:hover {
  color: #ffd0b0;
}

.support-status {
  margin: 0;
  max-width: 28rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.support-status.is-error {
  color: #ffb0a0;
}

.support-status[hidden] {
  display: none;
}

