:root {
  --text: #101320;
  --muted: rgba(16, 19, 32, 0.72);
  --line: rgba(255, 255, 255, 0.46);
  --panel-bg: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.74),
    rgba(255, 255, 255, 0.34)
  );
  --panel-shadow:
    0 28px 90px rgba(40, 48, 90, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  --cyan: #25d7ff;
  --sky: #92c6ff;
  --violet: #3d18ff;
  --pink: #f16fd0;
  --app-gradient: linear-gradient(
    135deg,
    var(--cyan) 0%,
    var(--sky) 28%,
    var(--violet) 58%,
    var(--pink) 100%
  );
  --app-gradient-strong: linear-gradient(
    135deg,
    #23d8ff 0%,
    #8ecbff 24%,
    #3916ff 56%,
    #f173d2 100%
  );
  --page-background:
    radial-gradient(circle at 14% 78%, rgba(37, 215, 255, 0.34), transparent 24%),
    radial-gradient(circle at 11% 20%, rgba(61, 24, 255, 0.3), transparent 22%),
    radial-gradient(circle at 84% 10%, rgba(241, 111, 208, 0.3), transparent 24%),
    radial-gradient(circle at 62% 54%, rgba(95, 74, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #f5fcff 0%, #eaf5ff 28%, #f0e9ff 64%, #ffe8f3 100%);
  --radius-xl: 44px;
  --radius-lg: 34px;
  --radius-md: 24px;
  --content-width: min(1320px, calc(100vw - 30px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--page-background);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--page-background);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.76), transparent 16%),
    radial-gradient(circle at 74% 26%, rgba(255, 255, 255, 0.42), transparent 20%),
    radial-gradient(circle at 50% 82%, rgba(255, 255, 255, 0.3), transparent 18%);
  filter: blur(28px);
  opacity: 0.88;
}

body::after {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.46) 0%,
    rgba(255, 255, 255, 0.08) 38%,
    rgba(255, 255, 255, 0.26) 100%
  );
  opacity: 0.52;
}

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

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

.page-shell {
  position: relative;
  overflow-x: clip;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 30;
  width: min(1160px, calc(100vw - 24px));
  margin: 16px auto 0;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  backdrop-filter: blur(34px) saturate(175%);
  box-shadow:
    0 22px 56px rgba(44, 52, 90, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.74);
  box-shadow:
    0 24px 58px rgba(44, 52, 90, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 0;
}

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

.brand-icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  box-shadow: 0 16px 30px rgba(82, 87, 176, 0.18);
}

.brand-wordmark {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 14px 28px rgba(43, 52, 92, 0.08);
  appearance: none;
}

.menu-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--muted);
  font-size: 0.96rem;
}

.main-nav a,
.footer-links a,
.text-link {
  transition: color 160ms ease, opacity 160ms ease;
}

.main-nav a[aria-current="page"] {
  color: var(--text);
  font-weight: 700;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover,
.store-button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: var(--app-gradient-strong);
  box-shadow: 0 18px 34px rgba(93, 88, 215, 0.24);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 19, 32, 0.08);
}

.header-cta {
  min-width: 196px;
}

.flow-main,
.subpage-main {
  width: var(--content-width);
  margin: 0 auto;
}

.flow-main {
  position: relative;
  display: grid;
  gap: 28px;
  padding: 48px 0 104px;
}

.flow-main::before,
.flow-main::after {
  content: "";
  position: absolute;
  inset: 110px 0 140px;
  pointer-events: none;
  z-index: 0;
}

.flow-main::before {
  background:
    radial-gradient(ellipse at 76% 7%, rgba(241, 111, 208, 0.16), transparent 18%),
    radial-gradient(ellipse at 24% 28%, rgba(37, 215, 255, 0.18), transparent 20%),
    radial-gradient(ellipse at 72% 54%, rgba(61, 24, 255, 0.14), transparent 18%),
    radial-gradient(ellipse at 34% 78%, rgba(37, 215, 255, 0.14), transparent 19%);
  filter: blur(26px);
  opacity: 0.9;
}

.flow-main::after {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.24) 0%,
      rgba(255, 255, 255, 0.04) 20%,
      rgba(255, 255, 255, 0.14) 50%,
      rgba(255, 255, 255, 0.03) 80%,
      rgba(255, 255, 255, 0.16) 100%
    );
  opacity: 0.34;
}

.panel,
.page-hero,
.content-card,
.legal-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--panel-bg);
  border: 1px solid var(--line);
  backdrop-filter: blur(34px) saturate(180%);
  box-shadow: var(--panel-shadow);
  transition:
    border-color 320ms ease,
    box-shadow 320ms ease,
    background 320ms ease,
    filter 320ms ease;
}

.panel::before,
.page-hero::before,
.content-card::before,
.legal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      118deg,
      rgba(255, 255, 255, 0.56) 0%,
      rgba(255, 255, 255, 0.18) 30%,
      transparent 58%
    ),
    radial-gradient(circle at 14% 18%, rgba(37, 215, 255, 0.18), transparent 22%),
    radial-gradient(circle at 84% 14%, rgba(241, 111, 208, 0.16), transparent 24%);
  opacity: calc(0.82 + var(--panel-progress, 0) * 0.3);
  transform: scale(calc(0.985 + var(--panel-progress, 0) * 0.035));
  transform-origin: center;
  transition: opacity 320ms ease, transform 320ms ease;
  pointer-events: none;
}

.panel::after,
.page-hero::after,
.content-card::after,
.legal-card::after {
  content: "";
  position: absolute;
  inset: auto -4% -28% 18%;
  height: 260px;
  background: radial-gradient(
    circle,
    rgba(75, 58, 255, 0.2),
    rgba(37, 215, 255, 0.1),
    transparent 72%
  );
  opacity: calc(0.44 + var(--panel-progress, 0) * 0.5);
  filter: blur(34px);
  transition: opacity 320ms ease, filter 320ms ease;
  pointer-events: none;
}

.panel > *,
.page-hero > *,
.content-card > *,
.legal-card > * {
  position: relative;
  z-index: 1;
}

.panel {
  width: min(1120px, calc(100% - 8px));
  padding: clamp(34px, 4vw, 52px);
  z-index: 1;
  --panel-progress: 0;
  border-color: rgba(255, 255, 255, calc(0.44 + var(--panel-progress) * 0.22));
  box-shadow:
    0 calc(24px + var(--panel-progress) * 14px)
      calc(70px + var(--panel-progress) * 36px)
      rgba(40, 48, 90, calc(0.1 + var(--panel-progress) * 0.06)),
    inset 0 1px 0 rgba(255, 255, 255, calc(0.68 + var(--panel-progress) * 0.18));
  filter: saturate(calc(0.96 + var(--panel-progress) * 0.14));
}

.panel + .panel {
  margin-top: 0;
}

.panel-left,
.panel-right,
.panel-center {
  margin-left: auto;
  margin-right: auto;
  border-radius: 46px;
}

.flow-main .panel:nth-of-type(1)::after {
  inset: auto 2% -24% 26%;
}

.flow-main .panel:nth-of-type(2)::after {
  inset: auto 12% -26% -2%;
  background: radial-gradient(
    circle,
    rgba(37, 215, 255, 0.18),
    rgba(241, 111, 208, 0.08),
    transparent 72%
  );
}

.flow-main .panel:nth-of-type(3)::after {
  inset: auto -2% -30% 20%;
  background: radial-gradient(
    circle,
    rgba(61, 24, 255, 0.18),
    rgba(37, 215, 255, 0.1),
    transparent 72%
  );
}

.flow-main .panel:nth-of-type(4)::after {
  inset: auto 18% -24% -6%;
  background: radial-gradient(
    circle,
    rgba(241, 111, 208, 0.16),
    rgba(61, 24, 255, 0.08),
    transparent 72%
  );
}

.flow-main .panel.is-focus {
  --panel-progress: 1;
}

.flow-main .panel.is-near {
  --panel-progress: 0.66;
}

.panel::selection,
.content-card::selection,
.legal-card::selection {
  background: rgba(106, 99, 255, 0.18);
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(16, 19, 32, 0.48);
}

.hero-copy h1,
.panel h2,
.page-hero h1,
.content-card h1,
.content-card h2,
.legal-card h1,
.legal-card h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-copy h1 {
  max-width: 7.6ch;
  font-size: clamp(3.9rem, 7vw, 6.6rem);
}

.hero-copy h1 span,
.panel h2 span,
.page-hero h1 span {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
}

.panel h2,
.page-hero h1,
.content-card h1,
.content-card h2,
.legal-card h1 {
  font-size: clamp(2.5rem, 4.6vw, 4.15rem);
}

.hero-text,
.panel-copy p,
.founder-copy p,
.download-text,
.content-card p,
.legal-card p,
.site-footer p,
.store-button-subtitle,
.safety-card span {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  line-height: 1.84;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

.panel-hero {
  width: min(1180px, calc(100% - 4px));
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 540px);
  gap: 48px;
  padding-top: clamp(36px, 5vw, 56px);
  padding-bottom: clamp(34px, 4vw, 50px);
}

.hero-copy {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: clamp(4px, 1vw, 12px);
  max-width: 40rem;
}

.hero-stage {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stage-shell {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 3 / 2;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 38px;
  background: #f6f4f1;
  border: 1px solid rgba(255, 255, 255, 0.74);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 20px 44px rgba(43, 52, 92, 0.08);
}

.hero-stage-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 14% 18%,
      rgba(37, 215, 255, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at 84% 18%,
      rgba(241, 111, 208, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at 50% 84%,
      rgba(61, 24, 255, 0.05),
      transparent 26%
    );
  pointer-events: none;
}

.hero-stage-shell::after {
  content: "";
  position: absolute;
  inset: auto 14% -8% 14%;
  height: 26%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(61, 24, 255, 0.14),
    rgba(37, 215, 255, 0.06),
    transparent 72%
  );
  filter: blur(22px);
  pointer-events: none;
}

.hero-stage-device {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  transform: translateY(calc(var(--hero-shift, 0) * 0.12px));
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 420px);
  gap: 40px;
  align-items: center;
}

.split-layout-tight {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
}

.panel-heading {
  margin-bottom: 28px;
}

.panel-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel-media {
  overflow: hidden;
  border-radius: 36px;
  min-height: 360px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-soft {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.66),
    rgba(255, 255, 255, 0.3)
  );
}

.media-floating {
  position: relative;
  min-height: 440px;
  padding: 20px;
  background:
    radial-gradient(circle at 15% 15%, rgba(37, 215, 255, 0.18), transparent 24%),
    rgba(255, 255, 255, 0.42);
}

.media-floating img {
  border-radius: 28px;
}

.panel-safety {
  width: min(1200px, calc(100% - 4px));
}

.panel-safety .split-layout-tight {
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 400px);
  gap: 56px;
}

.panel-safety .panel-copy {
  max-width: none;
}

.panel-safety .panel-copy > p {
  max-width: 48rem;
}

.panel-safety .media-floating {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.panel-safety .media-floating img {
  width: 100%;
  height: auto;
  max-height: 252px;
  object-fit: contain;
}

.panel-safety .safety-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 720px;
  gap: 18px;
}

.inline-list {
  margin: 6px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.inline-list li + li {
  margin-top: 12px;
}

.step-grid,
.safety-grid,
.contact-grid,
.legal-grid {
  display: grid;
  gap: 16px;
}

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

.mini-card,
.safety-card,
.info-card,
.legal-index a {
  background: linear-gradient(
    150deg,
    rgba(255, 255, 255, 0.72),
    rgba(255, 255, 255, 0.46)
  );
  border: 1px solid rgba(255, 255, 255, 0.66);
  box-shadow: 0 16px 36px rgba(43, 52, 92, 0.08);
}

.mini-card {
  padding: 22px;
  border-radius: 30px;
}

.mini-card-media {
  aspect-ratio: 0.88;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.54);
}

.mini-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-index {
  display: inline-block;
  margin-top: 16px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: rgba(16, 19, 32, 0.42);
}

.mini-card h3,
.safety-card strong,
.info-card h2,
.info-card h3,
.legal-card h2 {
  margin: 0;
  letter-spacing: -0.04em;
}

.mini-card h3 {
  font-size: 1.4rem;
  line-height: 1.18;
}

.safety-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 12px;
}

.safety-card {
  padding: 24px 22px;
  border-radius: 26px;
}

.safety-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.panel-founder {
  width: min(900px, calc(100% - 8px));
}

.founder-minimal {
  display: flex;
  align-items: center;
  gap: 24px;
}

.founder-avatar {
  width: 100px;
  height: 100px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 24%;
  box-shadow: 0 20px 36px rgba(53, 58, 103, 0.18);
}

.founder-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.founder-copy blockquote {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  line-height: 1.12;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.text-link {
  font-weight: 800;
}

.panel-download {
  width: min(1080px, calc(100% - 8px));
  text-align: center;
}

.download-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-inline: clamp(4px, 2vw, 26px);
}

.download-icon {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  box-shadow: 0 22px 40px rgba(94, 90, 211, 0.2);
}

.store-actions {
  justify-content: center;
  width: 100%;
  margin-top: 14px;
}

.store-button {
  min-width: 300px;
  padding: 18px 22px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-radius: 28px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.52));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 34px rgba(43, 52, 92, 0.1);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.store-button-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.store-button-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.store-button-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  text-align: left;
}

.store-button-title {
  font-size: 1.04rem;
  font-weight: 800;
  color: var(--text);
}

.store-button-subtitle {
  font-size: 0.96rem;
}

.panel-download h2 {
  max-width: 11.5ch;
}

.subpage-main {
  padding: 48px 0 104px;
}

.page-hero,
.content-card,
.legal-card {
  width: min(1120px, calc(100% - 8px));
  margin: 0 auto 16px;
  padding: clamp(34px, 4vw, 50px);
  border-radius: 46px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 36px;
  align-items: center;
}

.page-hero-media {
  overflow: hidden;
  border-radius: 36px;
  min-height: 380px;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 42rem;
}

.page-contact .page-hero-media img {
  object-fit: contain;
  object-position: center;
}

.page-contact .page-hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.54),
    rgba(255, 255, 255, 0.18)
  );
}

.page-contact .page-hero-media img {
  border-radius: 28px;
}

.content-card {
  display: grid;
  gap: 22px;
}

.content-card h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.quote-strip {
  padding: 26px 28px;
  border-radius: 32px;
  color: #ffffff;
  background: var(--app-gradient-strong);
  box-shadow: 0 22px 44px rgba(89, 83, 198, 0.18);
}

.quote-strip p,
.quote-strip cite {
  color: rgba(255, 255, 255, 0.86);
}

.quote-strip blockquote {
  margin: 0 0 14px;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  padding: 24px;
  border-radius: 30px;
}

.info-card p,
.info-card li {
  color: var(--muted);
  line-height: 1.7;
}

.contact-link-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-height: 180px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.contact-link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(43, 52, 92, 0.12);
  border-color: rgba(255, 255, 255, 0.9);
}

.contact-card-top {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.contact-note {
  margin-top: 4px;
  font-size: 0.92rem;
  color: rgba(16, 19, 32, 0.54);
}

.contact-value {
  margin: 0;
  font-size: clamp(1.08rem, 1.7vw, 1.22rem);
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text) !important;
}

.legal-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
}

.legal-index {
  position: sticky;
  top: 112px;
  align-self: start;
  display: grid;
  gap: 10px;
}

.legal-index a {
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--muted);
}

.legal-body {
  display: grid;
  gap: 28px;
}

.legal-section {
  scroll-margin-top: 120px;
}

.legal-section h2 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.legal-section ul {
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.legal-section li + li {
  margin-top: 8px;
}

.site-footer {
  width: var(--content-width);
  margin: 0 auto;
  padding: 12px 0 56px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.footer-branding {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 360px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 24px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@media (max-width: 1120px) {
  .panel-hero,
  .split-layout,
  .page-hero,
  .legal-card {
    grid-template-columns: 1fr;
  }

  .panel,
  .panel-hero,
  .page-hero,
  .content-card,
  .legal-card {
    width: min(100%, calc(100vw - 28px));
    margin-left: auto;
    margin-right: auto;
    border-radius: 36px;
  }

  .hero-stage {
    min-height: 0;
  }

  .hero-stage-shell {
    width: min(100%, 620px);
    min-height: 0;
  }

  .flow-main {
    gap: 22px;
  }

  .panel-safety .split-layout-tight {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .panel-safety .media-floating {
    min-height: 280px;
  }

  .step-grid,
  .safety-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .legal-index {
    position: static;
  }
}

@media (max-width: 980px) {
  .site-header {
    top: 0;
    width: 100%;
    margin: 0;
    padding: calc(env(safe-area-inset-top, 0px) + 10px) 12px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    display: block;
    gap: 0;
  }

  .site-header.is-scrolled {
    background: transparent;
    box-shadow: none;
  }

  .header-bar {
    align-items: center;
    padding: 10px 12px;
    min-height: 66px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(28px) saturate(180%);
    box-shadow:
      0 18px 40px rgba(44, 52, 90, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .header-menu {
    position: absolute;
    top: calc(env(safe-area-inset-top, 0px) + 88px);
    left: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: auto;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(28px) saturate(180%);
    box-shadow:
      0 22px 52px rgba(44, 52, 90, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.78);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top center;
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .site-header.menu-open .header-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-header.menu-open .menu-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
    font-size: 0.92rem;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 46px;
    padding: 10px 14px;
    border-radius: 18px;
    text-align: left;
    line-height: 1.2;
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.68);
  }

  .header-cta {
    display: inline-flex;
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding-inline: 18px;
  }

  .brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .brand-wordmark {
    font-size: 0.98rem;
  }

  .panel,
  .panel-hero,
  .page-hero,
  .content-card,
  .legal-card {
    padding: clamp(28px, 4vw, 40px);
  }
}

@media (max-width: 780px) {
  .flow-main,
  .subpage-main,
  .site-footer {
    width: min(100vw - 18px, 100%);
  }

  .flow-main {
    padding-top: 26px;
  }

  .hero-copy h1 {
    line-height: 0.98;
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .store-actions {
    flex-direction: column;
  }

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

  .hero-stage {
    min-height: 0;
  }

  .hero-stage-shell {
    width: 100%;
    min-height: 0;
    border-radius: 30px;
  }

  .hero-stage-device {
    width: 100%;
  }

  .founder-minimal {
    flex-direction: column;
    align-items: flex-start;
  }

  .founder-avatar {
    width: 88px;
    height: 88px;
  }

  .panel-media,
  .page-hero-media {
    min-height: 240px;
    border-radius: 24px;
  }

  .store-button {
    min-width: 100%;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 42px;
  }

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

@media (max-width: 560px) {
  .site-header {
    padding-inline: 10px;
  }

  .header-bar {
    padding: 9px 10px;
    min-height: 60px;
    border-radius: 22px;
  }

  .header-menu {
    top: calc(env(safe-area-inset-top, 0px) + 78px);
    left: 10px;
    right: 10px;
    border-radius: 22px;
  }

  .brand {
    gap: 10px;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .panel,
  .panel-hero,
  .page-hero,
  .content-card,
  .legal-card {
    border-radius: 28px;
    padding: 22px;
  }

  .flow-main {
    gap: 18px;
  }

  .brand-wordmark {
    font-size: 0.94rem;
  }

  .trust-pill {
    min-height: 40px;
    padding-inline: 15px;
    font-size: 0.84rem;
  }

  .hero-stage {
    min-height: 0;
  }

  .hero-stage-shell {
    min-height: 0;
    border-radius: 24px;
  }

  .panel-media,
  .page-hero-media,
  .panel-safety .media-floating {
    min-height: 220px;
    border-radius: 22px;
  }

  .store-button {
    padding: 16px 18px;
    gap: 12px;
    border-radius: 24px;
  }

  .store-button-icon {
    width: 48px;
    height: 48px;
  }

  .store-button-icon svg {
    width: 24px;
    height: 24px;
  }

  .download-icon {
    width: 76px;
    height: 76px;
    border-radius: 20px;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
