:root {
  color-scheme: dark;
  --ink: #f7f3ea;
  --muted: #bbb2a4;
  --quiet: #8d8579;
  --paper: #141311;
  --panel: #1c1a17;
  --panel-strong: #24211d;
  --line: rgba(247, 243, 234, 0.14);
  --line-strong: rgba(247, 243, 234, 0.28);
  --gold: #f3bc58;
  --coral: #ff6b4a;
  --mint: #74e6ae;
  --black: #080806;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
.contact-form-panel {
  scroll-margin-top: 86px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 8%, rgba(243, 188, 88, 0.14), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(116, 230, 174, 0.08), transparent 22rem),
    linear-gradient(180deg, #090807 0%, #13110f 52%, #0a0908 100%);
}

body::selection {
  background: rgba(243, 188, 88, 0.34);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(247, 243, 234, 0.08);
  background: rgba(8, 8, 6, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  letter-spacing: 0;
}

.mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: url("assets/FramePairCameraIcon.png") center / cover no-repeat;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: rgba(247, 243, 234, 0.08);
  outline: none;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 730;
  line-height: 1;
}

.button,
.text-link {
  min-height: 44px;
}

.button {
  padding: 0 18px;
  color: #15100a;
  background: var(--gold);
  box-shadow: 0 10px 30px rgba(243, 188, 88, 0.24);
}

.button:hover,
.button:focus-visible {
  background: #ffd16e;
  outline: none;
}

.button.secondary {
  color: var(--ink);
  border: 1px solid var(--line-strong);
  background: rgba(247, 243, 234, 0.08);
  box-shadow: none;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  color: #fff;
  background: rgba(247, 243, 234, 0.14);
}

.text-link {
  min-height: 0;
  color: var(--gold);
  border-bottom: 1px solid rgba(243, 188, 88, 0.34);
  border-radius: 0;
}

.text-link:hover,
.text-link:focus-visible {
  color: #ffd77f;
  outline: none;
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.app-store-badge:hover,
.app-store-badge:focus-visible {
  border-radius: 8px;
  outline: 2px solid rgba(243, 188, 88, 0.72);
  outline-offset: 4px;
}

.app-store-badge img {
  width: auto;
  height: 50px;
}

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 84svh;
  padding: 74px 0 52px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.hero > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  max-width: 780px;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 4.8vw, 4.9rem);
  line-height: 0.98;
}

.hero-title-mobile,
.hero-copy-mobile {
  display: none;
}

.hero-copy {
  max-width: 630px;
  color: #ded7cb;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.58;
}

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

.mobile-hero-download {
  display: none;
}

.trust-strip {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(247, 243, 234, 0.055);
  font-size: 0.88rem;
  white-space: nowrap;
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.device-stage {
  position: relative;
  min-height: 610px;
}

.phone-frame {
  position: absolute;
  z-index: 2;
  top: 2%;
  left: 10%;
  width: min(285px, 44vw);
  padding: 10px;
  border: 1px solid rgba(247, 243, 234, 0.18);
  border-radius: 36px;
  background: linear-gradient(160deg, #2a2722, #0c0b0a);
  box-shadow: var(--shadow);
}

.phone-frame video,
.phone-frame img {
  overflow: hidden;
  aspect-ratio: 1320 / 2868;
  width: 100%;
  height: auto;
  border-radius: 27px;
  object-fit: cover;
  background: #000;
}

.ipad-frame {
  position: absolute;
  right: 1%;
  bottom: 1%;
  width: min(380px, 58vw);
  aspect-ratio: 2064 / 2752;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(247, 243, 234, 0.16);
  border-radius: 30px;
  background: linear-gradient(155deg, #26231f, #0b0a09);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.ipad-frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.ipad-frame img {
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  object-fit: cover;
  object-position: 50% 50%;
  background: #000;
}

@media (min-width: 681px) {
  .ipad-frame {
    right: 2%;
    bottom: 0;
  }
}

.floating-note {
  position: absolute;
  z-index: 3;
  right: 8%;
  top: 12%;
  width: min(230px, calc(100% - 24px));
  max-width: 230px;
  padding: 14px 16px;
  border: 1px solid rgba(116, 230, 174, 0.36);
  border-radius: 18px;
  color: #ecfff5;
  background: rgba(12, 28, 20, 0.76);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.floating-note strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.floating-note span {
  color: #bce8d0;
  font-size: 0.88rem;
  line-height: 1.42;
}

.band {
  padding: 78px 0;
  border-top: 1px solid rgba(247, 243, 234, 0.08);
}

.band.alt {
  background: rgba(247, 243, 234, 0.035);
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.5fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.feature-card,
.policy-card,
.screenshot-panel {
  border: 1px solid var(--line);
  background: rgba(28, 26, 23, 0.78);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.feature-card {
  min-height: 220px;
  padding: 24px;
  border-radius: 8px;
}

.feature-card .number {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 34px;
  border-radius: 50%;
  color: #14100a;
  background: var(--gold);
  font-weight: 850;
}

.feature-card:nth-child(2) .number {
  background: var(--mint);
}

.feature-card:nth-child(3) .number {
  background: var(--coral);
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 18px;
  align-items: stretch;
}

.screenshot-panel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #11100e;
}

.screenshot-panel.large {
  min-height: 660px;
  display: grid;
  place-items: center;
}

.screenshot-panel.large img {
  width: min(380px, 86%);
  border-radius: 34px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}

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

.screenshot-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(247, 243, 234, 0.14);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(8, 8, 6, 0.72);
  backdrop-filter: blur(14px);
  font-size: 0.94rem;
  line-height: 1.35;
}

.privacy-layout,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.policy-card {
  padding: 24px;
  border-radius: 8px;
}

.policy-card h3 {
  margin-bottom: 10px;
  color: #fff8eb;
  font-size: 1.08rem;
}

.policy-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.seo-list {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.62;
}

.seo-list li + li {
  margin-top: 8px;
}

.media-pack-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.7fr);
  gap: 18px;
  align-items: stretch;
}

.download-card {
  min-height: 320px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(243, 188, 88, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 0%, rgba(243, 188, 88, 0.17), transparent 24rem),
    rgba(28, 26, 23, 0.86);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.download-card .number {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  height: 34px;
  margin-bottom: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: #14100a;
  background: var(--gold);
  font-size: 0.85rem;
  font-weight: 850;
}

.download-card h3 {
  margin-bottom: 12px;
  color: #fff8eb;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1;
}

.download-card p {
  color: var(--muted);
  line-height: 1.62;
}

.download-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.download-meta {
  margin: 16px 0 0;
  color: var(--quiet);
  font-size: 0.92rem;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: 18px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item,
.support-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(28, 26, 23, 0.78);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 18px 54px 18px 20px;
  color: #fff8eb;
  cursor: pointer;
  font-weight: 760;
  line-height: 1.3;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item summary:focus-visible {
  outline: 2px solid rgba(243, 188, 88, 0.72);
  outline-offset: -3px;
}

.faq-item p {
  margin: -2px 20px 20px;
  color: var(--muted);
  line-height: 1.65;
}

.support-card {
  position: sticky;
  top: 92px;
  padding: 24px;
}

.support-card h3 {
  margin-bottom: 10px;
  color: #fff8eb;
  font-size: 1.3rem;
}

.support-card p {
  color: var(--muted);
  line-height: 1.62;
}

.support-card .button {
  margin: 6px 0 12px;
}

.support-card .contact-email {
  display: block;
}

.contact-form-panel {
  margin-top: 22px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 0%, rgba(243, 188, 88, 0.12), transparent 22rem),
    rgba(28, 26, 23, 0.78);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.contact-form-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.contact-form-heading .eyebrow {
  margin-bottom: 10px;
}

.contact-form-heading h3 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.contact-form-heading p,
.form-note {
  color: var(--muted);
  line-height: 1.62;
}

.support-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
  color: #fff8eb;
  font-size: 0.94rem;
  font-weight: 730;
}

.field-full {
  grid-column: 1 / -1;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(8, 8, 6, 0.62);
  font: inherit;
  font-weight: 520;
  line-height: 1.35;
}

.field input,
.field select {
  min-height: 48px;
  padding: 0 13px;
}

.field textarea {
  min-height: 150px;
  padding: 12px 13px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(243, 188, 88, 0.74);
  outline: 2px solid rgba(243, 188, 88, 0.22);
}

.form-note {
  padding: 14px 16px;
  border: 1px solid rgba(116, 230, 174, 0.24);
  border-radius: 8px;
  background: rgba(116, 230, 174, 0.06);
  font-size: 0.95rem;
}

.form-actions {
  align-items: center;
}

button.button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.cta-band {
  padding: 74px 0;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(243, 188, 88, 0.12), transparent 46%),
    linear-gradient(180deg, rgba(247, 243, 234, 0.05), transparent);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.cta-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

.cta-panel p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.site-footer {
  padding: 34px 0 44px;
  border-top: 1px solid rgba(247, 243, 234, 0.08);
  color: var(--quiet);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

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

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
  outline: none;
}

.analytics-control {
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  color: var(--quiet);
  font-size: 0.85rem;
}

.analytics-control[hidden] {
  display: none;
}

.analytics-control button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(247, 243, 234, 0.06);
  font: inherit;
  font-weight: 720;
  cursor: pointer;
}

.analytics-control button:hover,
.analytics-control button:focus-visible {
  color: var(--ink);
  border-color: var(--line-strong);
  outline: none;
}

.document-shell {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 84px;
}

.document-kicker {
  color: var(--mint);
  font-size: 0.8rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.document-shell h1 {
  margin: 12px 0 12px;
  font-size: clamp(2.6rem, 6vw, 5.1rem);
  line-height: 0.94;
}

.updated {
  color: var(--quiet);
  font-size: 0.96rem;
}

.legal-document {
  margin-top: 42px;
  padding: clamp(22px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(28, 26, 23, 0.78);
  box-shadow: var(--shadow);
}

.legal-document h2 {
  margin: 38px 0 12px;
  padding-top: 6px;
  font-size: 1.35rem;
  line-height: 1.22;
}

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

.legal-document p,
.legal-document li {
  color: #d8d0c4;
  line-height: 1.72;
}

.legal-document p {
  margin-bottom: 16px;
}

.legal-document ul {
  margin: 0 0 20px;
  padding-left: 20px;
}

.legal-document li + li {
  margin-top: 8px;
}

.callout {
  margin: 28px 0;
  padding: 18px 20px;
  border: 1px solid rgba(243, 188, 88, 0.32);
  border-radius: 8px;
  color: #f7e6bf;
  background: rgba(243, 188, 88, 0.08);
}

.contact-box {
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(116, 230, 174, 0.26);
  border-radius: 8px;
  background: rgba(116, 230, 174, 0.06);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.contact-email {
  color: var(--muted);
  font-size: 0.95rem;
}

.review-recording-player {
  width: min(360px, 100%);
  margin: 20px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000;
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .hero,
  .section-heading,
  .showcase-grid,
  .faq-layout,
  .form-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 50px;
  }

  .hero-visual,
  .device-stage {
    min-height: 620px;
  }

  .phone-frame {
    left: 0;
    width: min(280px, 50vw);
  }

  .ipad-frame {
    width: min(520px, 82vw);
  }

  .feature-grid,
  .privacy-layout,
  .benefit-grid,
  .media-pack-layout {
    grid-template-columns: 1fr;
  }

  .support-card {
    position: static;
  }
}

@media (max-width: 680px) {
  .hero,
  .container,
  .footer-inner,
  .document-shell {
    width: calc(100% - 32px);
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-heading,
  .section-heading > *,
  .feature-card,
  .policy-card,
  .media-pack-layout,
  .download-card,
  .faq-layout,
  .faq-item,
  .support-card,
  .contact-form-panel,
  .screenshot-panel,
  .legal-document,
  .cta-panel,
  .cta-panel > * {
    min-width: 0;
    max-width: 100%;
  }

  .analytics-control {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading p,
  .feature-card p,
  .policy-card p,
  .download-card p,
  .faq-item p,
  .support-card p,
  .contact-form-heading p,
  .form-note,
  .cta-panel p,
  .legal-document p,
  .legal-document li {
    overflow-wrap: break-word;
  }

  .nav {
    width: min(1180px, calc(100% - 24px));
    min-height: 62px;
    gap: 8px;
    justify-content: flex-start;
  }

  .nav-links {
    display: none;
  }

  .brand span:not(.mark) {
    display: inline;
  }

  .hero {
    min-height: 0;
    padding: 38px 0 46px;
    gap: 24px;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 3.7rem);
    overflow-wrap: normal;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 13vw, 3.7rem);
    line-height: 0.94;
    text-wrap: balance;
  }

  .hero-title-desktop,
  .hero-copy-desktop {
    display: none;
  }

  .hero-title-brand {
    display: none;
  }

  .hero-title-mobile,
  .hero-copy-mobile {
    display: inline;
  }

  .section-heading h2 {
    font-size: clamp(1.85rem, 7.3vw, 2.35rem);
    line-height: 1.04;
    text-wrap: balance;
  }

  .section-heading p {
    max-width: 32ch;
  }

  .hero-copy {
    max-width: 30ch;
    font-size: 1.02rem;
    line-height: 1.58;
  }

  .hero-actions {
    display: none;
  }

  .mobile-hero-download {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 14px;
    margin-top: 14px;
  }

  .button {
    width: 100%;
  }

  .app-store-badge {
    width: 100%;
  }

  .app-store-badge img {
    height: 48px;
  }

  .trust-strip {
    display: none;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .download-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-visual,
  .device-stage {
    width: 100%;
    max-width: 100%;
    min-height: 392px;
    overflow: hidden;
  }

  .phone-frame {
    top: 0;
    left: -2px;
    width: min(178px, 47vw);
    border-radius: 30px;
  }

  .phone-frame video,
  .phone-frame img {
    border-radius: 22px;
  }

  .ipad-frame {
    right: 8px;
    bottom: 22px;
    width: min(268px, 68vw);
    aspect-ratio: 2064 / 2752;
    border-radius: 24px;
  }

  .ipad-frame picture {
    width: 100%;
    height: 100%;
  }

  .ipad-frame img {
    border-radius: 18px;
    object-position: 50% 50%;
  }

  .floating-note {
    left: clamp(150px, 47vw, 184px);
    right: auto;
    top: auto;
    bottom: 68px;
    width: min(178px, 44vw);
    max-width: none;
    padding: 12px 13px;
    border-radius: 15px;
  }

  .floating-note strong {
    font-size: 0.84rem;
  }

  .floating-note span {
    font-size: 0.78rem;
    line-height: 1.34;
  }

  .band {
    padding: 58px 0;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .screenshot-panel.large {
    min-height: 0;
  }

  .showcase-grid {
    gap: 14px;
  }

  .screenshot-stack {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .screenshot-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 14px;
    border-radius: 8px;
    background:
      radial-gradient(circle at 50% 22%, rgba(243, 188, 88, 0.11), transparent 15rem),
      #11100e;
  }

  .screenshot-panel.large img,
  .screenshot-panel img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 520px;
    border-radius: 24px;
    object-fit: contain;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
  }

  .screenshot-stack .screenshot-panel:nth-child(3) img,
  .screenshot-stack .screenshot-panel:nth-child(4) img {
    max-height: 360px;
    border-radius: 16px;
  }

  .caption {
    position: static;
    width: 100%;
    margin-top: 12px;
    border-radius: 8px;
    background: rgba(8, 8, 6, 0.72);
  }

  .cta-panel {
    text-align: left;
  }

  .document-shell {
    padding-top: 46px;
  }

  .legal-document {
    margin-top: 30px;
  }
}
