:root {
  --brand-50: #eef1ff;
  --brand-100: #e6effa;
  --brand-200: #c7d3f7;
  --brand-400: #6266ff;
  --brand-500: #3034ff;
  --brand-600: #2226cc;
  --brand-700: #191d99;
  --lime: #deff37;
  --ink-900: #14141f;
  --ink-700: #3a3a4a;
  --ink-500: #6b6b7c;
  --ink-300: #c7c7d1;
  --surface: #ffffff;
  --surface-alt: #f6f7ff;
  --border: #e2e5f5;
  --shadow-sm: 0 1px 2px rgba(20, 20, 31, 0.06), 0 1px 1px rgba(20, 20, 31, 0.04);
  --shadow-md: 0 8px 24px rgba(48, 52, 255, 0.10), 0 2px 6px rgba(20, 20, 31, 0.06);
  --shadow-lg: 0 20px 48px rgba(48, 52, 255, 0.16), 0 6px 16px rgba(20, 20, 31, 0.08);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink-900);
  background: var(--brand-50);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 760px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-400), var(--brand-700));
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}

.btn-primary.pulse {
  animation: pulseGlow 2.6s ease-in-out infinite;
}

.btn-primary.pulse:hover {
  animation-play-state: paused;
}

.btn-ghost {
  background: transparent;
  color: var(--brand-700);
  border-color: var(--brand-200);
}

.btn-ghost:hover {
  background: var(--brand-100);
}

.btn-small {
  padding: 9px 18px;
  font-size: 0.9rem;
}

.btn-large {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 247, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

#lang-toggle {
  min-width: 44px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink-900);
}

.brand-logo {
  display: block;
  height: 34px;
  width: auto;
  aspect-ratio: 506 / 120;
}

.main-nav {
  display: flex;
  gap: 28px;
  font-weight: 500;
  font-size: 0.95rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--ink-700);
  transition: color 0.15s ease;
}

.main-nav a:hover {
  color: var(--brand-700);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes drift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -20px) scale(1.08);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(48, 52, 255, 0.35);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(48, 52, 255, 0);
  }
}

.hero-anim {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-anim:nth-child(1) { animation-delay: 0.05s; }
.hero-anim:nth-child(2) { animation-delay: 0.15s; }
.hero-anim:nth-child(3) { animation-delay: 0.25s; }
.hero-anim:nth-child(4) { animation-delay: 0.35s; }
.hero-anim:nth-child(5) { animation-delay: 0.45s; }

.hero-visual.hero-anim {
  animation-name: popIn;
  animation-delay: 0.25s;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  .hero-anim, .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .phone-mock, .dashboard-mock, .hero-blob, .btn-primary.pulse {
    animation: none !important;
  }
}

.hero {
  padding: 72px 0 56px;
  overflow: hidden;
  position: relative;
}

.hero-blob {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--brand-200), transparent 70%);
  filter: blur(10px);
  opacity: 0.7;
  animation: drift 14s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-700);
  margin: 0 0 14px;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  line-height: 1.12;
  margin: 0 0 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--brand-400), var(--brand-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  font-size: 1.1rem;
  color: var(--ink-700);
  max-width: 52ch;
  margin: 0 0 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 0.88rem;
  color: var(--ink-500);
}

.hero-trust li {
  position: relative;
  padding-left: 20px;
}

.hero-trust li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-600);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.phone-mock {
  position: relative;
  z-index: 2;
  width: 240px;
  margin: 0 auto;
  background: var(--ink-900);
  border-radius: 34px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
  animation: floatY 5.5s ease-in-out infinite;
}

.phone-notch {
  width: 70px;
  height: 18px;
  background: var(--ink-900);
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  top: 0;
}

.phone-screen {
  background: var(--surface);
  border-radius: 24px;
  padding: 18px 16px 22px;
  min-height: 400px;
}

.mock-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}

.mock-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}

.mock-line {
  display: inline-block;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-100);
}

.mock-line-sm {
  width: 60px;
}

.mock-line-md {
  width: 110px;
}

.mock-dim {
  background: var(--border);
  height: 6px;
  margin-top: 6px;
}

.mock-qr {
  background: var(--surface-alt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin-bottom: 12px;
  animation: qrPulse 3.2s ease-in-out infinite;
}

@keyframes qrPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

.mock-caption {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brand-700);
  margin: 0 0 18px;
}

.mock-card {
  background: var(--brand-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 10px;
}

.dashboard-mock {
  position: absolute;
  right: -10px;
  bottom: 10px;
  width: 220px;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  z-index: 3;
  border: 1px solid var(--border);
  animation: floatY 6.5s ease-in-out infinite;
  animation-delay: -3s;
}

.dashboard-mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.mock-pill {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--brand-700);
  background: var(--brand-100);
  padding: 3px 10px;
  border-radius: 999px;
}

.dashboard-mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 72px;
}

.dashboard-mock-chart span {
  flex: 1;
  height: var(--h);
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--brand-400), var(--brand-700));
  opacity: 0.9;
  transform-origin: bottom;
  animation: growBar 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.dashboard-mock-chart span:nth-child(1) { animation-delay: 0.5s; }
.dashboard-mock-chart span:nth-child(2) { animation-delay: 0.58s; }
.dashboard-mock-chart span:nth-child(3) { animation-delay: 0.66s; }
.dashboard-mock-chart span:nth-child(4) { animation-delay: 0.74s; }
.dashboard-mock-chart span:nth-child(5) { animation-delay: 0.82s; }
.dashboard-mock-chart span:nth-child(6) { animation-delay: 0.90s; }
.dashboard-mock-chart span:nth-child(7) { animation-delay: 0.98s; }

@keyframes growBar {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 36px;
  padding: 20px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-500);
}

.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--surface);
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}

.section-lede {
  color: var(--ink-500);
  font-size: 1.05rem;
  margin: 0;
}

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-200);
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--brand-100);
  color: var(--brand-600);
  margin-bottom: 16px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 1.02rem;
  margin: 0 0 8px;
  font-weight: 700;
}

.feature-card p {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.92rem;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step {
  background: var(--brand-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  position: relative;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-400), var(--brand-700));
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  font-weight: 700;
}

.step p {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.92rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 20px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 14px 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--brand-600);
  transition: transform 0.15s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0 0 16px;
  color: var(--ink-500);
  font-size: 0.94rem;
}

.section-cta {
  background: var(--surface);
}

.signup-form {
  background: var(--brand-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-row {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-grid-2 .form-row {
  margin-bottom: 18px;
}

label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-700);
}

input, textarea {
  font-family: inherit;
  font-size: 0.96rem;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink-900);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--brand-400);
  box-shadow: 0 0 0 3px var(--brand-100);
}

textarea {
  resize: vertical;
  min-height: 96px;
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin: 16px 0 0;
  font-size: 0.92rem;
  min-height: 1.4em;
  text-align: center;
}

.form-status.success {
  color: #1a7a3c;
  font-weight: 600;
}

.form-status.error {
  color: #c0392b;
  font-weight: 600;
}

.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;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(20, 20, 31, 0.5);
  backdrop-filter: blur(2px);
  animation: fadeInUp 0.25s ease both;
}

.modal-overlay[hidden] {
  display: none;
}

.modal-card {
  width: 100%;
  max-width: 380px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px 28px;
  text-align: center;
  animation: popIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.modal-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-icon svg {
  width: 30px;
  height: 30px;
}

.modal-icon.success {
  background: #e5f6ec;
  color: #1a7a3c;
}

.modal-icon.error {
  background: #fdecea;
  color: #c0392b;
}

.modal-title {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 700;
}

.modal-message {
  margin: 0 0 24px;
  color: var(--ink-700);
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .modal-overlay, .modal-card {
    animation: none !important;
  }
}

.consent-row {
  margin: 4px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink-700);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--brand-600, var(--brand-400));
}

.link-btn {
  font: inherit;
  font-weight: 600;
  color: var(--brand-600, var(--brand-400));
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.link-btn:hover, .link-btn:focus-visible {
  color: var(--ink-900);
}

.legal-modal-card {
  position: relative;
  width: 100%;
  max-width: 640px;
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px 28px 28px;
  text-align: left;
  animation: popIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.legal-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--ink-500);
  cursor: pointer;
}

.legal-modal-close:hover, .legal-modal-close:focus-visible {
  background: var(--brand-50);
  color: var(--ink-900);
}

.legal-modal-meta {
  margin: 0 0 16px;
  font-size: 0.82rem;
  color: var(--ink-500);
}

.legal-modal-body {
  overflow-y: auto;
  padding-right: 4px;
  margin-bottom: 20px;
  color: var(--ink-700);
  font-size: 0.94rem;
  line-height: 1.65;
}

.legal-modal-body p {
  margin: 0 0 12px;
}

.legal-modal-body p:last-child {
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  .legal-modal-card {
    animation: none !important;
  }
}

.cms-article {
  padding: 64px 0 24px;
}

.cms-article h1,
.cms-article h2,
.cms-article h3 {
  line-height: 1.25;
  margin: 1.4em 0 0.6em;
}

.cms-article h1 {
  font-size: clamp(1.8rem, 1.4rem + 1.8vw, 2.6rem);
}

.cms-article h2 {
  font-size: clamp(1.4rem, 1.2rem + 1vw, 1.9rem);
}

.cms-article h3 {
  font-size: 1.2rem;
}

.cms-article p,
.cms-article ul,
.cms-article ol {
  color: var(--ink-700);
  line-height: 1.7;
  margin: 0 0 1.2em;
}

.cms-article ul,
.cms-article ol {
  padding-left: 1.4em;
}

.cms-article a {
  color: var(--brand-600);
  text-decoration: underline;
  text-decoration-color: var(--brand-200);
}

.cms-article a:hover {
  text-decoration-color: currentColor;
}

.cms-article blockquote {
  margin: 1.4em 0;
  padding: 0.2em 1.2em;
  border-left: 3px solid var(--brand-400);
  color: var(--ink-500);
}

.cms-article img {
  border-radius: var(--radius-md);
  margin: 1.2em 0;
}

.cms-article table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
}

.cms-article th,
.cms-article td {
  border: 1px solid var(--border);
  padding: 8px 12px;
  text-align: left;
}

.cms-cover-image {
  width: 100%;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin: 0 0 1.4em;
}

.cms-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--ink-500);
  margin: 0 0 20px;
}

.cms-breadcrumb a {
  color: var(--ink-500);
  text-decoration: none;
}

.cms-breadcrumb a:hover {
  color: var(--brand-600);
  text-decoration: underline;
}

.cms-breadcrumb [aria-current="page"] {
  color: var(--ink-700);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 40ch;
}

.cms-eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-600);
  background: var(--brand-50);
  padding: 5px 12px;
  border-radius: 999px;
  margin: 0 0 14px;
}

.cms-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 1.8em;
}

.cms-byline-avatar {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-100);
  color: var(--brand-700);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cms-byline-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cms-byline-name {
  font-weight: 600;
  color: var(--ink-900);
  font-size: 0.92rem;
}

.cms-byline-sub {
  color: var(--ink-500);
  font-size: 0.84rem;
}

.cms-inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin: 2em 0;
  padding: 18px 22px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.cms-inline-cta strong {
  display: block;
  color: var(--ink-900);
  font-size: 0.98rem;
}

.cms-inline-cta span {
  display: block;
  color: var(--ink-500);
  font-size: 0.86rem;
  margin-top: 2px;
}

.cms-article .cms-inline-cta a.btn {
  color: #fff;
  text-decoration: none;
  flex: none;
}

.cms-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 2.4em 0 0;
  padding-top: 1.6em;
  border-top: 1px solid var(--border);
}

.cms-share-label {
  font-weight: 600;
  color: var(--ink-700);
  margin-right: 4px;
}

.cms-share a,
.cms-share-copy {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink-700);
  font-size: 0.86rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.cms-share a:hover,
.cms-share-copy:hover {
  border-color: var(--brand-400);
  color: var(--brand-600);
}

.post-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.post-card-meta {
  color: var(--ink-500);
  font-size: 0.82rem;
  margin-top: -8px;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  color: var(--ink-500);
  font-size: 0.86rem;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 20px;
  font-size: 0.86rem;
  font-weight: 500;
}

.footer-links a {
  text-decoration: none;
  color: var(--ink-500);
}

.footer-links a:hover {
  color: var(--brand-700);
}

.footer-social {
  display: flex;
  gap: 14px;
  font-size: 0.86rem;
  font-weight: 500;
}

.footer-social a {
  text-decoration: none;
  color: var(--ink-500);
}

.footer-social a:hover {
  color: var(--brand-700);
}

.cms-related {
  margin: 2.4em 0 0;
  padding-top: 1.6em;
  border-top: 1px solid var(--border);
}

.cms-related h2 {
  font-size: 1.1rem;
  margin: 0 0 1em;
}

.cms-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.cms-article .cms-related-card {
  display: block;
  padding: 14px 16px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--ink-900);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  line-height: 1.4;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.cms-article .cms-related-card:hover {
  border-color: var(--brand-400);
  color: var(--ink-900);
  text-decoration: none;
  transform: translateY(-2px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 2em 0;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card-highlighted {
  border-color: var(--brand-400);
  box-shadow: var(--shadow-md);
}

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

.pricing-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-600);
  margin: 0;
}

.pricing-card ul {
  list-style: none;
  margin: 0 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--ink-700);
  font-size: 0.92rem;
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
    order: -1;
  }

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

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

@media (max-width: 720px) {
  .main-nav {
    display: none;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .signup-form {
    padding: 26px 22px;
  }
}

@media (max-width: 560px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding: 48px 0 40px;
  }

  .section {
    padding: 64px 0;
  }
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 16px;
}

.cookie-banner-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.cookie-banner-text {
  flex: 1 1 320px;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-700);
}

.cookie-banner-text a {
  color: var(--brand-600);
  text-decoration: underline;
  text-decoration-color: var(--brand-200);
}

.cookie-banner-actions {
  flex: 0 0 auto;
  display: flex;
  gap: 10px;
}

@media (max-width: 560px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-actions {
    justify-content: flex-end;
  }
}

