@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #070a0d;
  --ink-soft: #10151a;
  --paper: #f4f2ec;
  --muted: #9ca4aa;
  --line: rgba(255, 255, 255, 0.13);
  --cyan: #68eaf5;
  --cyan-bright: #83fff1;
  --teal: #12d5c4;
  --blue: #4da8ff;
  --violet: #a77aff;
  --pink: #e855e9;
  --lime: #c5ff78;
  --radius: 34px;
  --max: 1280px;
  color-scheme: dark;
}

* { box-sizing: border-box; }

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

#apps,
#airchat,
#outfit { scroll-margin-top: 88px; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: #f8f8f5;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; }

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 99px;
  background: white;
  color: black;
  font-weight: 700;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(calc(100% - 32px), var(--max));
  height: 68px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 0 22px;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(10, 13, 16, 0.69);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  transition: background 250ms ease, border-color 250ms ease, top 250ms ease;
}

.site-header.is-scrolled {
  top: 10px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(7, 10, 13, 0.87);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 780;
  letter-spacing: -0.06em;
}

.brand > span:last-child > span { color: var(--cyan); }

.brand-mark {
  display: grid;
  width: 25px;
  height: 25px;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  transform: rotate(10deg);
}

.brand-mark i {
  display: block;
  border-radius: 4px;
  background: currentColor;
}

.brand-mark i:nth-child(2),
.brand-mark i:nth-child(3) { background: var(--cyan); }

.site-nav { display: flex; align-items: center; gap: 4px; }

.site-nav a {
  padding: 12px 16px;
  border-radius: 14px;
  color: #c8cdd0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible { background: rgba(255, 255, 255, 0.08); color: white; }

.site-nav a:last-child { background: var(--paper); color: var(--ink); }

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.09);
}

.menu-button i {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: white;
  transition: transform 200ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 5vw;
  overflow: hidden;
  padding: 150px max(24px, calc((100vw - var(--max)) / 2)) 90px;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero-grid,
.mesh-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .34;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  width: 52vw;
  height: 52vw;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .16;
}

.hero-glow--cyan { top: -28vw; right: 10vw; background: var(--cyan); }
.hero-glow--violet { right: -34vw; bottom: -24vw; background: var(--violet); }

.hero-copy { position: relative; z-index: 2; padding-bottom: 34px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: #aab1b6;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(58px, 7.2vw, 112px);
  font-weight: 690;
  line-height: .91;
  letter-spacing: -.075em;
}

h1 em, h2 em {
  color: transparent;
  font-style: normal;
  background: linear-gradient(105deg, #fff 3%, var(--cyan) 46%, var(--violet));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero h1 { font-size: clamp(52px, 4.8vw, 76px); }

.hero-lede {
  max-width: 630px;
  margin-bottom: 34px;
  color: #a8afb4;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65;
}

.hero-actions,
.product-actions { display: flex; align-items: center; gap: 22px; }

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 0 24px;
  border-radius: 18px;
  font-weight: 730;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(0, 0, 0, .25); }
.button--light { background: var(--paper); color: var(--ink); }
.text-link { color: #d6dcdf; font-weight: 650; }
.text-link:hover { color: white; }

.hero-stage {
  position: relative;
  min-height: min(680px, 67vw);
  perspective: 1200px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  animation: orbit-spin 24s linear infinite;
}

.orbit::before,
.orbit::after {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 24px var(--cyan);
  content: "";
}

.orbit::before { top: 9%; left: 20%; }
.orbit::after { right: 3%; bottom: 31%; background: var(--violet); box-shadow: 0 0 24px var(--violet); }
.orbit--one { inset: 9% 3% 4% 5%; transform: rotate(-12deg); }
.orbit--two { inset: 20% 15% 14% -4%; animation-direction: reverse; animation-duration: 18s; }

@keyframes orbit-spin { to { transform: rotate(348deg); } }

.app-token {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 35px;
  background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.035));
  box-shadow: 0 40px 80px rgba(0,0,0,.45), inset 0 1px rgba(255,255,255,.16);
  backdrop-filter: blur(24px);
  transform-style: preserve-3d;
  transition: transform 240ms ease;
}

.app-token img {
  width: clamp(126px, 14vw, 210px);
  aspect-ratio: 1;
  border-radius: 27%;
  box-shadow: 0 26px 45px rgba(0,0,0,.38);
}

.app-token span { display: grid; gap: 5px; padding-right: 16px; }
.app-token b { font-size: clamp(17px, 1.4vw, 22px); }
.app-token small { color: #9da7ad; }
.app-token--air { top: 5%; right: 0; transform: rotate(7deg); }
.app-token--outfit { bottom: 8%; left: 0; transform: rotate(-8deg); }

.signal-pill {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: rgba(8, 12, 16, .72);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  color: #dae0e3;
  font-size: 12px;
  font-weight: 680;
  backdrop-filter: blur(15px);
}

.signal-pill span { color: var(--cyan); font-size: 21px; }
.signal-pill--top { top: 38%; left: 8%; }
.signal-pill--bottom { right: 4%; bottom: 30%; }

.hero-footer {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 24px;
  left: max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  justify-content: space-between;
  color: #6e777d;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
}

.section {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 145px 0;
}

.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; column-gap: 60px; }
.section-heading .eyebrow { grid-column: 1 / -1; }

.section-heading h2,
.product h2,
.contact-cta h2,
.legal-hero h1 {
  margin-bottom: 0;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 650;
  line-height: .96;
  letter-spacing: -.065em;
}

.section-heading > p:last-child { max-width: 450px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.7; }

.app-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 70px; }

.app-card {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  min-height: 530px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #11161a;
  isolation: isolate;
  transition: transform 300ms cubic-bezier(.2,.8,.2,1), border-color 300ms ease;
}

.app-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(450px circle at var(--spot-x) var(--spot-y), rgba(255,255,255,.13), transparent 46%);
  content: "";
}

.app-card--air::before,
.app-card--outfit::before {
  position: absolute;
  z-index: -2;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .18;
  content: "";
}

.app-card--air::before { top: -210px; right: -80px; background: var(--cyan); }
.app-card--outfit::before { bottom: -230px; left: -70px; background: var(--violet); }
.app-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,.25); }

.app-card-top { display: flex; align-items: flex-start; justify-content: space-between; }
.app-card-top img { width: 104px; border-radius: 25%; box-shadow: 0 20px 40px rgba(0,0,0,.35); }

.status-chip {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: #c4cbd0;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.app-card-copy { position: absolute; right: 30px; bottom: 28px; left: 30px; }
.app-card-copy p { margin-bottom: 12px; color: #7e898f; font-size: 10px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.app-card-copy h3 { margin-bottom: 14px; font-size: clamp(44px, 5vw, 68px); line-height: 1; letter-spacing: -.06em; }
.app-card-copy > span { display: block; max-width: 400px; color: #aeb6bb; font-size: 16px; line-height: 1.55; }
.card-arrow { position: absolute; right: 28px; top: 220px; font-size: 42px; font-weight: 200; }

.product {
  position: relative;
  display: grid;
  min-height: 920px;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: 6vw;
  overflow: hidden;
  padding: 150px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
}

.product--air { background: #0a1014; }
.product--outfit { background: #071014; }
.product-copy,
.outfit-copy { min-width: 0; }
.product-number { position: absolute; top: 38px; right: 4vw; color: rgba(255,255,255,.035); font-size: 200px; font-weight: 800; line-height: 1; letter-spacing: -.1em; }

.product-icon-row { display: flex; align-items: center; gap: 14px; margin-bottom: 58px; }
.product-icon-row img { width: 66px; border-radius: 24%; box-shadow: 0 12px 24px rgba(0,0,0,.28); }
.product-icon-row p { display: grid; gap: 2px; margin: 0; }
.product-icon-row b { font-size: 15px; }
.product-icon-row span { color: #879199; font-size: 11px; }
.product h2 { margin-bottom: 28px; }
.product-lede { max-width: 590px; margin-bottom: 38px; color: #a5aeb4; font-size: 17px; line-height: 1.72; }

.product--air h2 em { background-image: linear-gradient(90deg, #fff, var(--cyan)); }
.product--outfit h2 em { background-image: linear-gradient(90deg, var(--cyan-bright), var(--violet), var(--pink)); }

.feature-list { max-width: 610px; margin: 0 0 40px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.feature-list li { display: grid; grid-template-columns: 38px 145px 1fr; gap: 14px; align-items: center; padding: 19px 0; border-bottom: 1px solid var(--line); }
.feature-list span { color: #63727b; font-size: 10px; font-weight: 700; }
.feature-list b { font-size: 14px; }
.feature-list small { color: #89949b; font-size: 12px; }

.store-button {
  display: inline-flex;
  min-width: 190px;
  min-height: 61px;
  align-items: center;
  gap: 11px;
  padding: 9px 18px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 17px;
  background: #f6f5f0;
  color: #070a0d;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.store-button:hover { transform: translateY(-3px); box-shadow: 0 15px 32px rgba(0,0,0,.3); }
.store-button .apple { width: 27px; height: 31px; font-family: -apple-system, BlinkMacSystemFont, sans-serif; font-size: 31px; line-height: 31px; }
.store-button > span:last-child { display: grid; line-height: 1; }
.store-button small { margin-bottom: 3px; font-size: 9px; }
.store-button b { font-size: 17px; letter-spacing: -.03em; }
.round-link {
  display: grid;
  width: 61px;
  height: 61px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 50%;
  font-size: 23px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.round-link:hover { transform: rotate(5deg); background: var(--cyan); color: var(--ink); }

.product-explore-link {
  display: inline-flex;
  max-width: 250px;
  align-items: center;
  gap: 9px;
  color: #d6dcdf;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
  transition: color 180ms ease;
}

.product-explore-link:hover { color: white; }
.product-explore-link span { flex: 0 0 auto; color: var(--cyan); font-size: 15px; }

.policy-links { display: flex; flex-wrap: wrap; gap: 9px; }

.policy-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px;
  color: #d2d9dc;
  font-size: 11px;
  font-weight: 720;
  letter-spacing: .04em;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.policy-link:hover { border-color: var(--cyan); background: rgba(104,234,245,.09); color: white; }
.policy-link span { color: var(--cyan); font-size: 15px; }

.mesh-visual {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border: 1px solid rgba(104,234,245,.2);
  border-radius: 48px;
  background: radial-gradient(circle at 50% 49%, rgba(62,185,220,.16), transparent 28%), #081117;
  box-shadow: inset 0 0 80px rgba(55,177,220,.06), 0 50px 100px rgba(0,0,0,.25);
}

.mesh-lines { position: absolute; inset: 6%; width: 88%; height: 88%; overflow: visible; }
.mesh-lines path { fill: none; stroke: url(#meshStroke); stroke-width: 1; stroke-dasharray: 5 8; opacity: .42; animation: dash 20s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -300; } }

.mesh-node { position: absolute; display: grid; justify-items: center; gap: 5px; }
.mesh-node span { width: 15px; height: 15px; border: 2px solid var(--cyan); border-radius: 50%; background: #0c1c23; box-shadow: 0 0 0 8px rgba(104,234,245,.06), 0 0 25px rgba(104,234,245,.5); }
.mesh-node small { color: #8d9ba2; font-size: 8px; font-weight: 750; letter-spacing: .13em; }
.mesh-node--1 { top: 13%; left: 12%; }
.mesh-node--2 { top: 7%; left: 49%; }
.mesh-node--3 { top: 18%; right: 11%; }
.mesh-node--4 { right: 17%; bottom: 18%; }
.mesh-node--5 { bottom: 9%; left: 43%; }
.mesh-node--6 { bottom: 20%; left: 13%; }

.mesh-center { position: absolute; top: 50%; left: 50%; display: grid; width: 168px; height: 168px; place-content: center; justify-items: center; transform: translate(-50%,-50%); border: 1px solid rgba(104,234,245,.38); border-radius: 50%; background: rgba(4,16,22,.82); box-shadow: 0 0 70px rgba(67,213,245,.17); }
.mesh-center > span { color: var(--cyan); font-size: 42px; line-height: 1; }
.mesh-center b { margin-top: 6px; font-size: 10px; letter-spacing: .16em; }
.mesh-center small { color: #7e8b92; font-size: 9px; }
.pulse { position: absolute; inset: -22px; border: 1px solid rgba(104,234,245,.18); border-radius: 50%; animation: pulse 3s ease-out infinite; }
.pulse--two { animation-delay: 1.5s; }
@keyframes pulse { from { transform: scale(.75); opacity: 1; } to { transform: scale(1.55); opacity: 0; } }
.mesh-note { position: absolute; display: flex; align-items: center; gap: 8px; padding: 11px 14px; border: 1px solid var(--line); border-radius: 99px; background: rgba(7,14,18,.76); color: #aeb9be; font-size: 10px; font-weight: 650; backdrop-filter: blur(14px); }
.mesh-note i { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--lime); }
.mesh-note--one { top: 38px; right: 38px; }
.mesh-note--two { bottom: 34px; left: 35px; }

.airchat-gallery { position: relative; z-index: 2; min-width: 0; grid-column: 1 / -1; margin-top: 28px; padding-top: 70px; border-top: 1px solid var(--line); }
.airchat-gallery-copy { display: grid; max-width: 800px; gap: 18px; margin-bottom: 44px; }
.airchat-gallery-copy .eyebrow { margin: 0; }
.airchat-gallery-copy h3 { margin: 0; font-size: clamp(36px, 4.5vw, 64px); font-weight: 650; line-height: 1; letter-spacing: -.055em; }
.airchat-gallery-copy h3 em { background: linear-gradient(90deg, #fff, var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; font-style: normal; }
.airchat-gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.airchat-shot { overflow: hidden; margin: 0; border: 1px solid rgba(104,234,245,.18); border-radius: 32px; background: #081117; box-shadow: 0 30px 70px rgba(0,0,0,.28); }
.airchat-shot img { display: block; width: 100%; height: auto; }
.airchat-shot figcaption { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; border-top: 1px solid var(--line); }
.airchat-shot figcaption span { color: var(--cyan); font-size: 9px; font-weight: 780; letter-spacing: .14em; }
.airchat-shot figcaption b { color: #dbe4e7; font-size: 13px; }

.outfit-copy { position: relative; z-index: 3; }
.metric-row { display: flex; margin: 6px 0 42px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.metric-row p { display: flex; width: 33.333%; align-items: flex-start; gap: 10px; margin: 0; padding: 18px 12px 18px 0; border-right: 1px solid var(--line); }
.metric-row p + p { padding-left: 14px; }
.metric-row p:last-child { border-right: 0; }
.metric-row b { color: var(--teal); font-size: 9px; }
.metric-row span { color: #bdc5ca; font-size: 11px; font-weight: 650; line-height: 1.35; }

.screen-showcase { position: relative; min-height: 760px; perspective: 1300px; }
.screen-showcase::before { position: absolute; inset: 13% 1% 6%; border-radius: 50%; background: conic-gradient(from 190deg, var(--cyan), #1d65ff, var(--violet), var(--pink), var(--cyan)); opacity: .16; filter: blur(75px); content: ""; }
.screen-card { position: absolute; width: 315px; overflow: hidden; border: 1px solid rgba(255,255,255,.24); border-radius: 36px; background: #061019; box-shadow: 0 44px 80px rgba(0,0,0,.55); }
.screen-card img { width: 100%; height: auto; }
.screen-card--main { z-index: 3; top: 3%; left: 50%; transform: translateX(-50%) rotate(-2deg); }
.screen-card--back { z-index: 1; top: 18%; left: 0; transform: rotate(-11deg) scale(.88); opacity: .72; }
.screen-card--front { z-index: 2; top: 20%; right: -3%; transform: rotate(10deg) scale(.9); opacity: .84; }
.look-label { position: absolute; z-index: 5; display: flex; align-items: center; gap: 10px; color: #d7e0e4; font-size: 9px; font-weight: 750; letter-spacing: .15em; }
.look-label i { width: 52px; height: 1px; background: currentColor; }
.look-label--one { top: 13%; left: 2%; }
.look-label--two { right: 0; bottom: 10%; flex-direction: row-reverse; }

.gallery-section { overflow: hidden; padding: 145px max(24px, calc((100vw - var(--max)) / 2)); background: var(--paper); color: var(--ink); }
.gallery-section .eyebrow { color: #737b7f; }
.gallery-section h2 em { background-image: linear-gradient(90deg, #088f99, #6957cb); }
.gallery-heading { margin-bottom: 70px; }
.gallery-heading > p:last-child { color: #636b6f; }
.screen-gallery { display: grid; grid-auto-columns: min(370px, 78vw); grid-auto-flow: column; gap: 18px; overflow-x: auto; margin-right: min(-24px, calc((100vw - var(--max)) / -2)); padding: 4px max(24px, calc((100vw - var(--max)) / 2)) 24px 0; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: #9aa2a4 transparent; }
.gallery-card { position: relative; margin: 0; overflow: hidden; border-radius: 28px; background: #0a1116; color: white; scroll-snap-align: start; }
.gallery-card img { width: 100%; }
.gallery-card::after { position: absolute; right: 0; bottom: 0; left: 0; height: 28%; background: linear-gradient(transparent, rgba(2,5,7,.92)); content: ""; }
.gallery-card figcaption { position: absolute; z-index: 2; right: 22px; bottom: 20px; left: 22px; display: flex; align-items: center; justify-content: space-between; }
.gallery-card figcaption span { color: #93a2a8; font-size: 10px; }
.gallery-card figcaption b { font-size: 14px; }

.principles { display: grid; grid-template-columns: .85fr 1.15fr; gap: 7vw; }
.principles-copy h2 { margin: 0; font-size: clamp(46px, 5.5vw, 80px); line-height: .96; letter-spacing: -.06em; }
.principle-grid { border-top: 1px solid var(--line); }
.principle { display: grid; grid-template-columns: 50px 140px 1fr; gap: 15px; align-items: center; padding: 27px 0; border-bottom: 1px solid var(--line); }
.principle span { color: #68747b; font-size: 10px; }
.principle h3 { margin: 0; font-size: 20px; letter-spacing: -.03em; }
.principle p { margin: 0; color: #909aa0; font-size: 13px; line-height: 1.55; }

.contact-cta { position: relative; display: grid; min-height: 720px; place-items: center; overflow: hidden; padding: 110px 24px; border-top: 1px solid var(--line); text-align: center; isolation: isolate; }
.contact-cta .eyebrow { justify-content: center; }
.contact-cta h2 { max-width: 950px; margin: 0 auto 42px; }
.contact-cta .button { min-width: 190px; }
.contact-orb { position: absolute; z-index: -1; width: 45vw; height: 45vw; border-radius: 50%; opacity: .14; filter: blur(110px); }
.contact-orb--one { top: -28vw; left: -8vw; background: var(--cyan); }
.contact-orb--two { right: -10vw; bottom: -30vw; background: var(--violet); }

.site-footer { display: grid; width: min(calc(100% - 48px), var(--max)); grid-template-columns: 1fr 1.2fr .8fr; gap: 30px; align-items: start; margin: 0 auto; padding: 56px 0 30px; border-top: 1px solid var(--line); }
.site-footer > p { color: #818b91; font-size: 12px; line-height: 1.6; }
.site-footer nav { display: grid; justify-items: end; gap: 10px; color: #a9b1b6; font-size: 12px; }
.site-footer nav a:hover { color: white; }
.site-footer .copyright { grid-column: 1 / -1; margin: 42px 0 0; padding-top: 20px; border-top: 1px solid var(--line); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

/* Legal and support pages */
.inner-page { background: #090d11; }
.legal-hero { position: relative; overflow: hidden; padding: 190px max(24px, calc((100vw - 1040px) / 2)) 90px; border-bottom: 1px solid var(--line); }
.legal-hero::before { position: absolute; top: -300px; right: -240px; width: 650px; height: 650px; border-radius: 50%; background: var(--cyan); opacity: .09; filter: blur(100px); content: ""; }
.legal-hero h1 { max-width: 800px; }
.legal-hero > p:last-child { max-width: 650px; margin: 26px 0 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.legal-layout { display: grid; width: min(calc(100% - 48px), 1040px); grid-template-columns: 220px 1fr; gap: 70px; margin: 0 auto; padding: 90px 0 140px; }
.legal-nav { position: sticky; top: 110px; align-self: start; display: grid; gap: 8px; }
.legal-nav a { padding: 12px 14px; border-radius: 12px; color: #8f999f; font-size: 12px; }
.legal-nav a:hover { background: rgba(255,255,255,.06); color: white; }
.legal-content { min-width: 0; }
.legal-section { scroll-margin-top: 120px; padding-bottom: 70px; }
.legal-section + .legal-section { padding-top: 70px; border-top: 1px solid var(--line); }
.legal-section h2 { margin-bottom: 12px; font-size: clamp(34px, 4vw, 48px); letter-spacing: -.05em; }
.legal-section > h2 { margin-top: 44px; font-size: clamp(23px, 3vw, 30px); letter-spacing: -.035em; }
.legal-content [id] { scroll-margin-top: 120px; }
.legal-section > .updated { margin-bottom: 38px; color: #6f7a81; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.legal-section h3 { margin: 34px 0 10px; font-size: 17px; }
.legal-section p, .legal-section li { color: #a8b0b5; font-size: 14px; line-height: 1.8; }
.legal-section ul { padding-left: 20px; }
.legal-section a { color: var(--cyan); }
.app-identity { display: flex; align-items: center; gap: 16px; margin-bottom: 34px; }
.app-identity img { width: 72px; border-radius: 23%; }
.app-identity > div { display: grid; }
.app-identity h2 { margin: 0; color: white; font-size: 18px; letter-spacing: -.03em; }
.app-identity span { color: #77838a; font-size: 12px; }
.legal-hero .app-identity { margin: 0; }
.legal-hero .app-identity img { width: 92px; }
.legal-hero .app-identity span { display: block; margin-bottom: 8px; color: #8d989e; font-size: 11px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.legal-hero .app-identity h1 { margin: 0; }
.legal-hero--outfit::before { background: var(--violet); }
.legal-hero--airchat::before { background: var(--cyan); }
.legal-layout--hub { padding-bottom: 110px; }
.policy-card-grid { margin-bottom: 20px; }
.policy-card .policy-type { min-height: 0; margin: 0 0 7px; color: var(--cyan); font-size: 9px; font-weight: 780; letter-spacing: .14em; text-transform: uppercase; }
.terms-callout { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 30px; border: 1px solid rgba(104,234,245,.2); border-radius: 28px; background: linear-gradient(120deg, rgba(104,234,245,.08), rgba(167,122,255,.04)); }
.terms-callout span { display: block; margin-bottom: 8px; color: var(--cyan); font-size: 9px; font-weight: 780; letter-spacing: .14em; text-transform: uppercase; }
.terms-callout h2 { margin: 0 0 8px; font-size: 25px; letter-spacing: -.04em; }
.terms-callout p { max-width: 570px; margin: 0; color: #929da3; font-size: 12px; line-height: 1.65; }
.terms-callout > a { flex: 0 0 auto; padding: 12px 15px; border-radius: 13px; background: var(--paper); color: var(--ink); font-size: 11px; font-weight: 760; }
.legal-next-link { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 54px; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.legal-next-link span { color: #6f7a81; font-size: 10px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.legal-next-link a { font-weight: 720; }
.terms-content h2 span { display: inline-block; min-width: 34px; color: var(--cyan); font-size: .55em; vertical-align: .25em; }
.terms-content strong { color: #eef2f3; }
.legal-uppercase { text-transform: uppercase; }

.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 55px; }
.support-card { padding: 26px; border: 1px solid var(--line); border-radius: 26px; background: rgba(255,255,255,.035); }
.support-card img { width: 70px; border-radius: 22%; margin-bottom: 30px; }
.support-card h2 { margin-bottom: 8px; font-size: 29px; letter-spacing: -.04em; }
.support-card p { min-height: 68px; color: #929da3; font-size: 13px; line-height: 1.65; }
.support-card a { display: inline-flex; margin-top: 12px; padding: 11px 14px; border-radius: 12px; background: var(--paper); color: var(--ink); font-size: 12px; font-weight: 750; }
.support-info { padding: 30px; border: 1px solid var(--line); border-radius: 28px; }
.support-info h2 { margin-bottom: 26px; font-size: 30px; letter-spacing: -.04em; }
.support-info dl { display: grid; grid-template-columns: 150px 1fr; gap: 14px; margin: 0; }
.support-info dt { color: #6e7a81; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.support-info dd { margin: 0; color: #b4bdc1; font-size: 13px; }
.faq { margin-top: 70px; border-top: 1px solid var(--line); }
.faq h2 { margin: 54px 0 25px; font-size: 34px; letter-spacing: -.04em; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 22px 34px 22px 0; cursor: pointer; font-weight: 650; list-style: none; }
.faq summary::after { position: absolute; right: 5px; content: "+"; color: var(--cyan); font-size: 22px; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 690px; padding-bottom: 22px; color: #929da3; font-size: 13px; line-height: 1.7; }

/* Individual app landing pages */
.site-nav a[aria-current="page"] { background: rgba(255, 255, 255, .08); color: white; }

.app-detail-page { background: var(--ink); }

.app-detail-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: 6vw;
  overflow: hidden;
  padding: 155px max(24px, calc((100vw - var(--max)) / 2)) 100px;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.app-detail-hero::before {
  position: absolute;
  z-index: -1;
  width: 62vw;
  height: 62vw;
  border-radius: 50%;
  opacity: .12;
  filter: blur(130px);
  content: "";
}

.app-detail-hero--outfit::before { top: -32vw; right: -18vw; background: linear-gradient(135deg, var(--cyan), var(--violet), var(--pink)); }
.app-detail-hero--airchat::before { top: -32vw; right: -10vw; background: var(--cyan); }
.app-detail-copy { position: relative; z-index: 4; }
.app-detail-copy .product-icon-row { margin-bottom: 48px; }

.app-detail-hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(58px, 6.5vw, 96px);
  font-weight: 670;
  line-height: .92;
  letter-spacing: -.07em;
}

.app-detail-hero h1 em,
.app-next h2 em,
.app-faq h2 em,
.airchat-detail-gallery h2 em {
  color: transparent;
  font-style: normal;
  background: linear-gradient(105deg, #fff 3%, var(--cyan) 48%, var(--violet));
  background-clip: text;
  -webkit-background-clip: text;
}

.app-detail-hero--airchat h1 em,
.app-detail-page--airchat .app-faq h2 em,
.airchat-detail-gallery h2 em { background-image: linear-gradient(90deg, #fff, var(--cyan)); }
.app-detail-hero .screen-showcase { width: 100%; }
.app-detail-hero .mesh-visual { width: 100%; min-height: 680px; }
.app-detail-page .detail-mesh-path { stroke: url(#detailMeshStroke); }

.app-benefits { padding-bottom: 125px; }
.app-benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 68px; }
.app-benefit { min-height: 330px; padding: 28px; border: 1px solid var(--line); border-radius: 30px; background: rgba(255,255,255,.035); }
.app-benefit > span { display: block; margin-bottom: 110px; color: var(--cyan); font-size: 10px; font-weight: 780; letter-spacing: .14em; }
.app-benefit h3 { margin-bottom: 13px; font-size: 25px; letter-spacing: -.04em; }
.app-benefit p { margin: 0; color: #909aa0; font-size: 13px; line-height: 1.7; }

.airchat-detail-gallery { overflow: hidden; padding: 135px max(24px, calc((100vw - var(--max)) / 2)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #081117; }
.airchat-detail-gallery .airchat-gallery-copy { max-width: 940px; margin-bottom: 55px; }
.airchat-detail-gallery h2 { margin: 0; font-size: clamp(46px, 6vw, 82px); font-weight: 650; line-height: .96; letter-spacing: -.065em; }

.app-faq { display: grid; grid-template-columns: .82fr 1.18fr; gap: 8vw; }
.app-faq-heading h2 { margin: 0; font-size: clamp(46px, 5.5vw, 76px); font-weight: 650; line-height: .96; letter-spacing: -.06em; }
.app-faq .faq { margin-top: 0; }
.app-faq .faq a { color: var(--cyan); }

.app-next { position: relative; display: grid; min-height: 670px; place-items: center; align-content: center; overflow: hidden; padding: 110px 24px; border-top: 1px solid var(--line); text-align: center; isolation: isolate; }
.app-next::before { position: absolute; z-index: -1; width: 58vw; height: 58vw; border-radius: 50%; opacity: .13; filter: blur(130px); content: ""; }
.app-next--air::before { left: -15vw; bottom: -38vw; background: var(--cyan); }
.app-next--outfit::before { right: -18vw; bottom: -35vw; background: var(--violet); }
.app-next .eyebrow { justify-content: center; }
.app-next h2 { max-width: 930px; margin: 0 auto 42px; font-size: clamp(48px, 6vw, 84px); font-weight: 650; line-height: .96; letter-spacing: -.065em; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1060px) {
  .hero { grid-template-columns: 1fr 1fr; }
  .product { grid-template-columns: 1fr 1fr; gap: 42px; }
  .screen-card { width: 270px; }
  .principles { grid-template-columns: 1fr; }
  .app-detail-hero { grid-template-columns: 1fr 1fr; gap: 42px; }
}

@media (max-width: 820px) {
  .site-header { height: 62px; padding-right: 9px; }
  .menu-button { display: block; }
  .menu-button[aria-expanded="true"] i:first-of-type { transform: translateY(3px) rotate(45deg); }
  .menu-button[aria-expanded="true"] i:last-of-type { transform: translateY(-3px) rotate(-45deg); }
  .site-nav { position: fixed; top: 76px; right: 0; left: 0; display: grid; padding: 12px; transform: translateY(-16px); border: 1px solid var(--line); border-radius: 20px; background: rgba(7,10,13,.96); opacity: 0; visibility: hidden; box-shadow: 0 28px 50px rgba(0,0,0,.4); backdrop-filter: blur(20px); transition: opacity 180ms ease, transform 180ms ease, visibility 180ms; }
  .site-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .site-nav a { padding: 15px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 150px; }
  .hero-copy { max-width: 670px; }
  .hero-stage { min-height: 620px; margin-top: 10px; }
  .hero-footer { display: none; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .app-card-grid { grid-template-columns: 1fr; }
  .app-card { min-height: 450px; }
  .product { grid-template-columns: 1fr; }
  .product--air .mesh-visual { grid-row: 2; }
  .mesh-visual { min-height: 620px; }
  .airchat-gallery { margin-top: 10px; }
  .airchat-gallery-grid { grid-auto-columns: min(360px, 82vw); grid-auto-flow: column; grid-template-columns: none; gap: 16px; overflow-x: auto; padding: 4px 24px 18px 0; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: #53646d transparent; }
  .airchat-shot { scroll-snap-align: start; }
  .screen-showcase { min-height: 690px; margin-top: 30px; }
  .legal-layout { grid-template-columns: 1fr; gap: 40px; }
  .legal-nav { position: static; display: flex; overflow-x: auto; }
  .app-detail-hero { grid-template-columns: 1fr; min-height: auto; padding-top: 150px; }
  .app-detail-hero .mesh-visual { grid-row: 2; }
  .app-detail-hero .screen-showcase { min-height: 690px; margin-top: 25px; }
  .app-benefit-grid { grid-template-columns: 1fr; }
  .app-benefit { min-height: 260px; }
  .app-benefit > span { margin-bottom: 70px; }
  .app-faq { grid-template-columns: 1fr; gap: 55px; }
}

@media (max-width: 600px) {
  :root { --radius: 26px; }
  .site-header { top: 10px; width: calc(100% - 20px); }
  .hero { padding: 128px 20px 55px; }
  .hero h1 { font-size: clamp(52px, 16vw, 78px); }
  .hero-lede { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-stage { min-height: 510px; }
  .app-token { gap: 10px; padding: 10px; border-radius: 27px; }
  .app-token img { width: 124px; }
  .app-token span { padding-right: 8px; }
  .app-token small { font-size: 10px; }
  .app-token--air { top: 5%; }
  .app-token--outfit { bottom: 7%; }
  .signal-pill { font-size: 10px; }
  .signal-pill--top { top: 40%; left: 0; }
  .signal-pill--bottom { right: 0; bottom: 32%; }
  .section { width: calc(100% - 40px); padding: 100px 0; }
  .section-heading h2, .product h2, .contact-cta h2 { font-size: 47px; }
  .app-card { min-height: 410px; padding: 22px; }
  .app-card-top img { width: 86px; }
  .app-card-copy { right: 22px; bottom: 22px; left: 22px; }
  .app-card-copy h3 { font-size: 44px; }
  .card-arrow { display: none; }
  .product { min-height: 0; padding: 105px 20px; }
  .product .product-actions { align-items: flex-start; flex-direction: column; }
  .product-number { top: 20px; font-size: 115px; }
  .product-icon-row { margin-bottom: 42px; }
  .feature-list li { grid-template-columns: 30px 105px 1fr; gap: 8px; }
  .feature-list small { font-size: 10px; }
  .mesh-visual { min-height: 500px; border-radius: 30px; }
  .mesh-center { width: 132px; height: 132px; }
  .mesh-note { font-size: 8px; }
  .mesh-note--one { top: 22px; right: 18px; }
  .mesh-note--two { bottom: 22px; left: 18px; }
  .airchat-gallery { padding-top: 54px; }
  .airchat-gallery-copy { margin-bottom: 30px; }
  .airchat-gallery-copy h3 { font-size: 38px; }
  .airchat-gallery-grid { grid-auto-columns: min(320px, 84vw); }
  .airchat-shot { border-radius: 24px; }
  .airchat-shot figcaption { padding: 17px 18px; }
  .metric-row span { font-size: 9px; }
  .screen-showcase { min-height: 590px; }
  .screen-card { width: 225px; border-radius: 26px; }
  .screen-card--back { left: -16%; }
  .screen-card--front { right: -17%; }
  .look-label { display: none; }
  .gallery-section { padding: 105px 20px; }
  .screen-gallery { margin-right: -20px; }
  .principle { grid-template-columns: 32px 95px 1fr; gap: 9px; }
  .principle h3 { font-size: 16px; }
  .principle p { font-size: 11px; }
  .contact-cta { min-height: 600px; }
  .site-footer { width: calc(100% - 40px); grid-template-columns: 1fr; }
  .site-footer nav { justify-items: start; grid-auto-flow: column; justify-content: start; }
  .site-footer nav { display: flex; flex-wrap: wrap; gap: 12px 18px; }
  .legal-hero { padding: 145px 20px 70px; }
  .legal-hero h1 { font-size: 52px; }
  .legal-hero .app-identity { align-items: flex-start; }
  .legal-hero .app-identity img { width: 72px; }
  .legal-hero .app-identity h1 { font-size: 43px; }
  .legal-layout { width: calc(100% - 40px); padding: 65px 0 100px; }
  .support-grid { grid-template-columns: 1fr; }
  .terms-callout { align-items: flex-start; flex-direction: column; }
  .support-info dl { grid-template-columns: 1fr; gap: 5px; }
  .support-info dd { margin-bottom: 15px; }
  .app-detail-hero { padding: 130px 20px 90px; }
  .app-detail-hero h1 { font-size: clamp(52px, 15vw, 74px); }
  .app-detail-hero .product-actions { align-items: flex-start; flex-direction: column; }
  .app-detail-hero .mesh-visual { min-height: 500px; }
  .app-benefit-grid { margin-top: 45px; }
  .app-benefit { min-height: 245px; padding: 23px; }
  .airchat-detail-gallery { padding: 100px 20px; }
  .airchat-detail-gallery .airchat-gallery-grid { grid-auto-columns: min(320px, 84vw); grid-auto-flow: column; grid-template-columns: none; overflow-x: auto; padding-bottom: 18px; scroll-snap-type: x mandatory; }
  .airchat-detail-gallery .airchat-shot { scroll-snap-align: start; }
  .app-next { min-height: 560px; padding: 90px 20px; }
  .app-next h2 { font-size: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
