﻿:root {
  --font-sans: "Inter", "Segoe UI", "Helvetica Neue", sans-serif;
  --bg-0: #08090b;
  --bg-1: #0d0e10;
  --bg-2: #17191d;
  --surface-1: #10131d;
  --surface-2: #121726;
  --surface-3: #171d2e;
  --text: #f6f8ff;
  --text-soft: #c8ceda;
  --text-muted: #a1aabc;
  --line-soft: rgba(255, 255, 255, 0.08);
  --line-mid: rgba(255, 255, 255, 0.13);
  --accent: #c2401f;
  --accent-soft: rgba(194, 64, 31, 0.17);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: min(1200px, calc(100% - 2.6rem));
  --shadow-elev: 0 12px 34px rgba(0, 0, 0, 0.36);
  --shadow-card: 0 8px 22px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100%;
  overscroll-behavior-x: none;
  font-family: var(--font-sans);
  color: var(--text);
  background: radial-gradient(960px 560px at 88% -10%, rgba(194, 64, 31, 0.07), transparent 66%), linear-gradient(180deg, #0b0d11, #06070a 54%, #040508);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: none;
}

body::after {
  content: none;
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: clamp(5rem, 11vw, 9.25rem) 0;
}

.section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.section::before {
  content: none;
}

.section-muted::before {
  content: none;
}

.section-tint::before {
  content: none;
}

.section-showcase {
  padding-top: clamp(2.2rem, 6vw, 4rem);
  padding-bottom: clamp(3.8rem, 8.5vw, 6rem);
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: none;
  background: #0b0d12;
  transition: border-color 240ms ease, background-color 240ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line-soft);
  background: #0b0d12;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.85rem;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 138px;
  height: auto;
}

.nav-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.nav-burger {
  width: 0.95rem;
  height: 0.65rem;
  position: relative;
  display: block;
}

.nav-burger::before,
.nav-burger::after,
.nav-burger {
  background: transparent;
}

.nav-burger::before,
.nav-burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-burger::before {
  top: 0.08rem;
}

.nav-burger::after {
  bottom: 0.08rem;
}

.nav-toggle.is-open .nav-burger::before {
  transform: translateY(0.24rem) rotate(45deg);
}

.nav-toggle.is-open .nav-burger::after {
  transform: translateY(-0.24rem) rotate(-45deg);
}

.primary-nav {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 1.35rem;
  left: 1.35rem;
  background: rgba(14, 17, 27, 0.96);
  border: 1px solid var(--line-mid);
  border-radius: 16px;
  box-shadow: var(--shadow-elev);
  backdrop-filter: none;
  display: none;
  padding: 0.75rem;
  gap: 0.35rem;
  flex-direction: column;
}

.primary-nav.is-open {
  display: flex;
}

.primary-nav a {
  color: var(--text-muted);
  font-weight: 560;
  font-size: 0.93rem;
  padding: 0.62rem 0.74rem;
  border-radius: 10px;
  transition: color 180ms ease, background-color 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  outline: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 0.9rem 1.32rem;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
  outline: none;
}

.btn-primary {
  color: #fff;
  border-color: rgba(194, 64, 31, 0.72);
  background: linear-gradient(180deg, #d15331, #b43a1b);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  border-color: rgba(194, 64, 31, 0.95);
  background: linear-gradient(180deg, #d65e3d, #be3f1f);
}

.btn-ghost {
  color: var(--text-soft);
  border-color: var(--line-soft);
  background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: var(--text);
  border-color: var(--line-mid);
  background: rgba(255, 255, 255, 0.06);
}

.btn-nav {
  margin-top: 0.36rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line-mid);
}

.hero {
  overflow: hidden;
  padding-top: clamp(4.1rem, 10vw, 8.1rem);
}

.hero-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.9rem);
  align-items: start;
}

.hero-copy {
  max-width: 44rem;
  order: 1;
}

.hero-visual {
  display: grid;
  gap: 1rem;
  order: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 1.1rem;
  color: #d96a4d;
  font-size: 0.76rem;
  font-weight: 620;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.45rem, 7vw, 5.65rem);
  line-height: 0.98;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(1.78rem, 4.3vw, 3.32rem);
  line-height: 1.03;
  font-weight: 670;
}

h3 {
  font-size: clamp(1.06rem, 2.5vw, 1.3rem);
  line-height: 1.25;
  font-weight: 620;
}

.lead {
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(1.04rem, 2vw, 1.24rem);
  max-width: 41rem;
}

.hero-actions {
  margin-top: 2.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.82rem;
}

.hero-points {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.72rem;
}

.hero-points li {
  color: var(--text-muted);
  font-size: 0.93rem;
  display: flex;
  gap: 0.6rem;
}

.hero-points li::before {
  content: "";
  margin-top: 0.56rem;
  flex: 0 0 0.46rem;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.72;
}

.hero-panel {
  border: 1px solid var(--line-mid);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: var(--shadow-elev), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: none;
  padding: clamp(1.2rem, 4vw, 1.8rem);
}

.panel-label {
  font-size: 0.72rem;
  font-weight: 640;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.8rem;
}

.hero-panel h2 {
  font-size: clamp(1.2rem, 2.4vw, 1.52rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 0.12rem;
}

.plan-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.36rem;
}

.plan-list li {
  margin: 0;
}

.plan-day {
  width: 100%;
  height: 4.7rem;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.015);
  color: var(--text-soft);
  display: grid;
  grid-template-columns: 2.65rem minmax(0, 1fr) 3rem;
  align-items: center;
  gap: 0.64rem;
  padding: 0.56rem 0.78rem;
  text-align: left;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
  cursor: pointer;
}

.plan-day:hover,
.plan-day:focus-visible {
  border-color: var(--line-mid);
  background: rgba(255, 255, 255, 0.055);
  outline: none;
}

.plan-day.is-selected {
  border-color: rgba(194, 64, 31, 0.58);
  background: linear-gradient(180deg, rgba(194, 64, 31, 0.16), rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.plan-day-code {
  color: var(--text-muted);
  font-size: 0.89rem;
  font-weight: 620;
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: center;
  align-self: center;
}

.plan-sessions {
  display: grid;
  gap: 0.3rem;
  align-content: center;
  min-height: 0;
  align-self: center;
}

.plan-session {
  display: grid;
  grid-template-columns: 1.9rem minmax(0, 1fr);
  align-items: center;
  column-gap: 0.44rem;
  min-height: 1.54rem;
}

.plan-session img {
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 8px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.12rem;
  object-fit: contain;
  opacity: 0.98;
  filter: grayscale(0.08) brightness(1.08);
}

.plan-session span {
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 570;
  letter-spacing: 0.01em;
  line-height: 1.16;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.plan-sessions-empty {
  display: flex;
  align-items: center;
}

.plan-session-name {
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 560;
}

.plan-metrics {
  display: grid;
  align-content: center;
  justify-items: end;
  gap: 0.12rem;
  text-align: right;
  align-self: center;
}

.plan-volume {
  color: var(--text-muted);
  font-size: 0.64rem;
  font-weight: 620;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.plan-load {
  color: #e2e7f2;
  font-size: 0.98rem;
  font-weight: 620;
  text-align: right;
  line-height: 1;
  opacity: 0.98;
}

.plan-detail {
  margin-top: 0.92rem;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.95rem 0.95rem 0.9rem;
  height: 11.7rem;
  overflow: hidden;
  display: grid;
  align-content: start;
  transition: opacity 220ms ease, transform 220ms ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.plan-detail.is-updating {
  opacity: 0.52;
  transform: translateY(4px);
}

.plan-detail-day {
  margin: 0;
  color: #de7458;
  font-size: 0.75rem;
  font-weight: 620;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-detail-title {
  margin-top: 0.45rem;
  font-size: 0.98rem;
  line-height: 1.24;
  font-weight: 610;
  color: var(--text);
}

.plan-detail-meta {
  margin: 0.6rem 0 0;
  color: var(--text-soft);
  font-size: 0.81rem;
}

.plan-detail-copy {
  margin: 0.52rem 0 0;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.hero-shot {
  margin: 0;
  width: min(100%, 17rem);
  justify-self: center;
  height: auto;
  filter: none;
}

.panel-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.87rem;
}

.hero-orb {
  position: absolute;
  right: -6rem;
  top: -0.4rem;
  width: min(60vw, 42rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 73% 72%, rgba(194, 64, 31, 0.21), rgba(194, 64, 31, 0));
  filter: none;
  z-index: -1;
  animation: none;
  pointer-events: none;
}

main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-20px, 18px, 0);
  }
}

.section-head {
  max-width: 52rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head .lead-sm {
  margin: 1rem 0 0;
  color: var(--text-soft);
  font-size: 1rem;
  max-width: 41rem;
}

.grid {
  display: grid;
  gap: 1.05rem;
}

.grid-3,
.grid-2 {
  grid-template-columns: 1fr;
}

.card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  padding: clamp(1.2rem, 3vw, 1.6rem);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.card:hover {
  border-color: var(--line-mid);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
}

.card p {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.card-emphasis {
  border-color: rgba(194, 64, 31, 0.35);
  background: linear-gradient(180deg, rgba(194, 64, 31, 0.1), rgba(255, 255, 255, 0.018) 52%);
}

.feature-card {
  min-height: 12.4rem;
}

.feature-kicker {
  margin: 0;
  color: #de7458;
  font-size: 0.73rem;
  font-weight: 620;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.feature-card h3 {
  margin-top: 0.52rem;
}

.showcase-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}

.visual-column {
  display: grid;
  gap: 0.75rem;
}

.visual-chip {
  margin: 0;
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  align-items: center;
  min-height: 5.1rem;
  padding: 0.78rem 0.85rem;
}

.visual-chip h3 {
  font-size: 0.9rem;
  margin: 0;
}

.visual-chip p {
  margin: 0.26rem 0 0;
  color: var(--text-muted);
  font-size: 0.81rem;
  line-height: 1.3;
}

.showcase-shot {
  width: min(100%, 22.25rem);
  height: auto;
  justify-self: center;
  align-self: center;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  filter: none;
}

.screenshot-section::before {
  content: none;
}

.screenshot-layout {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.philosophy-grid {
  display: grid;
  gap: 1.2rem;
  align-items: start;
}

.stack {
  display: grid;
  gap: 0.8rem;
}

.stack-item {
  border: 1px solid var(--line-soft);
  border-left: 2px solid rgba(194, 64, 31, 0.62);
  border-radius: 13px;
  padding: 1.05rem 1.02rem 1rem 1.08rem;
  background: rgba(255, 255, 255, 0.02);
}

.stack-item p {
  margin: 0.46rem 0 0;
  color: var(--text-muted);
}

.cta-section {
  padding-top: clamp(4.2rem, 9vw, 6.8rem);
  padding-bottom: clamp(4.9rem, 10vw, 7.4rem);
}

.cta-shell {
  border: 1px solid rgba(194, 64, 31, 0.35);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(620px 280px at 12% -14%, rgba(194, 64, 31, 0.16), rgba(194, 64, 31, 0)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-elev), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: clamp(1.35rem, 4vw, 2.8rem);
}

.cta-shell h2 {
  margin-top: 0.35rem;
}

.cta-shell p {
  margin: 0.85rem 0 0;
  color: var(--text-soft);
}

.waitlist-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin-top: 1.35rem;
  max-width: 34rem;
}

.waitlist-form input {
  width: 100%;
  border: 1px solid var(--line-mid);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
  padding: 0.9rem 1rem;
}

.waitlist-form input::placeholder {
  color: var(--text-muted);
}

.waitlist-form input:focus-visible {
  border-color: rgba(194, 64, 31, 0.7);
  outline: 2px solid rgba(194, 64, 31, 0.23);
  outline-offset: 1px;
}

.form-feedback {
  min-height: 1.2rem;
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.site-footer {
  position: relative;
  border-top: 1px solid var(--line-soft);
  padding: 1.8rem 0 2.5rem;
  background: rgba(5, 7, 11, 0.75);
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-shell img {
  width: 112px;
  height: auto;
}

.footer-meta {
  display: grid;
  gap: 0.72rem;
  justify-items: end;
}

.footer-meta p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.43rem;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 0.43rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 560;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--text);
  border-color: var(--line-mid);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.footer-social svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: currentColor;
  flex: 0 0 auto;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  padding: 0.32rem 0.1rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 560;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links a[aria-current="page"] {
  color: var(--text);
  outline: none;
}

.legal-body {
  background:
    radial-gradient(820px 420px at 88% -8%, rgba(194, 64, 31, 0.08), transparent 68%),
    linear-gradient(180deg, #0b0d11, #05060a 48%, #040508);
}

.site-header-legal {
  position: sticky;
  top: 0;
}

.legal-nav-shell {
  min-height: 4.2rem;
}

.legal-main {
  padding: clamp(3.6rem, 7vw, 5.2rem) 0 clamp(4.3rem, 8vw, 6rem);
}

.legal-shell {
  width: min(780px, calc(100% - 2.6rem));
  margin-inline: auto;
}

.legal-hero {
  padding-bottom: 1.35rem;
}

.legal-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  margin-top: 0.18rem;
}

.legal-subtitle {
  margin: 1rem 0 0;
  max-width: 46rem;
  color: var(--text-soft);
  font-size: 1rem;
}

.legal-meta {
  margin: 1.1rem 0 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-flow {
  display: grid;
  gap: 1rem;
}

.legal-card {
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: clamp(1.2rem, 3vw, 1.6rem);
}

.legal-card h2 {
  font-size: clamp(1.16rem, 2.4vw, 1.5rem);
  line-height: 1.12;
}

.legal-card p,
.legal-card li {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.legal-card p + p,
.legal-card p + ul,
.legal-card p + ol,
.legal-card ul + p,
.legal-card ol + p {
  margin-top: 0.95rem;
}

.legal-card ul,
.legal-card ol {
  margin: 0.95rem 0 0;
  padding-left: 1.15rem;
}

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

.legal-card strong {
  color: var(--text);
}

.legal-grid {
  display: grid;
  gap: 0.9rem;
}

.legal-grid-2 {
  grid-template-columns: 1fr;
}

.legal-label {
  display: block;
  margin: 0 0 0.42rem;
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 620;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.legal-value {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.legal-inline-list {
  display: grid;
  gap: 0.72rem;
}

.legal-inline-list div {
  padding-bottom: 0.72rem;
  border-bottom: 1px solid var(--line-soft);
}

.legal-inline-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.legal-alert {
  margin-top: 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(194, 64, 31, 0.34);
  background: rgba(194, 64, 31, 0.09);
  padding: 0.9rem 1rem;
  color: #f2c3b7;
  font-size: 0.92rem;
}

.legal-placeholder {
  color: #ff6f61;
  font-weight: 620;
}

.legal-placeholder-block {
  display: block;
  margin-top: 0.5rem;
}

.legal-footer .footer-shell {
  align-items: flex-start;
}

.legal-footer .footer-brand {
  display: inline-flex;
  align-items: center;
}

.contact-links-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
  margin-top: 1rem;
}

.contact-link-card {
  display: grid;
  grid-template-columns: 2.9rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  min-height: 4.7rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.contact-link-card:hover,
.contact-link-card:focus-visible {
  border-color: rgba(194, 64, 31, 0.42);
  background: linear-gradient(180deg, rgba(194, 64, 31, 0.12), rgba(255, 255, 255, 0.03));
  transform: translateY(-1px);
  outline: none;
}

.contact-link-icon {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.04);
  object-fit: cover;
  padding: 0.4rem;
}

.contact-link-copy {
  min-width: 0;
}

.contact-link-label {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 620;
  line-height: 1.2;
}

.contact-link-value {
  display: block;
  margin-top: 0.22rem;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.3;
  word-break: break-word;
}

.contact-link-arrow {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1;
}

.hero-step {
  opacity: 0;
  transform: translate3d(22px, -24px, 0);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 720ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--hero-delay, 0ms);
}

.hero-headline {
  opacity: 0;
  transform: translate3d(24px, -26px, 0);
  transition:
    opacity 780ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 780ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--hero-delay, 0ms);
}

body.is-hero-ready .hero-step {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.is-hero-ready .hero-headline {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition:
    opacity 520ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 520ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--delay, 0ms);
}

.reveal .reveal-heading {
  opacity: 0.2;
  transform: translate3d(0, 10px, 0);
  transition:
    opacity 620ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: calc(var(--delay, 0ms) + 30ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal.is-visible .reveal-heading {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.skip-link {
  position: absolute;
  left: 0.8rem;
  top: -3rem;
  z-index: 160;
  border-radius: 9px;
  padding: 0.52rem 0.72rem;
  background: #111522;
  color: #fff;
  border: 1px solid var(--line-mid);
}

.skip-link:focus {
  top: 0.8rem;
}

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

@media (min-width: 740px) {
  .waitlist-form {
    grid-template-columns: 1fr auto;
  }

  .waitlist-form .btn {
    min-width: 10.75rem;
  }
}

@media (min-width: 900px) {
  .hero-orb {
    right: -1rem;
    width: min(44vw, 33rem);
    opacity: 0.52;
  }

  .brand img {
    width: 150px;
  }

  .nav-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 0.16rem;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
  }

  .primary-nav a {
    font-size: 0.9rem;
    padding-inline: 0.72rem;
  }

  .btn-nav {
    margin: 0 0 0 0.48rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
    align-items: start;
  }

  .hero-visual {
    gap: 1.2rem;
  }

  .hero-shot {
    width: min(100%, 18rem);
    justify-self: end;
  }

  .showcase-shot {
    width: min(100%, 24rem);
  }

  .screenshot-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.62fr);
    gap: 2.1rem;
  }

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

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

  .showcase-shell {
    grid-template-columns: minmax(210px, 0.42fr) minmax(0, 1fr) minmax(210px, 0.42fr);
    gap: 1rem;
  }

  .philosophy-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    gap: 2rem;
  }

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

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

@media (max-width: 899px) {
  html,
  body {
    overflow-x: hidden !important;
    overscroll-behavior-x: none;
  }

  body {
    touch-action: pan-y;
  }

  .hero-step,
  .hero-headline,
  .reveal,
  .reveal .reveal-heading {
    transition: none !important;
    opacity: 1;
    transform: none;
  }

  .primary-nav {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
  }

  .hero-panel,
  .card,
  .visual-chip,
  .cta-shell {
    box-shadow: none;
  }

  .hero-shot,
  .showcase-shot {
    filter: none;
  }

  .hero-orb {
    right: -2rem;
    width: 44vw;
    opacity: 0.42;
  }

}

@media (max-width: 739px) {
  .brand img {
    width: 122px;
  }

  .footer-shell img {
    width: 96px;
  }

  .footer-meta {
    justify-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (min-width: 1200px) {
  .section {
    padding: 8rem 0;
  }

  .hero {
    padding-top: 9.2rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal .reveal-heading,
  .hero-step,
  .hero-headline {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
