:root {
  color-scheme: dark;
  --ink: #f4f8fb;
  --muted: #9bb2c3;
  --subtle: #6f8798;
  --line: rgba(255, 255, 255, 0.14);
  --panel: rgba(10, 19, 27, 0.76);
  --panel-strong: rgba(11, 24, 34, 0.94);
  --brand-black: #05070a;
  --brand-blue-black: #07111a;
  --brand-navy: #061f31;
  --blue: #00aeef;
  --blue-strong: #45cdfb;
  --blue-deep: #007fb3;
  --cyan-soft: #8ddfff;
  --green: #58d68d;
  --gold: #f6c65b;
  --red: #f06d75;
  --violet: #a891ff;
  --shadow: rgba(0, 0, 0, 0.36);
  --max: 1160px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: #05080d;
}

body {
  margin: 0;
  color: var(--ink);
  overflow-x: hidden;
  padding-bottom: 82px;
  background:
    radial-gradient(ellipse 150% 110% at 10% 2%, rgba(0, 174, 239, 0.26) 0%, rgba(0, 127, 179, 0.12) 34%, rgba(0, 127, 179, 0.035) 62%, transparent 90%),
    radial-gradient(ellipse 128% 92% at 92% 12%, rgba(141, 223, 255, 0.13) 0%, rgba(0, 174, 239, 0.1) 32%, rgba(0, 127, 179, 0.05) 64%, transparent 90%),
    radial-gradient(ellipse 118% 78% at 72% 46%, rgba(0, 174, 239, 0.12) 0%, rgba(0, 127, 179, 0.055) 44%, transparent 86%),
    radial-gradient(ellipse 148% 96% at 42% 78%, rgba(0, 174, 239, 0.13) 0%, rgba(6, 31, 49, 0.15) 48%, rgba(5, 7, 10, 0.08) 74%, transparent 94%),
    radial-gradient(ellipse 96% 82% at 3% 66%, rgba(0, 174, 239, 0.13) 0%, rgba(0, 127, 179, 0.045) 48%, transparent 86%),
    radial-gradient(ellipse 112% 90% at 100% 92%, rgba(3, 5, 7, 0.5) 0%, rgba(3, 5, 7, 0.18) 54%, transparent 86%),
    linear-gradient(132deg, rgba(0, 174, 239, 0.1) 0%, rgba(0, 174, 239, 0.04) 38%, transparent 74%),
    linear-gradient(218deg, rgba(69, 205, 251, 0.06) 0%, rgba(69, 205, 251, 0.025) 34%, transparent 74%),
    linear-gradient(180deg, var(--brand-blue-black), var(--brand-black) 56%, #030507);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 46px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 8, 13, 0.84);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 42px;
  height: 42px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--blue-strong);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.button-primary {
  border-color: rgba(69, 205, 251, 0.7);
  background: linear-gradient(180deg, rgba(0, 174, 239, 0.95), rgba(0, 116, 172, 0.9));
  color: #031019;
}

.button-quiet {
  color: var(--blue-strong);
}

.button.full {
  width: 100%;
}

a[aria-disabled="true"] {
  cursor: not-allowed;
}

a[aria-disabled="true"]::after {
  content: "coming soon";
  margin-left: 10px;
  padding: 2px 7px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(28px, 6vw, 82px);
  width: min(var(--max), calc(100% - 36px));
  min-height: min(760px, calc(100vh - 156px));
  margin: 0 auto 28px;
  padding: clamp(32px, 5vw, 62px) 0;
}

.hero-logo {
  width: min(360px, 82vw);
  margin-bottom: 26px;
}

.hero h1,
.section-heading h2,
.split-copy h2,
.desktop-copy h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.35rem, 7vw, 5.65rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero p,
.section-heading p,
.split-copy p,
.desktop-copy p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.24rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-media {
  position: relative;
  min-width: 0;
  min-height: min(620px, calc(100vh - 190px));
}

.hero-phone-art {
  position: absolute;
  filter: drop-shadow(0 34px 72px rgba(0, 0, 0, 0.34));
}

.hero-phone-art-large {
  right: 4%;
  top: 0;
  width: min(360px, 58vw);
}

.hero-phone-art-small {
  left: 0;
  bottom: 0;
  width: min(230px, 38vw);
  transform: rotate(-4deg);
}

.device {
  position: absolute;
  min-width: 0;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 44px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03) 18%, rgba(0, 0, 0, 0.84) 52%),
    #03060b;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.055),
    inset 0 0 0 8px rgba(0, 0, 0, 0.64),
    0 34px 82px var(--shadow);
  overflow: hidden;
}

.device img {
  min-width: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 34px;
  background: #020814;
  box-shadow:
    inset 0 18px 22px rgba(0, 0, 0, 0.36),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.device::after,
.phone-frame::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.phone-iphone::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 50%;
  z-index: 2;
  width: 28%;
  height: 3.2%;
  border-radius: 999px;
  background: rgba(2, 5, 9, 0.94);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
}

.phone-pixel::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 50%;
  z-index: 2;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 58% 42%, rgba(141, 223, 255, 0.5) 0 12%, transparent 14%),
    #02060b;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
}

.device::after {
  top: 18%;
  right: -2px;
  width: 3px;
  height: 12%;
  border-radius: 4px 0 0 4px;
  background: rgba(176, 202, 218, 0.34);
  box-shadow: 0 74px 0 rgba(176, 202, 218, 0.22);
}

.device-large {
  right: 4%;
  top: 0;
  width: min(360px, 58vw);
  aspect-ratio: 390 / 844;
}

.device-small {
  left: 0;
  bottom: 0;
  width: min(230px, 38vw);
  aspect-ratio: 390 / 844;
  transform: rotate(-4deg);
}

.surface-strip,
.library-showcase,
.retail-callout,
.section,
.split-section,
.desktop-section,
.mpc-section,
.workflow-gallery,
.site-footer {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.surface-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.surface-strip div {
  padding: 24px;
  background: rgba(7, 13, 20, 0.84);
}

.surface-strip strong,
.surface-strip span {
  display: block;
}

.surface-strip span {
  margin-top: 8px;
  color: var(--muted);
}

.library-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
  gap: clamp(22px, 4.5vw, 58px);
  align-items: center;
  padding: clamp(70px, 9vw, 110px) 0 clamp(44px, 7vw, 82px);
}

.library-copy,
.library-panel {
  min-width: 0;
}

.library-copy h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: normal;
}

.library-copy p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.16rem);
  line-height: 1.65;
}

.library-copy strong {
  color: var(--ink);
}

.library-panel {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(69, 205, 251, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(0, 174, 239, 0.18), transparent 46%),
    linear-gradient(315deg, rgba(88, 214, 141, 0.08), transparent 42%),
    rgba(7, 16, 24, 0.82);
  box-shadow: 0 24px 66px rgba(0, 0, 0, 0.24);
}

.library-stack {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.library-stack span {
  color: var(--blue-strong);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.library-stack strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.2;
}

.library-stack p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.library-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.library-tags span {
  padding: 9px 11px;
  border: 1px solid rgba(69, 205, 251, 0.28);
  border-radius: 999px;
  background: rgba(0, 174, 239, 0.08);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.retail-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.55fr);
  gap: clamp(22px, 4.5vw, 60px);
  align-items: center;
  margin-top: 28px;
  padding: clamp(26px, 5vw, 44px);
  border: 1px solid rgba(69, 205, 251, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.22), rgba(5, 8, 13, 0.68) 48%),
    radial-gradient(ellipse 80% 90% at 100% 0%, rgba(141, 223, 255, 0.18), transparent 68%),
    rgba(6, 13, 20, 0.88);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.retail-callout h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.retail-callout p {
  max-width: 850px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.65;
}

.retail-callout strong {
  color: var(--ink);
}

.retail-proof {
  position: relative;
  display: grid;
  justify-items: center;
}

.report-card {
  position: relative;
  width: min(430px, 96%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #05080d;
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.42);
  transform: rotate(2deg);
}

.report-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(3, 7, 12, 0.64));
  pointer-events: none;
}

.report-card img {
  width: 100%;
  aspect-ratio: 768 / 1024;
  object-fit: cover;
  object-position: center;
}

.report-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(3, 8, 13, 0.72);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  backdrop-filter: blur(14px);
}

.retail-badges {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin-top: 26px;
}

.retail-badges span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(69, 205, 251, 0.42);
  border-radius: 8px;
  background: rgba(2, 8, 14, 0.64);
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.section,
.split-section,
.desktop-section,
.mpc-section,
.workflow-gallery {
  padding: clamp(76px, 10vw, 122px) 0;
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--blue-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.section-heading h2,
.split-copy h2,
.desktop-copy h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
}

.section-heading p {
  margin-top: 0;
}

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

.workflow-gallery {
  position: relative;
}

.workflow-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 18px;
  margin-top: 32px;
}

.workflow-feature,
.workflow-tile {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 16, 24, 0.76);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.2);
}

.workflow-feature {
  grid-row: span 2;
  min-height: 560px;
}

.workflow-tile {
  min-height: 270px;
}

.workflow-feature img,
.workflow-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workflow-feature img {
  position: absolute;
  inset: 0;
  object-position: left center;
}

.workflow-tile img {
  display: block;
  aspect-ratio: 16 / 9;
}

.workflow-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 7, 12, 0.9), rgba(3, 7, 12, 0.52) 42%, rgba(3, 7, 12, 0.04)),
    linear-gradient(0deg, rgba(3, 7, 12, 0.58), transparent 58%);
  pointer-events: none;
}

.workflow-feature > div {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  max-width: 440px;
  min-height: 560px;
  padding: clamp(24px, 4vw, 42px);
}

.workflow-tile div {
  padding: 20px;
}

.workflow-feature span,
.workflow-tile span {
  color: var(--blue-strong);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.workflow-feature h3,
.workflow-tile h3 {
  margin: 10px 0 0;
  color: var(--ink);
  line-height: 1.05;
}

.workflow-feature h3 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.workflow-tile h3 {
  font-size: 1.3rem;
}

.workflow-feature p,
.workflow-tile p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.edition-card,
.desktop-preview {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
}

.edition-card-plus {
  background: linear-gradient(180deg, rgba(0, 174, 239, 0.16), rgba(10, 19, 27, 0.88));
}

.edition-card-pro {
  background: linear-gradient(180deg, rgba(246, 198, 91, 0.14), rgba(10, 19, 27, 0.88));
}

.edition-topline {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.edition-card h3 {
  margin: 12px 0 10px;
  font-size: 1.55rem;
}

.pricing-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: end;
  min-height: 74px;
  margin: 0 0 18px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 174, 239, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.18), rgba(12, 36, 52, 0.76)),
    rgba(7, 16, 24, 0.66);
}

.pricing-banner-plus {
  border-color: rgba(0, 174, 239, 0.42);
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.28), rgba(6, 53, 66, 0.72)),
    rgba(7, 16, 24, 0.72);
}

.pricing-banner-pro {
  border-color: rgba(246, 198, 91, 0.38);
  background:
    linear-gradient(135deg, rgba(246, 198, 91, 0.2), rgba(12, 36, 52, 0.76)),
    rgba(7, 16, 24, 0.7);
}

.pricing-stack {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}

.pricing-stack .pricing-banner {
  margin: 0;
}

.pricing-banner-annual {
  border-color: rgba(0, 174, 239, 0.34);
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.2), rgba(12, 36, 52, 0.76)),
    rgba(7, 16, 24, 0.7);
}

.pricing-banner-annual .price {
  font-size: clamp(1.9rem, 2.8vw, 2.4rem);
}

.price {
  color: var(--ink);
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 950;
  line-height: 0.9;
}

.price-note {
  padding-bottom: 4px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.edition-card p {
  min-height: 70px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.edition-card ul {
  display: grid;
  gap: 11px;
  min-height: 152px;
  margin: 22px 0;
  padding: 0;
  color: var(--ink);
  list-style: none;
}

.edition-card li {
  position: relative;
  padding-left: 20px;
}

.edition-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.split-section,
.desktop-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1fr);
  align-items: center;
  gap: clamp(26px, 5vw, 64px);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.feature-list span,
.panel-details span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--ink);
  font-weight: 750;
}

.mobile-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.mobile-gallery > figure {
  display: grid;
  align-items: end;
  justify-items: center;
}

.phone-frame {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.035) 20%, rgba(0, 0, 0, 0.82) 58%),
    #03060b;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.05),
    inset 0 0 0 7px rgba(0, 0, 0, 0.64),
    0 24px 56px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.phone-frame img {
  min-width: 0;
  width: 100%;
  aspect-ratio: 390 / 844;
  object-fit: contain;
  border-radius: 25px;
  background: #020814;
}

.phone-frame-asset {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  filter: drop-shadow(0 24px 56px rgba(0, 0, 0, 0.28));
}

.phone-frame-asset::after {
  content: none;
}

.phone-frame-asset img {
  width: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  background: transparent;
  transform: scale(1.1);
  transform-origin: bottom center;
}

.phone-frame::after {
  top: 18%;
  right: -2px;
  width: 3px;
  height: 11%;
  border-radius: 4px 0 0 4px;
  background: rgba(176, 202, 218, 0.3);
  box-shadow: 0 60px 0 rgba(176, 202, 218, 0.18);
}

.mobile-gallery .phone-frame:nth-child(2) {
  transform: translateY(-36px);
}

.desktop-section {
  grid-template-columns: minmax(0, 0.58fr) minmax(420px, 1fr);
}

.desktop-copy .button {
  margin-top: 30px;
}

.workflow-rail {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.workflow-rail div {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  padding: 16px 18px;
  border: 1px solid rgba(246, 198, 91, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(246, 198, 91, 0.1), rgba(0, 174, 239, 0.075)),
    rgba(255, 255, 255, 0.05);
}

.workflow-rail span {
  grid-row: span 2;
  color: var(--gold);
  font-weight: 950;
  letter-spacing: 0.14em;
}

.workflow-rail strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.workflow-rail p {
  max-width: none;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.desktop-preview {
  display: grid;
  gap: 22px;
  background:
    linear-gradient(145deg, rgba(0, 174, 239, 0.15), transparent 38%),
    rgba(8, 12, 18, 0.88);
}

.desktop-preview figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #05080d;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.desktop-preview img {
  width: 100%;
  aspect-ratio: 1440 / 1000;
  object-fit: cover;
  object-position: top left;
}

.desktop-preview figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(3, 8, 13, 0.72);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.panel-details {
  display: grid;
  gap: 10px;
}

.mpc-section {
  position: relative;
}

.mpc-showcase {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  margin-top: 28px;
}

.mpc-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 640px;
  overflow: hidden;
  border: 1px solid rgba(69, 205, 251, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(ellipse 88% 70% at 30% 10%, rgba(0, 174, 239, 0.28), transparent 68%),
    linear-gradient(150deg, rgba(2, 8, 14, 0.86), rgba(5, 31, 48, 0.72));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}

.mpc-stage img {
  position: relative;
  z-index: 1;
  width: min(360px, 78%);
  max-height: 600px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.46);
}

.mpc-orbit {
  position: absolute;
  border: 1px solid rgba(141, 223, 255, 0.18);
  border-radius: 999px;
  transform: rotate(-12deg);
}

.mpc-orbit-one {
  width: 82%;
  height: 48%;
}

.mpc-orbit-two {
  width: 62%;
  height: 34%;
  border-color: rgba(0, 174, 239, 0.28);
  transform: rotate(18deg);
}

.mpc-copy {
  display: grid;
  gap: 14px;
}

.mpc-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 13, 20, 0.78);
}

.mpc-feature span {
  grid-row: span 2;
  color: var(--blue-strong);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.mpc-feature h3 {
  margin: 0;
  font-size: 1.18rem;
}

.mpc-feature p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.mpc-shot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.mpc-shot-grid figure {
  display: grid;
  grid-template-rows: minmax(300px, 1fr) auto;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 11, 17, 0.82);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
}

.mpc-shot-grid img {
  width: 100%;
  height: 100%;
  max-height: 430px;
  object-fit: contain;
  object-position: top center;
  padding: 12px;
  background: #05080d;
}

.mpc-shot-grid figcaption {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-top: 1px solid var(--line);
}

.mpc-shot-grid strong {
  color: var(--ink);
  font-size: 1rem;
}

.mpc-shot-grid span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-strong);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--blue-strong);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

td {
  color: var(--muted);
}

td:first-child {
  color: var(--ink);
  font-weight: 800;
}

tr:last-child td {
  border-bottom: 0;
}

.site-footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin: 0;
  padding: 13px clamp(18px, 4vw, 46px);
  border-top: 1px solid var(--line);
  background: rgba(5, 8, 13, 0.9);
  color: var(--muted);
  backdrop-filter: blur(18px);
  box-shadow: 0 -18px 46px rgba(0, 0, 0, 0.24);
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 14px;
  min-width: 0;
}

.footer-mark {
  flex-shrink: 0;
  font-size: 1.08rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

.footer-mark span {
  color: var(--blue);
}

.footer-mark b {
  color: var(--ink);
}

.footer-tagline {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.3;
}

.footer-copy {
  position: absolute;
  left: 50%;
  color: var(--subtle);
  font-size: 0.88rem;
  line-height: 1.3;
  text-align: center;
  transform: translateX(-50%);
  white-space: nowrap;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  font-size: 0.92rem;
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .section-heading,
  .library-showcase,
  .retail-callout,
  .split-section,
  .desktop-section,
  .workflow-gallery-grid,
  .mpc-showcase,
  .edition-grid {
    grid-template-columns: 1fr;
  }

  .retail-proof {
    min-height: auto;
  }

  .report-card {
    width: min(360px, 100%);
    transform: none;
  }

  .retail-badges {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

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

  .surface-strip {
    grid-template-columns: 1fr;
  }

  .workflow-feature,
  .workflow-feature > div {
    min-height: 470px;
  }

  .edition-card p,
  .edition-card ul {
    min-height: auto;
  }
}

@media (min-width: 621px) and (max-width: 920px) {
  body {
    padding-bottom: 104px;
  }

  .hero-media {
    display: grid;
    grid-template-columns: 0.78fr 1fr;
    align-items: end;
    gap: 18px;
    width: min(620px, 100%);
    min-height: 0;
    margin: 10px auto 0;
  }

  .device {
    position: relative;
    inset: auto;
    transform: none;
  }

  .hero-phone-art {
    position: relative;
    inset: auto;
  }

  .hero-phone-art-large,
  .hero-phone-art-small {
    width: 100%;
  }

  .hero-phone-art-small {
    transform: none;
  }

  .device-large,
  .device-small {
    width: 100%;
  }

  .device-large {
    border-radius: 28px;
  }

  .device-small {
    border-radius: 24px;
  }

  .retail-callout {
    padding: clamp(26px, 5vw, 44px);
  }

  .report-card {
    width: min(430px, 74%);
    transform: none;
  }

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

  .mpc-shot-grid figure {
    grid-template-rows: minmax(360px, 1fr) auto;
  }

  .site-footer {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto auto;
    align-items: center;
  }

  .footer-copy {
    position: static;
    transform: none;
    white-space: normal;
  }

  .footer-links {
    justify-content: flex-end;
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 116px;
  }

  .site-header {
    padding-inline: 16px;
    min-height: 64px;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    flex-basis: 100%;
    justify-content: flex-start;
    gap: clamp(30px, 14vw, 64px);
    font-size: 0.82rem;
  }

  .nav-links a[href="#compare"] {
    display: none;
  }

  .nav-links a:nth-child(5) {
    display: none;
  }

  .hero {
    margin-bottom: 18px;
    padding-top: 30px;
    padding-bottom: 18px;
  }

  .hero-logo {
    width: min(330px, 92vw);
    margin-bottom: 22px;
  }

  .hero h1 {
    font-size: clamp(1.92rem, 8.4vw, 2.2rem);
    line-height: 1;
    max-width: 330px;
  }

  .hero p {
    max-width: 330px;
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-media {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 0.86fr);
    align-items: end;
    gap: 8px;
    width: min(304px, 100%);
    min-height: 0;
    margin: 2px auto 0;
  }

  .device {
    position: relative;
    inset: auto;
    transform: none;
  }

  .hero-phone-art {
    position: relative;
    inset: auto;
  }

  .hero-phone-art-large,
  .hero-phone-art-small {
    width: 100%;
  }

  .hero-phone-art-small {
    transform: none;
  }

  .device-large {
    width: 100%;
    border-radius: 22px;
  }

  .device-small {
    width: 100%;
    border-radius: 18px;
  }

  .device {
    padding: 7px;
  }

  .device img {
    border-radius: 22px;
  }

  .phone-iphone::before {
    top: 17px;
  }

  .phone-pixel::before {
    top: 18px;
    width: 9px;
    height: 9px;
  }

  .hero-actions,
  .feature-list,
  .mobile-gallery,
  .workflow-gallery-grid,
  .mpc-shot-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .feature-list {
    display: grid;
  }

  .mobile-gallery {
    display: grid;
    justify-items: center;
    gap: 18px;
  }

  .mobile-gallery > figure {
    width: min(200px, 58vw);
  }

  .mobile-gallery .phone-frame-asset img {
    transform: none;
  }

  .mobile-gallery .phone-frame:nth-child(2) {
    transform: none;
  }

  .workflow-feature,
  .workflow-feature > div {
    min-height: 420px;
  }

  .workflow-feature::after {
    background:
      linear-gradient(180deg, rgba(3, 7, 12, 0.22), rgba(3, 7, 12, 0.9)),
      linear-gradient(90deg, rgba(3, 7, 12, 0.72), rgba(3, 7, 12, 0.08));
  }

  .workflow-feature h3 {
    font-size: 1.8rem;
  }

  .library-copy h2 {
    font-size: clamp(1.55rem, 6.5vw, 1.85rem);
    line-height: 1;
    overflow-wrap: break-word;
  }

  .mpc-stage {
    min-height: 520px;
  }

  .mpc-shot-grid figure {
    grid-template-rows: minmax(360px, 1fr) auto;
  }

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

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .footer-tagline {
    max-width: calc(100vw - 36px);
    font-size: 0.82rem;
  }

  .footer-copy {
    position: static;
    transform: none;
    white-space: normal;
    font-size: 0.8rem;
  }

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

  .policy-page {
    width: 100vw;
    max-width: none;
    padding-left: 10px;
    padding-right: 10px;
  }

  .policy-hero p:last-child {
    max-width: 330px;
  }

  .policy-content section {
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    overflow-x: hidden;
    padding: 22px;
  }
}

.policy-page {
  width: calc(100vw - 36px);
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(50px, 8vw, 84px) 0 clamp(60px, 10vw, 110px);
  min-width: 0;
}

.policy-hero {
  padding-bottom: 34px;
}

.policy-logo {
  width: min(320px, 82vw);
  margin-bottom: 24px;
}

.policy-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.policy-hero p:last-child {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.policy-content {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.policy-content section {
  min-width: 0;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 13, 20, 0.78);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.16);
}

.policy-content h2,
.policy-content h3,
.policy-content p,
.policy-content ul {
  width: 100%;
  max-width: min(820px, 100%);
  min-width: 0;
}

.policy-content h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.1;
}

.policy-content h3 {
  margin: 24px 0 10px;
  color: var(--blue-strong);
  font-size: 1.05rem;
}

.policy-content p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.72;
  overflow-wrap: break-word;
}

.policy-content p:last-child,
.policy-content ul:last-child {
  margin-bottom: 0;
}

.policy-content ul {
  display: grid;
  gap: 9px;
  margin: 0 0 16px;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.55;
  overflow-wrap: break-word;
}

.policy-contact {
  display: grid;
  gap: 8px;
  max-width: 420px;
  margin: 16px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.policy-contact span {
  color: var(--muted);
}

.policy-table {
  margin: 18px 0;
  max-width: 100%;
}

.policy-table table {
  min-width: 720px;
}

.policy-note {
  color: var(--cyan-soft) !important;
  font-weight: 750;
}

@media (max-width: 620px) {
  .policy-page {
    width: 100vw;
    max-width: none;
    padding-left: 10px;
    padding-right: 10px;
  }

  .policy-logo {
    width: min(320px, calc(100vw - 42px));
  }

  .policy-hero p:last-child {
    max-width: 330px;
    font-size: 1rem;
  }

  .policy-content section {
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    overflow-x: hidden;
    padding: 22px;
  }

  .policy-content h2,
  .policy-content h3 {
    width: calc(100vw - 104px) !important;
    max-width: calc(100vw - 104px) !important;
  }

  .policy-content p,
  .policy-content ul {
    width: calc(100vw - 150px) !important;
    max-width: calc(100vw - 150px) !important;
  }
}
