:root {
  --ink: #0f0f0f;
  --paper: #f5f4f0;
  --paper-alt: #ebe7df;
  --card: #fffdf7;
  --text: #151515;
  --muted: #56524b;
  --line: rgba(15, 15, 15, 0.12);
  --line-strong: rgba(15, 15, 15, 0.2);
  --accent: #00c4a0;
  --accent-strong: #06d8b1;
  --accent-soft: rgba(0, 196, 160, 0.12);
  --accent-deep: #0a2f29;
  --white: #ffffff;
  --shadow: 0 30px 80px rgba(15, 15, 15, 0.12);
  --shadow-dark: 0 34px 100px rgba(0, 0, 0, 0.35);
  --radius-xl: 2rem;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --container: min(1180px, calc(100vw - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Syne", sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

p,
ul,
ol {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(15, 15, 15, 0.74);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.scrolled {
  background: rgba(15, 15, 15, 0.92);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  display: block;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.95rem;
  object-fit: cover;
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  gap: 0.1rem;
}

.brand-text strong,
.brand-text small {
  line-height: 1;
}

.brand-text strong {
  font-size: 1rem;
  color: var(--paper);
}

.brand-text small {
  font-size: 0.72rem;
  color: rgba(245, 244, 240, 0.9);
}

.site-header .brand {
  gap: 0.72rem;
}

.site-header .brand-mark {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.8rem;
  box-shadow: none;
}

.site-header .brand-text {
  gap: 0;
}

.site-header .brand-text strong {
  font-size: 0.98rem;
  line-height: 1;
}

.site-header .brand-text small {
  display: none;
}

.footer-brand .brand-mark {
  width: 2.65rem;
  height: 2.65rem;
  box-shadow: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.92rem;
  color: var(--paper);
}

.site-nav-mobile-link,
.menu-toggle {
  display: none;
}

.site-nav a,
.footer-links a {
  position: relative;
}

.site-nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.22rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

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

.button-accent {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(0, 196, 160, 0.28);
}

.button-accent:hover,
.button-accent:focus-visible {
  background: var(--accent-strong);
}

.button-outline,
.button-ghost,
.button-outline-light {
  background: transparent;
}

.button-outline {
  border-color: rgba(245, 244, 240, 0.25);
  color: var(--paper);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: rgba(245, 244, 240, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.button-ghost {
  border-color: rgba(245, 244, 240, 0.16);
  color: var(--paper);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(245, 244, 240, 0.4);
}

.menu-toggle {
  align-items: center;
  gap: 0.7rem;
  min-height: 3rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(245, 244, 240, 0.16);
  border-radius: 999px;
  background: transparent;
  color: var(--paper);
}

.menu-toggle-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle-box {
  display: grid;
  gap: 0.28rem;
}

.menu-toggle-box span {
  display: block;
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.menu-toggle:focus-visible {
  outline: none;
  border-color: rgba(245, 244, 240, 0.4);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-box span:nth-child(1) {
  transform: translateY(0.38rem) rotate(45deg);
}

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

.menu-toggle[aria-expanded="true"] .menu-toggle-box span:nth-child(3) {
  transform: translateY(-0.38rem) rotate(-45deg);
}

.button-outline-light {
  border-color: rgba(245, 244, 240, 0.22);
  color: var(--paper);
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  border-color: rgba(245, 244, 240, 0.46);
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 0;
  background: radial-gradient(ellipse at 50% 0%, #1a3a2a 0%, #0a0a0a 70%);
  color: var(--paper);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 38%);
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 0.6px, transparent 0.6px);
  background-size: 14px 14px;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  min-height: 100svh;
  padding: 6.5rem 0 4rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 50rem;
  text-align: center;
}

.hero-eyebrow {
  justify-content: center;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: currentColor;
}

.eyebrow-dark {
  color: var(--accent-deep);
}

h1,
h2,
h3,
summary {
  margin: 0;
  letter-spacing: -0.03em;
}

.hero-title {
  margin: 1rem auto 0;
  max-width: 800px;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero-title span {
  display: block;
  color: var(--accent);
}

.hero-intro {
  margin: 1.5rem auto 0;
  max-width: 580px;
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  color: rgba(245, 244, 240, 0.82);
  text-wrap: balance;
}

.hero-actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 1.4rem auto 0;
  color: rgba(245, 244, 240, 0.82);
  font-size: 0.96rem;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  padding: 0;
  color: inherit;
  font-size: inherit;
}

.hero-points li + li::before {
  content: "";
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: var(--accent);
  margin: 0 0.9rem;
}

.offer-panel {
  position: relative;
  padding: 1rem;
  border-radius: 1.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(17, 17, 17, 0.9);
  box-shadow: var(--shadow-dark);
}

.window-chrome {
  display: flex;
  gap: 0.5rem;
}

.window-chrome span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: rgba(245, 244, 240, 0.2);
}

.offer-head {
  margin-top: 1.25rem;
}

.panel-kicker,
.mini-label,
.ownership-label,
.sectors-label,
.feature-number {
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-kicker,
.mini-label,
.sectors-label {
  color: var(--accent);
}

.offer-head h2,
.ownership-header h2,
.cta-layout h2 {
  font-size: clamp(2.1rem, 3vw, 3rem);
  line-height: 0.98;
}

.offer-stack {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.mini-card {
  padding: 1.1rem 1rem 1.05rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-card.emphasis {
  background:
    linear-gradient(180deg, rgba(0, 196, 160, 0.14), rgba(0, 196, 160, 0.06)),
    rgba(255, 255, 255, 0.02);
  border-color: rgba(0, 196, 160, 0.24);
}

.mini-card strong,
.deliverable-card h3,
.feature-card h3,
.timeline-card h3,
.ownership-card h3 {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.22rem;
  line-height: 1.1;
}

.mini-card p:last-child,
.deliverable-card p,
.feature-card p,
.timeline-card p,
.ownership-card li,
.faq-list p,
.cta-layout .lede,
.footer-meta p {
  color: var(--muted);
}

.offer-panel .mini-card p:last-child,
.panel-footer,
.ownership-card li,
.cta-layout .lede {
  color: rgba(245, 244, 240, 0.8);
}

.panel-footer {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}

.status-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0.3rem rgba(0, 196, 160, 0.12);
}

.sectors {
  position: relative;
  z-index: 1;
  margin-top: 2.4rem;
  display: grid;
  gap: 0.85rem;
}

.sector-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.sector-list span {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 244, 240, 0.86);
}

.section {
  padding: 6.2rem 0;
}

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

.section-alt {
  background: linear-gradient(180deg, var(--paper-alt), #e2ddd2);
}

.section-darkband,
.cta-band,
.site-footer,
.not-found {
  background: var(--ink);
  color: var(--paper);
}

.intro-split,
.faq-layout,
.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: start;
}

.section-heading h2,
.not-found h1 {
  margin-top: 1rem;
  font-size: clamp(2.4rem, 4.8vw, 4.5rem);
  line-height: 0.96;
}

.section-heading.wide {
  max-width: 52rem;
}

.section-copy,
.lede {
  font-size: 1.06rem;
}

.section-copy {
  display: grid;
  gap: 1rem;
}

.intro-split .section-copy {
  padding-top: 2.3rem;
}

.feature-grid,
.timeline,
.ownership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

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

.feature-card,
.timeline-card,
.deliverable-card,
.ownership-card,
.faq-list details,
.not-found-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.timeline-card,
.ownership-card,
.cta-band {
  box-shadow: none;
}

.feature-card {
  min-height: 15rem;
}

.feature-number {
  color: var(--accent-deep);
}

.timeline-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.3rem;
  background: rgba(255, 255, 255, 0.8);
}

.timeline-step {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: var(--accent);
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
}

.deliverables-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.sticky {
  position: sticky;
  top: 6.5rem;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.deliverable-card {
  min-height: 13rem;
  background: var(--card);
}

.section-darkband {
  position: relative;
  overflow: clip;
}

.section-darkband::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: auto auto -8rem -4rem;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 196, 160, 0.22), transparent 70%);
  pointer-events: none;
}

.ownership-header,
.cta-layout {
  position: relative;
  z-index: 1;
}

.ownership-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.ownership-card {
  --color-surface: rgba(255, 255, 255, 0.05);
  --color-accent: var(--accent);
  --color-text-light: var(--paper);
  --color-text-muted: rgba(245, 244, 240, 0.72);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--color-surface);
}

.ownership-card.offer {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.ownership-card.accent {
  background: rgba(0, 196, 160, 0.15);
  border-color: var(--color-accent);
  box-shadow: 0 18px 42px rgba(0, 196, 160, 0.12);
}

.ownership-label {
  color: var(--accent);
}

.ownership-badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.85rem;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
}

.price-display {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-text-light);
  margin: 1rem 0 0.25rem;
}

.price-note {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-left: 0.25rem;
}

.price-sub {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.ownership-card ul {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.ownership-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.8;
}

.ownership-card li::before {
  content: "";
  flex: 0 0 auto;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.72rem;
  border-radius: 50%;
  background: var(--accent);
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-list details {
  background: var(--card);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.18rem;
  font-weight: 700;
  padding-right: 2.5rem;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--accent-deep);
  font-size: 1.5rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin-top: 0.9rem;
  max-width: 42rem;
}

.cta-band {
  position: relative;
  padding: 4rem 0;
}

.cta-layout {
  gap: 1.5rem;
  align-items: center;
}

.contact-layout {
  align-items: stretch;
}

.contact-copy {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.contact-note,
.contact-form-meta {
  color: rgba(245, 244, 240, 0.72);
}

.contact-form {
  position: relative;
  display: grid;
  gap: 1.1rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
}

.contact-form.is-submitting {
  opacity: 0.9;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.contact-field {
  display: grid;
  gap: 0.45rem;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-field span {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 244, 240, 0.68);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--paper);
  padding: 0.9rem 1rem;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(245, 244, 240, 0.42);
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: rgba(0, 196, 160, 0.7);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 0.2rem rgba(0, 196, 160, 0.14);
}

.contact-field textarea {
  min-height: 9rem;
  resize: vertical;
}

.contact-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem;
}

.contact-submit[disabled] {
  cursor: wait;
  opacity: 0.8;
}

.contact-status {
  min-height: 1.5rem;
  font-size: 0.95rem;
}

.contact-status[data-state="pending"] {
  color: rgba(245, 244, 240, 0.72);
}

.contact-status[data-state="success"] {
  color: var(--accent);
}

.contact-status[data-state="error"] {
  color: #ffb7b7;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem;
}

.site-footer {
  padding: 1.6rem 0 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 1.5rem;
  align-items: center;
}

.footer-brand .brand-text small,
.footer-meta,
.footer-links {
  color: rgba(245, 244, 240, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-meta {
  text-align: right;
}

.footer-meta p {
  margin: 0;
  position: relative;
  top: 40px;
}

.not-found-page {
  background: var(--ink);
}

.not-found {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 2rem 0;
}

.not-found-card {
  max-width: 36rem;
  background:
    linear-gradient(180deg, rgba(0, 196, 160, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--paper);
}

.not-found-card p {
  margin-top: 1rem;
  color: rgba(245, 244, 240, 0.76);
}

.not-found-card .button {
  margin-top: 1.6rem;
}

.privacy-page {
  background: var(--paper);
}

.privacy-hero {
  background:
    radial-gradient(circle at top left, rgba(0, 196, 160, 0.16), transparent 24%),
    linear-gradient(180deg, #0c0c0c 0%, #141414 100%);
  color: var(--paper);
  padding: 7.5rem 0 4rem;
}

.privacy-hero-inner {
  max-width: 52rem;
}

.privacy-title {
  margin-top: 1rem;
  max-width: 14ch;
  font-size: clamp(2.8rem, 5.4vw, 5rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.privacy-intro {
  margin-top: 1.35rem;
  max-width: 42rem;
  font-size: 1.08rem;
  color: rgba(245, 244, 240, 0.8);
}

.privacy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  margin-top: 1.5rem;
  color: rgba(245, 244, 240, 0.72);
}

.privacy-shell {
  padding-top: 4.6rem;
}

.privacy-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: 2rem;
  align-items: start;
}

.privacy-nav {
  position: sticky;
  top: 6.5rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.privacy-nav-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.privacy-nav nav {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.privacy-nav a {
  color: var(--muted);
}

.privacy-content {
  display: grid;
  gap: 1rem;
}

.privacy-section {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.privacy-section h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 0.98;
}

.privacy-section p + p,
.privacy-section p + ul,
.privacy-section ul + p,
.privacy-callout {
  margin-top: 1rem;
}

.privacy-list {
  display: grid;
  gap: 0.8rem;
}

.privacy-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--muted);
}

.privacy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
}

.privacy-callout {
  padding: 1rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(0, 196, 160, 0.22);
  background: rgba(0, 196, 160, 0.08);
}

.privacy-callout strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.privacy-callout p {
  margin-top: 0.45rem;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

@media (max-width: 1080px) {
  .hero-grid,
  .intro-split,
  .faq-layout,
  .deliverables-layout,
  .cta-layout,
  .footer-grid,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

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

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

  .sticky {
    position: static;
  }

  .intro-split .section-copy {
    padding-top: 0;
  }

  .privacy-nav {
    position: static;
  }

  .cta-actions,
  .footer-meta {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 820px) {
  .header-row {
    flex-wrap: wrap;
    min-height: 4.5rem;
    padding: 0.75rem 0;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    order: 4;
    gap: 0.9rem;
    margin-top: 0.35rem;
    padding: 1rem 0 0.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .site-nav a {
    display: inline-block;
    width: 100%;
    padding: 0.1rem 0;
  }

  .site-nav-mobile-link {
    display: inline-block;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 0;
  }

  .hero-grid {
    padding: 6rem 0 3.5rem;
  }

  .privacy-hero {
    padding: 6.6rem 0 3.4rem;
  }

  .feature-grid,
  .deliverables-grid,
  .ownership-grid,
  .timeline,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4.8rem 0;
  }

  h1 {
    max-width: 11ch;
  }
}

@media (max-width: 640px) {
  .brand {
    gap: 0.7rem;
  }

  .brand-text small {
    display: none;
  }

  .privacy-section,
  .privacy-nav {
    padding: 1.15rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-form {
    padding: 1.15rem;
  }

  .contact-form-footer,
  .contact-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: auto;
  }

  .button {
    width: 100%;
  }

  .hero-points {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    row-gap: 0.75rem;
  }

  .hero-points li + li::before {
    display: inline-block;
  }

  .sector-list,
  .footer-links {
    display: grid;
  }

  .offer-panel,
  .feature-card,
  .timeline-card,
  .deliverable-card,
  .ownership-card,
  .faq-list details {
    padding: 1.1rem;
  }

  .section-heading h2,
  .not-found h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}
