:root {
  --page: #dbdbdb;
  --surface: #f7f7f5;
  --white: #fff;
  --ink: #333333;
  --muted: #6a6a67;
  --line: #bdbdb8;
  --teal: #0b8e98;
  --teal-dark: #086a72;
  --teal-soft: #d7eff0;
  --gold: #b27508;
  --gold-soft: #f3e4c3;
  --success: #1a7d63;
  --shadow: 0 24px 70px rgba(51, 51, 51, 0.12);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--page);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  background: var(--page);
  color: var(--ink);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(
      circle at 14% 3%,
      rgba(11, 142, 152, 0.15),
      transparent 27rem
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(178, 117, 8, 0.12),
      transparent 25rem
    );
}
a {
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
}
.top-line {
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}
.site-header {
  width: min(1440px, calc(100% - 40px));
  margin: 14px auto 0;
  min-height: 74px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: sticky;
  top: 12px;
  z-index: 50;
  border: 1px solid rgba(51, 51, 51, 0.16);
  border-radius: 22px;
  background: rgba(247, 247, 245, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 35px rgba(51, 51, 51, 0.08);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
}
.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex: 0 0 auto;
}
.brand strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}
.site-header nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}
.site-header nav a,
.nav-cta {
  border: 0;
  background: transparent;
  color: #50504d;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}
.site-header nav a:hover {
  background: rgba(11, 142, 152, 0.09);
  color: var(--teal-dark);
}
.site-header .nav-cta {
  background: var(--ink);
  color: white;
  padding-inline: 18px;
}
.site-header .nav-cta:hover {
  background: var(--teal-dark);
}
.mobile-menu-toggle {
  display: none;
  min-width: 78px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(51, 51, 51, 0.2);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}
.mobile-menu-toggle::before {
  content: "";
  width: 16px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  box-shadow:
    inset 0 4px 0 transparent,
    inset 0 6px 0 currentColor;
}
.mobile-menu-toggle[aria-expanded="true"]::before {
  width: 15px;
  height: 15px;
  border: 0;
  background:
    linear-gradient(
      45deg,
      transparent 44%,
      currentColor 45% 55%,
      transparent 56%
    ),
    linear-gradient(
      -45deg,
      transparent 44%,
      currentColor 45% 55%,
      transparent 56%
    );
  box-shadow: none;
}
main {
  overflow: clip;
}
.hero {
  width: min(1440px, calc(100% - 40px));
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: 54px;
  align-items: center;
  padding: 60px 0 70px;
}
.hero-copy h1,
.section-heading h2,
.album-copy h2,
.workflow-copy h2,
.trial-section h2,
.license-section h2,
.seo-content-section h2,
.faq-section h2 {
  margin: 0;
  letter-spacing: -0.055em;
  line-height: 0.98;
  color: var(--ink);
}
.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(50px, 6vw, 92px);
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.19em;
}
.hero-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: #555552;
  font-size: 19px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 19px;
  border: 1px solid var(--ink);
  border-radius: 14px;
  text-decoration: none;
  font-weight: 850;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(51, 51, 51, 0.14);
}
.button-primary {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
}
.button-secondary {
  background: var(--white);
  color: var(--ink);
}
.platform-icon {
  font-size: 20px;
}
.release-note {
  margin: 20px 0 0;
  padding: 15px 17px;
  border: 1px solid rgba(178, 117, 8, 0.27);
  background: rgba(243, 228, 195, 0.55);
  border-radius: 14px;
  display: grid;
  gap: 5px;
}
.release-note strong {
  font-size: 13px;
  color: #76520c;
}
.release-note span,
.microcopy {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.microcopy {
  margin: 11px 0 0;
}
.trust-row,
.album-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.trust-row span,
.album-feature-pills span {
  padding: 8px 11px;
  border: 1px solid rgba(51, 51, 51, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: #555552;
  font-size: 11px;
  font-weight: 800;
}
.product-stage {
  position: relative;
}
.window {
  overflow: hidden;
  border: 1px solid #8e8e8a;
  border-radius: 26px;
  background: #efefed;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}
.window-bar {
  height: 48px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #3a3a38;
  color: #e8e8e5;
}
.window-bar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #979792;
}
.window-bar i:first-child {
  background: var(--teal);
}
.window-bar i:nth-child(2) {
  background: #d79a2b;
}
.window-bar span {
  margin-left: 8px;
  font-size: 12px;
  font-weight: 800;
}
.window-body {
  min-height: 430px;
  display: grid;
  grid-template-columns: 150px 1fr 170px;
  gap: 11px;
  padding: 12px;
}
.window-body aside,
.sheet {
  padding: 14px;
  border: 1px solid #c8c8c3;
  border-radius: 16px;
  background: #fafaf8;
}
.window-body aside {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 10px;
}
.window-body aside b {
  margin-bottom: 5px;
}
.window-body aside span {
  padding: 8px;
  border-radius: 8px;
  color: #6f6f6a;
}
.window-body aside .selected {
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-weight: 800;
}
.window-body aside hr {
  width: 100%;
  border: 0;
  border-top: 1px solid #d4d4d0;
}
.toggle-row {
  display: flex;
  justify-content: space-between;
}
.toggle-row em {
  color: var(--teal);
}
.portrait {
  min-height: 405px;
  position: relative;
  overflow: hidden;
  border: 1px solid #c8c8c3;
  border-radius: 18px;
  background: linear-gradient(#eaf2f2, #fdfdfc);
}
.head {
  position: absolute;
  width: 120px;
  height: 150px;
  left: 50%;
  top: 66px;
  transform: translateX(-50%);
  border-radius: 48%;
  background: linear-gradient(135deg, #9d765f, #d9b39d);
  box-shadow: inset 0 18px 0 #52423b;
}
.body-shape {
  position: absolute;
  width: 275px;
  height: 235px;
  left: 50%;
  bottom: -92px;
  transform: translateX(-50%);
  border-radius: 50% 50% 0 0;
  background: #424c50;
}
.guide {
  position: absolute;
  left: 12%;
  right: 12%;
  border-top: 1px dashed var(--teal);
}
.guide-eye {
  top: 44%;
}
.guide-chin {
  top: 66%;
}
.sheet {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 10px;
}
.sheet-paper {
  flex: 1;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  background: white;
  border: 1px solid #d1d1cd;
}
.sheet-paper i {
  background: linear-gradient(#e4eeed 50%, #5c6669 50%);
  border: 1px solid #b9b9b4;
}
.status {
  padding: 8px;
  border-radius: 8px;
  color: var(--success);
  background: #dff2eb;
}
.stage-note {
  position: absolute;
  right: 22px;
  bottom: -30px;
  width: 280px;
  padding: 16px;
  display: grid;
  gap: 3px;
  border-radius: 15px;
  color: white;
  background: var(--ink);
  box-shadow: var(--shadow);
}
.stage-note span {
  color: #c9c9c5;
  font-size: 11px;
}
.proof-strip {
  width: min(1440px, calc(100% - 40px));
  margin: 5px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.42);
}
.proof-strip div {
  min-height: 110px;
  padding: 24px;
  display: grid;
  align-content: center;
  border-right: 1px solid var(--line);
}
.proof-strip div:last-child {
  border: 0;
}
.proof-strip strong {
  font-size: 22px;
}
.proof-strip span {
  color: var(--muted);
  font-size: 12px;
}
.album-showcase,
.section,
.workflow-section,
.trial-section,
.install-guide-section,
.license-section,
.seo-content-section,
.faq-section {
  width: min(1440px, calc(100% - 40px));
  margin: 110px auto 0;
}
.album-showcase {
  padding: 56px;
  border: 1px solid #aaa9a5;
  border-radius: 34px;
  background: #343432;
  color: #f4f4f1;
  box-shadow: var(--shadow);
}
.album-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: 42px;
  align-items: end;
}
.album-copy .eyebrow {
  grid-column: 1/-1;
  margin-bottom: -20px;
  color: #65d1d5;
}
.album-copy h2 {
  color: white;
  font-size: clamp(42px, 5vw, 74px);
}
.album-copy > p {
  margin: 0;
  color: #cececa;
  font-size: 17px;
  line-height: 1.7;
}
.album-feature-pills {
  grid-column: 1/-1;
  margin-top: 0;
}
.album-feature-pills span {
  color: #f1f1ee;
  border-color: #5e5e59;
  background: #434340;
}
.album-ui {
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid #666660;
  border-radius: 22px;
  background: #ededeb;
  color: var(--ink);
}
.album-toolbar {
  min-height: 52px;
  padding: 10px 14px;
  display: flex;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid #c8c8c3;
}
.album-toolbar span {
  padding: 8px 11px;
  border: 1px solid #c2c2bd;
  border-radius: 9px;
  background: white;
  font-size: 11px;
  font-weight: 800;
}
.album-toolbar .album-ready {
  margin-left: auto;
  color: var(--success);
  background: #dff2eb;
}
.album-layout {
  min-height: 480px;
  padding: 14px;
  display: grid;
  grid-template-columns: 136px 1fr 170px;
  gap: 12px;
}
.album-layout aside {
  padding: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  align-content: start;
  border: 1px solid #c6c6c1;
  border-radius: 13px;
  background: #f7f7f5;
}
.album-layout aside i {
  aspect-ratio: 0.78;
  border-radius: 7px;
  background: linear-gradient(145deg, #9aa9a4, #ddd0bd);
}
.album-canvas {
  min-height: 450px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: white;
  box-shadow: inset 0 0 0 1px #c9c9c4;
}
.album-canvas::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px dashed #49bca8;
}
.album-gutter {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  border-left: 1px dashed var(--teal);
}
.album-photo {
  position: absolute;
  background: linear-gradient(135deg, #715f51, #d5a790 48%, #47575a);
  box-shadow: 0 4px 16px rgba(51, 51, 51, 0.18);
}
.album-photo-main {
  inset: 42px 51% 42px 42px;
}
.album-photo-small {
  left: 55%;
  right: 42px;
  top: 72px;
  height: 42%;
  background: linear-gradient(135deg, #323b3f, #b79474);
}
.album-tools {
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-content: start;
  border: 1px solid #c6c6c1;
  border-radius: 13px;
  background: #f7f7f5;
}
.album-tools b {
  flex: 1 0 45%;
  padding: 8px 5px;
  border-radius: 8px;
  text-align: center;
  background: #e2e2de;
  font-size: 10px;
}
.album-tools b:first-child {
  background: var(--teal);
  color: white;
}
.album-sliders {
  width: 100%;
  margin-top: 10px;
  display: grid;
  gap: 16px;
}
.album-sliders i {
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--teal) 55%, #c5c5c0 55%);
}
.album-capabilities {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.album-capabilities article {
  padding: 18px;
  border: 1px solid #5d5d59;
  border-radius: 15px;
  background: #3e3e3b;
}
.album-capabilities b {
  color: white;
}
.album-capabilities p {
  margin: 8px 0 0;
  color: #c9c9c5;
  font-size: 12px;
  line-height: 1.55;
}
.technology-band {
  width: min(1440px, calc(100% - 40px));
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.technology-band article {
  padding: 24px;
  display: flex;
  gap: 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
}
.technology-band span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}
.technology-band h3 {
  margin: 0;
  font-size: 16px;
}
.technology-band p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.section-heading {
  max-width: 850px;
}
.section-heading h2,
.workflow-copy h2,
.trial-section h2,
.license-section h2,
.seo-content-section h2,
.faq-section h2 {
  font-size: clamp(40px, 4.7vw, 68px);
}
.section-heading > p:last-child {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.7;
}
.feature-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.feature-grid article,
.download-cards article,
.install-guide-grid article,
.seo-copy-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
}
.feature-number {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
}
.feature-grid h3 {
  margin: 34px 0 8px;
  font-size: 17px;
}
.feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.workflow-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}
.workflow-copy ol {
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}
.workflow-copy li {
  padding: 18px;
  display: flex;
  gap: 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.48);
}
.workflow-copy li > span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-weight: 900;
}
.workflow-copy li p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.privacy-card {
  padding: 44px;
  border-radius: 28px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
}
.shield {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--teal);
  font-weight: 950;
  font-size: 24px;
}
.privacy-card h3 {
  font-size: 30px;
  margin: 24px 0 10px;
}
.privacy-card p,
.privacy-card li {
  color: #d0d0cc;
  line-height: 1.65;
}
.privacy-card ul {
  padding-left: 20px;
}
.trial-section,
.license-section {
  padding: 50px;
  border: 1px solid #a8a8a3;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.5);
}
.trial-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: center;
}
.trial-section > div > p:last-child,
.license-section > div > p {
  color: var(--muted);
  line-height: 1.7;
}
.download-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.os-badge {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 99px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  font-size: 10px;
  font-weight: 900;
}
.download-cards h3 {
  margin: 22px 0 4px;
}
.download-cards p {
  color: var(--muted);
  font-size: 12px;
}
.download-cards a {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}
.install-guide-grid,
.seo-copy-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.upgrade-callout {
  margin-top: 28px;
  padding: 20px;
  display: flex;
  gap: 15px;
  border-radius: 16px;
  background: var(--gold-soft);
  border: 1px solid #d4b875;
}
.upgrade-callout-icon {
  font-size: 27px;
  color: var(--gold);
}
.upgrade-callout p,
.install-guide-grid p,
.install-source-note,
.seo-copy-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.install-guide-grid ol {
  padding-left: 18px;
  color: #555552;
  line-height: 1.7;
}
.install-source-note {
  padding: 16px;
  border-left: 3px solid var(--teal);
}
.license-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 45px;
}
.license-section ul {
  padding-left: 20px;
  color: #565653;
  line-height: 1.75;
}
.license-request-card {
  padding: 30px;
  border-radius: 22px;
  background: var(--ink);
  color: white;
}
.license-label {
  color: #65d1d5;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.license-request-card h3 {
  font-size: 32px;
  margin: 20px 0 8px;
}
.license-request-card > p {
  color: #cececa;
  line-height: 1.65;
}
.text-link {
  display: inline-block;
  margin-top: 16px;
  color: #82dde0;
}
.seo-copy-grid {
  grid-template-columns: repeat(3, 1fr);
}
.seo-copy-grid h3 {
  margin-top: 0;
}
.faq-list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: start;
}
.faq-list details {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.55);
}
.faq-list summary {
  cursor: pointer;
  font-weight: 850;
}
.faq-list p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
footer {
  width: min(1440px, calc(100% - 40px));
  margin: 100px auto 30px;
  padding: 34px 32px 24px;
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(220px, 0.75fr) minmax(
      520px,
      2fr
    );
  gap: 30px 44px;
  align-items: start;
  border-top: 1px solid #aaa9a5;
}
.footer-brand {
  align-self: start;
}
.footer-brand .brand-logo {
  width: 44px;
  height: 44px;
}
footer > p {
  max-width: 280px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(145px, 1fr));
  gap: 10px 12px;
  align-content: start;
}
.footer-links a {
  min-height: 42px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  color: #484845;
  font-size: 12px;
  font-weight: 720;
  line-height: 1.35;
  text-decoration: none;
  border: 1px solid rgba(51, 51, 51, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.45);
  transition:
    color 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease;
}
.footer-links a:hover,
.footer-links a:focus-visible {
  color: #075e66;
  border-color: rgba(11, 142, 152, 0.38);
  background: rgba(255, 255, 255, 0.82);
  transform: translateY(-1px);
}
footer > small {
  grid-column: 1 / -1;
  padding-top: 20px;
  color: #666662;
  font-size: 12px;
  line-height: 1.5;
  border-top: 1px solid rgba(51, 51, 51, 0.12);
}
.legal-page {
  width: min(1120px, calc(100% - 40px));
  margin: 72px auto 0;
}
.legal-hero {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(51, 51, 51, 0.18);
  border-radius: 32px;
  background:
    radial-gradient(
      circle at 90% 0,
      rgba(11, 142, 152, 0.15),
      transparent 28rem
    ),
    rgba(247, 247, 245, 0.86);
  box-shadow: var(--shadow);
}
.legal-hero h1 {
  max-width: 900px;
  margin: 10px 0 16px;
  font-size: clamp(34px, 5.5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.legal-lead {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.legal-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.legal-meta span,
.legal-status {
  padding: 7px 10px;
  border: 1px solid rgba(51, 51, 51, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #555552;
  font-size: 11px;
  font-weight: 800;
}
.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  margin-top: 28px;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 112px;
  padding: 18px;
  border: 1px solid rgba(51, 51, 51, 0.18);
  border-radius: 20px;
  background: rgba(247, 247, 245, 0.88);
}
.legal-toc strong {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
}
.legal-toc a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  text-decoration: none;
}
.legal-toc a:hover,
.legal-toc a:focus-visible {
  background: var(--teal-soft);
  color: var(--teal-dark);
}
.legal-content {
  min-width: 0;
}
.legal-content section,
.legal-card {
  margin: 0 0 14px;
  padding: clamp(22px, 4vw, 36px);
  scroll-margin-top: 120px;
  border: 1px solid rgba(51, 51, 51, 0.18);
  border-radius: 24px;
  background: rgba(247, 247, 245, 0.84);
}
.legal-content h2,
.legal-card h2 {
  margin: 0 0 12px;
  font-size: clamp(21px, 3vw, 30px);
  letter-spacing: -0.035em;
}
.legal-content h3 {
  margin: 24px 0 8px;
  font-size: 16px;
}
.legal-content p,
.legal-content li,
.legal-card p {
  color: #5e5e5a;
  font-size: 14px;
  line-height: 1.78;
}
.legal-content ul,
.legal-content ol {
  padding-left: 22px;
}
.legal-content a,
.legal-card a {
  color: var(--teal-dark);
  font-weight: 750;
}
.legal-note,
.legal-warning,
.legal-success {
  margin-top: 18px;
  padding: 15px 17px;
  border-radius: 15px;
  font-size: 13px;
  line-height: 1.65;
}
.legal-note {
  border: 1px solid rgba(11, 142, 152, 0.3);
  background: var(--teal-soft);
  color: var(--teal-dark);
}
.legal-warning {
  border: 1px solid rgba(178, 117, 8, 0.32);
  background: var(--gold-soft);
  color: #724b05;
}
.legal-success {
  border: 1px solid rgba(26, 125, 99, 0.28);
  background: #ddf1e9;
  color: #135d4a;
}
.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.legal-grid .legal-card {
  margin: 0;
}
.legal-card .button {
  margin-top: 8px;
}
.legal-table-wrap {
  overflow-x: auto;
  margin-top: 16px;
  border: 1px solid rgba(51, 51, 51, 0.16);
  border-radius: 15px;
}
.legal-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.58);
}
.legal-table th,
.legal-table td {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.12);
  text-align: left;
  vertical-align: top;
  font-size: 12px;
  line-height: 1.55;
}
.legal-table th {
  color: #4f4f4c;
  background: rgba(219, 219, 219, 0.6);
}
.legal-table tr:last-child td {
  border-bottom: 0;
}
.legal-contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.legal-contact a,
.legal-contact div {
  padding: 14px;
  border: 1px solid rgba(51, 51, 51, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  overflow-wrap: anywhere;
}
.legal-contact small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
}
.legal-contact strong {
  font-size: 12px;
}
.contact-page {
  width: min(1240px, calc(100% - 40px));
  margin: 58px auto 0;
}
.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: end;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(51, 51, 51, 0.18);
  border-radius: 30px;
  background: rgba(247, 247, 245, 0.76);
  box-shadow: var(--shadow);
}
.contact-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.contact-hero > div > p:last-child,
.contact-card-heading p,
.contact-side-lead {
  color: var(--muted);
  line-height: 1.7;
}
.contact-availability {
  min-width: 245px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  border: 1px solid rgba(26, 125, 99, 0.24);
  border-radius: 16px;
  background: #ddf1e9;
}
.availability-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(26, 125, 99, 0.12);
}
.contact-availability strong,
.contact-availability small {
  display: block;
}
.contact-availability small {
  margin-top: 3px;
  color: #4c6a61;
  font-size: 10px;
}
.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
  margin-top: 18px;
}
.contact-form-card,
.contact-side {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(51, 51, 51, 0.18);
  border-radius: 26px;
  background: rgba(247, 247, 245, 0.82);
}
.contact-card-heading {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-card-heading h2,
.contact-side h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.04em;
}
.contact-card-heading p {
  margin: 7px 0 0;
  font-size: 13px;
}
.contact-step {
  min-width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--teal);
  color: white;
  font-size: 11px;
  font-weight: 900;
}
.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.contact-form label > span {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.contact-form label em {
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  min-height: 48px;
  border-radius: 13px;
  outline: none;
}
.contact-form textarea {
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(11, 142, 152, 0.12);
}
.contact-form-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 4px;
}
.contact-form-footer p {
  max-width: 410px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}
.contact-form-footer a {
  color: var(--teal-dark);
  font-weight: 800;
}
.contact-submit {
  flex: 0 0 auto;
}
.contact-side {
  color: white;
  background: var(--ink);
}
.contact-side .eyebrow {
  color: #72e0e4;
}
.contact-side-lead {
  color: #cececa;
  font-size: 13px;
}
.contact-methods {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}
.contact-methods a {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border: 1px solid #5c5c58;
  border-radius: 14px;
  text-decoration: none;
  background: #3e3e3b;
}
.contact-methods a > span:first-child {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  color: white;
  background: var(--teal);
}
.contact-methods small,
.contact-methods strong {
  display: block;
}
.contact-methods small {
  color: #aaa9a5;
  font-size: 9px;
  letter-spacing: 0.1em;
}
.contact-methods strong {
  margin-top: 2px;
  font-size: 12px;
  overflow-wrap: anywhere;
}
.contact-address {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #5c5c58;
}
.contact-address small {
  color: #72e0e4;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.contact-address p,
.contact-address a {
  color: #cececa;
  font-size: 12px;
  line-height: 1.6;
}
.contact-address a {
  color: #82dde0;
}
.real-app-shot {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(51, 51, 51, 0.3);
  border-radius: 24px;
  background: #ececea;
  box-shadow: 0 28px 80px rgba(51, 51, 51, 0.2);
}
.real-app-shot img {
  width: 100%;
  height: auto;
  display: block;
}
.real-app-shot figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  pointer-events: none;
}
.real-app-shot figcaption span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(51, 51, 51, 0.86);
  color: white;
  font-size: 10px;
  font-weight: 850;
  backdrop-filter: blur(12px);
}
.real-app-shot figcaption b {
  color: #72e0e4;
  margin-right: 4px;
}
.hero-app-shot {
  transform: rotate(0.6deg);
}
.module-showcase,
.production-modules,
.package-section {
  width: min(1440px, calc(100% - 40px));
  margin: 110px auto 0;
}
.module-showcase,
.production-module {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 42px;
  align-items: center;
}
.module-showcase {
  padding: 46px;
  border: 1px solid rgba(51, 51, 51, 0.18);
  border-radius: 32px;
  background: rgba(247, 247, 245, 0.72);
}
.module-copy h2,
.package-section .section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 4.6vw, 66px);
  letter-spacing: -0.05em;
  line-height: 1;
}
.module-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}
.sales-points {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}
.sales-points li {
  position: relative;
  padding-left: 25px;
  color: #51514e;
  font-size: 13px;
  font-weight: 750;
}
.sales-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 950;
}
.album-real-shot {
  margin-top: 34px;
  border-color: #666660;
}
.production-modules {
  display: grid;
  gap: 90px;
}
.production-module {
  padding: 42px;
  border: 1px solid rgba(51, 51, 51, 0.16);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.45);
}
.production-module-reverse .module-copy {
  order: 2;
}
.production-module-reverse .real-app-shot {
  order: 1;
}
.package-section {
  scroll-margin-top: 110px;
}
.package-section .section-heading > p:last-child {
  max-width: 850px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}
.package-summary {
  margin-top: 28px;
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  border: 1px solid rgba(51, 51, 51, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.5);
}
.package-summary span {
  min-height: 54px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 12px;
  color: #5a5a56;
  background: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  text-align: center;
}
.package-summary b {
  color: var(--teal-dark);
  font-size: 14px;
}
.package-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.package-grid article {
  min-height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(51, 51, 51, 0.2);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
}
.package-grid article.package-card-selected,
.full-package-card.package-card-selected {
  border-color: var(--teal);
  box-shadow:
    0 0 0 3px rgba(8, 127, 140, 0.2),
    var(--shadow);
}
.package-grid .package-featured {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.package-card-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}
.package-kicker {
  color: var(--teal-dark);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.14em;
}
.package-featured .package-kicker {
  color: #72e0e4;
}
.package-grid h3 {
  margin: 15px 0 8px;
  font-size: 27px;
  letter-spacing: -0.04em;
}
.package-grid p,
.package-grid li {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.package-featured p,
.package-featured li {
  color: #cececa;
}
.package-grid ul {
  padding-left: 19px;
  flex: 1;
}
.package-price,
.full-package-price {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}
.package-price span,
.full-package-price span {
  padding: 12px;
  display: grid;
  gap: 3px;
  border: 1px solid rgba(51, 51, 51, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
}
.package-price small,
.full-package-price small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.package-price strong,
.full-package-price strong {
  color: var(--ink);
  font-size: 21px;
  letter-spacing: -0.04em;
}
.package-featured .package-price span {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.09);
}
.package-featured .package-price small {
  color: #bfc6c4;
}
.package-featured .package-price strong {
  color: white;
}
.package-grid .package-saving {
  margin: 8px 0 0;
  color: #72e0e4;
  font-size: 10px;
  font-weight: 850;
  text-align: center;
}
.package-grid a {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--teal);
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
}
.package-grid a.package-choice-selected,
.full-package-card a.package-choice-selected {
  background: var(--ink);
  box-shadow: 0 0 0 3px rgba(8, 127, 140, 0.18);
}
.package-grid a.package-choice-selected::before,
.full-package-card a.package-choice-selected::before {
  content: "✓ ";
}
.bundle-pricing {
  margin-top: 42px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(51, 51, 51, 0.2);
  border-radius: 26px;
  background: rgba(247, 247, 245, 0.74);
}
.bundle-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: end;
}
.bundle-heading h3 {
  margin: 7px 0 0;
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.045em;
}
.bundle-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.bundle-group {
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid rgba(51, 51, 51, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.66);
}
.bundle-group:first-of-type {
  margin-top: 28px;
}
.bundle-group summary {
  padding: 17px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  list-style: none;
  font-weight: 900;
}
.bundle-group summary::-webkit-details-marker {
  display: none;
}
.bundle-group summary::after {
  content: "+";
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: var(--teal);
  font-size: 17px;
}
.bundle-group[open] summary::after {
  content: "−";
}
.bundle-group summary small {
  margin-left: auto;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}
.pricing-table-wrap {
  overflow-x: auto;
  border-top: 1px solid rgba(51, 51, 51, 0.12);
}
.pricing-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}
.pricing-table th,
.pricing-table td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.09);
  text-align: left;
}
.pricing-table th {
  color: #666662;
  background: rgba(219, 219, 219, 0.46);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.pricing-table td {
  color: #4d4d49;
  font-size: 12px;
}
.pricing-table td:nth-last-child(-n + 2) {
  color: var(--ink);
  font-weight: 900;
  white-space: nowrap;
}
.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}
.full-package-card {
  margin-top: 14px;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.55fr) auto;
  gap: 22px;
  align-items: center;
  border-radius: 18px;
  color: white;
  background: var(--ink);
  box-shadow: var(--shadow);
}
.full-package-card h3 {
  margin: 7px 0 4px;
  font-size: 30px;
}
.full-package-card p {
  margin: 0;
  color: #cececa;
  font-size: 12px;
  line-height: 1.55;
}
.full-package-price span {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.09);
}
.full-package-price small {
  color: #bfc6c4;
}
.full-package-price strong {
  color: white;
}
.full-package-card > a {
  padding: 13px 16px;
  border-radius: 12px;
  color: white;
  background: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}
.pricing-note {
  margin: 16px 2px 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}
@media (max-width: 1100px) {
  .site-header {
    position: sticky;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .site-header nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: min(430px, calc(100vw - 20px));
    padding: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    border: 1px solid rgba(51, 51, 51, 0.18);
    border-radius: 18px;
    background: rgba(247, 247, 245, 0.98);
    box-shadow: 0 22px 55px rgba(51, 51, 51, 0.18);
    transition: 0.18s ease;
  }
  .site-header nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .site-header nav a,
  .site-header nav .nav-cta {
    min-height: 44px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: white;
    border: 1px solid rgba(51, 51, 51, 0.12);
  }
  .site-header nav .nav-cta {
    grid-column: 1 / -1;
    color: white;
    background: var(--ink);
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .product-stage {
    max-width: 850px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .album-copy {
    grid-template-columns: 1fr;
  }
  .album-copy .eyebrow,
  .album-feature-pills {
    grid-column: auto;
  }
  .album-capabilities,
  .technology-band {
    grid-template-columns: 1fr 1fr;
  }
  .workflow-section,
  .license-section,
  .module-showcase,
  .production-module {
    grid-template-columns: 1fr;
  }
  .production-module-reverse .module-copy,
  .production-module-reverse .real-app-shot {
    order: initial;
  }
  .package-grid {
    grid-template-columns: 1fr;
  }
  .package-grid .package-featured {
    transform: none;
  }
  .full-package-card {
    grid-template-columns: 1fr 1fr;
  }
  .full-package-card > a {
    grid-column: 1 / -1;
  }
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-toc {
    position: static;
    display: flex;
    gap: 4px;
    overflow-x: auto;
  }
  .legal-toc strong {
    display: none;
  }
  .legal-toc a {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .contact-shell {
    grid-template-columns: 1fr;
  }
  .contact-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 22px;
  }
  .contact-side > .eyebrow,
  .contact-side > h2,
  .contact-side > .contact-side-lead {
    grid-column: 1 / -1;
  }
  .contact-methods,
  .contact-address {
    margin-top: 0;
  }
  .contact-address {
    padding: 14px;
    border: 1px solid #5c5c58;
    border-radius: 14px;
  }
  footer {
    grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1.2fr);
  }
  .footer-links {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .site-header {
    width: calc(100% - 20px);
    top: 6px;
  }
  .brand small {
    display: none;
  }
  .brand-logo {
    width: 42px;
    height: 42px;
  }
  .site-header nav {
    position: fixed;
    top: 76px;
    left: 10px;
    right: 10px;
    width: auto;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
  }
  .hero,
  .proof-strip,
  .album-showcase,
  .module-showcase,
  .production-modules,
  .package-section,
  .technology-band,
  .section,
  .workflow-section,
  .trial-section,
  .install-guide-section,
  .license-section,
  .seo-content-section,
  .faq-section,
  footer {
    width: calc(100% - 20px);
  }
  .hero {
    margin-top: 18px;
    padding-top: 35px;
    gap: 34px;
  }
  .hero-copy h1 {
    font-size: 46px;
  }
  .hero-lead {
    font-size: 16px;
  }
  .hero-actions .button {
    width: 100%;
  }
  .window-body {
    grid-template-columns: 95px 1fr;
  }
  .sheet {
    display: none;
  }
  .stage-note {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -10px 12px 0;
    width: auto;
  }
  .proof-strip {
    grid-template-columns: 1fr 1fr;
  }
  .proof-strip div:nth-child(2) {
    border-right: 0;
  }
  .album-showcase,
  .module-showcase,
  .production-module,
  .trial-section,
  .license-section {
    padding: 26px 18px;
  }
  .production-modules {
    gap: 24px;
  }
  .real-app-shot figcaption {
    position: static;
    padding: 10px;
    background: var(--ink);
  }
  .album-layout {
    grid-template-columns: 70px 1fr;
    min-height: 380px;
  }
  .album-tools {
    display: none;
  }
  .album-canvas {
    min-height: 350px;
  }
  .album-capabilities,
  .technology-band,
  .feature-grid,
  .download-cards,
  .install-guide-grid,
  .seo-copy-grid,
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .package-summary,
  .bundle-heading {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature-grid article,
  .technology-band article,
  .album-capabilities article,
  .package-grid article {
    padding: 18px 14px;
  }
  .faq-list {
    grid-template-columns: 1fr;
  }
  .album-copy h2,
  .section-heading h2,
  .workflow-copy h2,
  .trial-section h2,
  .license-section h2,
  .seo-content-section h2,
  .faq-section h2 {
    font-size: 39px;
  }
  .trial-section {
    grid-template-columns: 1fr;
  }
  footer {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 20px 20px;
  }
  footer > p,
  .footer-links,
  footer > small {
    grid-column: 1;
  }
  footer > p {
    max-width: 520px;
  }
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .legal-page {
    width: calc(100% - 20px);
    margin-top: 28px;
  }
  .legal-hero {
    padding: 26px 20px;
    border-radius: 24px;
  }
  .legal-grid,
  .legal-contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .legal-content section,
  .legal-card {
    padding: 22px 18px;
    border-radius: 18px;
  }
  .contact-page {
    width: calc(100% - 20px);
    margin-top: 28px;
  }
  .contact-hero {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 20px;
    border-radius: 24px;
  }
  .contact-availability {
    min-width: 0;
  }
  .contact-form-card,
  .contact-side {
    padding: 22px 17px;
    border-radius: 20px;
  }
  .contact-form-footer {
    align-items: stretch;
    flex-direction: column;
  }
  .contact-submit {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .site-header {
    min-height: 62px;
    padding: 8px 10px;
  }
  .brand strong {
    font-size: 16px;
  }
  .brand-logo {
    width: 38px;
    height: 38px;
  }
  .mobile-menu-toggle {
    min-width: 70px;
  }
  .site-header nav {
    top: 68px;
  }
  .hero-copy h1 {
    font-size: 39px;
  }
  .album-capabilities,
  .technology-band,
  .feature-grid,
  .download-cards,
  .install-guide-grid,
  .seo-copy-grid,
  .package-grid,
  .legal-grid,
  .legal-contact,
  .contact-form .form-row,
  .contact-side {
    grid-template-columns: 1fr;
  }
  .contact-side > .eyebrow,
  .contact-side > h2,
  .contact-side > .contact-side-lead {
    grid-column: auto;
  }
  .package-summary,
  .bundle-heading,
  .full-package-card {
    grid-template-columns: 1fr;
  }
  .full-package-card > a {
    grid-column: auto;
  }
  .bundle-pricing {
    padding: 18px 12px;
  }
}

.scoped-computer-picker {
  display: grid;
  gap: 6px;
  margin: 0 0 12px;
  color: #53676a;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.scoped-computer-picker select {
  width: 100%;
  padding: 10px 32px 10px 11px;
  border: 1px solid rgba(8, 127, 140, 0.35);
  border-radius: 10px;
  color: #164d50;
  background: white;
  font: 700 12px/1.2 inherit;
  letter-spacing: 0;
  text-transform: none;
}
.full-package-card .scoped-computer-picker {
  color: #9fc6c8;
}
.full-package-card .scoped-computer-picker select {
  border-color: #52878a;
  color: #eaf9f6;
  background: rgba(255, 255, 255, 0.09);
}
.full-package-card .scoped-computer-picker select option {
  color: #164d50;
  background: #ffffff;
}
.combination-computer-picker {
  max-width: 145px;
  margin: 9px 0 0;
}
.combination-computer-picker select {
  padding-block: 8px;
}

/* Aligned package comparison and direct demo downloads. */
.package-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}
.package-grid article {
  padding: 24px;
  min-width: 0;
  box-shadow: 0 10px 30px rgba(30, 60, 62, 0.04);
}
.package-grid h3 {
  font-size: clamp(20px, 1.6vw, 27px);
  min-height: 2.5em;
}
.package-grid article > p {
  min-height: 6.6em;
  margin: 6px 0 14px;
}
.package-grid ul {
  margin: 0 0 24px;
}
.package-grid article > a {
  margin-top: 14px;
}
.package-demo {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(8, 127, 140, 0.18);
  text-align: center;
}
.package-demo > span {
  color: var(--muted);
  font-size: 11px;
}
.package-demo > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}
.package-demo a {
  padding: 9px 6px;
  margin: 0;
  background: transparent;
  color: var(--teal-dark);
  border: 1px solid rgba(8, 127, 140, 0.25);
  border-radius: 8px;
  font-size: 12px;
}
.package-demo a:hover {
  background: rgba(8, 127, 140, 0.08);
}
.bundle-group-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 22px 20px;
  font-size: 20px;
}
.bundle-group-title small {
  margin-left: auto;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}
.pricing-table th:nth-child(2),
.pricing-table th:nth-child(3),
.pricing-table td:nth-child(2),
.pricing-table td:nth-child(3) {
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.pricing-table td:nth-child(4),
.pricing-table th:nth-child(4) {
  text-align: right;
  width: 210px;
}
.combination-demo a {
  display: inline-block;
  padding: 8px 10px;
  margin: 3px;
  border: 1px solid rgba(8, 127, 140, 0.22);
  border-radius: 8px;
  color: var(--teal-dark);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}
.combination-demo a:hover {
  background: rgba(8, 127, 140, 0.08);
}
.full-package-card {
  margin: 36px 0;
  padding: clamp(24px, 4vw, 56px);
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 48px;
  border: 1px solid #288d94;
  border-radius: 28px;
  background:
    radial-gradient(ellipse at 0 0, rgba(35, 181, 184, 0.25), transparent 60%),
    linear-gradient(125deg, #072f35, #082128);
  box-shadow: 0 20px 55px rgba(7, 55, 64, 0.16);
}
.full-package-badge {
  display: inline-block;
  padding: 7px 12px;
  color: #a1f4de;
  background: rgba(101, 242, 207, 0.12);
  border: 1px solid rgba(101, 242, 207, 0.2);
  border-radius: 30px;
  letter-spacing: 0.12em;
  font-size: 10px;
  font-weight: 800;
}
.full-package-card h3 {
  margin: 20px 0 18px;
  font-size: clamp(36px, 3.4vw, 54px);
  line-height: 1.06;
}
.full-package-card h3 span {
  display: block;
  margin-top: 12px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  color: #91e2dc;
}
.full-package-card p {
  color: #c7dfdf;
  font-size: 14px;
  line-height: 1.7;
}
.full-module-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
  font-size: 13px;
}
.full-module-list li::before {
  content: "✓";
  margin-right: 8px;
  color: #8dedcd;
}
.full-package-card .full-license-note {
  font-size: 11px;
  color: #91b9bb;
}
.full-package-price {
  gap: 12px;
}
.full-package-price span {
  padding: 20px;
  border-radius: 16px;
}
.full-package-price strong {
  font-size: clamp(25px, 2.4vw, 38px);
}
.full-purchase {
  display: block;
  margin-top: 16px;
  padding: 17px 12px;
  background: #a3efcc;
  color: #062f32;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
}
.full-purchase:hover {
  background: #c3f8e0;
}
.full-demo {
  margin-top: 24px;
  text-align: center;
}
.full-demo strong {
  color: #e1f4ef;
  font-size: 13px;
}
.full-demo > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 12px 0;
}
.full-demo a {
  border: 1px solid #52878a;
  border-radius: 9px;
  padding: 11px 8px;
  color: #e1f4ef;
  font-size: 12px;
  text-decoration: none;
  font-weight: 700;
}
.full-demo a:hover {
  background: rgba(255, 255, 255, 0.1);
}
.full-demo small {
  color: #9cbabb;
  font-size: 10px;
  line-height: 1.5;
}
@media (max-width: 1240px) {
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .package-grid article > p {
    min-height: 3.3em;
  }
  .package-grid h3 {
    min-height: auto;
  }
}
@media (max-width: 900px) {
  .full-package-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 600px) {
  .package-grid {
    grid-template-columns: 1fr;
  }
  .package-grid article > p {
    min-height: 0;
  }
  .full-module-list {
    grid-template-columns: 1fr;
  }
  .full-demo > div {
    grid-template-columns: 1fr;
  }
  .pricing-table {
    min-width: 640px;
  }
  .bundle-group-title {
    padding: 18px 12px;
  }
}
.site-language-picker {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.35rem;
  min-height: 42px;
  padding: 0 0.7rem;
  border: 1px solid rgba(8, 127, 140, 0.35);
  border-radius: 12px;
  background: #fff;
}

.site-language-picker select {
  max-width: 9rem;
  border: 0;
  color: #243236;
  background: transparent;
  font: inherit;
  font-weight: 700;
}

html[dir="rtl"] body {
  direction: rtl;
}
html[dir="rtl"] .site-header,
html[dir="rtl"] .hero,
html[dir="rtl"] .module-showcase,
html[dir="rtl"] .full-package-card {
  direction: rtl;
}

/* Small-screen navigation and pricing retain all controls without page overflow. */
.skip-link {
  position: fixed;
  top: -100px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  background: #fff;
  color: #065d67;
  border: 2px solid #087f8c;
  border-radius: 10px;
}
.skip-link:focus {
  top: 12px;
}
:focus-visible {
  outline: 3px solid #087f8c;
  outline-offset: 3px;
}
.site-header,
.site-header > *,
.package-grid > *,
.full-package-card > *,
.license-request-form > *,
.contact-shell > * {
  min-width: 0;
}
.site-language-picker select {
  min-height: 44px;
}
img {
  max-width: 100%;
}
section[id],
main[id] {
  scroll-margin-top: 115px;
}
@media (max-width: 720px) {
  .site-header {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
  }
  .site-header .brand {
    flex: 1 1 auto;
  }
  .site-header .brand strong {
    font-size: 18px;
  }
  .site-header .mobile-menu-toggle {
    flex: 0 0 auto;
    min-height: 44px;
    margin-left: auto;
  }
  .site-header .site-language-picker {
    flex: 1 0 100%;
    justify-content: center;
    min-height: 44px;
    padding: 0 10px;
  }
  .site-header .site-language-picker select {
    width: 100%;
    max-width: none;
  }
  .site-header nav {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    max-height: min(65dvh, 500px);
    width: 100%;
  }
  .pricing-table {
    min-width: 0;
    width: 100%;
  }
  .pricing-table thead {
    display: none;
  }
  .pricing-table tbody {
    display: grid;
    gap: 12px;
  }
  .pricing-table tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 16px;
    border: 1px solid #ccd5d5;
    border-radius: 16px;
    background: #fff;
  }
  .pricing-table td {
    display: block;
    padding: 0;
    border: 0;
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .pricing-table td:first-child,
  .pricing-table td:last-child {
    grid-column: 1/-1;
  }
  .pricing-table td[data-price-period]::before {
    content: attr(data-period-label);
    display: block;
    color: #52646a;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
  }
  .pricing-table .bundle-demo-links {
    flex-wrap: wrap;
  }
  .pricing-table .bundle-demo-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .pricing-table .package-computer-picker {
    width: 100%;
  }
  .pricing-table select {
    max-width: 100%;
    width: 100%;
  }
  .full-package-card {
    padding: 25px 18px;
  }
  .full-package-card h3 {
    font-size: clamp(32px, 10vw, 52px);
    overflow-wrap: anywhere;
  }
  .full-price,
  .package-card-prices {
    min-width: 0;
  }
  .full-price strong {
    font-size: clamp(25px, 8vw, 40px);
  }
  .contact-form input,
  .contact-form textarea,
  .contact-form select,
  .license-request-form input,
  .license-request-form textarea,
  .license-request-form select,
  select {
    font-size: 16px;
    min-width: 0;
  }
  .contact-methods a,
  .contact-address,
  footer a {
    overflow-wrap: anywhere;
  }
  .button,
  .package-grid article > a,
  .full-demo a {
    min-height: 44px;
    white-space: normal;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 720px) {
  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .proof-strip > div {
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .full-package-price {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .full-package-price > span {
    min-width: 0;
    padding: 16px 10px;
  }
  .full-package-price strong {
    font-size: clamp(21px, 6.2vw, 29px);
    white-space: normal;
    overflow-wrap: anywhere;
  }
  section[id],
  main[id] {
    scroll-margin-top: 150px;
  }
}
@media (max-width: 360px) {
  .full-package-price {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .hero > *, .hero-copy > * { min-width: 0; }
  .hero h1, .hero-lead, .release-note { overflow-wrap: anywhere; }
  .package-price { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .package-price > span { min-width: 0; }
  .package-price small, .package-price strong { overflow-wrap: anywhere; white-space: normal; }
}
@media (max-width: 360px) { .package-price { grid-template-columns: 1fr; } }
@media (max-width: 720px) {
  .workflow-section > *, .license-section > *, .module-showcase > *, .production-module > *, .section > * { min-width: 0; }
  h1, h2, h3, .privacy-card { overflow-wrap: anywhere; }
}
.new-workflows{padding:clamp(48px,6vw,90px) min(6vw,90px);background:#f3fafb;color:#1b3940;border-radius:30px;margin:40px auto;max-width:1450px}.new-workflows>h2{max-width:850px;font-size:clamp(29px,3.7vw,52px);line-height:1.13;margin:12px 0 18px}.new-workflows-lead{max-width:900px;font-size:clamp(17px,1.8vw,21px);line-height:1.7;color:#3c5861}.new-workflows-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;margin-top:32px}.new-workflows-grid article{background:white;border:1px solid #d7e7ea;border-radius:18px;padding:26px;display:flex;flex-direction:column;align-items:flex-start}.new-workflows-grid h3{margin:0 0 10px;font-size:24px}.new-workflows-grid p{line-height:1.65;flex:1}.new-workflows-grid a,.new-workflows-blog-link{color:#087a89;font-weight:750}.new-workflows-blog{background:#e8f5f6}.new-workflows-blog p{line-height:1.6}@media(max-width:740px){.new-workflows{border-radius:16px;padding:28px 20px}.new-workflows-grid{grid-template-columns:1fr}.new-workflows-grid article{padding:20px}}
