:root {
  --navy-950: #04172a;
  --navy-900: #071f38;
  --navy-800: #0a3154;
  --navy-700: #064b72;
  --teal-600: #00748b;
  --teal-500: #0094a5;
  --gold-500: #dda63f;
  --gold-300: #f0c66e;
  --orange-500: #e85a36;
  --ink: #14273b;
  --muted: #627184;
  --line: #dce3e9;
  --soft-line: #e9eef2;
  --canvas: #f4f6f9;
  --surface: #ffffff;
  --cream: #fbf7ef;
  --success: #007a45;
  --shadow: 0 20px 55px rgba(6, 35, 61, 0.10);
  --shadow-soft: 0 10px 30px rgba(6, 35, 61, 0.07);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 4px;
}

.shell {
  width: min(1680px, calc(100% - clamp(32px, 5vw, 96px)));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(7, 31, 56, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
  font-size: 1.06rem;
  font-weight: 760;
  letter-spacing: -0.025em;
}

.works-mark {
  --mark-width: 42px;
  --mark-stroke: calc(var(--mark-width) * 0.115);
  --mark-top: var(--teal-600);
  --mark-bottom: var(--navy-900);
  --mark-surface: var(--surface);
  width: var(--mark-width);
  height: calc(var(--mark-width) * 1.14);
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
  position: relative;
}

.works-mark-top,
.works-mark-bottom,
.works-mark-node {
  display: block;
  position: absolute;
}

.works-mark-top {
  inset: 0 4% 51% 4%;
  border: var(--mark-stroke) solid var(--mark-top);
  border-bottom: 0;
  border-radius: calc(var(--mark-width) * 0.30) calc(var(--mark-width) * 0.36) 0 0;
}

.works-mark-bottom {
  inset: 49% 4% 0 4%;
  border: var(--mark-stroke) solid var(--mark-bottom);
  border-radius: 0 calc(var(--mark-width) * 0.36) calc(var(--mark-width) * 0.30) calc(var(--mark-width) * 0.30);
}

.works-mark-node {
  width: calc(var(--mark-width) * 0.24);
  aspect-ratio: 1;
  right: -2%;
  top: 50%;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 calc(var(--mark-stroke) * 0.72) var(--mark-surface);
  transform: translateY(-50%);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.desktop-nav a {
  color: #425366;
  font-size: 0.94rem;
  font-weight: 620;
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--navy-700);
}

.nav-contact {
  padding: 9px 18px;
  border: 1px solid #bdc9d3;
  border-radius: 999px;
  color: var(--navy-800);
  font-size: 0.9rem;
  font-weight: 700;
  transition: border-color 180ms ease, background 180ms ease;
}

.nav-contact:hover {
  border-color: var(--navy-700);
  background: #f4f7fa;
}

.mobile-menu {
  display: none;
  margin-left: auto;
  position: relative;
}

.mobile-menu summary {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { width: 18px; height: 2px; background: var(--navy-900); border-radius: 3px; }
.mobile-menu nav {
  position: absolute;
  right: 0;
  top: 54px;
  width: 210px;
  display: grid;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  box-shadow: var(--shadow);
}

.mobile-menu nav a { padding: 10px 12px; border-radius: 9px; font-weight: 650; }
.mobile-menu nav a:hover { background: var(--canvas); }

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-600);
  font-size: 0.76rem;
  font-weight: 790;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero {
  min-height: 710px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(450px, 0.98fr);
  align-items: center;
  gap: 56px;
  padding-block: 78px 62px;
}

.hero-copy h1 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(3.6rem, 6vw, 6.4rem);
  font-weight: 790;
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.hero-intro {
  max-width: 650px;
  margin: 28px 0 0;
  color: #526275;
  font-size: clamp(1.1rem, 1.6vw, 1.34rem);
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 730;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--navy-700);
  color: white;
  box-shadow: 0 12px 24px rgba(4, 75, 114, 0.18);
}

.button-primary:hover { background: var(--navy-800); box-shadow: 0 14px 28px rgba(4, 75, 114, 0.24); }
.button-secondary { border-color: #c7d0d9; background: white; color: var(--navy-800); }
.button-secondary:hover { border-color: var(--navy-700); background: #f7f9fb; }
.button-ghost { border-color: rgba(255,255,255,0.32); color: white; }
.button-ghost:hover { background: rgba(255,255,255,0.09); }
.button-muted { background: rgba(255,255,255,0.92); color: var(--navy-900); cursor: default; }
.button-light { background: white; color: var(--navy-900); }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
  color: #697789;
  font-size: 0.82rem;
  font-weight: 620;
}

.trust-row span { display: inline-flex; align-items: center; gap: 6px; }
.trust-row i { width: 19px; height: 19px; display: grid; place-items: center; border-radius: 50%; background: #e3f3ed; color: var(--success); font-style: normal; font-size: 0.7rem; font-weight: 900; }

.hero-visual {
  min-height: 610px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 76% 18%, rgba(15, 173, 184, 0.5), transparent 34%),
    radial-gradient(circle at 6% 92%, rgba(221, 166, 63, 0.22), transparent 30%),
    linear-gradient(145deg, #061b30, #083f60 70%, #075f70);
  box-shadow: 0 28px 66px rgba(5, 37, 63, 0.2);
}

.product-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  border-radius: inherit;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 20px 20px;
  -webkit-mask-image: linear-gradient(to bottom right, black, transparent 65%);
  mask-image: linear-gradient(to bottom right, black, transparent 65%);
  pointer-events: none;
}

.stage-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.stage-orbit-one {
  width: 470px;
  height: 470px;
  right: -92px;
  top: -80px;
  box-shadow: 0 0 0 54px rgba(255, 255, 255, 0.025);
}

.stage-orbit-two {
  width: 250px;
  height: 250px;
  left: -128px;
  bottom: -100px;
}

.iphone-render {
  width: 292px;
  height: 600px;
  display: block;
  position: absolute;
  right: 72px;
  top: 50%;
  z-index: 3;
  border-radius: 57px;
  transform: translateY(-50%) rotate(3.25deg);
  transition: transform 240ms ease;
}

.iphone-render:hover {
  transform: translateY(calc(-50% - 5px)) rotate(2.5deg);
}

.iphone-body {
  width: 100%;
  height: 100%;
  display: block;
  padding: 7px;
  position: relative;
  border: 1px solid #d8dde1;
  border-radius: inherit;
  background:
    linear-gradient(110deg, #525960 0%, #dce0e3 12%, #747b82 26%, #f2f3f4 48%, #626970 72%, #d8dcdf 91%, #555c63 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.58),
    inset 0 0 0 3px rgba(14, 18, 22, 0.68),
    0 38px 58px rgba(0, 0, 0, 0.4),
    0 12px 18px rgba(0, 0, 0, 0.2);
}

.iphone-screen {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  border: 5px solid #050608;
  border-radius: 50px;
  background: #050608;
}

.iphone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dynamic-island {
  width: 88px;
  height: 26px;
  display: block;
  position: absolute;
  left: 50%;
  top: 17px;
  z-index: 4;
  border-radius: 999px;
  background: #020304;
  box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
}

.dynamic-island i {
  width: 7px;
  height: 7px;
  display: block;
  position: absolute;
  right: 9px;
  top: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, #214d63, #071118 55%, #020304 72%);
}

.screen-sheen {
  position: absolute;
  inset: 8px;
  z-index: 3;
  border-radius: 48px;
  background: linear-gradient(115deg, rgba(255,255,255,0.15), transparent 24%, transparent 76%, rgba(255,255,255,0.05));
  pointer-events: none;
}

.iphone-button {
  display: block;
  position: absolute;
  z-index: 2;
  width: 4px;
  border-radius: 3px 0 0 3px;
  background: linear-gradient(to right, #333940, #aeb4b9);
  box-shadow: -1px 0 1px rgba(255,255,255,0.25);
}

.iphone-button-action { height: 35px; left: -3px; top: 110px; }
.iphone-button-volume-up { height: 61px; left: -3px; top: 162px; }
.iphone-button-volume-down { height: 61px; left: -3px; top: 234px; }
.iphone-button-side { height: 96px; right: -3px; top: 182px; border-radius: 0 3px 3px 0; background: linear-gradient(to left, #333940, #aeb4b9); }

.stage-product-card {
  width: 270px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 14px;
  position: absolute;
  left: 28px;
  bottom: 48px;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 19px;
  background: rgba(250, 252, 253, 0.94);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, background 180ms ease;
}

.stage-product-card:hover { transform: translateY(-3px); background: white; }
.stage-product-card > img { width: 50px; height: 50px; border-radius: 13px; box-shadow: 0 8px 18px rgba(5,47,82,0.2); }
.stage-product-card > span {
  display: grid;
  min-width: 0;
  line-height: 1.2;
}

.stage-product-card small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--success);
  font-size: 0.64rem;
  font-weight: 780;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stage-product-card small i { width: 6px; height: 6px; border-radius: 50%; background: #1a8b61; }
.stage-product-card strong {
  overflow: hidden;
  margin-top: 4px;
  color: var(--navy-900);
  font-size: 0.86rem;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stage-product-card b { margin-top: 2px; color: var(--muted); font-size: 0.68rem; font-weight: 650; }
.stage-product-card em { color: var(--navy-700); font-size: 1.1rem; font-style: normal; }
.stage-note { margin: 0; position: absolute; left: 32px; top: 34px; color: rgba(255,255,255,0.7); font-size: 0.7rem; font-weight: 720; letter-spacing: 0.1em; text-transform: uppercase; }

.section { padding-block: 104px; }
.section-tint { background: var(--canvas); }
.section-heading { margin-bottom: 48px; }
.section-heading h2,
.page-intro h1,
.privacy-banner h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2.2rem, 3.6vw, 3.6rem);
  font-weight: 780;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.split-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.62fr); align-items: end; gap: 72px; }
.split-heading > p,
.centered-heading > p { margin: 0; color: var(--muted); font-size: 1.03rem; }
.centered-heading { max-width: 720px; margin-inline: auto; text-align: center; }
.centered-heading .eyebrow { margin-bottom: 14px; }
.centered-heading h2 { margin-bottom: 18px; }

.app-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.app-grid-featured { grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr); }

.app-card,
.future-card {
  min-height: 450px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-soft);
}

.app-card-featured {
  background: white;
}

.app-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.app-icon { width: 92px; height: 92px; border-radius: 22px; box-shadow: 0 14px 30px rgba(5,47,82,0.18); }
.status-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px; border-radius: 999px; background: #edf7f3; color: #166244; font-size: 0.73rem; font-weight: 750; }
.status-badge i { width: 7px; height: 7px; border-radius: 50%; background: #1a8b61; }
.app-card-copy { margin-top: 35px; }
.app-platform { margin: 0 0 7px !important; color: var(--teal-600) !important; font-size: 0.76rem !important; font-weight: 760; letter-spacing: 0.08em; text-transform: uppercase; }
.app-card h3,
.future-card h3 { margin: 0; color: var(--navy-900); font-size: clamp(1.8rem, 3vw, 2.7rem); letter-spacing: -0.045em; line-height: 1.08; }
.app-card-copy > p:last-child,
.future-card > p { max-width: 610px; margin: 16px 0 0; color: var(--muted); }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.tag-row span { padding: 6px 10px; border: 1px solid #d9e1e7; border-radius: 999px; color: #5a6979; font-size: 0.73rem; font-weight: 650; }
.text-link { display: inline-flex; align-items: center; gap: 9px; margin-top: auto; padding-top: 30px; color: var(--navy-700); font-weight: 760; }
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(4px); }

.future-card { justify-content: flex-end; overflow: hidden; position: relative; background: var(--navy-900); border-color: var(--navy-900); color: white; }
.future-card::before { display: none; }
.future-card .eyebrow { color: var(--gold-300); }
.future-card h3 { color: white; }
.future-card > p { color: #bac8d5; }
.future-mark { width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: auto; border: 1px solid rgba(255,255,255,0.24); border-radius: 16px; color: var(--gold-300); font-size: 2rem; font-weight: 300; }

.privacy-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: 42px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  color: white;
  box-shadow: none;
}

.privacy-banner::after { content: ""; position: absolute; width: 240px; height: 240px; right: -110px; top: -130px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; }
.privacy-symbol { width: 58px; height: 58px; display: grid; place-items: center; border: 2px solid var(--gold-500); border-radius: 50%; color: var(--gold-300); font-size: 1.45rem; font-weight: 900; }
.privacy-banner .eyebrow { color: var(--gold-300); }
.privacy-banner h2 { color: white; font-size: clamp(1.9rem, 3.2vw, 3.15rem); }
.privacy-banner p:not(.eyebrow) { max-width: 670px; margin: 10px 0 0; color: #c6d2dc; }

.privacy-banner {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #f7f9fb;
  color: var(--ink);
  box-shadow: none;
}
.privacy-banner::after { display: none; }
.privacy-banner .privacy-symbol { width: 50px; height: 50px; border: 1px solid #b8d8d8; background: white; color: var(--teal-600); font-size: 1.1rem; }
.privacy-banner .eyebrow { color: var(--teal-600); }
.privacy-banner h2 { color: var(--navy-900); font-size: clamp(1.75rem, 2.7vw, 2.55rem); }
.privacy-banner p:not(.eyebrow) { color: var(--muted); }
.privacy-banner .button-light { border-color: #cbd5dc; background: white; }

.site-footer { padding-top: 70px; background: var(--navy-950); color: #ced8e1; }
.brand-light .works-mark { --mark-top: #0aa0ae; --mark-bottom: #ffffff; --mark-surface: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 0.7fr 0.9fr 1fr; gap: 48px; padding-bottom: 62px; }
.brand-light { color: white; }
.footer-brand p { max-width: 330px; margin: 18px 0 0; color: #9fb0bf; font-size: 0.92rem; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-grid h2 { margin: 5px 0 12px; color: white; font-size: 0.77rem; letter-spacing: 0.11em; text-transform: uppercase; }
.footer-grid a:not(.brand) { color: #b8c5d0; font-size: 0.9rem; }
.footer-grid a:hover { color: white; }
.footer-note { margin-top: 8px; color: #7f94a6; font-size: 0.78rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-block: 22px; border-top: 1px solid rgba(255,255,255,0.11); color: #8296a7; font-size: 0.75rem; }

.crumbs { display: flex; align-items: center; gap: 10px; padding-top: 34px; color: #788697; font-size: 0.8rem; }
.crumbs a:hover { color: var(--navy-700); }
.page-intro { padding-block: 84px 62px; }
.page-intro h1 { max-width: 900px; }
.page-intro-copy { max-width: 700px; margin-top: 25px; color: var(--muted); font-size: 1.1rem; }
.page-intro-copy p { margin: 0; }
.page-section { padding-bottom: 108px; }
.app-store-page { background: #f5f5f7; }
.storefront-layout { display: grid; grid-template-columns: 210px minmax(0, 1fr); align-items: start; gap: clamp(36px, 5vw, 72px); padding-block: 58px 110px; }
.storefront-sidebar { position: sticky; top: 32px; }
.storefront-sidebar-title { margin: 0 0 12px; color: #7a7a80; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.storefront-sidebar nav { display: grid; gap: 4px; }
.storefront-sidebar nav a { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 10px 12px; border-radius: 9px; color: #4d4d52; font-size: 0.88rem; font-weight: 650; }
.storefront-sidebar nav a:hover { background: rgba(0,0,0,0.04); }
.storefront-sidebar nav a.is-current { background: white; color: var(--navy-800); box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.storefront-sidebar nav small { color: #929299; font-size: 0.7rem; font-weight: 600; }
.storefront-sidebar-note { margin: 34px 12px 0; color: #85858b; font-size: 0.76rem; line-height: 1.55; }
.storefront-content { min-width: 0; }
.storefront-header { padding: 8px 0 48px; border-bottom: 1px solid #dcdce0; }
.storefront-header h1 { margin: 7px 0 0; color: #1d1d1f; font-size: clamp(3rem, 5vw, 4.8rem); font-weight: 750; letter-spacing: -0.055em; line-height: 1; }
.storefront-header > p:last-child { max-width: 660px; margin: 18px 0 0; color: #68686d; font-size: 1rem; }
.storefront-section-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; padding: 34px 0 20px; }
.storefront-section-heading h2 { margin: 0; color: #1d1d1f; font-size: 1.55rem; letter-spacing: -0.035em; }
.storefront-section-heading > span { color: #86868b; font-size: 0.78rem; }
.store-app-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.store-app-card { min-height: 222px; display: flex; flex-direction: column; padding: 22px; border: 1px solid #e1e1e4; border-radius: 18px; background: white; box-shadow: 0 1px 2px rgba(0,0,0,0.03); }
.store-app-top { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 14px; }
.store-app-icon { width: 68px; height: 68px; flex: 0 0 auto; border-radius: 16px; box-shadow: 0 5px 14px rgba(5,47,82,0.12); }
.store-app-icon-placeholder { display: grid; place-items: center; box-shadow: none; color: #4e5964; font-size: 1.05rem; font-weight: 750; }
.icon-map { background: #e5eff0; color: #1e6d75; }
.icon-watch { background: #e9edf2; color: #354a5d; }
.icon-sport { background: #f2ece0; color: #7c5b20; }
.icon-claude { background: #eee8e4; color: #775344; }
.store-app-name { min-width: 0; }
.store-app-name p { margin: 0 0 4px; color: #86868b; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.055em; text-transform: uppercase; }
.store-app-name h3 { margin: 0; color: #1d1d1f; font-size: 1.08rem; letter-spacing: -0.025em; line-height: 1.15; }
.store-app-name > span { display: block; margin-top: 4px; color: #85858b; font-size: 0.72rem; }
.store-app-action { min-width: 58px; display: inline-flex; justify-content: center; padding: 7px 12px; border-radius: 999px; background: #e8f1f7; color: #075783; font-size: 0.75rem; font-weight: 750; }
.store-app-action:hover { background: #dceaf3; }
.store-app-action.is-muted { background: #f0f0f2; color: #78787d; }
.store-app-description { margin: 19px 0 22px; color: #5f5f64; font-size: 0.84rem; line-height: 1.55; }
.store-app-card footer { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: auto; padding-top: 13px; border-top: 1px solid #ececef; color: #85858b; font-size: 0.68rem; }
.store-app-card footer span:first-child { color: #515157; font-weight: 650; }
.store-app-placeholder { background: #fbfbfc; }
.collection-note { display: flex; align-items: center; gap: 22px; margin-top: 32px; padding: 30px; border: 1px dashed #c8d3dc; border-radius: var(--radius-md); background: #fafcfd; }
.collection-note > span { width: 48px; height: 48px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 14px; background: #eaf0f5; color: var(--navy-700); font-size: 1.7rem; }
.collection-note h2 { margin: 0; color: var(--navy-900); font-size: 1.15rem; }
.collection-note p { margin: 3px 0 0; color: var(--muted); font-size: 0.9rem; }
.collection-note .collection-kicker { margin-bottom: 4px; color: var(--teal-600); font-size: 0.7rem; font-weight: 770; letter-spacing: 0.09em; text-transform: uppercase; }
.mapping-note { border-style: solid; background: #f5f7f9; }
.mapping-note .mapping-note-mark { background: var(--navy-900); color: var(--gold-300); }

.store-product-back { display: inline-flex; align-items: center; gap: 8px; margin: 2px 0 28px; color: #5e5e64; font-size: 0.82rem; font-weight: 650; }
.store-product-back:hover { color: var(--navy-700); }
.store-product-header { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 24px; padding-bottom: 32px; }
.store-product-icon { width: 116px; height: 116px; border-radius: 25px; box-shadow: 0 8px 22px rgba(5,47,82,0.15); }
.store-product-title { min-width: 0; }
.store-product-title p { margin: 0 0 6px; color: #86868b; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; }
.store-product-title h1 { margin: 0; color: #1d1d1f; font-size: clamp(2.15rem, 3.8vw, 3.5rem); letter-spacing: -0.05em; line-height: 1.02; }
.store-product-title > span { display: block; margin-top: 9px; color: #6b6b70; font-size: 0.95rem; }
.store-product-actions { display: grid; justify-items: center; gap: 10px; }
.store-product-actions > span { padding: 10px 17px; border-radius: 999px; background: #e8f1f7; color: #075783; font-size: 0.78rem; font-weight: 750; }
.store-product-actions a { color: #66666b; font-size: 0.74rem; font-weight: 650; }
.store-product-actions a:hover { color: var(--navy-700); }
.store-product-facts { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); margin: 0; padding-block: 22px; border-block: 1px solid #dcdce0; }
.store-product-facts div { min-width: 0; padding-inline: 18px; text-align: center; }
.store-product-facts div:first-child { padding-left: 0; }
.store-product-facts div:last-child { padding-right: 0; }
.store-product-facts div + div { border-left: 1px solid #e3e3e6; }
.store-product-facts dt { color: #96969b; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; }
.store-product-facts dd { margin: 7px 0 0; color: #515157; font-size: 0.78rem; font-weight: 650; line-height: 1.35; }
.store-product-screens { padding-top: 38px; }
.store-product-section-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 17px; }
.store-product-section-heading h2 { margin: 0; color: #1d1d1f; font-size: 1.5rem; letter-spacing: -0.035em; }
.store-product-section-heading span { color: #86868b; font-size: 0.75rem; }
.store-product-screen-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.store-product-screen-grid figure { min-width: 0; margin: 0; }
.store-product-screen-grid img { width: 100%; aspect-ratio: 0.46; object-fit: cover; object-position: top; border: 1px solid #d9d9dd; border-radius: 17px; background: white; }
.store-product-screen-grid figcaption { margin-top: 8px; color: #85858b; font-size: 0.68rem; text-align: center; }
.store-product-copy-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr); gap: clamp(38px, 6vw, 80px); margin-top: 42px; padding-block: 36px; border-block: 1px solid #dcdce0; }
.store-product-copy-grid h2 { margin: 0 0 14px; color: #1d1d1f; font-size: 1.35rem; letter-spacing: -0.03em; }
.store-product-copy-grid p { margin: 0; color: #5f5f64; font-size: 0.88rem; line-height: 1.65; }
.store-product-copy-grid p + p { margin-top: 14px; }
.store-product-copy-grid ul { margin: 0; padding-left: 19px; color: #5f5f64; font-size: 0.86rem; line-height: 1.65; }
.store-product-copy-grid li + li { margin-top: 6px; }
.store-product-privacy { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 36px; padding-block: 34px; border-bottom: 1px solid #dcdce0; }
.store-product-privacy .eyebrow { margin-bottom: 8px; }
.store-product-privacy h2 { margin: 0; color: #1d1d1f; font-size: 1.35rem; letter-spacing: -0.03em; }
.store-product-privacy p:not(.eyebrow) { max-width: 680px; margin: 8px 0 0; color: #69696e; font-size: 0.84rem; }
.store-product-privacy > a { white-space: nowrap; color: var(--navy-700); font-size: 0.8rem; font-weight: 700; }
.product-disclaimer {
  max-width: 940px;
  margin: 20px 0 0;
  color: #85858b;
  font-size: 0.68rem;
  line-height: 1.55;
  text-align: left;
}

.policy-card,
.support-app-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-soft);
}
.policy-card img,
.support-app-card img { width: 74px; height: 74px; border-radius: 18px; }
.policy-card span,
.support-app-card span { color: var(--teal-600); font-size: 0.75rem; font-weight: 760; letter-spacing: 0.06em; text-transform: uppercase; }
.policy-card h2,
.support-app-card h2 { margin: 2px 0 5px; color: var(--navy-900); font-size: 1.45rem; letter-spacing: -0.03em; }
.policy-card p,
.support-app-card p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.privacy-index-intro,
.privacy-index-content { max-width: 900px; }
.privacy-index-intro { padding-block: 58px 42px; }
.privacy-index-intro h1 { max-width: none; font-size: clamp(2.6rem, 5vw, 3.7rem); letter-spacing: -0.045em; }
.privacy-index-intro .page-intro-copy { max-width: 650px; margin-top: 18px; font-size: 1rem; }
.privacy-index-content .policy-card { padding: 24px 0; border: 0; border-block: 1px solid var(--line); border-radius: 0; box-shadow: none; }
.privacy-index-content .policy-card img { width: 60px; height: 60px; border-radius: 14px; }
.policy-note { max-width: 720px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); }
.policy-note h2 { margin: 0; color: var(--navy-900); font-size: 1rem; letter-spacing: -0.01em; }
.policy-note p { margin: 8px 0 0; color: var(--muted); font-size: 0.9rem; }
.contact-panel { display: flex; align-items: center; justify-content: space-between; gap: 40px; margin-top: 34px; padding: 38px; border-radius: var(--radius-md); background: var(--canvas); }
.contact-panel h2 { margin: 0; color: var(--navy-900); font-size: 1.8rem; letter-spacing: -0.04em; }
.contact-panel p:not(.eyebrow) { margin: 6px 0 0; color: var(--muted); font-size: 0.88rem; }

.legal-page { padding-block: 72px 110px; background: var(--canvas); }
.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 760px); justify-content: center; align-items: start; gap: 56px; }
.legal-aside { position: sticky; top: 32px; display: flex; flex-direction: column; align-items: flex-start; }
.legal-aside > a { margin-bottom: 38px; color: var(--navy-700); font-size: 0.84rem; font-weight: 700; }
.legal-aside img { width: 68px; height: 68px; margin-bottom: 16px; border-radius: 17px; }
.legal-aside span { color: var(--muted); font-size: 0.78rem; }
.legal-aside strong { margin-top: 2px; color: var(--navy-900); }
.legal-document { padding: clamp(30px, 5vw, 58px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow); }
.legal-document h1 { margin: 0 0 26px; color: var(--navy-900); font-size: clamp(2.7rem, 5vw, 4.5rem); letter-spacing: -0.06em; line-height: 1; }
.legal-summary { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 16px; padding: 22px; border-radius: var(--radius-sm); background: #edf6f4; }
.legal-summary span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--success); color: white; font-weight: 900; }
.legal-summary p { margin: 0; color: #234537; }
.legal-document section { padding-top: 36px; }
.legal-document h2 { margin: 0 0 10px; color: var(--navy-900); font-size: 1.3rem; letter-spacing: -0.025em; }
.legal-document section p { margin: 0; color: #536476; }
.legal-document section p + p { margin-top: 12px; }
.legal-document section a { color: var(--navy-700); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.legal-footer-links { display: flex; gap: 22px; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--navy-700); font-size: 0.86rem; font-weight: 700; }

.support-hero { background: #f3f6f8; border-bottom: 1px solid var(--line); }
.support-hero-grid { min-height: 360px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px; padding-block: 58px; }
.support-hero h1 { margin: 0; color: var(--navy-900); font-size: clamp(3rem, 6vw, 5.6rem); letter-spacing: -0.065em; line-height: 1; }
.support-hero p:not(.eyebrow) { margin: 18px 0 0; color: var(--muted); font-size: 1.08rem; }
.support-hero img { width: 150px; height: 150px; border-radius: 34px; box-shadow: var(--shadow); }
.back-link { display: inline-block; margin-bottom: 40px; color: var(--navy-700); font-size: 0.83rem; font-weight: 700; }
.support-content { display: grid; grid-template-columns: minmax(0, 1fr) 360px; align-items: start; gap: 44px; padding-top: 72px; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: white; }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; cursor: pointer; list-style: none; color: var(--navy-900); font-weight: 720; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--teal-600); font-size: 1.45rem; font-weight: 400; transition: transform 180ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 22px 22px; color: var(--muted); }
.support-contact-card { position: sticky; top: 30px; padding: 30px; border-radius: var(--radius-md); background: var(--navy-900); color: white; }
.support-contact-card .eyebrow { color: var(--gold-300); }
.support-contact-card h2 { margin: 0; font-size: 1.75rem; letter-spacing: -0.04em; line-height: 1.12; }
.support-contact-card > p:not(.eyebrow) { margin: 15px 0 24px; color: #b8c6d2; font-size: 0.9rem; }
.support-contact-card .text-link { display: block; margin-top: 20px; padding: 0; color: #d6e1e9; font-size: 0.82rem; }

.loading-screen {
  min-height: calc(100vh - 78px);
  display: grid;
  place-items: center;
  margin: 0;
  background: var(--surface);
}

.brand-loader {
  display: grid;
  justify-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-loader-mark { --mark-width: 56px; }
.brand-loader .works-mark-top { animation: loader-path 1.35s ease-in-out infinite; transform-origin: left bottom; }
.brand-loader .works-mark-bottom { animation: loader-path 1.35s 180ms ease-in-out infinite; transform-origin: left top; }
.brand-loader .works-mark-node { animation: loader-node 1.35s 360ms ease-in-out infinite; }

@keyframes loader-path {
  0%, 20% { opacity: 0.28; transform: scale(0.94); }
  48%, 78% { opacity: 1; transform: scale(1); }
  100% { opacity: 0.28; transform: scale(0.94); }
}

@keyframes loader-node {
  0%, 28% { opacity: 0.45; transform: translateY(-50%) scale(0.7); }
  55%, 78% { opacity: 1; transform: translateY(-50%) scale(1.12); }
  100% { opacity: 0.45; transform: translateY(-50%) scale(0.7); }
}

@media (max-width: 1020px) {
  .hero { grid-template-columns: 1fr 420px; gap: 36px; }
  .hero-visual { min-height: 560px; }
  .iphone-render { width: 260px; height: 534px; right: 30px; }
  .stage-product-card { width: 242px; left: 20px; bottom: 32px; }
  .app-grid-featured { grid-template-columns: 1fr; }
  .future-card { min-height: 340px; }
  .store-app-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 28px; }
}

@media (max-width: 820px) {
  .desktop-nav,
  .nav-contact { display: none; }
  .mobile-menu { display: block; }
  .hero { min-height: 0; grid-template-columns: 1fr; padding-top: 64px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { width: min(100%, 620px); min-height: 620px; margin-inline: auto; }
  .iphone-render { width: 292px; height: 600px; right: 70px; }
  .stage-product-card { width: 270px; left: 34px; bottom: 48px; }
  .split-heading { grid-template-columns: 1fr; gap: 22px; }
  .privacy-banner { grid-template-columns: auto 1fr; }
  .privacy-banner .button { grid-column: 2; justify-self: start; }
  .storefront-layout { grid-template-columns: 1fr; gap: 36px; padding-top: 42px; }
  .storefront-sidebar { position: static; }
  .storefront-sidebar nav { display: flex; flex-wrap: wrap; }
  .storefront-sidebar nav a { min-width: 130px; }
  .storefront-sidebar-note { display: none; }
  .store-product-copy-grid { grid-template-columns: 1fr; gap: 30px; }
  .store-product-privacy { grid-template-columns: 1fr; align-items: start; gap: 18px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .policy-card,
  .support-app-card { grid-template-columns: auto 1fr; }
  .policy-card .button,
  .support-app-card .button { grid-column: 2; justify-self: start; }
  .legal-layout { grid-template-columns: 1fr; gap: 28px; }
  .legal-aside { position: static; display: grid; grid-template-columns: auto 1fr; align-items: center; column-gap: 14px; }
  .legal-aside > a { grid-column: 1 / -1; margin-bottom: 20px; }
  .legal-aside img { grid-row: 2 / 4; margin: 0; }
  .support-content { grid-template-columns: 1fr; }
  .support-contact-card { position: static; }
}

@media (max-width: 620px) {
  .shell { width: calc(100% - 32px); }
  .nav-shell { min-height: 70px; }
  .works-mark { --mark-width: 38px; }
  .hero { padding-block: 52px 48px; }
  .hero-copy h1 { font-size: clamp(3.25rem, 15vw, 4.5rem); }
  .hero-intro { font-size: 1.05rem; }
  .button-row { align-items: stretch; }
  .button-row .button { flex: 1 1 100%; }
  .trust-row { display: grid; gap: 10px; }
  .hero-visual { min-height: 540px; overflow: hidden; border-radius: 22px; }
  .iphone-render { width: 238px; height: 489px; right: 20px; top: 47%; }
  .iphone-body { padding: 6px; }
  .iphone-screen { border-width: 4px; border-radius: 41px; }
  .dynamic-island { width: 73px; height: 22px; top: 14px; }
  .dynamic-island i { width: 6px; height: 6px; right: 8px; top: 8px; }
  .screen-sheen { inset: 7px; border-radius: 40px; }
  .stage-note { left: 20px; top: 22px; }
  .stage-product-card { width: min(255px, calc(100% - 32px)); left: 16px; bottom: 20px; padding: 12px; }
  .stage-product-card > img { width: 46px; height: 46px; }
  .section { padding-block: 76px; }
  .section-heading { margin-bottom: 34px; }
  .app-grid { grid-template-columns: 1fr; }
  .app-card,
  .future-card { min-height: 400px; padding: 25px; border-radius: 22px; }
  .app-icon { width: 76px; height: 76px; border-radius: 18px; }
  .privacy-banner { grid-template-columns: 1fr; gap: 20px; padding: 28px; border-radius: 22px; }
  .privacy-banner .button { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 4px; }
  .page-intro { padding-block: 64px 50px; }
  .storefront-layout { gap: 28px; padding-block: 28px 76px; }
  .storefront-sidebar-title { display: none; }
  .storefront-sidebar nav { margin-inline: -4px; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
  .storefront-sidebar nav::-webkit-scrollbar { display: none; }
  .storefront-sidebar nav a { min-width: max-content; padding-inline: 11px; }
  .storefront-header { padding: 6px 0 34px; }
  .storefront-header h1 { font-size: 3.4rem; }
  .storefront-section-heading { padding-top: 28px; }
  .storefront-section-heading h2 { font-size: 1.32rem; }
  .store-app-card { min-height: 0; padding: 18px; border-radius: 15px; }
  .store-app-top { gap: 11px; }
  .store-app-icon { width: 60px; height: 60px; border-radius: 14px; }
  .store-app-name h3 { font-size: 1rem; }
  .store-app-action { min-width: 52px; padding-inline: 10px; }
  .store-app-description { margin-block: 17px 19px; }
  .store-product-back { margin-bottom: 22px; }
  .store-product-header { grid-template-columns: auto 1fr; align-items: start; gap: 16px; padding-bottom: 26px; }
  .store-product-icon { width: 82px; height: 82px; border-radius: 19px; }
  .store-product-title h1 { font-size: 2rem; }
  .store-product-title > span { font-size: 0.84rem; }
  .store-product-actions { grid-column: 2; display: flex; align-items: center; justify-content: flex-start; gap: 14px; }
  .store-product-actions > span { padding: 8px 13px; }
  .store-product-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); padding-block: 0; }
  .store-product-facts div { padding: 14px 10px; text-align: left; }
  .store-product-facts div:first-child { padding-left: 10px; }
  .store-product-facts div:last-child { padding-right: 10px; }
  .store-product-facts div + div { border-left: 0; }
  .store-product-facts div:nth-child(even) { border-left: 1px solid #e3e3e6; }
  .store-product-facts div:nth-child(n+3) { border-top: 1px solid #e3e3e6; }
  .store-product-screen-grid { display: flex; margin-inline: -16px; padding-inline: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .store-product-screen-grid::-webkit-scrollbar { display: none; }
  .store-product-screen-grid figure { width: 220px; flex: 0 0 220px; scroll-snap-align: start; }
  .store-product-copy-grid { margin-top: 36px; padding-block: 30px; }
  .store-product-privacy { padding-block: 30px; }
  .collection-note { align-items: flex-start; }
  .policy-card,
  .support-app-card { grid-template-columns: 1fr; align-items: start; }
  .policy-card .button,
  .support-app-card .button { grid-column: 1; }
  .contact-panel { align-items: flex-start; flex-direction: column; padding: 28px; }
  .legal-page { padding-block: 46px 76px; }
  .legal-document { border-radius: 20px; }
  .legal-summary { grid-template-columns: 1fr; }
  .support-hero-grid { grid-template-columns: 1fr; min-height: 0; padding-block: 46px; }
  .support-hero img { width: 92px; height: 92px; grid-row: 1; }
  .support-hero h1 { font-size: 3.4rem; }
  .support-content { padding-top: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
