:root {
  --navy-950: #06152d;
  --navy-900: #0a2342;
  --navy-800: #10345e;
  --blue-700: #0866c6;
  --blue-600: #087fe4;
  --blue-500: #1b96ed;
  --cyan-400: #38bdf8;
  --ink: #122033;
  --muted: #5c6b7d;
  --line: #dce5ef;
  --line-strong: #c9d7e6;
  --surface: #ffffff;
  --surface-alt: #f5f8fc;
  --surface-blue: #edf7ff;
  --success: #13795b;
  --warning: #b15f00;
  --shadow-sm: 0 8px 24px rgba(8, 36, 68, 0.08);
  --shadow-md: 0 22px 60px rgba(8, 36, 68, 0.14);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1180px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

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

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(8, 127, 228, 0.5);
  outline-offset: 3px;
}

::selection {
  color: #fff;
  background: var(--blue-700);
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 8px;
  left: 8px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy-950);
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(76px, 8vw, 116px);
}

.section-sm {
  padding-block: clamp(48px, 6vw, 76px);
}

.surface-alt {
  background: var(--surface-alt);
}

.surface-blue {
  background: linear-gradient(180deg, #f3faff 0%, #eaf5ff 100%);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-label::before {
  width: 28px;
  height: 2px;
  content: "";
  background: var(--blue-600);
}

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

h1,
h2,
h3 {
  color: var(--navy-950);
  font-weight: 750;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 5.6vw, 5rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.45rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.22rem, 2vw, 1.55rem);
}

.lead {
  color: #30445e;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: 1.65;
}

.section-heading {
  max-width: 770px;
  margin-bottom: 46px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .section-label {
  justify-content: center;
}

.section-heading.center .section-label::before {
  display: none;
}

.section-heading p:last-child,
.card p:last-child {
  margin-bottom: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

.button-primary {
  color: #fff;
  background: var(--blue-700);
  box-shadow: 0 10px 28px rgba(8, 102, 198, 0.22);
}

.button-primary:hover {
  background: #0759ae;
  box-shadow: 0 14px 32px rgba(8, 102, 198, 0.28);
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--navy-900);
  background: #fff;
}

.button-secondary:hover {
  border-color: #9bb6d2;
  background: var(--surface-blue);
}

.button-light {
  color: var(--navy-900);
  background: #fff;
}

.text-link {
  color: var(--blue-700);
  font-weight: 700;
}

.icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(6, 21, 45, 0.06);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 10px;
  color: var(--navy-950);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border: 1px solid #e8eef5;
  border-radius: 9px;
  object-fit: contain;
  background: #fff;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.primary-nav > a:not(.button) {
  position: relative;
  color: #334960;
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  background: var(--blue-600);
  transition: transform 160ms ease;
}

.primary-nav > a:not(.button):hover::after {
  transform: scaleX(1);
}

.header-cta {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.9rem;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 5px;
  background: var(--navy-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  overflow: hidden;
  padding: clamp(70px, 8vw, 112px) 0 clamp(86px, 9vw, 126px);
  background:
    radial-gradient(circle at 90% 10%, rgba(56, 189, 248, 0.12), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, #f5f9fd 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.28;
  background-image: linear-gradient(rgba(19, 63, 103, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(19, 63, 103, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 930px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--blue-700);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.hero-eyebrow::before {
  width: 34px;
  height: 2px;
  content: "";
  background: var(--blue-600);
}

.hero .lead {
  max-width: 760px;
  margin-bottom: 16px;
}

.hero-support {
  max-width: 790px;
  margin-bottom: 30px;
  color: var(--muted);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 22px 0 0;
  color: #40546b;
  font-size: 0.94rem;
  font-weight: 600;
}

.hero-proof::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(19, 121, 91, 0.1);
}

.hero-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.7fr);
  gap: 18px;
  margin-top: clamp(44px, 6vw, 76px);
  align-items: stretch;
}

.shot-frame {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.shot-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f5f7fa;
}

.shot-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.shot-link:hover .shot-frame {
  border-color: #9cbcd8;
  box-shadow: var(--shadow-md);
}

.hero-main-shot {
  position: relative;
  min-height: 480px;
  padding: 10px;
  border-color: #b8cbde;
  box-shadow: var(--shadow-md);
}

.hero-main-shot::before {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  padding: 7px 11px;
  border-radius: 999px;
  content: "2D COVERAGE + DORI";
  color: #fff;
  background: rgba(6, 21, 45, 0.88);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  backdrop-filter: blur(6px);
}

.hero-supporting-shots {
  display: grid;
  gap: 14px;
}

.support-shot {
  display: grid;
  min-height: 144px;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(0, 1fr) auto;
}

.support-shot img {
  min-height: 0;
  object-position: top;
}

.support-shot figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 13px;
  border-top: 1px solid var(--line);
  color: var(--navy-900);
  background: #fff;
  font-size: 0.79rem;
  font-weight: 750;
}

.support-shot figcaption span {
  color: var(--blue-700);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Summary strip */
.summary-strip {
  position: relative;
  z-index: 2;
  margin-top: -42px;
}

.summary-grid {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.summary-item {
  position: relative;
  min-height: 112px;
  padding: 22px 18px;
  text-align: center;
}

.summary-item + .summary-item {
  border-left: 1px solid var(--line);
}

.summary-icon {
  display: grid;
  width: 38px;
  height: 38px;
  margin: 0 auto 10px;
  border-radius: 10px;
  place-items: center;
  color: var(--blue-700);
  background: var(--surface-blue);
}

.summary-item strong {
  display: block;
  color: var(--navy-900);
  font-size: 0.9rem;
  line-height: 1.35;
}

/* Intro */
.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

.statement-box {
  position: relative;
  padding: 38px;
  border: 1px solid #c5def4;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #f7fcff, #e7f5ff);
}

.statement-box::before {
  display: block;
  width: 44px;
  height: 4px;
  margin-bottom: 26px;
  content: "";
  background: var(--blue-600);
}

.statement-box strong {
  display: block;
  margin-bottom: 14px;
  color: var(--navy-950);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.22;
}

/* Feature layouts */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.feature-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.feature-card.wide {
  grid-column: 1 / -1;
}

.feature-card-copy {
  padding: 30px 32px 32px;
}

.feature-card-copy p {
  color: var(--muted);
}

.feature-card .shot-frame {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.feature-card.wide .shot-frame img {
  aspect-ratio: 16 / 7;
  object-fit: contain;
}

.feature-card:not(.wide) .shot-frame img {
  aspect-ratio: 16 / 9;
}

.feature-number {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue-700);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.25fr);
  gap: clamp(38px, 7vw, 90px);
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
}

.split-layout.reverse .split-copy {
  order: 2;
}

.large-shot {
  padding: 9px;
  box-shadow: var(--shadow-md);
}

.large-shot img {
  aspect-ratio: 16 / 10;
  object-position: top;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.chip-list li {
  padding: 7px 11px;
  border: 1px solid #cfe0ee;
  border-radius: 7px;
  color: #29465e;
  background: #f5faff;
  font-size: 0.83rem;
  font-weight: 650;
}

.closing-line {
  margin: 26px 0 0;
  padding-left: 16px;
  border-left: 3px solid var(--blue-600);
  color: var(--navy-900);
  font-weight: 750;
}

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

.calculation-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.calculation-card h3 {
  margin-bottom: 7px;
  font-size: 1rem;
}

.calculation-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.validation-visual {
  overflow: hidden;
  border: 1px solid #cbdcec;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.validation-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--navy-900);
  background: #f8fafc;
  font-size: 0.82rem;
  font-weight: 750;
}

.validation-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--warning);
}

.validation-status::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: #f59e0b;
}

.validation-list {
  margin: 0;
  padding: 8px 18px 18px;
  list-style: none;
}

.validation-list li {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
}

.validation-list li:last-child {
  border-bottom: 0;
}

.issue-icon {
  display: grid;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  place-items: center;
  color: #9a5200;
  background: #fff4dc;
  font-weight: 800;
}

.validation-list strong,
.validation-list small {
  display: block;
}

.validation-list strong {
  color: var(--navy-900);
  font-size: 0.9rem;
}

.validation-list small {
  color: var(--muted);
}

.issue-count {
  padding: 4px 8px;
  border-radius: 6px;
  color: #8d4e05;
  background: #fff3dc;
  font-size: 0.73rem;
  font-weight: 750;
}

.placeholder-note {
  margin: 0;
  padding: 12px 18px;
  border-top: 1px dashed #c4d3e2;
  color: var(--muted);
  background: #f8fafc;
  font-size: 0.75rem;
}

/* Deliverables */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.deliverable-card {
  display: flex;
  overflow: hidden;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.deliverable-card .shot-frame {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.deliverable-card .shot-frame img {
  aspect-ratio: 16 / 10;
  object-position: top;
}

.deliverable-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 30px;
}

.deliverable-copy p {
  color: var(--muted);
}

.format-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding: 18px 0 0;
  list-style: none;
}

.format-list li {
  padding: 5px 9px;
  border-radius: 5px;
  color: var(--navy-800);
  background: #e9f4fe;
  font-size: 0.75rem;
  font-weight: 800;
}

/* Workflow */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  counter-reset: workflow;
}

.workflow-step {
  position: relative;
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  counter-increment: workflow;
}

.workflow-step::before {
  display: block;
  margin-bottom: 32px;
  content: "0" counter(workflow);
  color: var(--blue-600);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.workflow-step::after {
  position: absolute;
  top: 47px;
  left: 60px;
  width: calc(100% - 84px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--line-strong), transparent);
}

.workflow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.workflow-signoff {
  margin-top: 42px;
  padding: 30px;
  border-radius: var(--radius-md);
  color: #fff;
  background: var(--navy-950);
  text-align: center;
}

.workflow-signoff strong {
  display: block;
  margin-bottom: 7px;
  font-size: clamp(1.3rem, 3vw, 2rem);
  letter-spacing: 0.025em;
}

.workflow-signoff span {
  color: #9cd7ff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

/* Pricing */
.pricing-section {
  padding-top: clamp(62px, 6vw, 86px);
  padding-bottom: clamp(56px, 5.5vw, 80px);
}

.pricing-principle {
  max-width: 720px;
  margin: 24px auto 0;
  padding: 14px 18px;
  border: 1px solid #cde0f0;
  border-radius: var(--radius-sm);
  color: var(--navy-900);
  background: #fff;
  font-size: 0.94rem;
  font-weight: 700;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 430px;
  grid-column: span 2;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.pricing-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.pricing-card-best {
  border-color: var(--blue-600);
  box-shadow: 0 18px 44px rgba(8, 102, 198, 0.14);
}

.pricing-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue-700);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.pricing-plan {
  margin-bottom: 18px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.pricing-card-best .pricing-plan {
  padding-right: 96px;
}

.pricing-price {
  margin-bottom: 4px;
  color: var(--navy-950);
  font-size: clamp(2.65rem, 4vw, 3.7rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
}

.pricing-price-contact {
  font-size: clamp(2.1rem, 3vw, 2.8rem);
}

.pricing-duration {
  min-height: 48px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.88rem;
}

.pricing-features {
  margin: 0 0 26px;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.pricing-features li {
  position: relative;
  padding-left: 24px;
  color: #43546a;
  font-size: 0.91rem;
  line-height: 1.5;
}

.pricing-features li + li {
  margin-top: 10px;
}

.pricing-features li::before {
  position: absolute;
  top: 0.15em;
  left: 0;
  content: "✓";
  color: var(--blue-700);
  font-weight: 850;
}

.pricing-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-purchase-note {
  max-width: 800px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.pricing-purchase-note a {
  color: var(--blue-700);
  font-weight: 750;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  border: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* CTA */
#workflow {
  padding-bottom: clamp(48px, 4.2vw, 64px);
}

#trial {
  padding-top: clamp(28px, 2.2vw, 34px);
}

.trial-panel {
  display: grid;
  overflow: hidden;
  grid-template-columns: 1.2fr 0.8fr;
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--navy-950);
  box-shadow: var(--shadow-md);
}

.trial-copy {
  padding: clamp(38px, 6vw, 68px);
}

.trial-copy .section-label,
.trial-copy h2 {
  color: #fff;
}

.trial-copy .section-label::before {
  background: var(--cyan-400);
}

.trial-copy p {
  max-width: 650px;
  color: #c6d6e8;
}

.trial-copy .button-row {
  margin-top: 26px;
}

.trial-note {
  display: block;
  margin-top: 13px;
  color: #96abc2;
  font-size: 0.8rem;
}

.compatibility-panel {
  display: grid;
  padding: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  place-content: center;
  background: linear-gradient(145deg, rgba(8, 127, 228, 0.2), rgba(56, 189, 248, 0.05));
}

.compatibility-panel small,
.compatibility-panel strong,
.compatibility-panel span {
  display: block;
}

.compatibility-panel small {
  margin-bottom: 14px;
  color: #94b9d8;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.compatibility-panel strong {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.35;
}

.compatibility-panel span {
  color: #b8cce0;
  font-size: 0.9rem;
}

.compatibility-panel .compatibility-inline {
  display: inline;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(38px, 7vw, 90px);
  align-items: center;
}

.about-logo-wrap {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.about-logo-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.goal-statement {
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 3px solid var(--blue-600);
  color: var(--navy-900);
  background: #eef7ff;
  font-weight: 700;
}

/* FAQ */
.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  border-bottom: 1px solid var(--line-strong);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 4px;
  border: 0;
  color: var(--navy-950);
  background: transparent;
  font-size: 1.05rem;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  content: "+";
  place-items: center;
  color: var(--blue-700);
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 52px 24px 4px;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

.final-cta {
  text-align: center;
}

.final-cta h2 {
  max-width: 700px;
  margin-inline: auto;
}

.final-cta .lead {
  margin-bottom: 8px;
}

.final-cta .strong-line {
  margin-bottom: 28px;
  color: var(--navy-900);
  font-size: 1.1rem;
  font-weight: 800;
}

.final-cta .button-row {
  justify-content: center;
}

.contact-line {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-line a {
  color: var(--blue-700);
  font-weight: 700;
}

/* Footer */
.site-footer {
  padding: 64px 0 24px;
  color: #aebed0;
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr;
  gap: 54px;
  padding-bottom: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: contain;
  background: #fff;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: #fff;
  font-size: 1.1rem;
}

.footer-brand span {
  color: #85c9f8;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.09em;
}

.footer-description {
  max-width: 430px;
  font-size: 0.92rem;
}

.footer-heading {
  margin: 0 0 16px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a {
  color: #b8c6d6;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

/* Legal and error pages */
.page-hero {
  padding: 76px 0 54px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-alt);
}

.page-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.page-hero p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
}

.legal-content {
  padding-block: 64px 96px;
}

.legal-content h2 {
  margin-top: 42px;
  font-size: 1.55rem;
}

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

.legal-content h3 {
  margin-top: 28px;
  font-size: 1.15rem;
}

.legal-content p,
.legal-content li {
  color: #44556a;
}

.draft-notice {
  margin-bottom: 40px;
  padding: 18px 20px;
  border: 1px solid #f0cf8f;
  border-radius: var(--radius-sm);
  color: #744509;
  background: #fff9e9;
}

.simple-header {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.simple-header .header-inner {
  height: var(--header-height);
}

.error-page {
  display: grid;
  min-height: calc(100vh - var(--header-height));
  place-items: center;
  padding: 64px 20px;
  text-align: center;
  background: var(--surface-alt);
}

.error-code {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-600);
  font-size: clamp(4rem, 15vw, 9rem);
  font-weight: 850;
  line-height: 1;
}

.error-page h1 {
  margin-inline: auto;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.error-page p {
  max-width: 560px;
  margin: 0 auto 26px;
  color: var(--muted);
}

/* Reveal */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1050px) {
  .hero-visual {
    grid-template-columns: minmax(0, 1.55fr) minmax(235px, 0.7fr);
  }

  .hero-main-shot {
    min-height: 410px;
  }

  .split-layout,
  .split-layout.reverse {
    gap: 44px;
  }

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

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

  .pricing-card,
  .pricing-card:nth-child(4) {
    grid-column: auto;
  }

  .pricing-card:last-child {
    width: calc(50% - 11px);
    grid-column: 1 / -1;
    justify-self: center;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 66px;
  }

  .menu-button {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-md);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav > a:not(.button) {
    padding: 14px 6px;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav > a:not(.button)::after {
    display: none;
  }

  .primary-nav .button {
    margin-top: 16px;
  }

  .hero-visual {
    grid-template-columns: 1fr;
  }

  .hero-main-shot {
    min-height: 0;
  }

  .hero-main-shot img {
    aspect-ratio: 16 / 10;
  }

  .hero-supporting-shots {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .support-shot {
    min-height: 200px;
  }

  .summary-grid {
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .intro-grid,
  .split-layout,
  .split-layout.reverse,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .split-layout.reverse .split-copy {
    order: initial;
  }

  .split-copy {
    max-width: 760px;
  }

  .about-logo-wrap {
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .trial-panel {
    grid-template-columns: 1fr;
  }

  .compatibility-panel {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
    place-content: start;
  }
}

@media (max-width: 720px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding-block: 70px;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-supporting-shots,
  .feature-grid,
  .deliverables-grid,
  .workflow-grid,
  .calculation-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card,
  .pricing-card:last-child {
    width: 100%;
    min-height: 0;
    grid-column: auto;
  }

  .feature-card.wide {
    grid-column: auto;
  }

  .support-shot {
    min-height: 0;
  }

  .support-shot img {
    aspect-ratio: 16 / 9;
  }

  .feature-card.wide .shot-frame img,
  .feature-card:not(.wide) .shot-frame img,
  .large-shot img,
  .deliverable-card .shot-frame img {
    aspect-ratio: auto;
  }

  .summary-strip {
    margin-top: -28px;
  }

  .summary-grid {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .summary-item {
    display: flex;
    min-height: auto;
    align-items: center;
    gap: 14px;
    padding: 15px 18px;
    text-align: left;
  }

  .summary-item + .summary-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .summary-icon {
    margin: 0;
  }

  .feature-card-copy,
  .deliverable-copy {
    padding: 24px;
  }

  .statement-box,
  .workflow-signoff {
    padding: 26px;
  }

  .workflow-step {
    min-height: auto;
  }

  .validation-list li {
    grid-template-columns: 32px 1fr;
  }

  .issue-count {
    grid-column: 2;
    justify-self: start;
  }

  .footer-grid {
    gap: 34px;
  }

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

@media (max-width: 480px) {
  h1 {
    font-size: clamp(2.35rem, 12vw, 3.2rem);
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .hero-main-shot {
    padding: 5px;
    border-radius: 12px;
  }

  .hero-main-shot::before {
    top: 14px;
    left: 14px;
    padding: 5px 8px;
    font-size: 0.58rem;
  }

  .button-row .button {
    width: 100%;
  }

  .trial-copy {
    padding: 34px 24px;
  }

  .compatibility-panel {
    padding: 28px 24px;
  }
}

@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;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .button-row,
  .skip-link {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .legal-content {
    padding: 30px 0;
  }
}
