:root {
  --ink: #10243f;
  --ink-soft: #42536a;
  --muted: #66768b;
  --paper: #f7f9fc;
  --surface: #ffffff;
  --surface-blue: #edf4ff;
  --line: #dce4ee;
  --line-strong: #c7d4e3;
  --navy: #0b2343;
  --blue: #1557d5;
  --blue-dark: #0f46b0;
  --cyan: #24c7bd;
  --green: #158466;
  --amber: #ba6b16;
  --shadow-sm: 0 10px 30px rgba(16, 36, 63, 0.08);
  --shadow-lg: 0 26px 70px rgba(16, 36, 63, 0.14);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 6% 4%, rgba(36, 199, 189, 0.09), transparent 24rem),
    radial-gradient(circle at 94% 9%, rgba(21, 87, 213, 0.1), transparent 28rem);
}

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

a {
  color: var(--blue);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--blue-dark);
}

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

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

:focus-visible {
  outline: 3px solid rgba(21, 87, 213, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

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

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

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-tint {
  background: var(--paper);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 2px;
  content: "";
  background: var(--cyan);
}

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

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-weight: 760;
  line-height: 1.14;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 6vw, 5.15rem);
  letter-spacing: -0.055em;
}

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

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

p:last-child {
  margin-bottom: 0;
}

.lede {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.section-heading {
  max-width: 750px;
  margin-bottom: 44px;
}

.section-heading p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(220, 228, 238, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand:hover {
  color: var(--navy);
}

.brand-mark {
  display: grid;
  width: 39px;
  height: 39px;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(145deg, var(--blue), var(--navy));
  box-shadow: 0 7px 18px rgba(21, 87, 213, 0.22);
  font-size: 0.74rem;
  letter-spacing: -0.04em;
  place-items: center;
}

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

.site-nav a {
  padding: 9px 13px;
  border-radius: 9px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue);
  background: var(--surface-blue);
}

.site-nav .nav-contact {
  margin-left: 7px;
  padding-inline: 17px;
  color: #fff;
  background: var(--navy);
}

.site-nav .nav-contact:hover,
.site-nav .nav-contact[aria-current="page"] {
  color: #fff;
  background: var(--blue-dark);
}

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

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

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

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

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

.hero {
  overflow: hidden;
  padding: 100px 0 84px;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 64px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
}

.hero h1 span {
  color: var(--blue);
}

.hero-copy .lede {
  margin-bottom: 32px;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 0.94rem;
  font-weight: 760;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(21, 87, 213, 0.23);
}

.button-primary:hover {
  color: #fff;
  background: var(--blue-dark);
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--ink);
  background: var(--surface);
}

.button-secondary:hover {
  color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 23px;
  color: var(--muted);
  font-size: 0.88rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(21, 132, 102, 0.12);
}

.product-window {
  position: relative;
  padding: 13px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-lg);
}

.product-window::before {
  position: absolute;
  z-index: -1;
  inset: -45px -55px auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  content: "";
  background: rgba(36, 199, 189, 0.16);
  filter: blur(2px);
}

.window-bar {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-radius: 15px 15px 0 0;
  background: var(--navy);
}

.window-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

.window-title {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.04em;
}

.dashboard {
  display: grid;
  min-height: 430px;
  overflow: hidden;
  border-radius: 0 0 16px 16px;
  background: #f3f6fa;
  grid-template-columns: 104px 1fr;
}

.dash-sidebar {
  padding: 20px 12px;
  color: #fff;
  background: #102b4f;
}

.mini-brand {
  width: 30px;
  height: 30px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.side-line {
  width: 100%;
  height: 7px;
  margin-bottom: 13px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.15);
}

.side-line.active {
  background: var(--cyan);
}

.dash-main {
  padding: 22px;
}

.dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.dash-head strong {
  font-size: 0.9rem;
}

.dash-pill,
.state-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  font-weight: 760;
}

.dash-pill {
  padding: 6px 9px;
  color: var(--green);
  background: rgba(21, 132, 102, 0.1);
  font-size: 0.58rem;
}

.dash-stats {
  display: grid;
  gap: 10px;
  margin-bottom: 15px;
  grid-template-columns: repeat(3, 1fr);
}

.dash-stat,
.publish-card {
  border: 1px solid #e1e7ef;
  background: #fff;
}

.dash-stat {
  padding: 12px;
  border-radius: 10px;
}

.dash-stat small {
  display: block;
  color: var(--muted);
  font-size: 0.56rem;
}

.dash-stat strong {
  font-size: 1.15rem;
}

.publish-list {
  display: grid;
  gap: 9px;
}

.publish-card {
  display: grid;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  grid-template-columns: 48px 1fr auto;
}

.thumb {
  position: relative;
  width: 48px;
  height: 54px;
  overflow: hidden;
  border-radius: 7px;
  background: linear-gradient(150deg, #a6c5f7, #315788);
}

.thumb::after {
  position: absolute;
  right: -6px;
  bottom: -12px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  content: "";
  background: rgba(255, 255, 255, 0.28);
}

.thumb.two {
  background: linear-gradient(150deg, #7ce0d7, #176e74);
}

.thumb.three {
  background: linear-gradient(150deg, #f2c38e, #8b4d42);
}

.publish-meta strong,
.publish-meta small {
  display: block;
}

.publish-meta strong {
  font-size: 0.66rem;
}

.publish-meta small {
  color: var(--muted);
  font-size: 0.54rem;
}

.state-pill {
  padding: 4px 7px;
  font-size: 0.52rem;
}

.state-scheduled {
  color: var(--blue);
  background: var(--surface-blue);
}

.state-ready {
  color: var(--green);
  background: rgba(21, 132, 102, 0.1);
}

.state-draft {
  color: var(--amber);
  background: rgba(186, 107, 22, 0.11);
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.trust-grid {
  display: grid;
  min-height: 96px;
  align-items: center;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

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

.trust-icon,
.feature-icon,
.contact-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
}

.trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  color: var(--blue);
  background: var(--surface-blue);
  font-size: 0.85rem;
  font-weight: 900;
}

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

.feature-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.feature-card:hover {
  border-color: #b9cbe2;
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.feature-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 38px;
  border-radius: 13px;
  color: var(--blue);
  background: var(--surface-blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.split {
  display: grid;
  align-items: start;
  gap: 72px;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.sticky-copy {
  position: sticky;
  top: 116px;
}

.step-list {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  gap: 18px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  grid-template-columns: 42px 1fr;
}

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
  place-items: center;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
}

.responsible-panel {
  position: relative;
  overflow: hidden;
  padding: 58px;
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--navy);
}

.responsible-panel::after {
  position: absolute;
  top: -90px;
  right: -70px;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.035), 0 0 0 90px rgba(255, 255, 255, 0.025);
}

.responsible-panel h2,
.responsible-panel h3 {
  color: #fff;
}

.responsible-panel .eyebrow {
  color: #82e4dc;
}

.responsible-panel .panel-lede {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.commitments {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px 34px;
  margin-top: 35px;
  grid-template-columns: 1fr 1fr;
}

.commitment {
  display: flex;
  gap: 12px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.93rem;
}

.check {
  color: #82e4dc;
  font-weight: 900;
}

.notice {
  padding: 22px 24px;
  border: 1px solid #bcd0e9;
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--ink-soft);
  background: var(--surface-blue);
}

.contact-band {
  padding: 68px 0;
  background: var(--surface-blue);
}

.contact-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.contact-band h2 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.contact-band p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.page-hero {
  padding: 92px 0 72px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(237, 244, 255, 0.72), rgba(255, 255, 255, 0));
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 5vw, 4.6rem);
}

.page-hero .lede {
  margin-bottom: 0;
}

.page-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.tag {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--surface);
  font-size: 0.82rem;
  font-weight: 700;
}

.feature-row {
  display: grid;
  align-items: center;
  gap: 70px;
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr 1fr;
}

.feature-row:last-child {
  border-bottom: 0;
}

.feature-row:nth-child(even) .feature-copy {
  order: 2;
}

.feature-copy p {
  color: var(--ink-soft);
}

.plain-list,
.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.plain-list li,
.check-list li {
  position: relative;
  margin: 12px 0;
  padding-left: 27px;
  color: var(--ink-soft);
}

.plain-list li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
}

.plain-list li::before {
  content: "—";
}

.check-list li::before {
  content: "✓";
}

.feature-visual {
  min-height: 340px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.visual-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.visual-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.visual-card {
  min-height: 102px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

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

.visual-card small,
.visual-card strong {
  display: block;
}

.visual-card small {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.66rem;
}

.visual-card strong {
  font-size: 0.86rem;
}

.progress-track {
  height: 7px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 99px;
  background: #e4eaf1;
}

.progress-track span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.account-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.account-row:last-child {
  border-bottom: 0;
}

.account-avatar {
  display: grid;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  font-size: 0.66rem;
  font-weight: 800;
  place-items: center;
}

.account-row div:nth-child(2) {
  min-width: 0;
  flex: 1;
}

.account-row strong,
.account-row small {
  display: block;
}

.account-row strong {
  font-size: 0.78rem;
}

.account-row small {
  color: var(--muted);
  font-size: 0.64rem;
}

.status-label {
  padding: 4px 7px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(21, 132, 102, 0.1);
  font-size: 0.58rem;
  font-weight: 800;
}

.timeline {
  position: relative;
  padding-left: 18px;
}

.timeline::before {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 5px;
  width: 2px;
  content: "";
  background: var(--line-strong);
}

.timeline-item {
  position: relative;
  padding: 7px 0 17px 18px;
}

.timeline-item::before {
  position: absolute;
  top: 13px;
  left: -17px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  content: "";
  background: var(--blue);
  box-shadow: 0 0 0 2px rgba(21, 87, 213, 0.2);
}

.timeline-item strong,
.timeline-item small {
  display: block;
}

.timeline-item strong {
  font-size: 0.78rem;
}

.timeline-item small {
  color: var(--muted);
  font-size: 0.64rem;
}

.legal-layout {
  display: grid;
  align-items: start;
  gap: 64px;
  grid-template-columns: 210px minmax(0, 1fr);
}

.legal-toc {
  position: sticky;
  top: 112px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.legal-toc strong {
  display: block;
  margin-bottom: 11px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-toc a {
  display: block;
  padding: 5px 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  text-decoration: none;
}

.legal-toc a:hover {
  color: var(--blue);
}

.legal-content {
  min-width: 0;
  max-width: 780px;
}

.legal-section {
  padding-bottom: 38px;
  scroll-margin-top: 105px;
}

.legal-section + .legal-section {
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 16px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.025em;
}

.legal-section h3 {
  margin-top: 24px;
  font-size: 1.05rem;
}

.legal-section p,
.legal-section li {
  color: var(--ink-soft);
}

.legal-section li + li {
  margin-top: 8px;
}

.table-wrap {
  max-width: 100%;
  overflow-x: auto;
  margin: 22px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

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

th {
  color: var(--ink);
  background: var(--paper);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

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

.contact-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.contact-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  border-radius: 12px;
  color: var(--blue);
  background: var(--surface-blue);
  font-size: 0.75rem;
  font-weight: 900;
}

.contact-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-card a {
  overflow-wrap: anywhere;
  font-weight: 750;
}

.request-box {
  display: grid;
  gap: 48px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  grid-template-columns: 0.8fr 1.2fr;
}

.request-steps {
  margin: 0;
  padding-left: 22px;
}

.request-steps li {
  margin-bottom: 15px;
  padding-left: 8px;
  color: var(--ink-soft);
}

.placeholder {
  display: inline;
  padding: 0.1em 0.3em;
  border-radius: 4px;
  color: #8a4907;
  background: #fff1d9;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.92em;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 55px 0 28px;
  color: rgba(255, 255, 255, 0.7);
  background: #081b35;
}

.footer-grid {
  display: grid;
  align-items: start;
  gap: 45px;
  padding-bottom: 40px;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
}

.site-footer .brand {
  margin-bottom: 17px;
  color: #fff;
}

.footer-copy {
  max-width: 390px;
  font-size: 0.9rem;
}

.footer-column strong {
  display: block;
  margin-bottom: 13px;
  color: #fff;
  font-size: 0.79rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin: 7px 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: #fff;
}

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

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-legal a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.not-found {
  display: grid;
  min-height: calc(100vh - 76px);
  padding: 80px 0;
  text-align: center;
  place-items: center;
}

.not-found-inner {
  max-width: 650px;
}

.error-code {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: clamp(5.5rem, 18vw, 11rem);
  font-weight: 850;
  letter-spacing: -0.09em;
  line-height: 0.8;
}

.not-found h1 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.not-found p {
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

@media (max-width: 980px) {
  .hero-grid {
    gap: 46px;
    grid-template-columns: 1fr;
  }

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

  .product-window {
    width: min(100%, 660px);
  }

  .card-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .feature-row {
    gap: 44px;
  }

  .legal-layout {
    gap: 42px;
    grid-template-columns: 180px minmax(0, 1fr);
  }
}

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

  .section {
    padding: 72px 0;
  }

  .section-sm {
    padding: 50px 0;
  }

  .header-inner {
    min-height: 68px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 15px;
    left: 15px;
    display: none;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--surface);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
  }

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

  .site-nav a {
    padding: 11px 13px;
  }

  .site-nav .nav-contact {
    margin: 4px 0 0;
    text-align: center;
  }

  .hero {
    padding: 75px 0 64px;
  }

  .hero-grid {
    gap: 40px;
  }

  .product-window {
    padding: 8px;
    border-radius: 20px;
  }

  .dashboard {
    min-height: 385px;
    grid-template-columns: 72px 1fr;
  }

  .dash-main {
    padding: 15px;
  }

  .dash-stats {
    grid-template-columns: 1fr 1fr;
  }

  .dash-stat:last-child {
    display: none;
  }

  .dash-sidebar {
    padding-inline: 9px;
  }

  .publish-card {
    grid-template-columns: 40px 1fr;
  }

  .thumb {
    width: 40px;
    height: 47px;
  }

  .publish-card .state-pill {
    display: none;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 68px;
    justify-content: flex-start;
  }

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

  .card-grid,
  .contact-grid,
  .split,
  .feature-row,
  .request-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .sticky-copy,
  .legal-toc {
    position: static;
  }

  .responsible-panel {
    padding: 38px 25px;
  }

  .commitments {
    grid-template-columns: 1fr;
  }

  .contact-band-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    padding: 72px 0 55px;
  }

  .feature-row {
    padding: 55px 0;
  }

  .feature-row:nth-child(even) .feature-copy {
    order: initial;
  }

  .feature-visual {
    min-height: 300px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    display: none;
  }

  .request-box {
    padding: 30px 23px;
  }
}

@media (max-width: 460px) {
  .brand {
    gap: 9px;
    font-size: 0.96rem;
  }

  .brand-mark {
    width: 35px;
    height: 35px;
  }

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

  .dash-sidebar {
    display: none;
  }

  .dashboard {
    grid-template-columns: 1fr;
  }

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

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

  .feature-card {
    min-height: 230px;
  }

  .feature-icon {
    margin-bottom: 28px;
  }

  .step {
    grid-template-columns: 36px 1fr;
  }

  .step-number {
    width: 36px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .contact-band,
  .site-footer,
  .legal-toc {
    display: none;
  }

  .page-hero,
  .section {
    padding: 24px 0;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 11pt;
  }

  a {
    color: #000;
  }
}
