:root {
  --ink: #14202b;
  --ink-soft: #536273;
  --paper: #f7f4ee;
  --paper-deep: #eee9df;
  --navy: #102338;
  --navy-2: #17344f;
  --line: #d8d2c7;
  --white: #ffffff;
  --amber: #d88930;
  --amber-light: #f0b76e;
  --teal: #327f79;
  --teal-light: #78bdb4;
  --red: #b95b50;
  --shadow: 0 18px 50px rgba(18, 34, 48, .12);
  --shadow-small: 0 10px 30px rgba(18, 34, 48, .09);
  --radius: 18px;
  --radius-small: 12px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 1000;
  padding: .7rem 1rem; color: white; background: var(--navy); border-radius: 8px;
}
.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 2.5rem), var(--max)); margin-inline: auto; }
.narrow { max-width: 820px; }
.section { padding: 6rem 0; }
.section-tight { padding: 4rem 0; }
.section-dark { background: var(--navy); color: #edf3f5; }
.section-muted { background: var(--paper-deep); }
.section-rule { border-top: 1px solid var(--line); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  margin-bottom: 1rem; color: var(--teal); font-size: .77rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
.section-dark .eyebrow { color: var(--teal-light); }

h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.08; margin: 0 0 1rem; }
h1 { font-size: clamp(2.65rem, 6vw, 5.5rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.15rem, 4.3vw, 3.7rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.08rem, 1.8vw, 1.3rem); color: var(--ink-soft); max-width: 760px; }
.section-dark .lead { color: #bfcdd7; }
.muted { color: var(--ink-soft); }
.small { font-size: .9rem; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 244, 238, .93); border-bottom: 1px solid rgba(216, 210, 199, .82);
  backdrop-filter: blur(14px);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .78rem; font-weight: 800; letter-spacing: -.02em; }
.brand img { width: 42px; height: 42px; }
.brand-name { display: grid; line-height: 1.05; }
.brand-name small { color: var(--ink-soft); font-weight: 650; font-size: .7rem; letter-spacing: .11em; text-transform: uppercase; }
.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; }
.brand-graphic { display: inline-flex; align-items: center; min-width: 0; }
.brand-graphic img { height: 48px; width: auto; max-width: min(54vw, 310px); display: block; }
.footer-brand-link { display: inline-block; }
.footer-brand-visual { display: block; width: min(100%, 420px); height: auto; border-radius: 16px; box-shadow: 0 14px 32px rgba(16, 35, 56, .12); }
.nav-links { display: flex; align-items: center; gap: 1.4rem; font-size: .93rem; font-weight: 700; }
.nav-links a:not(.button) { padding: .4rem 0; border-bottom: 2px solid transparent; }
.nav-links a:not(.button):hover, .nav-links a[aria-current="page"] { border-color: var(--amber); }
.menu-toggle { display: none; border: 0; background: transparent; padding: .6rem; cursor: pointer; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 5px; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 46px; padding: .72rem 1.15rem; border: 1px solid transparent; border-radius: 10px;
  background: var(--navy); color: white; font-weight: 800; line-height: 1.2;
  box-shadow: 0 8px 20px rgba(16, 35, 56, .15); transition: .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(16, 35, 56, .22); }
.button-secondary { background: transparent; color: var(--ink); border-color: #a9a194; box-shadow: none; }
.button-secondary:hover { border-color: var(--navy); }
.button-light { background: var(--paper); color: var(--navy); }
.button-amber { background: var(--amber); color: #251608; }
.button-disabled { pointer-events: none; opacity: .6; box-shadow: none; }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.text-link { color: var(--teal); font-weight: 800; display: inline-flex; align-items: center; gap: .35rem; }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

.hero { position: relative; overflow: hidden; padding: 7rem 0 6rem; }
.hero::after {
  content: ""; position: absolute; z-index: -1; width: 620px; height: 620px; border-radius: 50%;
  right: -250px; top: -210px; background: radial-gradient(circle, rgba(216,137,48,.19), rgba(216,137,48,0) 68%);
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 4.5rem; align-items: center; }
.hero-copy { max-width: 680px; }
.hero-copy h1 { font-size: clamp(2.8rem, 4.5vw, 4.6rem); }
.hero-copy h1 em { color: var(--teal); font-style: normal; }
.hero-note { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-top: 1.4rem; color: var(--ink-soft); font-size: .88rem; font-weight: 700; }
.hero-note span::before { content: "✓"; color: var(--teal); margin-right: .38rem; }
.hero-art { position: relative; }
.hero-art img { width: 100%; filter: drop-shadow(0 28px 35px rgba(16,35,56,.18)); }
.floating-note {
  position: absolute; right: -1rem; bottom: 1.4rem; max-width: 190px; padding: 1rem 1.1rem;
  background: white; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-small);
  font-weight: 800; font-size: .88rem;
}
.floating-note small { display: block; color: var(--teal); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .25rem; }

.page-hero { position: relative; overflow: hidden; padding: 5.5rem 0 4.5rem; background: var(--paper-deep); border-bottom: 1px solid var(--line); }
.page-hero::after { content: ""; position: absolute; width: 440px; height: 440px; right: -150px; top: -210px; border-radius: 50%; background: radial-gradient(circle, rgba(50,127,121,.16), rgba(50,127,121,0) 70%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.8rem, 5.6vw, 5rem); }
.page-hero .lead { margin-bottom: 0; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; }
.section-heading > div { max-width: 780px; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.product-card {
  position: relative; min-height: 430px; display: flex; flex-direction: column; overflow: hidden;
  padding: 2rem; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-small);
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card::before { content: ""; height: 6px; position: absolute; left: 0; right: 0; top: 0; background: var(--product-accent, var(--amber)); }
.product-card.arkasm { --product-accent: var(--amber); }
.product-card.ssm { --product-accent: var(--red); }
.product-card.psm { --product-accent: var(--teal); }
.product-kicker { color: var(--product-accent, var(--amber)); font-size: .74rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.product-card h3 { margin-top: 1.1rem; font-size: 2rem; }
.product-title { font-family: Georgia, "Times New Roman", serif; font-size: 1.15rem; font-weight: 700; }
.product-card ul { padding: 0; margin: 1.4rem 0 1.6rem; list-style: none; color: var(--ink-soft); }
.product-card li { position: relative; padding: .38rem 0 .38rem 1.35rem; }
.product-card li::before { content: ""; position: absolute; left: 0; top: .86rem; width: 7px; height: 7px; border-radius: 50%; background: var(--product-accent, var(--amber)); }
.product-card .text-link { margin-top: auto; color: var(--product-accent, var(--teal)); }
.status-pill { display: inline-flex; align-items: center; gap: .5rem; align-self: flex-start; padding: .35rem .65rem; border-radius: 99px; background: #eef3f0; color: #346358; font-size: .77rem; font-weight: 800; }
.status-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #55a886; }
.status-pill.planned { background: #f2eee6; color: #80683e; }
.status-pill.planned::before { background: var(--amber); }

.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); background: white; overflow: hidden; box-shadow: var(--shadow-small); }
.value-item { padding: 2rem 1.5rem; border-right: 1px solid var(--line); }
.value-item:last-child { border-right: 0; }
.value-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 10px; background: #e6efed; color: var(--teal); font-weight: 900; margin-bottom: 1rem; }
.value-item p { color: var(--ink-soft); font-size: .94rem; }

.docs-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 4rem; align-items: start; }
.docs-menu { position: sticky; top: 110px; display: grid; gap: .7rem; }
.docs-menu button {
  text-align: left; border: 1px solid var(--line); padding: 1rem 1.1rem; border-radius: 10px;
  background: white; color: var(--ink); font-weight: 800; cursor: pointer;
}
.docs-menu button.active { color: white; border-color: var(--navy); background: var(--navy); }
.docs-panel { display: none; }
.docs-panel.active { display: block; animation: fade .22s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.steps { counter-reset: steps; display: grid; gap: 1rem; margin-top: 2rem; }
.step { position: relative; padding: 1.3rem 1.3rem 1.3rem 4.2rem; border: 1px solid var(--line); border-radius: 12px; background: white; }
.step::before {
  counter-increment: steps; content: counter(steps); position: absolute; left: 1.25rem; top: 1.2rem;
  width: 2rem; height: 2rem; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: white; font-weight: 900;
}
.step h3 {
  color: var(--ink); font-family: inherit; font-size: 1.03rem; font-weight: 850; margin-bottom: .3rem;
}
.step p { color: #435365; margin: 0; font-size: .94rem; line-height: 1.55; }
.placeholder-note { border-left: 4px solid var(--amber); padding: .85rem 1rem; background: #fff8ed; color: #6f512f; border-radius: 0 8px 8px 0; }

.faq-list { display: grid; gap: .85rem; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; background: white; overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.2rem 1.3rem; border: 0; background: transparent; color: var(--ink); text-align: left; font-weight: 850; cursor: pointer; }
.faq-question span:last-child { font-size: 1.35rem; color: var(--teal); transition: transform .2s ease; }
.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-answer > div { padding: 0 1.3rem 1.25rem; color: var(--ink-soft); }

.contact-panel { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; padding: 3rem; border-radius: 24px; background: var(--navy); color: white; overflow: hidden; position: relative; }
.contact-panel::after { content: "CDD"; position: absolute; right: -35px; bottom: -80px; font-family: Georgia, serif; font-size: 13rem; color: rgba(255,255,255,.035); font-weight: 900; }
.contact-panel .lead { color: #bac8d2; }
.contact-options { display: grid; gap: 1rem; position: relative; z-index: 1; }
.contact-card { padding: 1.2rem; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: 12px; }
.contact-card strong { display: block; margin-bottom: .2rem; }
.contact-card span { color: #bdcad3; font-size: .93rem; }
.contact-card a { color: var(--amber-light); font-weight: 800; }

.site-footer { padding: 3.5rem 0 2rem; border-top: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,0), rgba(227,236,244,.35)); }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 2rem; }
.footer-grid h3 { font-family: inherit; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; }
.footer-links { display: grid; gap: .55rem; color: var(--ink-soft); font-size: .92rem; }
.footer-links a:hover { color: var(--teal); }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .8rem; }

/* Product pages */
.product-hero { padding: 6rem 0 5rem; background: var(--navy); color: white; overflow: hidden; position: relative; }
.product-hero::before { content: ""; position: absolute; width: 520px; height: 520px; right: -130px; top: -190px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--accent) 40%, transparent), transparent 70%); opacity: .52; }
.product-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.product-hero h1 { font-size: clamp(3rem, 6vw, 5.8rem); }
.product-hero h1 .product-name-detail {
  display: block;
  margin-top: .45rem;
  color: #dce5eb;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 750;
  letter-spacing: -.018em;
  line-height: 1.25;
}

.product-hero .lead { color: #c2ced7; }
.product-meta { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.2rem 0; }
.meta-chip { padding: .35rem .7rem; border: 1px solid rgba(255,255,255,.18); border-radius: 99px; color: #dce5eb; font-size: .78rem; font-weight: 800; }
.app-window { border-radius: 18px; padding: 1rem; background: #091522; border: 1px solid #31506b; box-shadow: 0 28px 70px rgba(0,0,0,.3); transform: perspective(1100px) rotateY(-4deg) rotateX(2deg); }
.window-bar { display: flex; gap: .4rem; padding: .2rem .2rem .85rem; }
.window-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); opacity: .9; }
.window-bar i:nth-child(2) { opacity: .55; }
.window-bar i:nth-child(3) { opacity: .3; }
.window-body { display: grid; grid-template-columns: 88px 1fr; min-height: 320px; border-radius: 10px; overflow: hidden; background: #102338; }
.window-nav { padding: 1rem .65rem; background: #0b1a2a; }
.window-nav span { display: block; height: 8px; margin: 0 0 15px; border-radius: 4px; background: #43627a; }
.window-nav span.active { background: var(--accent); }
.window-content { padding: 1rem; }
.server-row { display: grid; grid-template-columns: auto 1fr auto; gap: .8rem; align-items: center; padding: .85rem; margin-bottom: .75rem; background: #18324b; border: 1px solid #2b4b66; border-radius: 10px; }
.server-light { width: 10px; height: 10px; border-radius: 50%; background: #64c49d; box-shadow: 0 0 0 5px rgba(100,196,157,.08); }
.server-lines b, .server-lines span { display: block; border-radius: 4px; }
.server-lines b { width: 110px; height: 8px; background: #e8eef2; margin-bottom: 8px; }
.server-lines span { width: 75px; height: 6px; background: #6c879c; }
.server-action { width: 58px; height: 24px; border-radius: 7px; background: color-mix(in srgb, var(--accent) 50%, #152b40); }
.log-box { height: 92px; margin-top: 1rem; padding: .8rem; border-radius: 9px; background: #091724; }
.log-box span { display: block; height: 5px; margin-bottom: 8px; border-radius: 3px; background: #3c5d75; }
.log-box span:nth-child(2) { width: 76%; }
.log-box span:nth-child(3) { width: 88%; background: var(--accent); opacity: .65; }

.product-screenshot { margin: 0; }
.product-screenshot a {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: #f5f5f5;
}
.product-screenshot img { width: 100%; height: auto; }
.product-screenshot-hero {
  padding: .75rem;
  border: 1px solid #31506b;
  border-radius: 18px;
  background: #091522;
  box-shadow: 0 28px 70px rgba(0,0,0,.3);
  transform: perspective(1100px) rotateY(-4deg) rotateX(2deg);
}
.product-screenshot-hero a { border: 1px solid rgba(255,255,255,.12); }

.screenshot-gallery {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
}
.screenshot-pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; align-items: start; }
.screenshot-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
}
.screenshot-card a { display: block; overflow: hidden; background: white; }
.screenshot-card img { width: 100%; height: auto; transition: transform .2s ease; }
.screenshot-card a:hover img { transform: scale(1.015); }
.screenshot-card figcaption {
  padding: .75rem .8rem;
  color: var(--ink-soft);
  font-size: .82rem;
  font-weight: 750;
  line-height: 1.35;
}

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.feature-card { padding: 1.7rem; background: white; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-small); }
.feature-number { font-family: Georgia, serif; font-size: 2rem; color: var(--accent, var(--teal)); opacity: .65; }
.feature-card h3 { font-size: 1.3rem; }
.feature-card p { color: var(--ink-soft); font-size: .94rem; }

.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.check-list { list-style: none; padding: 0; margin: 1.4rem 0 0; }
.check-list li { position: relative; padding: .5rem 0 .5rem 1.7rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent, var(--teal)); font-weight: 900; }
.info-card { padding: 2rem; border-radius: 18px; background: var(--navy); color: white; box-shadow: var(--shadow); }
.info-card p { color: #bbc9d3; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin-top: 1.5rem; }
.stat { padding: 1rem; border-radius: 10px; background: rgba(255,255,255,.07); }
.stat strong { display: block; color: var(--accent, var(--amber-light)); font-size: 1.25rem; }
.stat span { font-size: .78rem; color: #bfccd5; }

.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.3rem; max-width: 900px; margin: 2.5rem auto 0; }
.price-card { padding: 2.2rem; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: var(--shadow-small); }
.price-card.featured { border: 2px solid var(--accent, var(--amber)); transform: translateY(-8px); }
.price { margin: 1.1rem 0; font-family: Georgia, serif; font-size: 2.5rem; line-height: 1; }
.price small { display: block; margin-top: .5rem; color: var(--ink-soft); font-family: inherit; font-size: .8rem; }
.price-card ul { padding: 0; list-style: none; color: var(--ink-soft); }
.price-card li { padding: .42rem 0 .42rem 1.4rem; position: relative; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--accent, var(--teal)); font-weight: 900; }
.price-card .button { width: 100%; margin-top: 1rem; background: var(--accent, var(--navy)); color: #fff; }
.price-card .button.button-secondary { background: transparent; color: var(--ink); }

.requirements { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; }
.requirement { padding: 1.2rem; background: white; border: 1px solid var(--line); border-radius: 12px; }
.requirement strong { display: block; }
.requirement span { color: var(--ink-soft); font-size: .88rem; }

.cta-band { background: var(--accent, var(--teal)); color: #fff; }
.cta-band-inner { display: flex; justify-content: space-between; align-items: center; gap: 3rem; }
.cta-band h2 { max-width: 710px; margin-bottom: .4rem; }
.cta-band p { opacity: .82; }

[data-product="arkasm"] { --accent: var(--amber); }
[data-product="ssm"] { --accent: var(--red); }
[data-product="psm"] { --accent: var(--teal); }

@media (max-width: 980px) {
  .nav-links { position: fixed; left: 0; right: 0; top: 77px; display: none; padding: 1.2rem 1.4rem 1.5rem; flex-direction: column; align-items: stretch; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-small); }
  .nav-links.open { display: flex; }
  .nav-links .button { width: 100%; }
  .menu-toggle { display: block; }
  .hero-grid, .product-hero-grid, .docs-layout, .contact-panel, .split-section { grid-template-columns: 1fr; }
  .hero-art { max-width: 720px; }
  .product-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card:last-child { grid-column: 1 / -1; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .value-item:nth-child(2) { border-right: 0; }
  .value-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .docs-menu { position: static; grid-template-columns: repeat(3, 1fr); }
  .requirements { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 1.4rem), var(--max)); }
  .section { padding: 4.5rem 0; }
  .hero { padding: 5rem 0 4rem; }
  .page-hero { padding: 4.2rem 0 3.6rem; }
  h1 { font-size: clamp(2.55rem, 14vw, 4.2rem); }
  .brand-graphic img { height: 40px; width: auto; max-width: min(62vw, 250px); }
  .hero-grid { gap: 2.5rem; }
  .floating-note { display: none; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .product-grid, .feature-grid, .pricing-grid { grid-template-columns: 1fr; }
  .product-card:last-child { grid-column: auto; }
  .value-grid { grid-template-columns: 1fr; }
  .value-item, .value-item:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .value-item:last-child { border-bottom: 0; }
  .docs-menu { grid-template-columns: 1fr; }
  .contact-panel { padding: 2rem 1.3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .product-hero { padding: 4.5rem 0 4rem; }
  .product-hero-grid { gap: 2.5rem; }
  .app-window, .product-screenshot-hero { transform: none; }
  .window-body { grid-template-columns: 60px 1fr; min-height: 280px; }
  .server-action { display: none; }
  .requirements, .stat-row, .screenshot-pair { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .cta-band-inner { align-items: flex-start; flex-direction: column; }
}
