@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  --paper: #f7f6f2;
  --paper-2: #efede6;
  --surface: #ffffff;
  --ink: #101820;
  --ink-soft: #4c565f;
  --muted: #7c858c;
  --line: #dcdad2;
  --navy: #102746;
  --blue: #1f65d6;
  --red: #e54d42;
  --green: #247a51;
  --sun: #f4c95d;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 30px;
  --shadow: 0 20px 60px rgba(16, 24, 32, 0.08);
  --container: 1180px;
  --gutter: clamp(20px, 4vw, 52px);
  --nav-h: 76px;
  --font-display: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --font-body: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  --font-mono: ui-monospace, "SFMono-Regular", Consolas, monospace;
  --bg: var(--paper);
  --bg-2: var(--paper-2);
  --card: var(--surface);
  --ink-2: var(--ink-soft);
  --brand-blue: var(--blue);
  --brand-navy: var(--navy);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::selection { background: #cfe0ff; color: #07162c; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
}
.skip-link:focus { top: 14px; }

.site-nav,
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 13px var(--gutter);
  border-bottom: 1px solid rgba(16, 24, 32, 0.09);
  background: rgba(247, 246, 242, 0.92);
  backdrop-filter: blur(18px);
}

.brand,
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.brand img,
.nav-brand-mark img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name small { color: var(--muted); font-size: 10px; letter-spacing: 0.11em; text-transform: uppercase; }
.nav-brand em { color: var(--blue); font-style: normal; }
.legacy-page .nav-brand strong,
.ud-page .nav-brand strong { color: #101820 !important; }
.legacy-page .nav-brand em,
.ud-page .nav-brand em { color: #1f65d6 !important; }

.site-nav__links,
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__links a,
.nav-links a {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 9px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}

.site-nav__links a:hover,
.site-nav__links a[aria-current="page"],
.nav-links a:hover {
  background: var(--surface);
  color: var(--ink);
}

.nav-actions,
.nav-tools { display: flex; align-items: center; gap: 8px; }

.menu-button,
.nav-burger {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.theme-toggle { display: none !important; }

.button,
.btn,
.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--surface);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.btn:hover,
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 9px 24px rgba(16, 24, 32, 0.1); }

.button--dark,
.btn-primary,
.nav-cta {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.button--blue { border-color: var(--blue); background: var(--blue); color: #fff; }
.button--text { border-color: transparent; background: transparent; padding-inline: 5px; }
.button svg { width: 17px; height: 17px; }

.mobile-panel,
.nav-drawer {
  position: fixed;
  z-index: 99;
  top: var(--nav-h);
  left: 0;
  right: 0;
  display: none;
  padding: 18px var(--gutter) 25px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.mobile-panel.is-open,
.nav-drawer.open { display: block; }
.mobile-panel a,
.nav-drawer a { display: block; padding: 11px 0; font-weight: 700; }
.nav-drawer ul { list-style: none; margin: 0 0 12px; padding: 0; }

.container { width: min(var(--container), calc(100% - (var(--gutter) * 2))); margin-inline: auto; }
.section { padding: clamp(76px, 10vw, 132px) 0; }
.section--tight { padding: clamp(54px, 7vw, 86px) 0; }
.section--ink { background: var(--navy); color: #fff; }
.section--surface { background: var(--surface); }
.section--line { border-top: 1px solid var(--line); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }

.display {
  max-width: 920px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 7.6rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.display em { color: var(--blue); font-style: normal; }
.display .quiet { color: #9da3a7; }

.section-title,
.page-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.lede {
  max-width: 690px;
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero {
  overflow: hidden;
  padding: clamp(74px, 10vw, 126px) 0 0;
  background: var(--paper);
}

.hero__top {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(270px, 0.75fr);
  align-items: end;
  gap: clamp(34px, 6vw, 96px);
}

.hero__aside { padding-bottom: 12px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
}
.proof-row strong { color: var(--ink); font-size: 16px; }

.screenshot-stage {
  position: relative;
  margin-top: clamp(62px, 10vw, 120px);
  height: clamp(440px, 62vw, 690px);
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--navy);
}

.screen-rail {
  position: absolute;
  left: 50%;
  top: 54px;
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  width: max-content;
  transform: translateX(-50%) rotate(-3deg);
  animation: rail-drift 22s ease-in-out infinite alternate;
}

.screen {
  width: clamp(150px, 19vw, 248px);
  padding: 8px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: clamp(22px, 3vw, 36px);
  background: #06080d;
  box-shadow: 0 35px 85px rgba(0,0,0,.42);
}
.screen:nth-child(even) { transform: translateY(48px); }
.screen img { width: 100%; border-radius: calc(clamp(22px, 3vw, 36px) - 8px); }

@keyframes rail-drift {
  from { transform: translateX(-48%) rotate(-3deg); }
  to { transform: translateX(-52%) rotate(-1.5deg); }
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}
.section-head p { max-width: 540px; margin: 0; color: var(--ink-soft); }

.app-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }

.app-card {
  position: relative;
  grid-column: span 4;
  min-height: 360px;
  overflow: hidden;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.app-card--wide { grid-column: span 8; }
.app-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.app-card__top { display: flex; justify-content: space-between; gap: 18px; }
.app-card__icon { width: 72px; height: 72px; border-radius: 18px; object-fit: cover; box-shadow: 0 12px 28px rgba(16,24,32,.13); }
.app-card__tag { color: var(--muted); font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; }
.app-card h3 { margin: 25px 0 9px; font-family: var(--font-display); font-size: 28px; letter-spacing: -0.04em; line-height: 1.05; }
.app-card p { max-width: 430px; margin: 0; color: var(--ink-soft); font-size: 15px; }
.app-card__link { position: absolute; left: 27px; bottom: 26px; color: var(--blue); font-weight: 700; }
.app-card__platforms { display: flex; gap: 7px; margin-top: 20px; }
.platform-chip { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); font-size: 12px; }
.platform-chip img { width: 14px; height: 14px; opacity: .78; }

.app-card--feature {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}
.app-card--feature p { color: rgba(255,255,255,.68); }
.app-card--feature .app-card__link { color: #9bc0ff; }
.app-card--feature .platform-chip { border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.78); }
.app-card--feature .platform-chip img { filter: invert(1); }
.app-card--web {
  background: linear-gradient(145deg, #eef5ff 0%, #f8fbff 100%);
  border-color: #cdddf7;
}
.app-card--web .app-card__tag { color: #315a9a; }
.app-card--web .app-card__link { color: #164fbb; }
.app-card__screens { position: absolute; right: -20px; bottom: -135px; display: flex; gap: 11px; transform: rotate(6deg); }
.app-card__screens img { width: 128px; border-radius: 18px; box-shadow: 0 24px 44px rgba(0,0,0,.32); }

.metrics { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.metric { padding: 34px clamp(18px, 4vw, 52px); border-right: 1px solid var(--line); }
.metric:last-child { border-right: 0; }
.metric strong { display: block; font-family: var(--font-display); font-size: clamp(2rem, 5vw, 4rem); letter-spacing: -0.06em; line-height: 1; }
.metric span { display: block; margin-top: 9px; color: var(--muted); font-size: 13px; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { display: flex; min-height: 270px; flex-direction: column; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.review-card__store { display: flex; align-items: center; justify-content: space-between; gap: 14px; color: var(--muted); font-size: 12px; }
.review-card__stars { color: #b56b00; letter-spacing: 2px; }
.review-card blockquote { margin: auto 0; font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: -0.025em; line-height: 1.35; }
.review-card footer { color: var(--muted); font-size: 13px; }

.listing-row { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.listing { padding: 28px; border-right: 1px solid var(--line); }
.listing:last-child { border-right: 0; }
.listing__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 34px; font-weight: 800; }
.listing__brand img { width: 24px; height: 24px; }
.listing p { margin: 0 0 20px; color: var(--ink-soft); }
.listing a { color: var(--blue); font-weight: 700; }

.studio-band { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; }
.studio-band > div { padding: clamp(30px, 5vw, 62px); border-radius: var(--radius-lg); }
.studio-band__story { background: var(--navy); color: #fff; }
.studio-band__story p { max-width: 650px; color: rgba(255,255,255,.72); }
.studio-band__place { display: flex; min-height: 310px; flex-direction: column; justify-content: space-between; background: var(--sun); color: #2b260f; }
.place-code { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.studio-band__place strong { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: -.06em; line-height: .95; }

.cta {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
  align-items: end;
  padding: clamp(32px, 6vw, 70px);
  border-radius: var(--radius-lg);
  background: var(--blue);
  color: #fff;
}
.cta p { max-width: 600px; color: rgba(255,255,255,.76); }
.cta__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.cta .button { border-color: rgba(255,255,255,.35); }

.page-hero {
  padding: clamp(75px, 11vw, 140px) 0 clamp(58px, 8vw, 95px);
  border-bottom: 1px solid var(--line);
}
.page-hero__grid { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 56px; }
.page-hero__aside { color: var(--ink-soft); font-size: 18px; }

.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.content-card { padding: clamp(25px, 4vw, 45px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.content-card h2, .content-card h3 { margin: 0 0 14px; font-family: var(--font-display); letter-spacing: -.04em; line-height: 1.05; }
.content-card h2 { font-size: 34px; }
.content-card h3 { font-size: 24px; }
.content-card p, .content-card li { color: var(--ink-soft); }
.content-card--full { grid-column: 1 / -1; }
.content-card--ink { background: var(--navy); color: #fff; border-color: var(--navy); }
.content-card--ink p, .content-card--ink li { color: rgba(255,255,255,.72); }

.contact-list { display: grid; gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); }
.contact-item { display: grid; grid-template-columns: 160px 1fr auto; gap: 22px; align-items: center; padding: 22px 24px; background: var(--surface); }
.contact-item small { color: var(--muted); font-family: var(--font-mono); text-transform: uppercase; }
.contact-item strong { word-break: break-word; }
.contact-item span:last-child { color: var(--blue); }

.press-item { display: grid; grid-template-columns: 160px 1fr auto; gap: 25px; align-items: start; padding: 28px 0; border-top: 1px solid var(--line); }
.press-item:last-child { border-bottom: 1px solid var(--line); }
.press-item__source { color: var(--muted); font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; }
.press-item h3 { margin: 0 0 7px; font-family: var(--font-display); font-size: 23px; letter-spacing: -.03em; }
.press-item p { margin: 0; color: var(--ink-soft); }
.source-disclosure { margin-top: 22px; color: var(--muted); font-size: 13px; }

.app-hero { padding: clamp(65px, 9vw, 110px) 0; overflow: hidden; }
.app-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(35px, 8vw, 100px); align-items: center; }
.app-identity { display: flex; align-items: center; gap: 16px; margin-bottom: 30px; }
.app-identity img { width: 76px; height: 76px; border-radius: 20px; box-shadow: 0 15px 35px rgba(16,24,32,.14); }
.app-identity span { color: var(--muted); font-size: 13px; }
.app-identity strong { display: block; color: var(--ink); font-family: var(--font-display); font-size: 22px; }
.app-hero h1 { margin: 0; font-family: var(--font-display); font-size: clamp(3.5rem, 7vw, 6.8rem); letter-spacing: -.075em; line-height: .92; }
.app-hero__copy { max-width: 610px; margin: 25px 0; color: var(--ink-soft); font-size: 18px; }
.store-actions { display: flex; flex-wrap: wrap; gap: 11px; align-items: center; }
.store-badge { height: 48px; width: auto; max-width: 168px; object-fit: contain; }
.store-link { display: inline-flex; height: 48px; align-items: center; justify-content: center; padding: 0 17px; border: 1px solid var(--line); border-radius: 9px; background: #fff; font-weight: 700; }
.app-visual { position: relative; min-height: 580px; }
.app-visual::before { content: ""; position: absolute; inset: 8% 3% 0; border-radius: 42px; background: var(--navy); transform: rotate(3deg); }
.app-visual__phone { position: absolute; width: min(62%, 300px); filter: drop-shadow(0 28px 42px rgba(16,24,32,.24)); }
.app-visual__phone:first-child { left: 9%; top: 4%; transform: rotate(-7deg); }
.app-visual__phone:nth-child(2) { right: 7%; top: 16%; transform: rotate(7deg); }
.app-visual__icon { position: absolute; right: 5%; bottom: 7%; width: 135px; border-radius: 28px; box-shadow: 0 24px 40px rgba(0,0,0,.25); }

.app-poster {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 42px;
  background: var(--navy);
  color: rgba(255,255,255,.7);
}
.app-poster::before,
.app-poster::after,
.app-poster__rings {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
}
.app-poster::before { width: 440px; height: 440px; }
.app-poster::after { width: 320px; height: 320px; }
.app-poster__rings { width: 560px; height: 560px; animation: poster-orbit 18s linear infinite; }
.app-poster__rings::before {
  content: "";
  position: absolute;
  top: 49px;
  left: 54px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--sun);
}
.app-poster > img {
  position: relative;
  z-index: 2;
  width: min(45%, 230px);
  border-radius: 44px;
  box-shadow: 0 34px 70px rgba(0,0,0,.36);
  animation: poster-float 6s ease-in-out infinite;
}
.app-poster > span {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
@keyframes poster-orbit { to { transform: rotate(360deg); } }
@keyframes poster-float { 50% { transform: translateY(-12px) rotate(2deg); } }

.feature-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); }
.feature { min-height: 240px; padding: 28px; background: var(--surface); }
.feature__number { color: var(--blue); font-family: var(--font-mono); font-size: 12px; }
.feature h3 { margin: 55px 0 10px; font-family: var(--font-display); font-size: 24px; letter-spacing: -.035em; }
.feature p { margin: 0; color: var(--ink-soft); font-size: 15px; }

.product-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 80;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 246, 242, .94);
  backdrop-filter: blur(18px);
}
.product-nav__inner {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 5px;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}
.product-nav__inner::-webkit-scrollbar { display: none; }
.product-nav__inner span {
  margin-right: 13px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.product-nav__inner a {
  padding: 8px 11px;
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}
.product-nav__inner a:hover { background: var(--surface); color: var(--blue); }

.wa-intro { padding-top: clamp(68px, 9vw, 112px); }
.wa-workspaces {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}
.wa-workspace {
  min-height: 250px;
  padding: 25px;
  background: var(--surface);
}
.wa-workspace > span,
.wa-safety__grid article > span {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 11px;
}
.wa-workspace h3,
.wa-safety__grid h3,
.wa-extensions__grid h3,
.wa-shot h3 {
  margin: 58px 0 10px;
  font-family: var(--font-display);
  font-size: 23px;
  letter-spacing: -.035em;
  line-height: 1.05;
}
.wa-workspace p,
.wa-safety__grid p,
.wa-extensions__grid p,
.wa-shot p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.wa-story {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(45px, 9vw, 120px);
  align-items: center;
}
.wa-story--reverse .wa-story__copy { order: 2; }
.wa-story--reverse .wa-story__screens { order: 1; }
.wa-story__copy > p:not(.eyebrow):not(.wa-note) {
  max-width: 610px;
  margin: 24px 0;
  color: var(--ink-soft);
  font-size: 18px;
}
.wa-checks {
  display: grid;
  gap: 11px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}
.wa-checks li {
  position: relative;
  padding-left: 25px;
  color: var(--ink-soft);
}
.wa-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}
.wa-note {
  margin: 28px 0 0;
  padding: 15px 17px;
  border-left: 3px solid var(--sun);
  background: #fffbeb;
  color: #63592e;
  font-size: 13px;
}
.wa-story__screens {
  position: relative;
  min-height: 660px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 72% 22%, rgba(120, 171, 255, .62), transparent 29%),
    linear-gradient(145deg, #0c1d35, #173b68);
}
.wa-phone {
  position: absolute;
  width: min(52%, 280px);
  margin: 0;
  padding: 7px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 32px;
  background: #05070a;
  box-shadow: 0 34px 72px rgba(3, 12, 25, .38);
}
.wa-phone img { width: 100%; border-radius: 25px; }
.wa-phone--back { left: 8%; top: 8%; transform: rotate(-7deg); }
.wa-phone--front { right: 8%; bottom: 7%; transform: rotate(6deg); }

.wa-safety {
  background: var(--navy);
  color: #fff;
}
.wa-safety__head {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 52px;
}
.wa-safety__head .eyebrow { color: #9bc0ff; }
.wa-safety__head > p { margin: 0; color: rgba(255,255,255,.68); }
.wa-safety__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.18);
}
.wa-safety__grid article { min-height: 225px; padding: 27px; background: var(--navy); }
.wa-safety__grid article > span { color: #9bc0ff; }
.wa-safety__grid h3 { margin-top: 46px; }
.wa-safety__grid p { color: rgba(255,255,255,.65); }

.wa-account {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.wa-account__identity,
.wa-plan {
  padding: clamp(27px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.wa-account__identity {
  color: #fff;
  background: linear-gradient(145deg, #172e52, #1e64ae);
  border-color: #172e52;
}
.wa-account__identity .eyebrow { color: #b8d5ff; }
.wa-account h3 {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: 29px;
  letter-spacing: -.04em;
  line-height: 1.05;
}
.wa-identity-row {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.2);
}
.wa-identity-row strong { font-size: 13px; }
.wa-identity-row span { color: rgba(255,255,255,.7); font-size: 13px; }
.wa-plan__label {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.wa-plan p { color: var(--ink-soft); }
.wa-plan--premium { color: #fff; background: #161923; border-color: #161923; }
.wa-plan--premium .wa-plan__label { color: #a9c9ff; }
.wa-plan--premium p,
.wa-plan--premium .wa-checks li { color: rgba(255,255,255,.68); }
.wa-plan--premium .wa-checks li::before { color: #68dbac; }
.wa-points {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  margin-top: 18px;
  padding: 25px 28px;
  border: 1px solid #e2d18b;
  border-radius: var(--radius);
  background: #fff8d9;
}
.wa-points strong { font-family: var(--font-display); font-size: 20px; }
.wa-points p { margin: 0; color: #625a3a; }

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(16, 24, 32, .05);
  -webkit-overflow-scrolling: touch;
}
.comparison-wrap:focus-visible { outline: 3px solid rgba(31, 101, 214, .3); outline-offset: 3px; }
.comparison-table {
  width: 100%;
  min-width: 1120px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
}
.comparison-table th,
.comparison-table td {
  min-width: 172px;
  padding: 19px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.comparison-table tr > :last-child { border-right: 0; }
.comparison-table tbody tr:last-child > * { border-bottom: 0; }
.comparison-table thead th {
  padding-block: 22px;
  background: #f0eee8;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 15px;
}
.comparison-table thead th:first-child,
.comparison-table tbody th {
  position: sticky;
  left: 0;
  z-index: 2;
  min-width: 190px;
  background: #f7f6f2;
}
.comparison-table thead th:first-child { z-index: 3; }
.comparison-table tbody th {
  color: var(--ink);
  font-weight: 700;
}
.comparison-table td { color: var(--ink-soft); }
.comparison-table .is-us {
  background: #edf4ff;
  color: #173d73;
}
.comparison-table thead .is-us {
  background: var(--navy);
  color: #fff;
}
.browser-label {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}
.browser-label img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  border-radius: 7px;
}
.browser-label img.is-round { border-radius: 50%; }
.comparison-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
.comparison-note a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wa-extensions {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 18px;
}
.wa-extensions__lead {
  display: flex;
  min-height: 540px;
  flex-direction: column;
  padding: clamp(30px, 5vw, 55px);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #0f1917, #1c493c);
  color: #fff;
}
.wa-extensions__lead .eyebrow { color: #92e2c4; }
.wa-extensions__lead p:not(.eyebrow) { color: rgba(255,255,255,.7); }
.wa-extensions__lead .button { align-self: flex-start; margin-top: auto; }
.wa-extensions__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.wa-extensions__grid article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.wa-extensions__grid article > span {
  display: inline-grid;
  min-width: 40px;
  height: 40px;
  place-items: center;
  padding: 0 8px;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
}
.wa-extensions__grid h3 { margin-top: 40px; }

.wa-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.wa-shot {
  display: flex;
  min-height: 540px;
  flex-direction: column;
  overflow: hidden;
  padding: 27px 27px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.wa-shot h3 { margin-top: 0; }
.wa-shot figure {
  width: min(88%, 280px);
  margin: auto auto 0;
  padding: 7px;
  border-radius: 29px 29px 0 0;
  background: #080a0f;
  box-shadow: 0 25px 60px rgba(16,24,32,.2);
  transform: translateY(24px);
  transition: transform 260ms ease;
}
.wa-shot:hover figure { transform: translateY(12px); }
.wa-shot figure img { width: 100%; border-radius: 22px 22px 0 0; }

.wa-faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}
.wa-faq details {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
}
.wa-faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.025em;
}
.wa-faq p { margin: 14px 0 0; color: var(--ink-soft); }
.wa-faq a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

.wa-desktop-note {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 35px;
  align-items: end;
  margin-bottom: 18px;
  padding: clamp(28px, 5vw, 50px);
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
}
.wa-desktop-note .eyebrow { color: #9bc0ff; }
.wa-desktop-note h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -.05em;
  line-height: 1;
}
.wa-desktop-note > p { margin: 0; color: rgba(255,255,255,.7); }

.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); background: rgba(255,255,255,.2); }
.fact { padding: 25px; background: var(--navy); }
.fact small { color: rgba(255,255,255,.52); }
.fact strong { display: block; margin-top: 8px; font-size: 18px; }

.policy-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

.legal-hero {
  padding: clamp(72px, 10vw, 122px) var(--gutter) 50px !important;
  background: var(--paper) !important;
}
.legal-hero::before { display: none !important; }
.legal-hero-inner, .legal-body { max-width: 980px !important; }
.legal-hero h1 {
  font-family: var(--font-display) !important;
  font-size: clamp(2.8rem, 6vw, 5.5rem) !important;
  font-weight: 800 !important;
  letter-spacing: -.06em !important;
  line-height: .98 !important;
}
.legal-hero h1 em { color: var(--blue) !important; font-style: normal !important; }
.legal-lead { color: var(--ink-soft) !important; font-size: 18px !important; }
.legal-meta { font-family: var(--font-mono) !important; }
.legal-meta-pill, .summary, .toc, .legal-card {
  border-color: var(--line) !important;
  background: var(--surface) !important;
  box-shadow: none !important;
}
.summary, .legal-card { border-radius: var(--radius) !important; }
.summary:hover, .legal-card:hover { transform: none !important; box-shadow: none !important; }
.legal-body { padding: 0 var(--gutter) 90px !important; }
.legal-card { padding: clamp(25px, 4vw, 42px) !important; margin-bottom: 12px !important; }
.legal-card h2 { font-family: var(--font-display) !important; font-weight: 800 !important; letter-spacing: -.04em !important; }
.legal-card h2 .num { color: var(--blue) !important; }
.legal-card p, .legal-card li { color: var(--ink-soft) !important; }
.legal-card strong { color: var(--ink) !important; }
.toc a { border-radius: 8px !important; }
.toc a:hover { transform: none !important; }
.callout { border-radius: var(--radius-sm) !important; }
.data-table { border-color: var(--line) !important; border-radius: var(--radius-sm) !important; }
.data-table thead { background: var(--navy) !important; }

.ud-page .ud-hero::before,
.ud-page .ud-hero::after { display: none !important; }
.ud-page .ud-hero-logo {
  animation: none !important;
  transform: none !important;
  filter: none !important;
}
.ud-page .ud-hero h1,
.ud-page .sec-h2,
.ud-page .ud-mobile-cta h2 {
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  letter-spacing: -.055em !important;
}
.ud-page .ud-hero h1 em,
.ud-page .sec-h2 em,
.ud-page .ud-mobile-cta h2 em { font-style: normal !important; }
.ud-page .ud-tool,
.ud-page .why-card,
.ud-page .ud-step,
.ud-page .platform-card {
  box-shadow: none !important;
  transform: none !important;
}
.ud-page .why-icon {
  display: inline-flex !important;
  width: auto !important;
  height: auto !important;
  padding: 5px 8px !important;
  border: 1px solid currentColor !important;
  border-radius: 999px !important;
  background: transparent !important;
  font-family: var(--font-mono) !important;
  font-size: 11px !important;
}

.site-footer,
.footer {
  padding: 72px var(--gutter) 25px;
  border-top: 1px solid var(--line);
  background: #e9e6de;
}
.site-footer__grid,
.footer-grid {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
}
.footer-brand { max-width: 390px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p, .footer-tagline { color: var(--ink-soft); font-size: 14px; }
.footer-col h4 { margin: 0 0 15px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.footer-col a { display: block; margin: 8px 0; color: var(--ink-soft); font-size: 14px; }
.footer-col a:hover { color: var(--blue); }
.socials { display: flex; gap: 8px; margin-top: 20px; }
.socials a { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid #ccc8be; border-radius: 9px; background: var(--paper); }
.socials img { width: 17px; height: 17px; }
.site-footer__bottom,
.footer-bottom {
  width: min(var(--container), 100%);
  margin: 55px auto 0;
  padding-top: 18px;
  border-top: 1px solid #ccc8be;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .site-nav__links, .nav-links, .nav-cta { display: none; }
  .menu-button, .nav-burger { display: inline-flex; }
  .hero__top, .page-hero__grid, .app-hero__grid, .studio-band, .cta { grid-template-columns: 1fr; }
  .hero__aside { max-width: 690px; }
  .app-card { grid-column: span 6; }
  .app-card--wide { grid-column: span 12; }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .review-card:last-child { grid-column: 1 / -1; }
  .listing-row { grid-template-columns: 1fr; }
  .listing { border-right: 0; border-bottom: 1px solid var(--line); }
  .listing:last-child { border-bottom: 0; }
  .cta__actions { justify-content: flex-start; }
  .feature-list { grid-template-columns: 1fr 1fr; }
  .wa-workspaces { grid-template-columns: repeat(2, 1fr); }
  .wa-workspace:last-child { grid-column: 1 / -1; min-height: 190px; }
  .wa-story { grid-template-columns: 1fr 1fr; gap: 40px; }
  .wa-story__screens { min-height: 570px; }
  .wa-safety__grid { grid-template-columns: 1fr 1fr; }
  .wa-account { grid-template-columns: 1fr 1fr; }
  .wa-account__identity { grid-column: 1 / -1; }
  .wa-extensions { grid-template-columns: 1fr; }
  .wa-extensions__lead { min-height: 430px; }
  .wa-gallery { grid-template-columns: 1fr 1fr; }
  .facts { grid-template-columns: 1fr 1fr; }
  .site-footer__grid, .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  :root { --nav-h: 68px; }
  .site-nav, .nav { padding-block: 10px; }
  .brand-name small { display: none; }
  .nav-actions .button { display: none; }
  .display { font-size: clamp(3rem, 16vw, 5.2rem); }
  .hero { padding-top: 58px; }
  .screenshot-stage { height: 500px; }
  .screen { width: 170px; }
  .section-head { display: block; }
  .section-head p { margin-top: 18px; }
  .app-card, .app-card--wide { grid-column: span 12; min-height: 330px; }
  .app-card__screens { opacity: .42; right: -55px; }
  .metrics { grid-template-columns: 1fr; }
  .metric { border-right: 0; border-bottom: 1px solid var(--line); }
  .metric:last-child { border-bottom: 0; }
  .review-grid, .content-grid { grid-template-columns: 1fr; }
  .review-card:last-child, .content-card--full { grid-column: auto; }
  .contact-item, .press-item { grid-template-columns: 1fr; gap: 7px; }
  .contact-item span:last-child, .press-item > a { margin-top: 8px; }
  .app-visual { min-height: 480px; }
  .feature-list, .facts { grid-template-columns: 1fr; }
  .feature { min-height: 200px; }
  .feature h3 { margin-top: 35px; }
  .product-nav__inner span { display: none; }
  .product-nav__inner { min-height: 52px; }
  .wa-workspaces,
  .wa-safety__grid,
  .wa-account,
  .wa-extensions__grid,
  .wa-gallery,
  .wa-faq { grid-template-columns: 1fr; }
  .wa-workspace:last-child,
  .wa-account__identity { grid-column: auto; }
  .wa-workspace { min-height: 190px; }
  .wa-workspace h3 { margin-top: 34px; }
  .wa-story { grid-template-columns: 1fr; }
  .wa-story--reverse .wa-story__copy,
  .wa-story--reverse .wa-story__screens { order: initial; }
  .wa-story__screens { min-height: 570px; }
  .wa-story__copy > p:not(.eyebrow):not(.wa-note) { font-size: 16px; }
  .wa-desktop-note { grid-template-columns: 1fr; align-items: start; gap: 20px; }
  .wa-safety__head { grid-template-columns: 1fr; gap: 22px; }
  .wa-safety__grid article { min-height: 190px; }
  .wa-safety__grid h3 { margin-top: 34px; }
  .wa-points { grid-template-columns: 1fr; gap: 7px; }
  .wa-extensions__lead { min-height: 480px; }
  .wa-shot { min-height: 560px; }
  .summary-grid { grid-template-columns: 1fr !important; }
  .site-footer__grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .site-footer__bottom, .footer-bottom { flex-direction: column; }
}

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