:root {
  --paper: #fbf7f4;
  --paper-soft: #fffdfb;
  --ink: #081733;
  --ink-2: #15213d;
  --muted: #687187;
  --muted-2: #8b92a3;
  --line: rgba(10, 21, 45, 0.12);
  --line-strong: rgba(10, 21, 45, 0.18);
  --blue: #2456ff;
  --blue-deep: #0d3bea;
  --teal: #54dfd0;
  --mint: #dff8f2;
  --coral: #ff646b;
  --shadow-soft: 0 28px 90px rgba(31, 46, 78, 0.12);
  --shadow-card: 0 20px 50px rgba(31, 46, 78, 0.16);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --max: 1480px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 80% 8%, rgba(88, 227, 216, 0.13), transparent 25rem),
    radial-gradient(circle at 18% 8%, rgba(36, 86, 255, 0.06), transparent 24rem),
    var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 999;
  transform: translateY(-150%);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow-card);
}

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

.site-header {
  width: min(calc(100% - 56px), var(--max));
  margin: 0 auto;
  padding: 30px 0 22px;
  display: grid;
  grid-template-columns: minmax(220px, 330px) 1fr auto;
  align-items: center;
  gap: 28px;
  position: sticky;
  top: 0;
  z-index: 20;
  transition: padding 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  width: min(calc(100% - 28px), var(--max));
  margin-top: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(10, 21, 45, 0.08);
  border-radius: 28px;
  background: rgba(251, 247, 244, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(31, 46, 78, 0.10);
}

.brand img {
  width: 252px;
  height: auto;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
  color: var(--ink-2);
  font-weight: 650;
  letter-spacing: -0.02em;
  font-size: 1.02rem;
}

.site-nav a {
  position: relative;
  padding: 0.35rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  white-space: nowrap;
  font-weight: 720;
  letter-spacing: -0.02em;
}

.header-cta {
  justify-self: end;
  padding: 15px 25px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #285fff);
  box-shadow: 0 18px 40px rgba(36, 86, 255, 0.24);
}

.header-cta:hover,
.button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 46px rgba(36, 86, 255, 0.28);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 30px rgba(31, 46, 78, 0.10);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 99px;
}

.page-shell {
  overflow: hidden;
}

.section-pad {
  width: min(calc(100% - 56px), var(--max));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 116px) 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  align-items: center;
  min-height: calc(100vh - 112px);
  padding-top: clamp(50px, 5vw, 76px);
  padding-bottom: clamp(68px, 7vw, 96px);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  padding: 9px 17px;
  border-radius: 999px;
  color: #1daea3;
  background: rgba(84, 223, 208, 0.17);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow span,
.featured-kicker span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #6fded3;
  box-shadow: 0 0 0 5px rgba(84, 223, 208, 0.16);
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(4.1rem, 7vw, 7.9rem);
  line-height: 0.98;
  letter-spacing: -0.085em;
  font-weight: 850;
}

.hero h1 span {
  background: linear-gradient(100deg, #1b52ff 0%, #2b91ff 40%, #54dfd0 78%, #ff646b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  max-width: 610px;
  margin: 31px 0 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 1.7vw, 1.72rem);
  line-height: 1.43;
  letter-spacing: -0.03em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.button {
  min-height: 60px;
  padding: 0 28px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button-small {
  min-height: 53px;
  padding: 0 20px;
  font-size: 0.95rem;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #2556ff, #1c46f4);
  box-shadow: 0 18px 38px rgba(36, 86, 255, 0.22);
}

.button-secondary {
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(31, 46, 78, 0.06);
}

.button-secondary:hover {
  background: white;
  transform: translateY(-1px);
}

.hero-art {
  position: relative;
  z-index: 1;
  min-height: 540px;
  transform: translateX(40px);
}

.hero-art::before {
  content: "";
  position: absolute;
  right: -17%;
  top: -11%;
  width: 88%;
  height: 88%;
  border-radius: 48px;
  background:
    linear-gradient(135deg, rgba(84, 223, 208, 0.1), rgba(36, 86, 255, 0.06)),
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.54), transparent 24rem);
  transform: rotate(-4deg);
  opacity: 0.7;
}

.hero-art img {
  position: absolute;
  top: 22px;
  right: -100px;
  width: min(760px, 112%);
  filter: drop-shadow(0 34px 74px rgba(26, 87, 212, 0.12));
}

.shape-coral {
  position: absolute;
  right: -180px;
  top: 230px;
  width: 300px;
  height: 245px;
  border-radius: 70px;
  background: linear-gradient(135deg, rgba(255, 117, 107, 0.88), rgba(255, 79, 100, 0.82));
  transform: rotate(27deg);
  filter: blur(0.1px);
}

.hero-art::after {
  content: "";
  position: absolute;
  left: 7%;
  bottom: 58px;
  width: 122px;
  height: 122px;
  background-image: radial-gradient(circle, rgba(12, 80, 240, 0.82) 0 4px, transparent 5px);
  background-size: 38px 38px;
  opacity: 0.7;
}

.featured-card {
  z-index: 4;
  grid-column: 1 / -1;
  align-self: end;
  margin: clamp(26px, 3vw, 46px) auto 0;
  width: min(1080px, calc(100% - 150px));
  display: grid;
  grid-template-columns: minmax(300px, 430px) 1px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 26px 31px;
  border: 1px solid rgba(10, 21, 45, 0.09);
  border-radius: 24px;
  background: rgba(255, 253, 251, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-card);
}

.featured-product {
  display: flex;
  align-items: center;
  gap: 24px;
}

.featured-product img {
  width: 92px;
  height: 92px;
  border-radius: 23px;
  box-shadow: 0 16px 40px rgba(0, 134, 156, 0.18);
}

.featured-kicker,
.card-topline {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 7px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.featured-kicker span {
  width: 8px;
  height: 8px;
  background: var(--coral);
  box-shadow: none;
}

.featured-product h2,
.featured-copy h3,
.project-card h2,
.process-grid h3 {
  margin: 0;
  letter-spacing: -0.045em;
}

.featured-product h2 {
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.featured-product p:last-child,
.featured-copy p,
.project-card p,
.section-heading-block p,
.split-section p,
.process-grid p,
.site-footer p {
  color: var(--muted);
  line-height: 1.6;
}

.featured-product p:last-child,
.featured-copy p {
  margin: 5px 0 0;
}

.featured-divider {
  height: 74px;
  width: 1px;
  background: var(--line);
}

.featured-copy h3 {
  font-size: clamp(1.2rem, 1.65vw, 1.55rem);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: #0b53ff;
  font-weight: 780;
}

.compact-link {
  margin-top: 8px;
  font-size: 0.95rem;
}

.app-store-download-badge {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  width: 160px;
  transition: transform 180ms ease, filter 180ms ease;
}

.app-store-download-badge:hover,
.app-store-download-badge:focus-visible {
  transform: translateY(-1px);
  filter: drop-shadow(0 16px 24px rgba(8, 23, 51, 0.18));
}

.app-store-download-badge img {
  width: 100%;
  height: auto;
}

.featured-actions,
.card-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.featured-actions {
  justify-self: end;
  justify-content: flex-end;
}

.card-actions {
  margin-top: 18px;
}

.featured-actions .app-store-download-badge,
.card-actions .app-store-download-badge,
.card-actions .card-download-badge {
  align-self: center;
  margin-top: 0;
}

.tech-row {
  grid-column: 1 / -1;
  width: min(900px, 88%);
  margin: 44px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  color: var(--muted);
}

.tech-row span {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.tech-row b {
  position: relative;
  padding-left: 28px;
  font-size: 1rem;
  color: var(--ink-2);
  font-weight: 650;
}

.tech-row b::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  transform: translateY(-50%) rotate(8deg);
}

.section-heading-block {
  max-width: 900px;
  text-align: center;
}

.section-heading-block .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.section-heading-block h2,
.split-section h2,
.process-section h2 {
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(2.4rem, 4.2vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.07em;
}

.section-heading-block p {
  margin: 20px auto 0;
  max-width: 690px;
  font-size: 1.15rem;
}

.tight-top {
  padding-top: 20px;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.project-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  border: 1px solid rgba(10, 21, 45, 0.08);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 0%, rgba(84, 223, 208, 0.18), transparent 16rem),
    rgba(255, 253, 251, 0.72);
  box-shadow: 0 16px 48px rgba(31, 46, 78, 0.08);
}

.project-card.card-large {
  background:
    radial-gradient(circle at 20% 10%, rgba(84, 223, 208, 0.22), transparent 15rem),
    radial-gradient(circle at 95% 0%, rgba(36, 86, 255, 0.10), transparent 18rem),
    rgba(255, 253, 251, 0.82);
}

.card-topline {
  color: #12a99e;
}

.card-topline.upcoming {
  color: var(--blue);
}

.card-topline.planned {
  color: var(--coral);
}

.card-icon {
  width: 88px;
  margin-bottom: auto;
  border-radius: 22px;
}

.mini-icon {
  width: 76px;
  height: 76px;
  margin-bottom: auto;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 18px 42px rgba(36, 86, 255, 0.20);
  font-size: 2rem;
  font-weight: 850;
}

.mini-icon.alt {
  background: linear-gradient(135deg, var(--coral), #ffb069);
}

.project-card h2 {
  margin-top: 24px;
  font-size: 2rem;
}

.card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.card-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(10, 21, 45, 0.09);
  border-radius: 999px;
  color: var(--ink-2);
  background: rgba(255,255,255,0.58);
  font-size: 0.82rem;
  font-weight: 700;
}

.card-download-badge {
  align-self: flex-start;
  margin-top: 18px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(32px, 7vw, 100px);
  align-items: start;
}

.split-section p {
  max-width: 620px;
  font-size: 1.12rem;
}

.game-list {
  display: grid;
  gap: 14px;
}

.game-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 27px;
  border: 1px solid rgba(10, 21, 45, 0.08);
  border-radius: 22px;
  background: rgba(255, 253, 251, 0.76);
  box-shadow: 0 16px 44px rgba(31, 46, 78, 0.07);
  color: var(--ink);
  font-weight: 820;
  letter-spacing: -0.03em;
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.game-list a:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(31, 46, 78, 0.12);
}

.game-list span {
  color: var(--muted);
  font-weight: 650;
  font-size: 0.95rem;
  letter-spacing: 0;
}

.process-section {
  padding-top: 40px;
}

.process-section > .eyebrow {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  width: max-content;
}

.process-section h2 {
  text-align: center;
  max-width: 1050px;
}

.process-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(10, 21, 45, 0.08);
  border-radius: 24px;
  background: rgba(255, 253, 251, 0.75);
}

.process-grid span {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.process-grid h3 {
  font-size: 1.35rem;
}

.site-footer {
  width: min(calc(100% - 56px), var(--max));
  margin: 30px auto 0;
  padding: 44px 0 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid rgba(10, 21, 45, 0.10);
}

.site-footer img {
  width: 210px;
}

.site-footer p {
  margin: 8px 0 0;
}

.site-footer nav {
  display: flex;
  gap: 24px;
  color: var(--ink-2);
  font-weight: 720;
}

.simple-page {
  width: min(calc(100% - 56px), 980px);
  margin: 0 auto;
  padding: 90px 0 120px;
}

.simple-page h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.3rem);
  line-height: 0.97;
  letter-spacing: -0.08em;
}

.simple-page .lede {
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.6;
}

.info-panel {
  margin-top: 34px;
  padding: 32px;
  border: 1px solid rgba(10, 21, 45, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 251, 0.76);
  box-shadow: 0 18px 50px rgba(31, 46, 78, 0.08);
}

.info-panel h2 {
  margin: 0 0 12px;
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}

.info-panel p,
.info-panel li {
  color: var(--muted);
  line-height: 1.65;
}

.info-panel ul {
  margin-bottom: 0;
}

.product-page {
  background:
    linear-gradient(180deg, rgba(255, 253, 251, 0.24), rgba(251, 247, 244, 0)),
    radial-gradient(circle at 88% 14%, rgba(84, 223, 208, 0.16), transparent 26rem);
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.88fr);
  gap: 70px;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding-top: 62px;
  padding-bottom: 86px;
}

.product-hero-copy {
  max-width: 760px;
}

.product-app-mark {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
  padding: 12px 18px 12px 12px;
  border: 1px solid rgba(10, 21, 45, 0.08);
  border-radius: 24px;
  background: rgba(255, 253, 251, 0.78);
  box-shadow: 0 16px 44px rgba(31, 46, 78, 0.08);
}

.product-app-mark img {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 134, 156, 0.18);
}

.product-app-mark p {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 850;
}

.product-app-mark span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-weight: 680;
}

.product-hero h1,
.product-section h2,
.feature-band-copy h2,
.privacy-panel h2,
.faq-section h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  line-height: 1.02;
  letter-spacing: 0;
}

.product-hero h1 {
  max-width: 760px;
  font-size: 5.7rem;
  font-weight: 880;
}

.product-lede {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.32rem;
  line-height: 1.55;
}

.product-actions,
.final-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.product-store-badge {
  justify-self: auto;
  width: 174px;
}

.product-proof {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.product-proof span {
  padding: 10px 13px;
  border: 1px solid rgba(10, 21, 45, 0.08);
  border-radius: 999px;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
  font-weight: 760;
}

.product-hero-media {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: 20px;
  align-items: center;
  justify-items: center;
}

.phone-shot,
.screenshot-card {
  margin: 0;
}

.phone-shot {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(10, 21, 45, 0.08);
  border-radius: 46px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 28px 78px rgba(31, 46, 78, 0.18);
}

.phone-shot img,
.screenshot-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1320 / 2868;
  object-fit: cover;
}

.phone-shot-main {
  width: 340px;
}

.phone-shot-secondary {
  width: 258px;
  margin-top: 120px;
  transform: rotate(2deg);
}

.product-section,
.product-overview,
.privacy-panel,
.final-cta {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-section h2,
.feature-band-copy h2,
.privacy-panel h2,
.faq-section h2,
.final-cta h2 {
  font-size: 3.7rem;
  font-weight: 860;
}

.overview-copy p,
.feature-band-copy p,
.privacy-panel p,
.final-cta p,
.faq-list p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

.overview-copy p:first-child {
  margin-top: 0;
}

.product-heading {
  padding-bottom: 34px;
}

.product-heading h2 {
  font-size: 3.6rem;
  letter-spacing: 0;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.screenshot-card {
  padding: 16px;
  border: 1px solid rgba(10, 21, 45, 0.08);
  border-radius: 32px;
  background: rgba(255, 253, 251, 0.8);
  box-shadow: 0 18px 50px rgba(31, 46, 78, 0.09);
}

.screenshot-card img {
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(10, 21, 45, 0.05);
}

.screenshot-card figcaption {
  margin-top: 14px;
  color: var(--ink-2);
  font-weight: 800;
  text-align: center;
}

.product-feature-band {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 46px;
  align-items: start;
}

.feature-band-copy {
  position: sticky;
  top: 130px;
}

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

.feature-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(10, 21, 45, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 10%, rgba(84, 223, 208, 0.16), transparent 12rem),
    rgba(255, 253, 251, 0.78);
  box-shadow: 0 16px 44px rgba(31, 46, 78, 0.07);
}

.feature-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: #12a99e;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.feature-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.34rem;
  letter-spacing: 0;
}

.feature-grid p {
  color: var(--muted);
  line-height: 1.62;
}

.privacy-panel {
  padding: 42px;
  border: 1px solid rgba(10, 21, 45, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 0 0, rgba(255, 100, 107, 0.12), transparent 18rem),
    rgba(255, 253, 251, 0.82);
  box-shadow: 0 22px 60px rgba(31, 46, 78, 0.08);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid rgba(10, 21, 45, 0.08);
  border-radius: 22px;
  background: rgba(255, 253, 251, 0.82);
  box-shadow: 0 12px 34px rgba(31, 46, 78, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 26px;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 830;
  list-style-position: outside;
}

.faq-list p {
  margin: 0;
  padding: 0 26px 24px;
}

.inline-link {
  display: inline;
  margin-top: 0;
}

.final-cta {
  margin-bottom: 28px;
  padding: 38px 42px;
  border: 1px solid rgba(10, 21, 45, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 18%, rgba(84, 223, 208, 0.20), transparent 15rem),
    rgba(255, 253, 251, 0.84);
  box-shadow: 0 22px 60px rgba(31, 46, 78, 0.09);
}

.final-cta > img {
  width: 112px;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(0, 134, 156, 0.18);
}

.reveal {
  animation: rise 600ms ease both;
}

.hero-art.reveal { animation-delay: 80ms; }
.featured-card.reveal { animation-delay: 140ms; }
.tech-row.reveal { animation-delay: 210ms; }

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .brand img {
    width: 230px;
  }

  .site-nav {
    gap: 28px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-art {
    min-height: 420px;
    transform: translateX(0);
    margin-top: 20px;
  }

  .hero-art img {
    right: -60px;
    width: min(720px, 110%);
  }

  .featured-card {
    width: min(100%, 1020px);
    margin-top: 24px;
  }

  .product-hero,
  .product-section,
  .product-overview,
  .product-feature-band,
  .privacy-panel,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .product-hero {
    min-height: auto;
    gap: 44px;
  }

  .product-hero-media {
    min-height: 620px;
    width: min(680px, 100%);
    margin: 0 auto;
  }

  .phone-shot-main {
    left: auto;
    width: 330px;
  }

  .phone-shot-secondary {
    right: auto;
    width: 252px;
  }

  .feature-band-copy {
    position: static;
  }

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

  .cards-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .site-header {
    width: min(calc(100% - 28px), var(--max));
    padding: 18px 0 12px;
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 206px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(10, 21, 45, 0.08);
    border-radius: 26px;
    background: rgba(255, 253, 251, 0.95);
    box-shadow: var(--shadow-card);
  }

  .site-nav.is-open a {
    padding: 16px;
    border-radius: 18px;
  }

  .site-nav.is-open a:hover {
    background: rgba(36, 86, 255, 0.07);
  }

  .section-pad,
  .site-footer,
  .simple-page {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero h1 {
    font-size: clamp(3.25rem, 13vw, 5.7rem);
    letter-spacing: -0.07em;
  }

  .hero-subtitle {
    font-size: 1.13rem;
  }

  .product-hero {
    padding-top: 46px;
    padding-bottom: 58px;
  }

  .product-hero h1 {
    font-size: 3.75rem;
  }

  .product-lede {
    font-size: 1.12rem;
  }

  .product-hero-media {
    min-height: 520px;
  }

  .phone-shot-main {
    left: auto;
    width: 308px;
  }

  .phone-shot-secondary {
    right: auto;
    width: 232px;
  }

  .product-section h2,
  .feature-band-copy h2,
  .privacy-panel h2,
  .faq-section h2,
  .final-cta h2,
  .product-heading h2 {
    font-size: 2.75rem;
  }

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

  .privacy-panel,
  .final-cta {
    padding: 30px;
  }

  .hero-art {
    min-height: 310px;
  }

  .hero-art img {
    right: -130px;
    top: 0;
    width: 720px;
  }

  .shape-coral {
    right: -195px;
    top: 150px;
  }

  .featured-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px;
  }

  .featured-divider {
    width: 100%;
    height: 1px;
  }

  .app-store-download-badge {
    justify-self: start;
    width: 156px;
    margin-top: -2px;
  }

  .cards-grid,
  .split-section,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    min-height: 340px;
  }

  .game-list a {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .featured-product {
    align-items: flex-start;
  }

  .featured-product img {
    width: 72px;
    height: 72px;
  }

  .product-app-mark {
    align-items: flex-start;
    width: 100%;
  }

  .product-hero h1 {
    font-size: 2.85rem;
  }

  .product-actions,
  .final-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .product-store-badge {
    width: 172px;
  }

  .product-actions .button,
  .final-actions .button {
    width: 100%;
  }

  .product-proof span {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }

  .product-hero-media {
    display: block;
    min-height: 710px;
  }

  .phone-shot {
    position: relative;
    inset: auto;
    width: min(100%, 310px);
    margin: 0 auto;
  }

  .phone-shot-secondary {
    display: none;
  }

  .screenshot-card {
    padding: 12px;
    border-radius: 26px;
  }

  .screenshot-card img {
    border-radius: 20px;
  }

  .faq-list summary {
    padding: 20px 22px;
  }

  .faq-list p {
    padding: 0 22px 22px;
  }

  .tech-row {
    justify-content: flex-start;
    width: 100%;
  }

  .project-card,
  .process-grid article,
  .info-panel {
    padding: 24px;
  }
}

.card-actions {
  display: grid;
  grid-template-columns: minmax(178px, 1fr) 160px;
  align-items: center;
  max-width: 392px;
}

.card-actions .button-small {
  width: 100%;
  height: 53px;
  min-height: 53px;
  padding: 0 18px;
}

.card-actions .app-store-download-badge {
  width: 160px;
  height: 53px;
  margin: 0;
}

.card-actions .app-store-download-badge img {
  width: 160px;
  height: 53px;
}

@media (max-width: 380px) {
  .card-actions {
    grid-template-columns: 1fr;
    max-width: 220px;
  }

  .card-actions .app-store-download-badge {
    justify-self: start;
  }
}
