:root {
  --ink: #0b1220;
  --ink-soft: #243449;
  --muted: #66758a;
  --paper: #ffffff;
  --paper-soft: #f4f8fb;
  --panel: #101b2c;
  --panel-2: #142740;
  --panel-3: #1e314a;
  --line: #d8e3ec;
  --line-dark: rgba(255, 255, 255, .13);
  --blue: #1769e0;
  --blue-dark: #0d4fae;
  --cyan: #18bfd0;
  --green: #16a17f;
  --amber: #d9972b;
  --rose: #b64a3d;
  --container: 1180px;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(8, 20, 38, .18);
  --shadow-soft: 0 14px 38px rgba(8, 20, 38, .10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(24, 191, 208, .20), transparent 24rem),
    radial-gradient(circle at 88% 4%, rgba(23, 105, 224, .18), transparent 26rem),
    linear-gradient(135deg, rgba(23, 105, 224, .08), transparent 26rem),
    linear-gradient(215deg, rgba(217, 151, 43, .10), transparent 28rem),
    #f1f6fb;
  font-family: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Inter, ui-sans-serif, system-ui, Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(16, 27, 44, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 27, 44, .045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
}

body.menu-open,
body.cart-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(24, 191, 208, .46);
  outline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(246, 249, 252, .84);
  border-bottom: 1px solid rgba(16, 27, 44, .10);
  backdrop-filter: blur(18px) saturate(1.18);
}

.nav-bar {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
}

.brand img {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 12px 22px rgba(23, 105, 224, .22));
}

.brand span {
  display: grid;
  line-height: 1.08;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 700;
}

.brand strong,
.nav-menu a,
.nav-cart,
.btn,
h1,
h2,
h3,
.price-value {
  text-wrap: balance;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-menu a,
.nav-cart {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 0;
  border-radius: var(--radius);
  color: var(--ink-soft);
  background: transparent;
  font-size: .94rem;
  font-weight: 820;
}

.nav-menu a:hover,
.nav-cart:hover {
  color: var(--blue);
  background: rgba(23, 105, 224, .08);
}

.nav-cart span {
  min-width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  margin-left: 7px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--blue);
  font-size: .76rem;
}

.nav-menu .nav-cta {
  margin-left: 6px;
  color: var(--paper);
  background: var(--panel);
}

.nav-menu .nav-cta:hover {
  color: var(--paper);
  background: var(--blue);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

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

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--paper);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 16px 34px rgba(23, 105, 224, .26);
}

.btn-secondary {
  color: var(--ink);
  background: var(--paper);
  border-color: rgba(11, 18, 32, .14);
  box-shadow: 0 12px 26px rgba(8, 20, 38, .06);
}

.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, .72);
  border-color: rgba(11, 18, 32, .12);
}

.btn.is-disabled,
.btn[aria-disabled="true"] {
  pointer-events: none;
  opacity: .5;
  filter: grayscale(.35);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 64px;
  color: var(--paper);
  background:
    linear-gradient(128deg, #07111f 0%, #0b1d33 48%, #0f2f4f 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, rgba(24, 191, 208, .13) 34%, transparent 51%),
    linear-gradient(55deg, transparent 20%, rgba(217, 151, 43, .11) 46%, transparent 70%);
  opacity: .9;
}

.hero-technical-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 52px;
  align-items: center;
}

.eyebrow,
.kicker {
  margin: 0 0 14px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 900;
}

.hero h1 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(3.55rem, 8.4vw, 7.15rem);
  line-height: .86;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 670px;
  margin: 24px 0 0;
  color: #d6e3ef;
  font-size: clamp(1.12rem, 1.7vw, 1.34rem);
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-assurance span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: #e7f3ff;
  background: rgba(255, 255, 255, .075);
  font-size: .85rem;
  font-weight: 820;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin: 34px 0 0;
}

.hero-metrics div {
  min-height: 94px;
  padding: 14px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .075);
}

.hero-metrics dt {
  margin: 0;
  color: var(--paper);
  font-size: 1.44rem;
  line-height: 1;
  font-weight: 920;
}

.hero-metrics dd {
  margin: 8px 0 0;
  color: #b9c8d8;
  font-size: .9rem;
  font-weight: 700;
}

.hero-showcase {
  display: grid;
  gap: 12px;
}

.screen-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: #10151e;
  box-shadow: var(--shadow);
}

.window-bar {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 15px;
  color: #dbeafe;
  background: linear-gradient(90deg, #0c1728, #142a45);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  font-size: .86rem;
}

.window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ef6461;
}

.window-bar span:nth-child(2) {
  background: #e9b44c;
}

.window-bar span:nth-child(3) {
  background: #18bfd0;
}

.screen-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.6;
  object-fit: cover;
}

.screen-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 4px;
  max-width: 500px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(9, 21, 37, .86);
  color: var(--paper);
}

.screen-caption span {
  color: #c7d4e3;
  font-size: .9rem;
}

.showcase-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.showcase-rail span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
  color: #d8e6f2;
  font-size: .86rem;
  font-weight: 760;
  text-align: center;
}

.proof-strip {
  padding: 20px 0;
  background: #eaf1f7;
  border-bottom: 1px solid rgba(16, 27, 44, .08);
}

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

.proof-grid div,
.delivery-grid article,
.feature-board article,
.gallery-grid figure,
.feature-register-grid article,
.feature-register-note,
.workflow-steps article,
.audience-grid div,
.purchase-confidence-grid div,
.pricing-card,
.comparison,
.requirements-list article,
.request-form,
.request-highlight,
.faq-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-soft);
}

.proof-grid div {
  min-height: 108px;
  padding: 17px;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

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

.proof-grid span {
  margin-top: 7px;
  color: var(--muted);
  font-size: .92rem;
}

.impact-section {
  color: var(--paper);
  background:
    radial-gradient(circle at 78% 18%, rgba(24, 191, 208, .17), transparent 24rem),
    linear-gradient(135deg, #07111f, #10243f 62%, #091827);
}

.impact-grid {
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  gap: 36px;
  align-items: center;
}

.impact-copy h2 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(2.35rem, 4.7vw, 4.4rem);
  line-height: 1.01;
}

.impact-copy p {
  color: #cbd8e5;
  font-size: 1.08rem;
}

.impact-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.impact-points div {
  min-height: 142px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .075);
}

.impact-points strong,
.impact-points span {
  display: block;
}

.impact-points strong {
  color: var(--paper);
}

.impact-points span {
  margin-top: 8px;
  color: #c4d3e2;
  font-size: .93rem;
}

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

.impact-visuals figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: #111a24;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.impact-visuals img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
}

.impact-visuals figcaption {
  display: grid;
  gap: 4px;
  padding: 14px;
}

.impact-visuals figcaption strong {
  color: var(--paper);
}

.impact-visuals figcaption span {
  color: #c2d1df;
  font-size: .9rem;
}

.delivery-section {
  background: #f8fbfd;
}

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

.delivery-grid article {
  min-height: 230px;
  padding: 22px;
  box-shadow: none;
}

.delivery-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: var(--paper);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 900;
}

.delivery-grid h3,
.feature-register-grid h3,
.requirements-list h3 {
  margin: 16px 0 8px;
  color: var(--ink);
  font-size: 1.08rem;
}

.delivery-grid p,
.feature-register-grid p,
.requirements-list p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 92px 0;
}

.section-product,
.audience-section,
.request-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .52), rgba(234, 241, 247, .72));
}

.split,
.workflow-grid,
.request-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 38px;
  align-items: start;
}

.section-copy h2,
.section-head h2,
.request-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.25rem, 4.3vw, 4rem);
  line-height: 1.01;
  letter-spacing: 0;
}

.section-copy p,
.section-head p,
.request-copy p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
  max-width: 910px;
}

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

.check-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-weight: 720;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 10px;
  height: 10px;
  border: 3px solid var(--green);
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}

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

.feature-board article {
  min-height: 220px;
  padding: 22px;
}

.feature-board span {
  color: var(--cyan);
  font-weight: 920;
}

.feature-board h3,
.workflow-steps h3,
.security-list h3,
.faq-grid h3,
.pricing-card h3 {
  margin: 12px 0 8px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.22;
}

.feature-board p,
.workflow-steps p,
.security-list p,
.faq-grid p {
  margin: 0;
  color: var(--muted);
}

.workflow-section {
  color: var(--paper);
  background:
    linear-gradient(135deg, #0b1727, #132b45 58%, #0d1a2d);
}

.workflow-section .section-head h2,
.workflow-section .section-head p {
  color: var(--paper);
}

.workflow-section .section-head p {
  color: #c8d6e3;
}

.media-card {
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 520px;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)),
    #20262d;
  box-shadow: var(--shadow);
}

.media-card img {
  max-height: 520px;
  object-fit: contain;
}

.media-card figcaption {
  width: 100%;
  margin-top: 16px;
  color: #d9e5ef;
  font-size: .9rem;
  text-align: center;
}

.workflow-steps {
  display: grid;
  gap: 14px;
}

.workflow-steps article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border-color: rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .07);
  box-shadow: none;
}

.workflow-steps span {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--panel);
  background: var(--cyan);
  font-weight: 900;
}

.workflow-steps h3 {
  color: var(--paper);
}

.workflow-steps p {
  color: #c8d6e3;
}

.gallery-section {
  background:
    linear-gradient(180deg, rgba(248, 251, 253, .94), rgba(233, 241, 247, .92));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.gallery-grid figure {
  overflow: hidden;
  margin: 0;
  background: var(--paper);
}

.gallery-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  background: #101b2c;
}

.gallery-grid figure:nth-child(2) img {
  object-fit: contain;
  padding: 18px;
  background: #20262d;
}

.gallery-grid figcaption {
  display: grid;
  gap: 4px;
  padding: 16px;
}

.gallery-grid figcaption strong {
  color: var(--ink);
}

.gallery-grid figcaption span {
  color: var(--muted);
  font-size: .92rem;
}

.engineering-features-section {
  color: var(--paper);
  background:
    linear-gradient(135deg, #091523, #112a45 56%, #0f1c2f);
}

.feature-register {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.engineering-features-section .section-head {
  margin-bottom: 0;
}

.engineering-features-section .section-head h2,
.engineering-features-section .section-head p {
  color: var(--paper);
}

.engineering-features-section .section-head p {
  color: #c6d5e4;
}

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

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

.feature-scoreboard div {
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .075);
}

.feature-scoreboard strong,
.feature-scoreboard span {
  display: block;
}

.feature-scoreboard strong {
  color: var(--paper);
  font-size: 1.45rem;
  line-height: 1;
}

.feature-scoreboard span {
  margin-top: 8px;
  color: #c6d5e4;
  font-size: .93rem;
  font-weight: 760;
}

.feature-suite-grid {
  margin-top: 28px;
  grid-template-columns: repeat(3, 1fr);
}

.feature-register-grid article,
.feature-register-note {
  padding: 20px;
  border-color: rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .075);
  box-shadow: none;
}

.feature-register-grid article span {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  color: #062437;
  background: var(--cyan);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-register-grid h3 {
  color: var(--paper);
}

.feature-register-grid p {
  color: #c6d5e4;
}

.feature-register-grid ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.feature-register-grid li {
  position: relative;
  padding-left: 18px;
  color: #d3e0ec;
  font-size: .93rem;
  line-height: 1.45;
}

.feature-register-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}

.feature-register-note {
  display: grid;
  align-content: center;
  gap: 8px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(24, 191, 208, .18), rgba(217, 151, 43, .13));
}

.feature-register-note span {
  color: #d9e6f2;
}

.complete-features-section {
  background: #eef5fa;
}

.complete-features {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-soft);
}

.complete-features summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.complete-features summary span {
  display: grid;
  gap: 4px;
}

.complete-features summary small {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 760;
}

.complete-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0 22px 22px;
}

.complete-features-grid article {
  padding: 18px;
  border: 1px solid #dbe6ef;
  border-radius: var(--radius);
  background: #f8fbfd;
}

.complete-features-grid h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.02rem;
}

.complete-features-grid ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.complete-features-grid li {
  position: relative;
  padding-left: 17px;
  color: var(--ink-soft);
  font-size: .93rem;
}

.complete-features-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

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

.audience-grid div {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  color: var(--ink-soft);
  font-weight: 820;
}

.audience-grid span {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: var(--radius);
  color: var(--blue);
  background: #e7f3ff;
  font-size: .82rem;
  font-weight: 900;
}

.pricing-section {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 18% 14%, rgba(24, 191, 208, .16), transparent 24rem),
    radial-gradient(circle at 86% 16%, rgba(217, 151, 43, .10), transparent 24rem),
    linear-gradient(135deg, #07111f 0%, #101b2c 54%, #0b1727 100%);
}

.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 96%);
}

.pricing-section > .container {
  position: relative;
  z-index: 1;
}

.pricing-head {
  max-width: none;
  grid-template-columns: 1fr .75fr;
  align-items: end;
}

.pricing-head h2,
.pricing-head p {
  color: var(--paper);
}

.pricing-head p {
  margin: 0;
  color: #cbd8e5;
}

.pricing-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}

.pricing-tabs {
  display: inline-flex;
  gap: 5px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
}

.tab-button {
  min-width: 132px;
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  color: #d8e4ee;
  background: transparent;
  font-weight: 880;
}

.tab-button.is-active {
  color: var(--panel);
  background: var(--paper);
}

.pricing-pane {
  display: none;
}

.pricing-pane.is-active {
  display: block;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--amber));
}

.pricing-card.highlight {
  border-color: rgba(24, 191, 208, .52);
  background:
    linear-gradient(180deg, rgba(241, 252, 255, .98), rgba(255, 255, 255, .96));
  box-shadow: 0 26px 68px rgba(24, 191, 208, .18);
  padding-top: 32px;
}

.pricing-card .recommended {
  width: fit-content;
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 8px;
  border-radius: 999px;
  color: #063247;
  background: linear-gradient(135deg, #bff6ff, #fff2cf);
  font-size: .76rem;
  font-weight: 900;
}

.premium-ribbon {
  position: absolute;
  top: 17px;
  right: -38px;
  z-index: 3;
  width: 142px;
  padding: 6px 0;
  color: #052136;
  background: linear-gradient(135deg, #f7c85c, #b9f7ff);
  box-shadow: 0 9px 22px rgba(8, 20, 38, .18);
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .09em;
  text-align: center;
  transform: rotate(38deg);
  pointer-events: none;
}

.plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.pricing-card.highlight .plan-top {
  padding-right: 50px;
}

.plan-code {
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 950;
}

.plan-duration {
  padding: 6px 8px;
  border: 1px solid #cfe4de;
  border-radius: 999px;
  color: var(--green);
  background: #effbf7;
  font-size: .78rem;
  font-weight: 880;
}

.plan-category {
  margin: 0 0 8px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .075em;
  font-size: .77rem;
  font-weight: 900;
}

.price-value {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.55rem, 4vw, 3.25rem);
  line-height: 1;
  font-weight: 950;
}

.price-note {
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: .93rem;
  font-weight: 700;
}

.price-benefit {
  min-height: 64px;
  margin: -6px 0 18px;
  color: var(--ink-soft);
  font-size: .94rem;
  font-weight: 760;
}

.pricing-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: auto 0 18px;
}

.pricing-meta div {
  padding: 12px;
  border: 1px solid #e5edf3;
  border-radius: var(--radius);
  background: #f6f9fc;
  color: var(--muted);
  font-size: .84rem;
}

.pricing-meta strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.plan-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 0;
}

.comparison {
  margin-top: 28px;
  overflow: hidden;
}

.comparison summary {
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.table-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--line);
}

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

th,
td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #e8eef4;
}

th {
  color: var(--paper);
  background: var(--panel);
  font-size: .82rem;
}

td {
  color: var(--ink-soft);
  font-weight: 700;
}

td:nth-child(2),
td:nth-child(5) {
  color: var(--blue);
  font-weight: 900;
}

.table-action {
  min-height: 36px;
  padding: 8px 10px;
  font-size: .82rem;
}

.purchase-confidence {
  padding: 24px 0;
  background: #eaf1f7;
  border-top: 1px solid rgba(16, 27, 44, .08);
  border-bottom: 1px solid rgba(16, 27, 44, .08);
}

.purchase-confidence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.purchase-confidence-grid div {
  min-height: 112px;
  padding: 18px;
  box-shadow: none;
}

.purchase-confidence-grid strong,
.purchase-confidence-grid span {
  display: block;
}

.purchase-confidence-grid strong {
  color: var(--ink);
}

.purchase-confidence-grid span {
  margin-top: 7px;
  color: var(--muted);
  font-size: .92rem;
}

.security-section {
  color: var(--paper);
  background:
    linear-gradient(135deg, #07111f, #0e243e 60%, #10243f);
}

.security-section .section-copy h2,
.security-section .section-copy p {
  color: var(--paper);
}

.security-section .section-copy p {
  color: #cbd8e5;
}

.security-list article {
  padding: 20px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
  box-shadow: none;
}

.security-list h3 {
  color: var(--paper);
}

.security-list p {
  color: #cbd8e5;
}

.requirements-section {
  background: #f8fbfd;
}

.requirements-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 38px;
  align-items: start;
}

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

.requirements-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  box-shadow: none;
}

.requirements-list article > span {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--blue);
  background: #e7f3ff;
  font-size: .82rem;
  font-weight: 950;
}

.requirements-list h3 {
  margin-top: 0;
}

.request-grid {
  grid-template-columns: .8fr 1.2fr;
}

.request-highlight {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding: 18px;
  border-color: #bfd7ea;
  background: #f0f7fb;
  box-shadow: none;
}

.request-highlight strong {
  color: var(--ink);
}

.request-form {
  padding: 24px;
}

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

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

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 820;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #c9d7e4;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(23, 105, 224, .11);
}

.confirm-line {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  margin: 18px 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.confirm-line input {
  width: auto;
  min-height: auto;
  margin-top: 5px;
}

.faq-section {
  background: #f6f9fc;
}

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

.faq-grid article {
  min-height: 178px;
  padding: 20px;
  box-shadow: none;
}

.cart-floating {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 22px;
  color: var(--paper);
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, .32), transparent 32%),
    linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 24px 62px rgba(23, 105, 224, .34), inset 0 1px 0 rgba(255, 255, 255, .22);
  font-weight: 900;
}

.cart-icon {
  width: 30px;
  height: 30px;
  display: block;
}

.cart-floating span {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 26px;
  height: 26px;
  padding: 0 7px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--ink);
  background: #f8c75c;
  box-shadow: 0 8px 22px rgba(8, 20, 38, .18);
  font-size: .82rem;
}

.cart-floating.is-pulsing span,
.nav-cart.is-pulsing span {
  animation: cart-badge-pulse 520ms ease;
}

@keyframes cart-badge-pulse {
  0% { transform: scale(1); }
  45% { transform: scale(1.24); }
  100% { transform: scale(1); }
}

.cart-toast {
  position: fixed;
  right: 20px;
  bottom: 104px;
  z-index: 10001;
  max-width: min(340px, calc(100vw - 40px));
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  color: var(--paper);
  background: rgba(10, 25, 43, .94);
  box-shadow: 0 18px 42px rgba(8, 20, 38, .28);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  font-weight: 820;
}

.cart-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10000;
  width: min(100%, 460px);
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f8fbfd;
  border-left: 1px solid var(--line);
  box-shadow: -28px 0 82px rgba(8, 20, 38, .26);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

.cart-panel.is-open {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--panel), var(--panel-2));
}

.cart-head h2 {
  margin: 0;
  font-size: 1.55rem;
}

.icon-button,
.modal-close {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  color: var(--paper);
  background: rgba(255, 255, 255, .10);
  font-weight: 820;
}

.cart-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  overflow-y: auto;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.cart-empty {
  padding: 18px;
  border: 1px dashed #b8c9d8;
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--paper);
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.cart-item strong,
.cart-item span {
  display: block;
}

.cart-item strong {
  color: var(--ink);
}

.cart-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: .9rem;
}

.remove-cart {
  align-self: start;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid #e7c7c1;
  border-radius: var(--radius);
  color: var(--rose);
  background: #fff7f5;
  font-weight: 800;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.cart-total span {
  color: var(--muted);
  font-weight: 760;
}

.cart-total strong {
  color: var(--ink);
  font-size: 1.35rem;
}

.cart-actions {
  display: grid;
  gap: 10px;
}

.modal {
  width: min(92vw, 740px);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .34);
}

.modal::backdrop {
  background: rgba(8, 17, 31, .68);
}

.modal-box {
  position: relative;
  padding: 26px;
  background:
    linear-gradient(180deg, #ffffff, #f7fbfd);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--ink);
  border-color: var(--line);
  background: var(--paper-soft);
}

.modal h2 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 2rem;
}

.checkout-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.checkout-summary div {
  padding: 12px;
  border: 1px solid #e5edf3;
  border-radius: var(--radius);
  background: #f6f9fc;
}

.checkout-summary span {
  display: block;
  color: var(--muted);
  font-size: .8rem;
}

.checkout-summary strong {
  color: var(--ink);
}

.modal-status,
.security-note {
  color: var(--muted);
  font-size: .94rem;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.site-footer {
  padding: 58px 0 24px;
  color: #d6e1eb;
  background: #07111f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 28px;
}

.footer-brand img {
  width: 36px;
  height: 36px;
}

.site-footer p,
.site-footer a {
  color: #aebccc;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: var(--paper);
  font-size: .98rem;
}

.site-footer a {
  display: block;
  margin: 7px 0;
}

.site-footer a:hover {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #93a4b8;
  font-size: .9rem;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split,
  .workflow-grid,
  .impact-grid,
  .request-grid,
  .feature-register,
  .requirements-grid,
  .pricing-head {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .delivery-grid,
  .purchase-confidence-grid,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid,
  .gallery-grid,
  .feature-suite-grid,
  .complete-features-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .nav-bar {
    min-height: 66px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 66px 14px auto 14px;
    display: none;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: grid;
  }

  .nav-menu a,
  .nav-cart {
    justify-content: flex-start;
    padding: 13px 12px;
  }

  .nav-menu .nav-cta {
    margin-left: 0;
    justify-content: center;
  }

  .hero {
    padding: 48px 0 38px;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 16.5vw, 4.65rem);
  }

  .hero-actions,
  .modal-actions {
    display: grid;
  }

  .hero-metrics,
  .showcase-rail,
  .impact-points,
  .impact-visuals,
  .delivery-grid,
  .feature-board,
  .gallery-grid,
  .feature-register-grid,
  .feature-scoreboard,
  .complete-features-grid,
  .security-list,
  .purchase-confidence-grid,
  .pricing-grid,
  .faq-grid,
  .form-grid,
  .checkout-summary,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .section-copy h2,
  .section-head h2,
  .request-copy h2 {
    font-size: clamp(2.05rem, 10vw, 2.9rem);
  }

  .pricing-toolbar {
    display: grid;
  }

  .pricing-tabs {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .tab-button {
    width: 100%;
  }

  .plan-actions {
    grid-template-columns: 1fr;
  }

  .media-card {
    min-height: 360px;
  }

  .cart-floating {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .cart-icon {
    width: 25px;
    height: 25px;
  }

  .cart-floating span {
    min-width: 22px;
    height: 22px;
    font-size: .76rem;
  }

  .cart-toast {
    right: 14px;
    bottom: 82px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 420px) {
  .brand small {
    display: none;
  }

  .screen-caption {
    position: static;
    border-radius: 0;
    border-inline: 0;
    border-bottom: 0;
  }

  .screen-frame img {
    aspect-ratio: 4 / 3;
  }

  .cart-panel {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
