:root {
  --ink: #f8fafc;
  --muted: #a6adb8;
  --paper: #030303;
  --surface: #101010;
  --surface-strong: #171717;
  --line: rgba(255, 255, 255, 0.14);
  --cyan: #00f5ff;
  --cyan-soft: rgba(0, 245, 255, 0.18);
  --pink: #ff4fd8;
  --lime: #d7ff48;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #ffffff;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(3, 3, 3, 0.86);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.hero-actions,
.metrics-band,
.site-footer,
.tag-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 850;
}

.brand-logo {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 10px;
  box-shadow: 0 0 26px rgba(255, 46, 168, 0.18), 0 0 30px rgba(23, 216, 255, 0.14);
}

.nav-links {
  gap: clamp(14px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  font-weight: 650;
}

.app-store-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 7px 14px 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.72);
  box-shadow: 0 0 26px rgba(0, 245, 255, 0.12);
}

.app-store-button span:last-child {
  display: grid;
  gap: 1px;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1;
}

.app-store-button small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.62rem;
  font-weight: 750;
  line-height: 1;
}

.app-store-icon {
  position: relative;
  width: 18px;
  height: 22px;
}

.app-store-icon::before {
  content: "";
  position: absolute;
  inset: 3px 2px 1px;
  border-radius: 8px 8px 7px 7px;
  background: #ffffff;
}

.app-store-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 9px;
  width: 7px;
  height: 9px;
  border-radius: 8px 0 8px 0;
  background: #ffffff;
  transform: rotate(28deg);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 108px clamp(18px, 5vw, 72px) 56px;
}

.hero::before,
.showcase-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22%;
  width: 7px;
  height: 168px;
  background: var(--cyan);
  box-shadow: 0 0 34px var(--cyan);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.75) contrast(1.08) brightness(0.42);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.76) 48%, rgba(0, 0, 0, 0.55)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.18) 60%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.72fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.hero-content {
  max-width: 790px;
}

.hero-product {
  justify-self: center;
  width: min(100%, 480px);
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 79, 216, 0.2), rgba(0, 245, 255, 0.12)),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow), 0 0 54px rgba(0, 245, 255, 0.16);
}

.hero-product img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 22px;
  font-size: clamp(3.3rem, 9vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  white-space: nowrap;
}

.button-primary {
  color: #001315;
  background: var(--cyan);
  box-shadow: 0 0 36px var(--cyan-soft);
}

.button-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
}

.section,
.showcase-section {
  padding: clamp(64px, 10vw, 120px) clamp(18px, 5vw, 72px);
}

.metrics-band {
  justify-content: center;
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: #050505;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metrics-band div {
  flex: 1;
  min-height: 116px;
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 22px;
  border-left: 1px solid var(--line);
}

.metrics-band div:last-child {
  border-right: 1px solid var(--line);
}

.metrics-band strong {
  color: var(--cyan);
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1;
}

.metrics-band span {
  color: var(--muted);
  font-weight: 700;
}

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(28px, 5vw, 56px);
}

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

.feature-card,
.price-card {
  min-height: 260px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 46px rgba(0, 0, 0, 0.22);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 42px;
  border-radius: 8px;
  color: #001315;
  background: var(--cyan);
  font-weight: 900;
}

.feature-card:nth-child(2) .feature-icon {
  color: #120015;
  background: var(--pink);
}

.feature-card:nth-child(3) .feature-icon {
  color: #101500;
  background: var(--lime);
}

.feature-card p,
.price-card p,
.showcase-copy p,
.look-card p {
  color: var(--muted);
}

.showcase-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #000000;
}

.showcase-copy {
  max-width: 660px;
}

.showcase-copy p {
  font-size: 1.05rem;
}

.phone-demo {
  width: min(100%, 440px);
  min-height: 560px;
  margin-inline: auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 42%),
    #070707;
  box-shadow: var(--shadow);
}

.phone-top {
  display: grid;
  grid-template-columns: 26px 1fr 26px;
  align-items: center;
  min-height: 52px;
  color: #ffffff;
  border-bottom: 1px solid var(--line);
}

.phone-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cyan);
}

.phone-top span:last-child {
  justify-self: end;
  background: var(--pink);
}

.phone-top p {
  margin: 0;
  text-align: center;
  font-weight: 850;
}

.search-pill,
.look-card,
.tag-row span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.search-pill {
  margin: 24px 0;
  padding: 16px;
  color: var(--muted);
}

.look-card {
  min-height: 136px;
  margin-bottom: 16px;
  padding: 18px;
}

.look-card-one {
  background:
    linear-gradient(135deg, rgba(0, 245, 255, 0.35), transparent 58%),
    #121212;
}

.look-card-two {
  background:
    linear-gradient(135deg, rgba(255, 79, 216, 0.28), transparent 58%),
    #121212;
}

.look-card strong {
  display: block;
  margin-top: 30px;
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  line-height: 1.1;
}

.tag-row {
  flex-wrap: wrap;
  gap: 10px;
}

.tag-row span {
  padding: 8px 12px;
  color: #ffffff;
  font-weight: 750;
}

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

.price-card {
  min-height: 300px;
  display: grid;
  align-content: start;
  gap: 14px;
}

.price-card h3 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1;
}

.price-card .button {
  width: fit-content;
  margin-top: 12px;
}

.highlighted {
  color: #001315;
  background: var(--cyan);
  border-color: transparent;
  box-shadow: 0 0 44px var(--cyan-soft);
}

.highlighted p,
.highlighted .plan {
  color: rgba(0, 19, 21, 0.72);
}

.highlighted .button-primary {
  color: #ffffff;
  background: #000000;
}

.plan {
  margin: 0;
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: #000000;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.legal-page {
  padding-top: 92px;
}

.legal-hero {
  padding: clamp(64px, 10vw, 120px) clamp(18px, 5vw, 72px) clamp(34px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(0, 245, 255, 0.12), transparent 46%),
    #050505;
}

.legal-hero h1 {
  max-width: 100%;
  font-size: clamp(3rem, 8vw, 6rem);
}

.legal-hero p:last-child {
  color: var(--muted);
  font-weight: 750;
}

.legal-content {
  max-width: 920px;
  padding: clamp(38px, 7vw, 76px) clamp(18px, 5vw, 72px);
}

.legal-content h2 {
  margin: 38px 0 12px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.1;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-content a {
  color: var(--cyan);
}

.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;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 112px;
  }

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

  h1 {
    max-width: 9ch;
  }

  .metrics-band,
  .feature-grid,
  .pricing-grid,
  .showcase-section {
    grid-template-columns: 1fr;
  }

  .metrics-band {
    display: grid;
    padding: 0;
  }

  .metrics-band div,
  .metrics-band div:last-child {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

}

@media (max-width: 560px) {
  .site-header {
    min-height: 64px;
  }

  .app-store-button {
    min-height: 40px;
    padding: 7px 10px;
  }

  .app-store-button span:last-child {
    font-size: 0.86rem;
  }

  .app-store-button small {
    display: none;
  }

  .hero {
    min-height: 84vh;
    padding-bottom: 52px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-product {
    width: min(100%, 360px);
  }

  .button {
    width: 100%;
  }

  .feature-card,
  .price-card {
    min-height: auto;
  }

  .phone-demo {
    min-height: 500px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
