:root {
  --color-bg-start: #1e132b;
  --color-bg-end: #0a0a0a;
  --color-accent-start: #fcc385;
  --color-accent-end: #a765d3;
  --color-surface: #100e13;
  --color-surface-2: rgba(255, 255, 255, 0.04);
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-strong: rgba(255, 255, 255, 0.15);
  --color-text: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.8);
  --color-text-soft: rgba(255, 255, 255, 0.62);
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.35);
  --shadow-strong: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius-card: 2rem;
  --radius-pill: 999px;
  --container-width: 76rem;
  --container-padding: 1.5rem;
  --header-offset: 5.75rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top center, rgba(252, 195, 133, 0.08), transparent 32%),
    radial-gradient(circle at 80% 85%, rgba(167, 101, 211, 0.07), transparent 28%),
    radial-gradient(ellipse at top center, var(--color-bg-start) 0%, var(--color-bg-end) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
}

.container {
  width: min(var(--container-width), calc(100% - (var(--container-padding) * 2)));
  margin: 0 auto;
}

.background-stream {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.72;
}

.atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(252, 195, 133, 0.08) 0%, transparent 58%),
    radial-gradient(circle at 78% 72%, rgba(167, 101, 211, 0.08) 0%, transparent 46%);
}

.stream-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.stream-path {
  fill: none;
  stroke: url(#stream-gradient);
  stroke-width: 0.15;
  stroke-linecap: round;
  stroke-dasharray: 140;
  stroke-dashoffset: 140;
  opacity: 0;
  animation: stream-flow 28s linear infinite;
}

.path-2 {
  animation-duration: 34s;
  animation-delay: 2s;
}

.path-3 {
  animation-duration: 30s;
  animation-delay: 5s;
}

.path-4 {
  animation-duration: 40s;
  animation-delay: 3s;
}

.path-5 {
  animation-duration: 36s;
  animation-delay: 8s;
}

.path-6 {
  animation-duration: 32s;
  animation-delay: 6s;
}

.floating-node,
.floating-text {
  position: absolute;
  left: var(--x);
  top: var(--y);
}

.floating-node {
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent-start), var(--color-accent-end));
  filter: blur(1px);
  opacity: 0.4;
  animation: node-float var(--duration) ease-in-out infinite;
  animation-delay: var(--delay);
}

.floating-text {
  font-family: "IBM Plex Mono", "SFMono-Regular", ui-monospace, monospace;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.08em;
  animation: text-float var(--duration) ease-in-out infinite;
  animation-delay: var(--delay);
}

.glass {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 1rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 1.5rem;
}

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

.brand img {
  height: 1.65rem;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link,
.footer-links a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--color-text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.lang-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
  min-height: 3rem;
  min-width: 5.4rem;
  padding: 0.48rem 0.82rem 0.48rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.04));
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 8px 18px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.02);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.lang-button::before,
.lang-button::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.lang-button::before {
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0) 48%);
  opacity: 0.22;
}

.lang-button::after {
  top: 50%;
  left: 34%;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 72%);
  opacity: 0.05;
  transform: translate(-50%, -50%);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.lang-button > * {
  position: relative;
  z-index: 1;
}

.lang-button:hover,
.lang-button:focus-visible {
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.045));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 20px rgba(0, 0, 0, 0.18);
  transform: translateY(-0.5px);
}

.lang-button:hover::after,
.lang-button:focus-visible::after {
  opacity: 0.08;
  transform: translate(-50%, -50%) scale(1.01);
}

.lang-button:focus-visible {
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 20px rgba(0, 0, 0, 0.18),
    0 0 0 0.16rem rgba(255, 255, 255, 0.08);
}

.lang-button svg,
.button svg,
.icon-shell svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.lang-button svg {
  width: 1.08rem;
  height: 1.08rem;
  padding: 0.38rem;
  box-sizing: content-box;
  border-radius: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.03));
  color: var(--color-accent-start);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.lang-button:hover svg,
.lang-button:focus-visible svg {
  transform: scale(1.02);
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffd3a0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.036));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.lang-button__label {
  min-width: 2ch;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 3.25rem;
  padding: 0.95rem 1.6rem;
  border-radius: 1.2rem;
  border: 0;
  background: transparent;
  font-weight: 700;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.button::before,
.button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.button::before {
  inset: -1px;
  z-index: -2;
  background: var(--button-fill, #ffffff);
  transition: transform 180ms ease, filter 180ms ease;
}

.button::after {
  inset: 1px 1px auto;
  height: 52%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  opacity: 0.72;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px) scale(1.01);
}

.button:hover::before,
.button:focus-visible::before {
  transform: scale(1.01);
  filter: saturate(1.05) brightness(1.02);
}

.button:focus-visible {
  outline: none;
}

.button-light {
  --button-fill: linear-gradient(180deg, #ffffff 0%, #f6f0ea 100%);
  color: #0d0d0d;
  box-shadow:
    0 18px 45px rgba(255, 255, 255, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.button-light:hover,
.button-light:focus-visible {
  box-shadow:
    0 22px 52px rgba(255, 255, 255, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.button-gradient {
  --button-fill: linear-gradient(135deg, #f7ba83 0%, #dfa2c0 54%, #ac6dd6 100%);
  color: #0d0d0d;
  box-shadow:
    0 18px 40px rgba(252, 195, 133, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.button-gradient:hover,
.button-gradient:focus-visible {
  box-shadow:
    0 24px 54px rgba(252, 195, 133, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.button-large {
  min-height: 4.1rem;
  padding-inline: 2.4rem;
  font-size: 1.1rem;
}

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

main {
  padding-top: max(1rem, calc(var(--header-offset) - 1rem));
}

.section {
  position: relative;
  padding: 6rem 0;
}

.hero {
  display: flex;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2.5rem;
  min-height: calc(100svh - var(--header-offset) - 1rem);
}

.hero .container {
  width: min(88rem, calc(100% - (var(--container-padding) * 2)));
}

.hero-grid,
.showcase-grid,
.footer-inner {
  display: grid;
  gap: 3rem;
}

.hero-grid {
  width: 100%;
  grid-template-columns: minmax(0, 1.18fr) minmax(18rem, 0.82fr);
  gap: clamp(1.5rem, 2.2vw, 2.5rem);
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

.hero-intro {
  position: relative;
  max-width: 46rem;
}

.hero-intro::before {
  content: "";
  position: absolute;
  inset: 14% -16% -8% -8%;
  z-index: -1;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(252, 195, 133, 0.3), rgba(167, 101, 211, 0.2));
  filter: blur(110px);
  opacity: 0.55;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(252, 195, 133, 0.22);
  background: rgba(252, 195, 133, 0.1);
  color: var(--color-accent-start);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-title,
.section-title {
  margin: 1.4rem 0 0;
  font-family: "Outfit", "Inter", sans-serif;
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.hero-title {
  font-size: clamp(3.35rem, 8vw, 7rem);
  text-wrap: balance;
}

.hero-title span,
.section-title span {
  display: block;
}

.gradient-text {
  display: inline-block;
  padding-right: 0.12em;
  padding-bottom: 0.06em;
  background: linear-gradient(135deg, var(--color-accent-start), var(--color-accent-end));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.body-text,
.section-description,
.check-item {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.75;
  color: var(--color-text-muted);
}

.hero-text {
  max-width: 39rem;
  margin-top: 1.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  position: relative;
  justify-self: center;
  align-self: center;
}

.hero-glow {
  position: absolute;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.24;
}

.hero-glow-left {
  top: -2.5rem;
  right: -4rem;
  background: rgba(252, 195, 133, 0.42);
}

.hero-glow-right {
  bottom: -3rem;
  left: -4rem;
  background: rgba(167, 101, 211, 0.34);
}

.phone-frame {
  position: relative;
  z-index: 1;
  width: min(18.5rem, 25vw);
  max-height: min(39rem, calc(100svh - var(--header-offset) - 6rem));
  aspect-ratio: 9 / 19;
  padding: 0.55rem;
  border-radius: 3.4rem;
  overflow: hidden;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-strong);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3rem;
}

.section-heading {
  max-width: 52rem;
  margin: 0 auto 4rem;
}

.section-heading.centered,
.cta-inner {
  text-align: center;
}

.section-title {
  font-size: clamp(2.8rem, 6vw, 5.25rem);
}

.section-description {
  max-width: 42rem;
  margin: 1.5rem auto 0;
  color: var(--color-text-soft);
}

.section-description-left {
  margin-left: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.feature-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 2.4rem;
  border-radius: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(7, 7, 7, 0.52));
  box-shadow: var(--shadow-soft);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    background-color 260ms ease;
}

.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-0.55rem);
  border-color: rgba(255, 255, 255, 0.16);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(252, 195, 133, 0.18), rgba(167, 101, 211, 0.14));
  opacity: 0;
  filter: blur(22px);
  transition: opacity 260ms ease;
}

.feature-card:hover::before,
.feature-card:focus-within::before {
  opacity: 1;
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.card-highlight {
  position: absolute;
  top: 0;
  left: 14%;
  right: 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  opacity: 0;
  transition: opacity 260ms ease;
}

.feature-card:hover .card-highlight,
.feature-card:focus-within .card-highlight {
  opacity: 1;
}

.feature-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.6rem;
  min-width: 0;
}

.icon-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(252, 195, 133, 0.18), rgba(167, 101, 211, 0.18));
  border: 1px solid var(--color-border-strong);
  color: var(--color-accent-start);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 1rem rgba(252, 195, 133, 0.1);
  transition: transform 260ms ease;
}

.icon-shell svg {
  width: 1.45rem;
  height: 1.45rem;
  stroke-width: 2.2;
  filter: drop-shadow(0 0 0.35rem rgba(252, 195, 133, 0.22));
}

.feature-card:hover .icon-shell,
.feature-card:focus-within .icon-shell {
  transform: scale(1.06) rotate(3deg);
}

.feature-card h3 {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 1.65rem;
  line-height: 1.15;
  text-align: left;
}

.feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  text-align: left;
}

.section-showcase {
  background: rgba(255, 255, 255, 0.02);
  border-block: 1px solid rgba(255, 255, 255, 0.05);
}

.section-showcase .container {
  width: min(90rem, calc(100% - (var(--container-padding) * 2)));
}

.showcase-grid {
  grid-template-columns: minmax(38rem, 44rem) minmax(0, 1fr);
  gap: clamp(3rem, 4vw, 5rem);
  align-items: center;
}

.showcase-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.9rem;
  align-items: start;
  justify-self: start;
  width: min(100%, 44rem);
}

.shot-b {
  margin-top: 5.25rem;
}

.showcase-shot {
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-strong);
}

.showcase-shot img {
  width: 100%;
  height: auto;
}

.showcase-copy {
  max-width: 42rem;
}

.check-list {
  display: grid;
  gap: 1.15rem;
  margin-top: 2.2rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.82);
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(252, 195, 133, 0.16);
}

.check-icon span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--color-accent-start);
  box-shadow: 0 0 12px rgba(252, 195, 133, 0.6);
}

.section-cta {
  padding-block: 7rem 7.5rem;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 62rem;
  display: grid;
  justify-items: center;
  gap: 2rem;
}

.cta-title {
  margin: 0;
}

.cta-description {
  max-width: 42rem;
  margin: 0 auto;
}

.waitlist-note {
  max-width: 34rem;
  margin: -0.75rem auto 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  line-height: 1.7;
}

.waitlist-form {
  width: min(100%, 48rem);
  display: grid;
  gap: 0.85rem;
}

.waitlist-form__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.waitlist-form__controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: stretch;
  width: 100%;
}

.waitlist-input {
  width: 100%;
  min-height: 4.1rem;
  padding: 0 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  color: var(--color-text);
  caret-color: var(--color-accent-start);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 45px rgba(0, 0, 0, 0.18);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
  appearance: none;
}

.waitlist-input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.waitlist-input:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.waitlist-input:focus {
  outline: none;
  border-color: rgba(252, 195, 133, 0.72);
  box-shadow:
    0 0 0 4px rgba(252, 195, 133, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 45px rgba(0, 0, 0, 0.18);
}

.waitlist-input[aria-invalid="true"] {
  border-color: rgba(255, 153, 153, 0.72);
  box-shadow:
    0 0 0 4px rgba(255, 153, 153, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 45px rgba(0, 0, 0, 0.18);
}

.waitlist-submit {
  min-width: 16rem;
}

.waitlist-submit[disabled] {
  opacity: 0.72;
  cursor: wait;
}

.waitlist-feedback {
  min-height: 1.5rem;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-soft);
}

.waitlist-feedback[data-state="error"] {
  color: #ffb8b8;
}

.waitlist-feedback[data-state="pending"] {
  color: #f7d5a4;
}

.waitlist-feedback[data-state="success"] {
  color: #a8f5c6;
}

.cta-glow {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(70rem, 94vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(252, 195, 133, 0.16);
  filter: blur(160px);
  pointer-events: none;
}

.site-footer {
  padding: 0 0 3rem;
}

.footer-inner {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand img {
  opacity: 0.86;
}

.footer-copy {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.92rem;
  font-weight: 500;
}

.footer-links {
  display: flex;
  gap: 1.8rem;
  justify-content: flex-end;
}

.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 1.5rem, 0) scale(0.985);
  transition:
    opacity 880ms var(--ease-out),
    transform 880ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes stream-flow {
  0% {
    stroke-dashoffset: 140;
    opacity: 0;
  }

  12% {
    opacity: 0.9;
  }

  72% {
    opacity: 0.42;
  }

  100% {
    stroke-dashoffset: -140;
    opacity: 0;
  }
}

@keyframes node-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.18;
  }

  40% {
    transform: translate3d(-0.8rem, -1.25rem, 0) scale(1.45);
    opacity: 0.85;
  }

  75% {
    transform: translate3d(0.9rem, -0.35rem, 0) scale(0.92);
    opacity: 0.28;
  }
}

@keyframes text-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    opacity: 0;
  }

  22% {
    opacity: 0.42;
  }

  54% {
    transform: translate3d(var(--drift-x), -1.8rem, 0) rotate(-6deg);
    opacity: 0.48;
  }

  82% {
    opacity: 0.12;
  }
}

@keyframes showcase-card-float {
  0%,
  100% {
    transform: translate3d(var(--shot-x, 0), var(--shot-y, 0), 0) rotate(var(--shot-rotate, 0deg));
  }

  50% {
    transform: translate3d(
        calc(var(--shot-x, 0) + var(--float-x, 0)),
        calc(var(--shot-y, 0) + var(--float-y, 0)),
        0
      )
      rotate(calc(var(--shot-rotate, 0deg) + var(--float-rotate, 0deg)));
  }
}

@media (min-width: 74.0625rem) {
  :root {
    --container-padding: 80px;
  }

  .container,
  .hero .container,
  .section-showcase .container {
    width: calc(100% - (var(--container-padding) * 2));
  }

  main {
    padding-top: 1rem;
  }

  .hero {
    padding-top: 0.25rem;
    padding-bottom: 1.75rem;
    min-height: calc(100svh - var(--header-offset) - 0.75rem);
  }

  .showcase-grid {
    grid-template-columns: minmax(34rem, 39rem) minmax(0, 1fr);
    gap: clamp(2.75rem, 4vw, 4.5rem);
  }

  .showcase-images {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    justify-self: center;
    width: min(100%, 38rem);
    gap: 0;
    padding: 0.9rem 0.25rem 1.4rem;
    overflow: visible;
  }

  .showcase-shot {
    position: relative;
    flex: 0 0 48%;
    max-width: 17.4rem;
    border-radius: 1.9rem;
    transform-origin: center top;
    will-change: transform;
  }

  .showcase-shot img {
    border-radius: inherit;
  }

  .shot-a {
    --shot-x: 0.7rem;
    --shot-y: 0.3rem;
    --shot-rotate: -5.4deg;
    --float-x: -0.14rem;
    --float-y: -0.22rem;
    --float-rotate: -0.28deg;
    z-index: 1;
  }

  .shot-b {
    --shot-x: -0.8rem;
    --shot-y: 1.45rem;
    --shot-rotate: 5.8deg;
    --float-x: 0.14rem;
    --float-y: 0.2rem;
    --float-rotate: 0.24deg;
    z-index: 2;
    margin-top: 0;
  }

  .showcase-shot[data-reveal] {
    opacity: 0;
    transform: translate3d(var(--shot-x), calc(var(--shot-y) + 1.1rem), 0) rotate(var(--shot-rotate)) scale(0.975);
  }

  .showcase-shot[data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(var(--shot-x), var(--shot-y), 0) rotate(var(--shot-rotate));
    animation: showcase-card-float 8.2s ease-in-out calc(var(--reveal-delay, 0s) + 0.95s) infinite;
  }
}

@media (max-width: 74rem) {
  .header-inner {
    gap: 1rem;
  }

  .hero-grid,
  .showcase-grid {
    gap: 2.5rem;
  }

  .hero {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
    min-height: calc(100svh - var(--header-offset));
  }

  .hero .container {
    width: min(80rem, calc(100% - (var(--container-padding) * 2)));
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(16.5rem, 0.92fr);
    gap: 1.9rem;
  }

  .hero-intro {
    max-width: 40rem;
  }

  .hero-text {
    max-width: 35rem;
  }

  .phone-frame {
    width: min(16.75rem, 27vw);
    max-height: min(35rem, calc(100svh - var(--header-offset) - 5rem));
  }

  .showcase-grid {
    grid-template-columns: minmax(30rem, 34rem) minmax(0, 1fr);
  }

  .showcase-images {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: min(100%, 34rem);
    gap: 0;
    padding: 1.1rem 0.35rem 1.85rem;
    overflow: visible;
  }

  .showcase-shot {
    position: relative;
    flex: 0 0 48%;
    max-width: 15.8rem;
    border-radius: 1.7rem;
    transform-origin: center top;
    will-change: transform;
  }

  .showcase-shot img {
    border-radius: inherit;
  }

  .shot-a {
    --shot-x: 0.95rem;
    --shot-y: 0.55rem;
    --shot-rotate: -7deg;
    --float-x: -0.2rem;
    --float-y: -0.32rem;
    --float-rotate: -0.45deg;
    z-index: 1;
  }

  .shot-b {
    --shot-x: -0.95rem;
    --shot-y: 2rem;
    --shot-rotate: 7.5deg;
    --float-x: 0.18rem;
    --float-y: 0.28rem;
    --float-rotate: 0.4deg;
    z-index: 2;
    margin-top: 0;
  }

  .showcase-shot[data-reveal] {
    opacity: 0;
    transform: translate3d(var(--shot-x), calc(var(--shot-y) + 1.4rem), 0) rotate(var(--shot-rotate)) scale(0.96);
  }

  .showcase-shot[data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(var(--shot-x), var(--shot-y), 0) rotate(var(--shot-rotate));
    animation: showcase-card-float 7.4s ease-in-out calc(var(--reveal-delay, 0s) + 0.95s) infinite;
  }
}

@media (max-width: 61rem) {
  :root {
    --header-offset: 4.85rem;
  }

  .site-header {
    padding: 0.75rem 0 0.5rem;
  }

  .header-inner {
    padding: 0.82rem 1rem;
  }

  main {
    padding-top: 0.65rem;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-top: 1.75rem;
    padding-bottom: 5rem;
  }

  .hero-grid {
    gap: 2.5rem;
  }

  .main-nav {
    display: none;
  }

  .hero-grid,
  .showcase-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    justify-items: center;
  }

  .hero-copy,
  .showcase-copy,
  .cta-inner {
    text-align: center;
  }

  .hero-copy {
    max-width: 34rem;
    margin-inline: auto;
    align-items: center;
    gap: 1.6rem;
  }

  .hero-intro {
    max-width: min(34rem, 100%);
  }

  .hero-title {
    margin-top: 1.2rem;
  }

  .hero-text {
    max-width: 31rem;
    margin-top: 1.2rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    justify-self: center;
    width: 100%;
    display: grid;
    justify-items: center;
    margin-top: 0.75rem;
  }

  .phone-frame {
    width: min(18rem, 68vw);
    max-height: none;
  }

  .section-description-left {
    margin-inline: auto;
  }

  .showcase-images {
    order: 2;
    width: min(100%, 27.5rem);
    justify-self: center;
  }

  .showcase-shot {
    flex-basis: 49%;
    border-radius: 1.55rem;
  }

  .shot-a {
    --shot-x: 0.55rem;
    --shot-y: 0.2rem;
    --shot-rotate: -6deg;
  }

  .shot-b {
    --shot-x: -0.7rem;
    --shot-y: 1.35rem;
    --shot-rotate: 6.5deg;
  }

  .showcase-copy {
    order: 1;
    margin-inline: auto;
  }

  .check-list {
    width: min(100%, 28rem);
    justify-items: stretch;
  }

  .check-item {
    width: 100%;
    text-align: left;
  }

  .footer-copy,
  .footer-links {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 54rem) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card-header {
    gap: 0.85rem;
  }

  .header-download {
    display: none;
  }

  .header-actions {
    gap: 0.75rem;
  }

  .lang-button {
    min-width: 5rem;
    padding-inline: 0.72rem;
  }

  .section {
    padding-block: 4.75rem;
  }

  .hero {
    padding-top: 1.5rem;
    padding-bottom: 4.5rem;
  }

  .hero-grid {
    gap: 2.15rem;
  }

  .phone-frame {
    width: min(17rem, 66vw);
  }

  .waitlist-form__controls {
    grid-template-columns: 1fr;
  }

  .waitlist-input {
    text-align: center;
  }

  .waitlist-submit {
    min-width: 0;
  }
}

@media (max-width: 43rem) {
  :root {
    --container-padding: 1rem;
    --header-offset: 4.35rem;
  }

  .site-header {
    padding: 0.55rem 0 0.35rem;
  }

  .header-inner {
    padding: 0.72rem 0.9rem;
    border-radius: 1.25rem;
  }

  .brand img {
    height: 1.45rem;
  }

  .lang-button {
    gap: 0.55rem;
    min-height: 2.52rem;
    min-width: 4.45rem;
    padding: 0.38rem 0.62rem 0.38rem 0.54rem;
    border-radius: 1rem;
  }

  .lang-button svg {
    width: 0.96rem;
    height: 0.96rem;
    padding: 0.28rem;
  }

  .lang-button__label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  main {
    padding-top: 0.35rem;
  }

  .hero {
    min-height: auto;
    padding-top: 1.25rem;
    padding-bottom: 3.75rem;
  }

  .hero-grid {
    gap: 1.8rem;
  }

  .hero-copy {
    gap: 1.25rem;
  }

  .hero-title {
    font-size: clamp(2.85rem, 15vw, 4rem);
  }

  .hero-visual {
    margin-inline: auto;
  }

  .phone-frame {
    width: min(16.25rem, 64vw);
  }

  .section-title {
    font-size: clamp(2.45rem, 12vw, 3.5rem);
  }

  .showcase-images {
    width: min(100%, 20.9rem);
    padding: 0.7rem 0 0.95rem;
  }

  .showcase-shot {
    border-radius: 1.2rem;
  }

  .shot-a {
    --shot-x: 0.82rem;
    --shot-y: 0.05rem;
    --shot-rotate: -5.2deg;
  }

  .shot-b {
    --shot-x: -0.92rem;
    --shot-y: 0.68rem;
    --shot-rotate: 5.5deg;
    margin-top: 0;
  }

  .button,
  .button-large {
    width: 100%;
  }

  .hero-actions,
  .header-actions {
    width: auto;
  }

  .feature-card {
    padding: 2rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

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

  .showcase-shot[data-reveal],
  .showcase-shot[data-reveal].is-visible {
    animation: none !important;
    opacity: 1 !important;
    transform: translate3d(var(--shot-x, 0), var(--shot-y, 0), 0) rotate(var(--shot-rotate, 0deg)) !important;
  }
}
