:root {
  color-scheme: dark;
  --bg: #100f13;
  --bg-soft: #16131c;
  --surface: rgba(28, 24, 34, 0.62);
  --surface-strong: rgba(35, 29, 42, 0.82);
  --border: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(255, 255, 255, 0.18);
  --text: #f8f6fa;
  --text-muted: #aaa5b0;
  --red: #ff2929;
  --orange: #ff7a18;
  --gold: #ffd122;
  --violet: #6d2cff;
  --brand-gradient: linear-gradient(115deg, var(--red) 2%, var(--orange) 52%, var(--gold) 100%);
  --container: 1180px;
  --header-height: 76px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI Variable Display", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

img,
svg {
  display: block;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #111;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.glass-panel {
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 80px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  backdrop-filter: blur(22px) saturate(130%);
}

.ambient {
  position: fixed;
  z-index: -2;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.05), transparent 32%),
    linear-gradient(180deg, rgba(20, 17, 25, 0.18), var(--bg) 88%);
  content: "";
}

.ambient__orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.22;
  filter: blur(130px);
  will-change: transform;
}

.ambient__orb--violet {
  width: 460px;
  height: 460px;
  top: 8%;
  right: -150px;
  background: #6b23f3;
  animation: orb-drift-one 18s ease-in-out infinite alternate;
}

.ambient__orb--orange {
  width: 380px;
  height: 380px;
  bottom: 10%;
  left: -190px;
  background: #f43b19;
  animation: orb-drift-two 22s ease-in-out infinite alternate;
}

.ambient__orb--gold {
  width: 260px;
  height: 260px;
  top: 44%;
  left: 48%;
  background: #f4a11a;
  opacity: 0.08;
  animation: orb-pulse 14s ease-in-out infinite;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 18px;
}

.site-header__inner {
  min-height: 58px;
  padding: 8px 10px 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 18px;
  background: rgba(20, 18, 24, 0.68);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand__mark {
  width: 34px;
  height: 34px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.brand__mark img,
.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand__badge {
  padding: 4px 8px;
  border: 1px solid rgba(255, 171, 38, 0.2);
  border-radius: 999px;
  background: rgba(255, 122, 24, 0.1);
  color: #ffbd62;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.github-link {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #c6c2ca;
  transition: color 220ms ease, border-color 220ms ease, background-color 220ms ease, transform 220ms var(--ease-out);
}

.github-link svg {
  width: 21px;
  height: 21px;
}

.github-link:hover,
.github-link:focus-visible {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transform: translateY(-1px);
}

.github-link__tooltip {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: max-content;
  padding: 8px 11px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: rgba(20, 18, 24, 0.96);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
  color: #e9e6eb;
  font-size: 11px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-5px) scale(0.96);
  transform-origin: top right;
  transition: opacity 180ms ease, transform 220ms var(--ease-out);
}

.github-link__tooltip::before {
  position: absolute;
  right: 14px;
  bottom: 100%;
  border-right: 5px solid transparent;
  border-bottom: 5px solid rgba(20, 18, 24, 0.96);
  border-left: 5px solid transparent;
  content: "";
}

.github-link:hover .github-link__tooltip,
.github-link:focus-visible .github-link__tooltip {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 160px 0 110px;
  overflow: clip;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.hero__background {
  position: absolute;
  z-index: -1;
  inset: -16px;
  overflow: hidden;
  opacity: 0.16;
  background-image: linear-gradient(90deg, var(--bg) 0%, transparent 35%, rgba(16, 15, 19, 0.3) 60%, var(--bg) 100%), url("auth_bg.png");
  background-position: center, center bottom;
  background-size: cover, cover;
  background-repeat: no-repeat;
  filter: blur(4px);
  mask-image: linear-gradient(to bottom, transparent 4%, #000 28%, #000 70%, transparent 100%);
}

.hero__background::after {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 13, 0.3);
  content: "";
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  align-items: center;
  gap: clamp(44px, 7vw, 100px);
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 24px;
  padding: 7px 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #c8c3cd;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: status-pulse 2.2s ease-in-out infinite;
}

h1 {
  margin: 0;
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.gradient-text {
  display: inline-block;
  padding-right: 0.08em;
  background: var(--brand-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero__description {
  max-width: 580px;
  margin: 28px 0 0;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero__actions {
  margin-top: 36px;
}

.download-button {
  position: relative;
  min-width: 292px;
  min-height: 68px;
  padding: 10px 12px 10px 18px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border: 0;
  border-radius: 18px;
  background: var(--brand-gradient);
  box-shadow: 0 14px 36px rgba(255, 70, 23, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  color: #171014;
  cursor: not-allowed;
  text-align: left;
  isolation: isolate;
  transition: transform 280ms var(--ease-out), box-shadow 280ms ease;
}

.download-button::before {
  position: absolute;
  z-index: -1;
  top: -150%;
  left: -40%;
  width: 55%;
  height: 400%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  content: "";
  transform: rotate(22deg) translateX(-180%);
  transition: transform 700ms var(--ease-out);
}

.download-button:hover,
.download-button:focus-visible {
  box-shadow: 0 18px 54px rgba(255, 76, 20, 0.32), 0 0 0 1px rgba(255, 211, 32, 0.16);
  transform: translateY(-3px) scale(1.01);
}

.download-button:hover::before,
.download-button:focus-visible::before {
  transform: rotate(22deg) translateX(500%);
}

.download-button__icon {
  width: 40px;
  height: 40px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(22, 14, 17, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.24);
}

.download-button__icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.download-button__label {
  display: grid;
  flex: 1;
  gap: 2px;
  font-size: 14px;
  font-weight: 800;
}

.download-button__label small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  opacity: 0.68;
  text-transform: uppercase;
}

.download-button__status {
  padding: 6px 8px;
  border: 1px solid rgba(22, 14, 17, 0.12);
  border-radius: 8px;
  background: rgba(17, 12, 14, 0.09);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trial-note {
  margin: 15px 0 0 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8d8794;
  font-size: 11px;
}

.trial-note svg {
  width: 14px;
  height: 14px;
  fill: rgba(255, 174, 28, 0.12);
  stroke: #d99e3d;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.product-stage {
  position: relative;
  min-width: 0;
  padding: 58px 0 48px;
  perspective: 1200px;
}

.product-stage__glow {
  position: absolute;
  z-index: -1;
  inset: 16% 8% 12%;
  border-radius: 40%;
  background: radial-gradient(circle, rgba(255, 86, 25, 0.36), rgba(108, 44, 255, 0.16) 45%, transparent 70%);
  filter: blur(52px);
  animation: mockup-glow 6s ease-in-out infinite alternate;
}

.app-window {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background: rgba(21, 18, 25, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 42px 100px rgba(0, 0, 0, 0.44), 0 0 60px rgba(255, 85, 21, 0.08);
  transform: rotateY(-4deg) rotateX(1.5deg);
  transition: transform 600ms var(--ease-out), border-color 400ms ease;
}

.product-stage:hover .app-window {
  border-color: rgba(255, 158, 51, 0.23);
  transform: rotateY(0) rotateX(0) translateY(-4px);
}

.app-window__bar {
  min-height: 58px;
  padding: 11px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
}

.app-window__identity {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d9d5dc;
  font-size: 12px;
  font-weight: 700;
}

.app-window__identity img {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  box-shadow: 0 5px 14px rgba(255, 60, 31, 0.22);
}

.window-controls {
  display: flex;
  gap: 6px;
}

.window-controls span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
}

.window-controls span:first-child {
  background: rgba(255, 209, 34, 0.56);
}

.app-window__canvas {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #151515;
}

.app-window__screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.benefits {
  position: relative;
  padding: 0 0 34px;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.benefit-card {
  position: relative;
  min-width: 0;
  padding: 22px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border-radius: 18px;
  background: rgba(27, 23, 32, 0.58);
  transition: border-color 280ms ease, transform 320ms var(--ease-out), box-shadow 320ms ease;
}

.benefit-card::after {
  position: absolute;
  z-index: -1;
  inset: auto 12% -65% 12%;
  height: 90%;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(255, 42, 36, 0.16), rgba(255, 126, 24, 0.14), rgba(255, 209, 34, 0.12));
  content: "";
  filter: blur(34px);
  opacity: 0;
  transition: opacity 320ms ease, transform 420ms var(--ease-out);
}

.benefit-card:hover,
.benefit-card:focus-within {
  border-color: rgba(255, 151, 43, 0.18);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.2), 0 0 34px rgba(255, 87, 27, 0.045);
  transform: translateY(-3px);
}

.benefit-card:hover::after,
.benefit-card:focus-within::after {
  opacity: 1;
  transform: translateY(-20%);
}

.benefit-card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 146, 39, 0.14);
  border-radius: 12px;
  background: rgba(255, 111, 24, 0.07);
  color: #ff9c42;
  font-size: 17px;
  font-weight: 700;
}

.benefit-card__icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.benefit-card h2 {
  margin: 1px 0 6px;
  font-size: 13px;
  letter-spacing: -0.02em;
}

.benefit-card p {
  margin: 0;
  color: #89838e;
  font-size: 10px;
  line-height: 1.6;
}

/* Showcase 3D section */

.showcase {
  padding: 40px 0 20px;
}

.showcase__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
}

.showcase__eyebrow {
  margin: 0 0 14px;
  color: #ffac43;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.showcase h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.showcase__description {
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}

.showcase__canvas-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(16, 15, 19, 0.5);
  transition: border-color 400ms ease, box-shadow 400ms ease;
}

.showcase__canvas-wrap:hover {
  border-color: rgba(255, 158, 51, 0.23);
  box-shadow: 0 0 80px rgba(255, 85, 21, 0.08), 0 32px 80px rgba(0, 0, 0, 0.3);
}

#showcase-canvas {
  display: block;
  width: 100%;
  height: 100%;
  touch-action: none;
}

.showcase__hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  margin: 0;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #8e8994;
  font-size: 10px;
  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 300ms ease;
}

.showcase__canvas-wrap:hover .showcase__hint {
  opacity: 0;
}

.early-access {
  padding: 34px 0 110px;
}

.early-access__card {
  position: relative;
  min-height: 330px;
  padding: clamp(38px, 5vw, 68px);
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: rgba(25, 21, 30, 0.7);
  text-align: center;
}

.early-access__glow {
  position: absolute;
  inset: auto 15% -90% 15%;
  height: 150%;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(255, 35, 38, 0.16), rgba(255, 122, 24, 0.18), rgba(255, 209, 34, 0.12));
  filter: blur(70px);
  pointer-events: none;
}

.early-access__content,
.early-access__success {
  position: relative;
  z-index: 1;
  width: min(100%, 710px);
}

.early-access__eyebrow {
  margin: 0 0 12px;
  color: #ffac43;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.early-access h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.early-access__description {
  margin: 16px auto 26px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
}

.access-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.access-form__honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.email-control {
  position: relative;
  min-width: 0;
  padding: 1px;
  display: flex;
  align-items: center;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 260ms ease, box-shadow 260ms ease;
}

.email-control:focus-within {
  background: var(--brand-gradient);
  box-shadow: 0 0 0 4px rgba(255, 105, 24, 0.08), 0 10px 30px rgba(255, 64, 25, 0.09);
}

.email-control svg {
  position: absolute;
  z-index: 1;
  left: 17px;
  width: 18px;
  fill: none;
  stroke: #8f8995;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  pointer-events: none;
}

.email-control input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px 0 48px;
  border: 0;
  border-radius: 14px;
  outline: 0;
  background: rgba(16, 14, 19, 0.88);
  color: var(--text);
  font-size: 13px;
}

.email-control input::placeholder {
  color: #696470;
}

.notify-button {
  min-height: 58px;
  padding: 0 24px;
  border: 0;
  border-radius: 15px;
  background: var(--brand-gradient);
  box-shadow: 0 10px 28px rgba(255, 74, 21, 0.16);
  color: #171014;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: transform 240ms var(--ease-out), box-shadow 240ms ease;
}

.notify-button:hover,
.notify-button:focus-visible {
  box-shadow: 0 14px 38px rgba(255, 74, 21, 0.25);
  transform: translateY(-2px);
}

.notify-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.access-form__error {
  min-height: 17px;
  margin: 7px 4px 0;
  color: #ff796a;
  font-size: 10px;
  text-align: left;
}

.access-form__trial {
  margin: 2px 0 0;
  color: var(--text-muted);
  font-size: 10px;
  opacity: 0.7;
}

.early-access__content.is-leaving {
  animation: form-leave 280ms ease forwards;
}

.early-access__success {
  max-width: 760px;
  align-items: center;
  gap: 18px;
  opacity: 0;
  transform: translateY(12px);
}

.early-access__success.is-visible {
  display: flex;
  animation: form-success 500ms var(--ease-out) forwards;
}

.early-access__success-icon {
  width: 52px;
  height: 52px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 181, 51, 0.22);
  border-radius: 50%;
  background: rgba(255, 121, 24, 0.09);
  color: #ffb23e;
}

.early-access__success-icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.early-access__success p {
  margin: 0;
  color: #d1ccd5;
  font-size: 14px;
  line-height: 1.75;
  text-align: left;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(12, 11, 14, 0.5);
}

.site-footer__inner {
  min-height: 112px;
  padding-block: 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer-brand {
  font-size: 14px;
  font-weight: 700;
}

.footer-brand img {
  width: 28px;
  height: 28px;
}

.site-footer p {
  margin: 0;
  color: #716c77;
  font-size: 10px;
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.site-footer nav a {
  color: #8e8994;
  font-size: 10px;
  transition: color 180ms ease;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: #fff;
}

/* Legal pages */

.legal-page {
  padding: 160px 0 110px;
}

.legal-page__content {
  max-width: 780px;
}

.legal-page h1 {
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.legal-page__date {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 48px;
}

.legal-page h2 {
  font-size: 18px;
  margin-top: 40px;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.legal-page ul {
  padding-left: 24px;
  margin: 12px 0;
}

.legal-page li {
  margin-bottom: 8px;
}

.legal-page a {
  color: #ffbd62;
  text-decoration: underline;
  transition: color 180ms ease;
}

.legal-page a:hover {
  color: #fff;
}

.legal-page__back {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.legal-page__back a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

/* Contact page */

.contact-page {
  padding: 160px 0 110px;
}

.contact-page__content {
  max-width: 640px;
}

.contact-page__header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-page__eyebrow {
  color: #ffac43;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.contact-page__header h1 {
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.contact-page__description {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.contact-page__card {
  position: relative;
  padding: clamp(32px, 4vw, 48px);
  border-radius: 24px;
}

.contact-form__field {
  margin-bottom: 20px;
}

.contact-form__label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.contact-form__input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(16, 14, 19, 0.88);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  transition: border-color 260ms ease, box-shadow 260ms ease;
}

.contact-form__input:focus {
  outline: none;
  border-color: rgba(255, 122, 24, 0.5);
  box-shadow: 0 0 0 4px rgba(255, 105, 24, 0.08);
}

.contact-form__input::placeholder {
  color: #696470;
}

.contact-form__input[aria-invalid="true"] {
  border-color: #ff5c5c;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__error {
  min-height: 17px;
  margin-top: 6px;
  color: #ff796a;
  font-size: 10px;
}

.contact-form__submit {
  width: 100%;
  margin-top: 8px;
}

.contact-page__form-wrapper.is-leaving {
  animation: form-leave 280ms ease forwards;
}

.contact-page__success {
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(12px);
}

.contact-page__success.is-visible {
  animation: form-success 500ms var(--ease-out) forwards;
}

.contact-page__success-icon {
  width: 52px;
  height: 52px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 181, 51, 0.22);
  border-radius: 50%;
  background: rgba(255, 121, 24, 0.09);
  color: #ffb23e;
}

.contact-page__success-icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-page__success h2 {
  margin: 0 0 4px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.contact-page__success p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Cookie consent */

.cookie-consent {
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 0;
  background: rgba(20, 18, 24, 0.96);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cookie-consent__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-consent__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.cookie-consent__text a {
  color: #ffbd62;
  text-decoration: underline;
}

.cookie-consent__text a:hover {
  color: #fff;
}

.cookie-consent__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-consent__btn {
  padding: 10px 20px;
  border: 0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 200ms var(--ease-out), box-shadow 200ms ease;
}

.cookie-consent__btn--accept {
  background: var(--brand-gradient);
  color: #171014;
  box-shadow: 0 8px 20px rgba(255, 74, 21, 0.16);
}

.cookie-consent__btn--accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 74, 21, 0.25);
}

.cookie-consent__btn--decline {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.cookie-consent__btn--decline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
}

.is-ready [data-reveal] {
  animation: reveal 850ms var(--ease-out) forwards;
  animation-delay: var(--reveal-delay, 0ms);
}

:focus-visible {
  outline: 2px solid #ffad29;
  outline-offset: 4px;
}

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes orb-drift-one {
  to { transform: translate3d(-130px, 90px, 0) scale(1.18); }
}

@keyframes orb-drift-two {
  to { transform: translate3d(120px, -100px, 0) scale(1.1); }
}

@keyframes orb-pulse {
  50% { transform: scale(1.35); opacity: 0.14; }
}

@keyframes status-pulse {
  50% { opacity: 0.55; box-shadow: 0 0 5px var(--gold); }
}

@keyframes mockup-glow {
  to { transform: scale(1.12); opacity: 0.75; }
}

@keyframes form-leave {
  to { opacity: 0; transform: translateY(-10px); }
}

@keyframes form-success {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .hero {
    padding-top: 140px;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero__copy {
    max-width: 680px;
    text-align: center;
    margin-inline: auto;
  }

  .eyebrow,
  .hero__description {
    margin-inline: auto;
  }

  .trial-note {
    justify-content: center;
  }

  .product-stage {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .showcase__content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .showcase__description {
    margin-inline: auto;
  }

  .showcase__canvas-wrap {
    width: min(100%, 500px);
    margin-inline: auto;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    padding-top: 10px;
  }

  .site-header__inner {
    border-radius: 15px;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 74px;
  }

  .hero__background {
    opacity: 0.09;
    background-position: center, 36% 54%;
    background-size: cover, auto 70%;
  }

  .eyebrow {
    margin-bottom: 20px;
  }

  h1 {
    font-size: clamp(39px, 12.8vw, 58px);
    line-height: 1.01;
  }

  .hero__description {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.7;
  }

  .hero__actions {
    margin-top: 28px;
  }

  .download-button {
    width: 100%;
    max-width: 340px;
    min-width: 0;
  }

  .product-stage {
    padding: 25px 0 42px;
  }

  .app-window {
    border-radius: 19px;
    transform: none;
  }

  .app-window__bar {
    min-height: 48px;
    padding: 8px 11px;
  }

  .app-window__identity img {
    width: 28px;
    height: 28px;
  }

  .benefit-card {
    padding: 18px;
  }

  .showcase {
    padding: 20px 0 10px;
  }

  .showcase h2 {
    font-size: clamp(26px, 8vw, 40px);
  }

  .showcase__canvas-wrap {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }

  .early-access {
    padding: 26px 0 72px;
  }

  .early-access__card {
    min-height: 390px;
    padding: 34px 20px;
    border-radius: 22px;
  }

  .access-form__row {
    grid-template-columns: 1fr;
  }

  .notify-button {
    width: 100%;
  }

  .early-access__success.is-visible {
    flex-direction: column;
  }

  .early-access__success p {
    font-size: 12px;
    text-align: center;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    text-align: center;
  }

  .site-footer nav {
    justify-content: center;
  }

  .legal-page {
    padding: 120px 0 72px;
  }

  .legal-page h2 {
    font-size: 16px;
  }

  .contact-page {
    padding: 120px 0 72px;
  }

  .contact-page__success {
    flex-direction: column;
    text-align: center;
  }

  .cookie-consent__inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .cookie-consent__actions {
    width: 100%;
    justify-content: center;
  }

  .cookie-consent__btn {
    flex: 1;
    max-width: 160px;
  }
}

@media (max-width: 360px) {
  .brand__name {
    font-size: 16px;
  }

  .brand__badge {
    padding-inline: 6px;
  }

  .download-button__status {
    display: none;
  }
}

/* ─────────────────────────────────────────────
 *  Auth: header controls
 * ───────────────────────────────────────────── */

.site-header--sub {
  position: sticky;
  top: 0;
  padding-top: 0;
  z-index: 20;
}

.site-header--sub .site-header__inner {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  background: rgba(20, 18, 24, 0.92);
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: 8px;
}

[data-auth-controls] {
  display: flex;
  align-items: center;
  gap: 8px;
}

.auth-link {
  padding: 6px 10px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
  text-decoration: none;
}

.auth-link:hover,
.auth-link:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.auth-button {
  padding: 7px 16px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms var(--ease-out);
}

.auth-button:hover,
.auth-button:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.auth-verify-notice {
  color: #ffbd62;
  font-size: 12px;
  font-weight: 600;
}

/* User menu */
.auth-menu {
  position: relative;
}

.auth-menu__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px 4px 4px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.auth-menu__toggle:hover,
.auth-menu__toggle:focus-visible {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.05);
}

.auth-avatar__img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.auth-avatar__initial {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: #171014;
  font-size: 13px;
  font-weight: 800;
}

.auth-menu__name {
  font-size: 13px;
  font-weight: 600;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-menu__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  padding: 6px;
  border-radius: 14px;
  z-index: 30;
}

.auth-menu__item {
  display: block;
  width: 100%;
  padding: 9px 12px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 150ms ease;
}

.auth-menu__item:hover,
.auth-menu__item:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.auth-menu__item--danger {
  color: #ff6b6b;
}

.auth-menu__item--danger:hover,
.auth-menu__item--danger:focus-visible {
  background: rgba(255, 60, 60, 0.1);
}

/* ─────────────────────────────────────────────
 *  Auth: page layout
 * ───────────────────────────────────────────── */

.auth-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 100px 24px 60px;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  padding: 32px 28px;
  border-radius: 22px;
}

/* Tabs */
.auth-card__tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  margin-bottom: 28px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.auth-card__tab {
  flex: 1;
  padding: 10px 8px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
}

.auth-card__tab--active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.auth-card__tab:not(.auth-card__tab--active):hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

/* Form */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.auth-field__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.auth-input-wrap {
  position: relative;
}

.auth-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.auth-input::placeholder {
  color: rgba(170, 165, 176, 0.5);
}

.auth-input:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(109, 44, 255, 0.2);
}

.auth-input-wrap .auth-input {
  padding-right: 44px;
}

.auth-input-toggle {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 150ms ease, background 150ms ease;
}

.auth-input-toggle:hover,
.auth-input-toggle:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.auth-input-toggle svg {
  width: 18px;
  height: 18px;
}

/* Errors & success messages */
.auth-form__error {
  color: #ff6b6b;
  font-size: 13px;
  font-weight: 500;
  min-height: 1em;
}

.auth-form__success {
  color: #6bcb77;
  font-size: 13px;
  font-weight: 500;
  min-height: 1em;
}

.auth-form__description {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.auth-form__links {
  display: flex;
  justify-content: center;
}

/* Submit button */
.auth-submit {
  width: 100%;
  padding: 13px 20px;
  border: none;
  border-radius: 14px;
  background: var(--brand-gradient);
  box-shadow: 0 8px 24px rgba(255, 70, 23, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #171014;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: transform 200ms var(--ease-out), box-shadow 200ms ease;
}

.auth-submit:hover,
.auth-submit:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 76, 20, 0.28);
}

.auth-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Divider */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Google button */
.auth-google {
  width: 100%;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms var(--ease-out);
}

.auth-google svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.auth-google:hover,
.auth-google:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

.auth-google:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Verify screen */
.auth-verify {
  text-align: center;
}

.auth-verify__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 189, 98, 0.12);
  color: #ffbd62;
}

.auth-verify__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.auth-verify__title {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
}

.auth-verify__email {
  color: var(--violet);
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 12px;
  word-break: break-all;
}

.auth-verify__text {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 24px;
}

/* Spinner */
.auth-spinner {
  width: 32px;
  height: 32px;
  margin: 0 auto 16px;
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--violet);
  border-radius: 50%;
  animation: auth-spin 0.7s linear infinite;
}

@keyframes auth-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Auth action states (verify/reset from email) */
.auth-action-state {
  text-align: center;
  padding: 20px 0;
}

.auth-action-state__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.auth-action-state__icon svg {
  width: 30px;
  height: 30px;
}

.auth-action-state__icon--success {
  background: rgba(107, 203, 119, 0.12);
  color: #6bcb77;
}

.auth-action-state__icon--error {
  background: rgba(255, 107, 107, 0.12);
  color: #ff6b6b;
}

.auth-action-state__title {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
}

.auth-action-state__text {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 24px;
}

/* Sub-page footer */
.site-footer--sub {
  padding: 32px 0;
}

.site-footer--sub .site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer--sub p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}

.site-footer--sub nav {
  display: flex;
  gap: 16px;
}

.site-footer--sub nav a {
  color: var(--text-muted);
  font-size: 13px;
  transition: color 150ms ease;
}

.site-footer--sub nav a:hover {
  color: var(--text);
}

/* ─────────────────────────────────────────────
 *  Auth responsive
 * ───────────────────────────────────────────── */

@media (max-width: 680px) {
  .auth-page {
    padding: 80px 16px 40px;
    align-items: flex-start;
  }

  .auth-card {
    padding: 24px 20px;
  }

  .auth-menu__name {
    display: none;
  }

  .auth-button {
    padding: 6px 12px;
    font-size: 12px;
  }

  .auth-link {
    font-size: 12px;
    padding: 5px 8px;
  }

  .site-footer--sub .site-footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

@media (max-width: 360px) {
  .auth-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .auth-card__tab {
    font-size: 13px;
    padding: 8px 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
