:root {
  --bg: #2c2f33;
  --bg-alt: #1e2124;
  --bg-surface: #23272a;
  --bg-surface-soft: #2a2f33;
  --text: #f0f3f1;
  --text-muted: #b4beb8;
  --text-soft: #d4ddd7;
  --line: rgba(128, 170, 135, 0.28);
  --line-strong: rgba(128, 170, 135, 0.5);
  --accent: #80aa87;
  --accent-strong: #5c7e6b;
  --accent-soft: rgba(128, 170, 135, 0.17);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-lg: 0 22px 52px rgba(0, 0, 0, 0.36);
  --shadow-md: 0 16px 34px rgba(0, 0, 0, 0.29);
  --container: min(1120px, calc(100% - 3rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #80aa87 #1e2124;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 86% -4%, rgba(128, 170, 135, 0.26), transparent 32%),
    radial-gradient(circle at 10% 16%, rgba(128, 170, 135, 0.14), transparent 24%),
    linear-gradient(180deg, #2f463b 0%, #2c2f33 24%, #1e2124 100%);
  background-attachment: fixed;
  line-height: 1.62;
}

a {
  color: inherit;
}

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

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

.skip-link {
  position: absolute;
  top: -40px;
  left: 1rem;
  background: var(--accent);
  color: #17211b;
  font-weight: 700;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  z-index: 5000;
  transition: top 0.2s ease;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-top: 4px solid var(--accent);
  border-bottom: 1px solid rgba(128, 170, 135, 0.36);
  background: rgba(30, 33, 36, 0.9);
  backdrop-filter: blur(10px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #80aa87 0%, #629784 100%);
  color: #1b2821;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand-mark img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.brand-text {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #f4f7f5;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-link {
  text-decoration: none;
  color: #c9d4cd;
  font-weight: 600;
  font-size: 0.94rem;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: #ffffff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.2rem;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-compact {
  padding: 0.56rem 1rem;
  font-size: 0.91rem;
}

.btn-primary {
  color: #f4faf6;
  background: linear-gradient(-45deg, #80aa87 0%, #629784 100%);
  box-shadow: 0 10px 24px rgba(73, 103, 80, 0.34);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 13px 28px rgba(73, 103, 80, 0.42);
}

.btn-secondary {
  color: #d7e2db;
  border-color: rgba(128, 170, 135, 0.45);
  background: rgba(39, 44, 48, 0.85);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(128, 170, 135, 0.76);
  background: rgba(45, 51, 56, 0.97);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(128, 170, 135, 0.45);
  color: #d6e2da;
  border-radius: 10px;
  min-height: 40px;
  min-width: 40px;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(128, 170, 135, 0.35);
  background: rgba(30, 33, 36, 0.98);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav-inner {
  width: var(--container);
  margin: 0 auto;
  padding: 0.95rem 0 1.2rem;
  display: grid;
  gap: 0.72rem;
}

.mobile-nav .nav-link {
  font-size: 1rem;
  padding: 0.35rem 0;
}

/* Shared sections */
main {
  display: block;
}

.section {
  padding: 4.6rem 0;
  position: relative;
}

.section-tight {
  padding: 3.5rem 0;
}

.section + .section {
  border-top: 1px solid rgba(128, 170, 135, 0.12);
}

.section-band-dark {
  background: rgba(25, 29, 31, 0.44);
}

.section-band-alt {
  background: rgba(33, 37, 40, 0.3);
}

.section-band-soft {
  background: rgba(42, 47, 50, 0.2);
}

.section-divider {
  width: min(580px, 72%);
  margin: 0 auto;
  border: 0;
  border-top: 2px solid rgba(128, 170, 135, 0.5);
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.81rem;
  color: #b8cec0;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: rgba(128, 170, 135, 0.76);
}

.section-title {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.78rem, 3.4vw, 2.65rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.section-text {
  margin-top: 1rem;
  color: var(--text-muted);
  max-width: 70ch;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.2rem;
}

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

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

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

.card {
  border: 1px solid rgba(128, 170, 135, 0.3);
  border-radius: var(--radius-md);
  background: linear-gradient(170deg, rgba(47, 54, 58, 0.95) 0%, rgba(33, 37, 40, 0.98) 100%);
  box-shadow: var(--shadow-md);
  padding: 1.24rem;
}

.card-title {
  margin: 0 0 0.55rem;
  font-size: 1.06rem;
  font-weight: 700;
  color: #f2f6f3;
}

.card p {
  margin: 0;
  color: #b8c3bc;
  font-size: 0.96rem;
}

.list-clean {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-clean li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-soft);
}

.list-clean li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #80aa87 0%, #629784 100%);
}

/* Hero */
.hero {
  padding: 5.8rem 0 4.2rem;
  position: relative;
  min-height: calc(100vh - 74px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 14%, rgba(128, 170, 135, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(54, 84, 72, 0.66) 0%, rgba(44, 47, 51, 0.76) 50%, rgba(30, 33, 36, 0.96) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.92;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-visual {
  display: grid;
  gap: 0.9rem;
}

.hero-robot {
  width: clamp(180px, 34vw, 330px);
  margin: 0 auto 0.2rem;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.3));
}

.section-robot {
  width: clamp(140px, 20vw, 220px);
  margin: 1rem auto 0;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.3));
}

.hero h1 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2.1rem, 4.7vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.hero p {
  margin: 1.1rem 0 0;
  color: #c3ccc6;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  max-width: 58ch;
}

.hero-actions {
  margin-top: 1.62rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-notes {
  margin-top: 1.15rem;
  color: #afbab2;
  font-size: 0.95rem;
}

.hero-surface {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(128, 170, 135, 0.42);
  background:
    linear-gradient(165deg, rgba(60, 79, 68, 0.68) 0%, rgba(33, 37, 40, 0.96) 52%, rgba(30, 33, 36, 0.98) 100%);
  box-shadow: var(--shadow-lg);
  padding: 1.3rem;
}

.surface-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.surface-title {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: #f0f5f1;
}

.surface-chip {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #d2e8d6;
  border: 1px solid rgba(128, 170, 135, 0.45);
  border-radius: 999px;
  padding: 0.3rem 0.55rem;
  background: rgba(128, 170, 135, 0.14);
}

.story-group {
  border: 1px solid rgba(128, 170, 135, 0.28);
  border-radius: 14px;
  background: rgba(36, 40, 43, 0.86);
  padding: 0.95rem;
}

.story-group + .story-group {
  margin-top: 0.85rem;
}

.story-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.4rem;
}

.story-head h3 {
  margin: 0;
  font-size: 0.96rem;
  color: #eff4f0;
}

.story-head span {
  color: #aac0ad;
  font-size: 0.78rem;
  white-space: nowrap;
}

.story-group p {
  margin: 0;
  color: #b7c2bb;
  font-size: 0.91rem;
}

.source-tags {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.source-tags span {
  font-size: 0.76rem;
  color: #c5d4c7;
  border: 1px solid rgba(128, 170, 135, 0.32);
  border-radius: 999px;
  padding: 0.22rem 0.5rem;
  background: rgba(45, 52, 49, 0.82);
}

/* Comparison */
.comparison {
  border: 1px solid rgba(128, 170, 135, 0.33);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
}

.comparison-row:nth-child(odd) {
  background: rgba(36, 40, 43, 0.85);
}

.comparison-row:nth-child(even) {
  background: rgba(42, 46, 49, 0.95);
}

.comparison-cell {
  padding: 1rem;
  border-bottom: 1px solid rgba(128, 170, 135, 0.2);
  border-right: 1px solid rgba(128, 170, 135, 0.2);
}

.comparison-row .comparison-cell:last-child {
  border-right: none;
}

.comparison-row:last-child .comparison-cell {
  border-bottom: none;
}

.comparison-head {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #adc3b3;
  font-weight: 700;
}

.comparison-title {
  color: #edf3ee;
  font-weight: 700;
}

.comparison-muted {
  color: #a7b3aa;
}

.comparison-good {
  color: #d5ebd8;
}

/* Showcase / steps */
.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.step-item {
  border: 1px solid rgba(128, 170, 135, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(38, 43, 46, 0.88);
  padding: 0.9rem 1rem;
}

.step-item strong {
  color: #edf3ef;
  display: block;
  margin-bottom: 0.2rem;
}

.step-item p {
  margin: 0;
  color: #b7c2bb;
  font-size: 0.95rem;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-09 {
  margin-top: 0.9rem;
}

.mt-08 {
  margin-top: 0.8rem;
}

.actions-center {
  justify-content: center;
}

.metric {
  border: 1px solid rgba(128, 170, 135, 0.3);
  border-radius: 14px;
  padding: 0.7rem;
  background: rgba(41, 46, 49, 0.88);
}

.metric strong {
  display: block;
  font-size: 1.2rem;
  color: #eef4ef;
}

.metric span {
  color: #b2beb6;
  font-size: 0.84rem;
}

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

.gallery-item {
  border: 1px solid rgba(128, 170, 135, 0.32);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(35, 39, 42, 0.96);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gallery-caption {
  padding: 0.75rem 0.9rem 0.95rem;
  border-top: 1px solid rgba(128, 170, 135, 0.2);
}

.gallery-caption strong {
  display: block;
  color: #ecf3ed;
  font-size: 0.94rem;
}

.gallery-caption span {
  color: #b3bfb6;
  font-size: 0.88rem;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid rgba(128, 170, 135, 0.3);
  border-radius: var(--radius-sm);
  background: rgba(37, 41, 44, 0.92);
  padding: 0.95rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: #edf3ee;
}

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

.faq-item p {
  margin: 0.65rem 0 0;
  color: #b7c2bb;
}

/* Pricing */
.pricing-intro {
  margin-bottom: 1rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.1rem;
}

.plan-card {
  position: relative;
}

.plan-popular {
  border-color: rgba(128, 170, 135, 0.62);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
}

.plan-tier {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #b8cec0;
}

.plan-price {
  margin: 0.32rem 0 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.65rem;
  line-height: 1.12;
  color: #eef5ef;
}

.plan-price span {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #b2beb6;
  margin-left: 0.22rem;
}

.plan-note {
  margin: 0.65rem 0 0;
  color: #b9c4bc;
  font-size: 0.91rem;
}

.plan-badge {
  margin: 0 0 0.35rem;
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  color: #deefe1;
  border: 1px solid rgba(128, 170, 135, 0.62);
  border-radius: 999px;
  padding: 0.2rem 0.52rem;
  background: rgba(128, 170, 135, 0.15);
}

.plan-list {
  margin: 0.85rem 0 0;
  padding-left: 1.05rem;
  color: #c5d1c9;
  display: grid;
  gap: 0.52rem;
  font-size: 0.9rem;
}

.plan-list li::marker {
  color: #9cbb9f;
}

.table-wrap {
  margin-top: 1.25rem;
  border: 1px solid rgba(128, 170, 135, 0.34);
  border-radius: var(--radius-md);
  overflow-x: auto;
  background: rgba(33, 37, 40, 0.95);
  box-shadow: var(--shadow-md);
}

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

.limit-table caption {
  text-align: left;
  padding: 0.95rem 1rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #bad0bf;
}

.limit-table th,
.limit-table td {
  border-top: 1px solid rgba(128, 170, 135, 0.22);
  padding: 0.72rem 0.8rem;
  text-align: left;
  vertical-align: top;
  font-size: 0.88rem;
}

.limit-table thead th {
  border-top: none;
  color: #e9f1ea;
  font-weight: 700;
  background: rgba(47, 54, 58, 0.9);
}

.limit-table tbody th {
  color: #d8e4da;
  width: 24%;
  font-weight: 700;
}

.limit-table tbody td {
  color: #b4c0b7;
}

.add-ons {
  margin-top: 1.3rem;
}

.add-ons-title {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  color: #edf3ee;
}

.add-on-card {
  padding-top: 1rem;
}

.add-on-name {
  margin: 0;
  font-weight: 700;
  color: #edf4ef;
}

.add-on-price {
  margin: 0.2rem 0 0.58rem;
  font-size: 0.84rem;
  color: #bdd2c2;
  letter-spacing: 0.02em;
}

.cta-shell {
  border: 1px solid rgba(128, 170, 135, 0.42);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(56, 75, 65, 0.56) 0%, rgba(35, 39, 42, 0.94) 62%);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  text-align: center;
}

.cta-shell h2 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.65rem, 3.3vw, 2.4rem);
}

.cta-shell p {
  margin: 0.9rem auto 1.4rem;
  color: #bfcbc3;
  max-width: 62ch;
}

/* Legal pages */
.legal-main {
  padding: 4.4rem 0;
}

.legal-hero {
  margin-bottom: 1.6rem;
}

.legal-hero-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.2rem;
  align-items: end;
}

.legal-hero-image {
  width: clamp(130px, 18vw, 220px);
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.3));
}

.legal-kicker {
  margin: 0 0 0.65rem;
  color: #bdd2c2;
  font-size: 0.89rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.legal-title {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.legal-subtext {
  color: #b7c2bb;
  margin-top: 0.8rem;
  max-width: 72ch;
}

.legal-grid {
  display: grid;
  gap: 1rem;
}

.legal-card {
  border: 1px solid rgba(128, 170, 135, 0.32);
  border-radius: var(--radius-md);
  background: rgba(35, 39, 42, 0.95);
  padding: 1.2rem;
  box-shadow: var(--shadow-md);
}

.legal-card h2 {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
}

.legal-card p {
  margin: 0;
  color: #b7c2bb;
}

.legal-card a,
.notice a {
  color: #d5ead9;
}

.legal-card a:hover,
.notice a:hover,
.legal-card a:focus-visible,
.notice a:focus-visible {
  color: #ffffff;
}

.legal-card p + p {
  margin-top: 0.7rem;
}

.legal-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.legal-list li {
  color: #cdd7d1;
  padding-left: 1.1rem;
  position: relative;
}

.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #80aa87;
}

.notice {
  border: 1px solid rgba(128, 170, 135, 0.45);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  color: #c5d2c9;
  background: rgba(45, 51, 56, 0.9);
  margin-top: 1rem;
}

.notice strong {
  color: #edf4ef;
}

/* 404 */
.not-found {
  padding: 5rem 0 4rem;
}

.not-found-card {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(128, 170, 135, 0.4);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 18% 12%, rgba(128, 170, 135, 0.2), transparent 32%),
    rgba(35, 39, 42, 0.96);
  box-shadow: var(--shadow-lg);
  padding: 2.2rem;
}

.not-found-code {
  margin: 0;
  font-size: clamp(3rem, 9vw, 6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: #d8eadc;
}

.not-found-card h1 {
  margin: 0.7rem 0 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.2;
}

.not-found-card p {
  margin: 1rem auto 0;
  color: #b7c2bb;
  max-width: 60ch;
}

.not-found-robot {
  width: clamp(110px, 22vw, 180px);
  margin: 0 auto 0.75rem;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.33));
}

.not-found-actions {
  margin-top: 1.4rem;
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  margin-top: 3.4rem;
  border-top: 1px solid rgba(128, 170, 135, 0.35);
  background: linear-gradient(180deg, rgba(47, 70, 59, 0.46) 0%, rgba(30, 33, 36, 0.94) 36%);
}

.footer-top {
  padding: 2rem 0 1.3rem;
  display: grid;
  gap: 1.3rem;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.footer-brand p {
  margin: 0.45rem 0 0;
  color: #bcc8c0;
  max-width: 48ch;
}

.footer-heading {
  margin: 0 0 0.55rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c6dbc9;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.footer-links a {
  color: #cfdbd3;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(128, 170, 135, 0.28);
  padding: 0.95rem 0 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: #aeb9b1;
  font-size: 0.88rem;
}

code {
  font-family: "Consolas", "Courier New", monospace;
  font-size: 0.9em;
  color: #d7ead9;
}

/* Reveal motion */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

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

/* Responsive */
@media (max-width: 1080px) {
  .hero-grid,
  .split-panel,
  .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 920px) {
  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 4.4rem;
    min-height: auto;
  }

  .legal-hero-wrap {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .legal-hero-image {
    order: -1;
    margin-bottom: 0.3rem;
  }

  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-cell {
    border-right: none;
  }

  .comparison-row .comparison-cell:nth-child(1) {
    border-bottom: none;
    font-weight: 700;
    color: #f2f6f2;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(1120px, calc(100% - 2rem));
  }

  .section {
    padding: 3.45rem 0;
  }

  .grid-2,
  .grid-3,
  .gallery,
  .pricing-cards,
  .footer-top,
  .metric-strip {
    grid-template-columns: 1fr;
  }

  .cta-shell,
  .not-found-card {
    padding: 1.45rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

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

  .hero-video {
    display: none;
  }
}
