:root {
  --bg: #000000;
  --surface: #121212;
  --surface-soft: #161616;
  --surface-elevated: #1b1b1b;
  --border: #1e1e1e;
  --border-soft: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --text-muted: #9b9ba1;
  --text-dim: #7f7f86;
  --white: #ffffff;
  --black: #000000;
  --glow: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(180deg, #060606 0%, #000000 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

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

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

.page-shell {
  overflow: clip;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  min-height: 28px;
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-inner {
  min-height: 86px;
}

.brand-logo {
  width: 158px;
  height: auto;
}

.footer-links a,
.footer-copy {
  font-size: 14px;
  line-height: 20px;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--text);
}

.hero-section,
.feature-section,
.testimonial-section,
.outro-section {
  padding: 100px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 52px;
}

.hero-brand {
  display: inline-flex;
  margin-bottom: 30px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-soft);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  margin-top: 20px;
  font-size: clamp(3rem, 6vw, 5.3rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 11ch;
}

.hero-text,
.section-intro p,
.feature-card p,
.testimonial-card p {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-text {
  margin-top: 24px;
  max-width: 34rem;
}

.download-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.download-note {
  margin-top: 14px;
  max-width: 36rem;
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.7;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 1px solid var(--border-soft);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.store-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
  background: #1a1a1a;
}

.store-button-light {
  background: var(--white);
  color: var(--black);
  border-color: transparent;
}

.store-button-light:hover {
  background: #ededed;
}

.store-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.store-icon svg {
  width: 100%;
  height: 100%;
}

.store-icon-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.store-label-top {
  display: block;
  font-size: 12px;
  line-height: 1.1;
}

.store-label-main {
  display: block;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 700;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.meta-chip {
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-dim);
  font-size: 14px;
}

.hero-visual {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.orb-one {
  width: 240px;
  height: 240px;
  top: 60px;
  right: 24px;
  background: rgba(255, 255, 255, 0.11);
}

.orb-two {
  width: 180px;
  height: 180px;
  left: 40px;
  bottom: 70px;
  background: rgba(255, 255, 255, 0.07);
}

.phone-frame {
  position: relative;
  width: min(100%, 380px);
  padding: 14px;
  border-radius: 44px;
  background: linear-gradient(180deg, #262626 0%, #0b0b0b 100%);
  box-shadow: var(--shadow);
}

.phone-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.03));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.phone-screen {
  position: relative;
  min-height: 690px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 36%),
    linear-gradient(180deg, #101010 0%, #060606 100%);
  overflow: hidden;
}

.hero-screen-image {
  width: 100%;
  height: 100%;
  min-height: 690px;
  object-fit: cover;
  object-position: top center;
  border-radius: 32px;
}

.phone-screen-shine {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 18%, transparent 74%, rgba(0, 0, 0, 0.14)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 28%);
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  z-index: 1;
  min-width: 184px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  background: rgba(18, 18, 18, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.hero-badge strong,
.hero-badge span {
  display: block;
}

.hero-badge strong {
  font-size: 15px;
}

.hero-badge span {
  margin-top: 6px;
  color: var(--text-dim);
  font-size: 13px;
}

.hero-badge-top {
  top: 72px;
  left: 0;
}

.hero-badge-bottom {
  right: 0;
  bottom: 84px;
}

.section-intro {
  max-width: 760px;
}

.section-intro h2 {
  margin-top: 18px;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-intro p {
  margin-top: 18px;
}

.feature-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
  margin-top: 40px;
}

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

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

.feature-card,
.testimonial-card,
.outro-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.feature-card,
.testimonial-card {
  padding: 24px;
  border-radius: 24px;
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

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

.feature-card h3,
.testimonial-meta strong {
  margin-top: 18px;
  font-size: 20px;
  line-height: 1.2;
}

.feature-card p {
  margin-top: 10px;
  font-size: 15px;
}

.testimonial-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.testimonial-card p {
  font-size: 20px;
  line-height: 1.65;
  color: var(--text);
}

.testimonial-meta span {
  display: block;
  margin-top: 6px;
  color: var(--text-dim);
  font-size: 14px;
}

.outro-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border-radius: 32px;
}

.outro-card h2 {
  margin-top: 18px;
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.outro-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.outro-downloads {
  margin-top: 0;
  justify-content: flex-start;
}

.outro-download-note {
  margin-top: 16px;
  max-width: 30rem;
}

.site-footer {
  padding: 0 0 42px;
}

.legal-main {
  padding: 0 0 72px;
}

.legal-hero {
  padding: 88px 0 40px;
}

.legal-hero-inner {
  max-width: none;
}

.legal-page-width {
  width: min(calc(100% - 40px), 1120px);
}

.legal-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-soft);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.legal-title {
  margin-top: 20px;
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.legal-intro {
  margin-top: 22px;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
}

.legal-copy {
  margin-top: 12px;
  max-width: 46rem;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.75;
}

.legal-content-section {
  padding: 20px 0 0;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 112px;
}

.legal-sidebar-card,
.legal-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.legal-sidebar-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 24px;
}

.legal-sidebar-card strong {
  font-size: 15px;
}

.legal-sidebar-card a {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.5;
}

.legal-sidebar-card a:hover,
.legal-link:hover {
  color: var(--text);
}

.legal-article {
  display: grid;
  gap: 18px;
}

.legal-card {
  padding: 28px;
  border-radius: 28px;
}

.legal-card h2 {
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.legal-card h3 {
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.3;
}

.legal-card p,
.legal-list li {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

.legal-card p + p,
.legal-card p + h3,
.legal-card h3 + .legal-list,
.legal-list + p {
  margin-top: 12px;
}

.legal-list {
  margin: 0;
  padding-left: 20px;
}

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

.footer-inner {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

@media (max-width: 1120px) {
  .hero-grid,
  .outro-card {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

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

  .legal-sidebar {
    position: static;
  }

  .outro-downloads {
    justify-content: flex-start;
  }

  .outro-actions {
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .download-group {
    width: 100%;
    flex-direction: column;
  }

  .store-button {
    width: 100%;
    justify-content: center;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .legal-page-width {
    width: min(calc(100% - 28px), 1120px);
  }

  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    justify-content: center;
    gap: 8px;
  }

  .footer-copy {
    text-align: center;
  }

  .hero-section,
  .feature-section,
  .testimonial-section,
  .outro-section,
  .legal-hero {
    padding: 72px 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
  }

  .hero-text,
  .section-intro p,
  .testimonial-card p,
  .legal-copy {
    font-size: 16px;
  }

  .download-note,
  .outro-download-note {
    max-width: none;
  }

  .legal-card {
    padding: 22px;
  }

  .phone-frame {
    width: 100%;
    max-width: 360px;
  }

  .phone-screen {
    min-height: 620px;
  }

  .hero-screen-image {
    min-height: 620px;
  }

  .hero-badge {
    min-width: 158px;
    padding: 14px 16px;
  }

  .hero-badge-top {
    top: 18px;
    left: 6px;
  }

  .hero-badge-bottom {
    right: 6px;
    bottom: 24px;
  }

  .outro-card {
    padding: 28px 22px;
  }
}
