/* DiaBrain landing — tokens aligned with diab.css (Tailwind / shadcn theme) */

:root {
  --radius: 0.625rem;
  --background: 0.99 0 0;
  --foreground: 0.18 0.01 260;
  --card: 1 0 0;
  --primary: 0.4 0.16 265;
  --primary-foreground: 0.99 0 0;
  --secondary: 0.55 0.18 170;
  --secondary-foreground: 0.99 0 0;
  --muted: 0.94 0.01 0;
  --muted-foreground: 0.55 0.02 260;
  --border: 0.88 0.01 0;
  --ring: 0.4 0.16 265;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: oklch(var(--background));
  color: oklch(var(--foreground));
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

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

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

p {
  margin: 0 0 1rem;
}

.container {
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-inline: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-inline: 2rem;
  }
}

.narrow {
  max-width: 42rem;
}

.text-center {
  text-align: center;
}

.center {
  text-align: center;
}

.wrap {
  flex-wrap: wrap;
}

.mt-sm {
  margin-top: 0.5rem;
}

.mt-xl {
  margin-top: 2.5rem;
}

.mb-lg {
  margin-bottom: 1.75rem;
}

.max-xs {
  max-width: 20rem;
}

.stack {
  display: flex;
  flex-direction: column;
}

.gap-sm {
  gap: 0.65rem;
}

/* Brand wordmark — matches diab.html Dia / Brain colours */
.brand {
  white-space: nowrap;
}

.brand-dia {
  color: oklch(var(--primary));
  font-weight: 700;
}

.brand-brain {
  color: oklch(var(--secondary));
  font-weight: 700;
}

/* Light tints on gradient band (parity with live DiaBrain CTA) */
.brand-gradient .brand-dia {
  color: oklch(0.97 0.04 265);
}

.brand-gradient .brand-brain {
  color: oklch(0.97 0.07 170);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: oklch(var(--background));
}

.header-wrap {
  padding-block: 0;
}

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

@media (min-width: 768px) {
  .header-row {
    min-height: 12rem;
  }
}

.logo-link {
  display: flex;
  align-items: center;
  border-radius: var(--radius);
  outline-offset: 4px;
}

.logo-link:focus-visible {
  outline: 2px solid oklch(var(--ring));
}

.logo-img {
  height: 8rem;
  width: auto;
  display: block;
}

@media (min-width: 768px) {
  .logo-img {
    height: 10rem;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: oklch(var(--primary));
}

.nav-link:hover {
  opacity: 0.85;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  background: transparent;
  color: oklch(var(--muted-foreground));
  cursor: pointer;
}

.nav-toggle:hover {
  color: oklch(var(--foreground));
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1rem;
}

@media (min-width: 768px) {
  .nav-mobile {
    display: none !important;
  }
}

.nav-mobile[hidden] {
  display: none !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
  text-decoration: none;
}

.btn-sm {
  padding: 0.5rem 1rem;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background-color: oklch(var(--primary));
  color: oklch(var(--primary-foreground));
  border-color: oklch(var(--primary));
}

.btn-primary:hover {
  background-color: color-mix(in oklch, oklch(var(--primary)), black 8%);
}

.btn-outline {
  background: transparent;
  color: oklch(var(--primary));
  border-color: oklch(var(--primary));
}

.btn-outline:hover {
  background-color: oklch(var(--primary) / 0.05);
}

.btn-teal {
  background-color: oklch(var(--secondary));
  color: oklch(var(--secondary-foreground));
  border-color: oklch(var(--secondary));
}

.btn-teal:hover {
  background-color: color-mix(in oklch, oklch(var(--secondary)), black 8%);
}

.btn-light {
  background-color: oklch(var(--primary-foreground));
  color: oklch(var(--primary));
  border-color: oklch(var(--primary-foreground));
}

.btn-light:hover {
  background-color: oklch(var(--primary-foreground) / 0.92);
}

.btn-ghost-light {
  background: transparent;
  color: oklch(var(--primary-foreground));
  border: 2px solid oklch(var(--primary-foreground) / 0.55);
}

.btn-ghost-light:hover {
  background-color: oklch(var(--primary-foreground) / 0.08);
}

/* Sections */
.section {
  padding-block: 4rem;
}

.section-muted {
  background-color: oklch(var(--muted) / 0.4);
}

.section-hero {
  padding-block: 4rem 4.5rem;
  background-color: oklch(var(--background));
}

@media (min-width: 640px) {
  .section-hero {
    padding-block: 5rem 5.5rem;
  }
}

.section-head {
  margin-bottom: 3rem;
}

.narrow-center {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.text-lg-muted {
  font-size: 1.125rem;
  color: oklch(var(--muted-foreground));
  line-height: 1.65;
}

.muted {
  color: oklch(var(--muted-foreground));
}

.small {
  font-size: 0.875rem;
}

.tiny {
  font-size: 0.75rem;
}

.left {
  text-align: left;
}

.font-semibold {
  font-weight: 600;
}

.link-primary {
  font-size: 0.875rem;
  font-weight: 600;
  color: oklch(var(--primary));
}

.link-primary:hover {
  opacity: 0.85;
}

/* Hero layout */
.hero-layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background-color: oklch(var(--secondary) / 0.1);
  border: 1px solid oklch(var(--secondary) / 0.2);
  font-size: 0.75rem;
  font-weight: 500;
  color: oklch(var(--secondary));
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: oklch(var(--secondary));
}

.hero-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-lead {
  font-size: 1.125rem;
  color: oklch(var(--muted-foreground));
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

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

.hero-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .hero-checklist {
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 1.25rem;
  }
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: oklch(var(--muted-foreground));
}

.icon-check {
  stroke: oklch(var(--secondary));
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

/* Patient mockup card */
.hero-panel-wrap {
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-panel-wrap {
    justify-content: flex-end;
  }
}

.patient-card {
  width: 100%;
  max-width: 28rem;
  border-radius: 0.75rem;
  border: 1px solid oklch(var(--border));
  background-color: oklch(var(--card));
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.06);
  overflow: hidden;
}

.patient-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background-color: oklch(var(--primary));
  color: oklch(var(--primary-foreground));
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.patient-card-dots {
  display: flex;
  gap: 0.35rem;
}

.patient-card-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: oklch(var(--primary-foreground) / 0.3);
}

.patient-card-dots span:last-child {
  background: oklch(var(--primary-foreground) / 0.55);
}

.patient-card-body {
  padding: 1rem;
}

.patient-card-divider {
  border-bottom: 1px solid oklch(var(--border));
}

.patient-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: oklch(var(--muted-foreground));
  margin: 0 0 0.75rem;
}

.patient-rows {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.patient-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.35rem 0.55rem;
  border-radius: var(--radius);
  background-color: oklch(var(--muted) / 0.5);
  font-size: 0.75rem;
}

.patient-row-val {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.patient-row .val {
  font-weight: 600;
  color: oklch(var(--foreground));
}

.pill {
  font-size: 10px;
  font-weight: 600;
  padding: 0.125rem 0.375rem;
  border-radius: 999px;
  white-space: nowrap;
}

.pill-warn {
  background: #fffbeb;
  color: #b45309;
  border: 1px solid #fde68a;
}

.pill-ok {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.pill-outline {
  font-size: 10px;
  padding: 0.125rem 0.5rem;
  color: oklch(var(--secondary));
  border: 1px solid oklch(var(--secondary) / 0.4);
  background: transparent;
}

.rec-box {
  border-radius: var(--radius);
  border: 1px solid oklch(var(--secondary) / 0.3);
  background-color: oklch(var(--secondary) / 0.05);
  padding: 0.75rem;
  margin-bottom: 0.5rem;
}

.rec-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.rec-drug {
  font-size: 0.875rem;
  font-weight: 600;
}

.rec-sub {
  font-size: 0.75rem;
  color: oklch(var(--muted-foreground));
  margin: 0;
}

.adr-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.6rem;
  border-radius: var(--radius);
  background-color: oklch(var(--muted) / 0.35);
  font-size: 0.75rem;
}

.pill-ok-solid {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

/* Problem grid */
.grid-problem {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .grid-problem {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-problem {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background-color: oklch(var(--card));
  border: 1px solid oklch(var(--border));
  border-radius: var(--radius);
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.card-hover:hover {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.06);
}

.card-text {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}

.grid-problem .card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.icon-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.icon-circle svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-circle-primary {
  background-color: oklch(var(--primary) / 0.08);
  color: oklch(var(--primary));
}

.icon-circle-secondary {
  background-color: oklch(var(--secondary) / 0.1);
  color: oklch(var(--secondary));
}

.icon-tight {
  width: 2rem;
  height: 2rem;
  margin-bottom: 0;
  flex-shrink: 0;
}

/* Steps */
.steps-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}

@media (min-width: 768px) {
  .steps-row {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
}

.step-card {
  flex: 1;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid oklch(var(--border));
  background-color: oklch(var(--card));
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-card-lg {
  padding: 1.75rem;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: oklch(var(--muted-foreground) / 0.35);
}

.step-arrow svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transform: rotate(90deg);
}

@media (min-width: 768px) {
  .step-arrow svg {
    transform: none;
  }
}

.step-arrow-soft {
  color: oklch(var(--muted-foreground) / 0.25);
}

.step-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: oklch(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

.step-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  line-height: 1.35;
}

.step-desc {
  margin: 0;
  font-size: 0.75rem;
  color: oklch(var(--muted-foreground));
}

.num-badge {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: oklch(var(--primary));
  color: oklch(var(--primary-foreground));
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.h3-bold {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.grid-four {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .grid-four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-four {
    grid-template-columns: repeat(4, 1fr);
  }
}

.grid-four .card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Pricing */
.pricing-wrap {
  display: flex;
  justify-content: center;
}

.pricing-card {
  width: 100%;
  max-width: 24rem;
  padding: 2rem;
  border-radius: 0.75rem;
  border: 2px solid oklch(var(--primary) / 0.2);
  background-color: oklch(var(--card));
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.06);
}

.pricing-chip {
  display: inline-flex;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background-color: oklch(var(--primary) / 0.08);
  border: 1px solid oklch(var(--primary) / 0.15);
  font-size: 0.75rem;
  font-weight: 600;
  color: oklch(var(--primary));
  margin-bottom: 1.5rem;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.price {
  font-size: 2.25rem;
  font-weight: 700;
}

.price-note {
  font-size: 0.875rem;
  color: oklch(var(--muted-foreground));
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.check-mini {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: oklch(var(--secondary) / 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-mini svg {
  stroke: oklch(var(--secondary));
  stroke-width: 2;
  fill: none;
}

.check-mini.teal {
  background-color: oklch(var(--secondary) / 0.15);
}

.topup-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 3rem 0 1.5rem;
}

.topup-row {
  display: grid;
  gap: 1rem;
  max-width: 32rem;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .topup-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.topup-card {
  border-radius: 0.75rem;
  border: 1px solid oklch(var(--primary) / 0.15);
  background-color: oklch(var(--card));
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.topup-price {
  font-size: 1.875rem;
  font-weight: 700;
}

/* FAQ */
.faq-list {
  border-top: 1px solid oklch(var(--border));
}

.faq-item {
  border-bottom: 1px solid oklch(var(--border));
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 0;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

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

.faq-item summary::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid oklch(var(--muted-foreground));
  border-bottom: 2px solid oklch(var(--muted-foreground));
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: 0.35rem;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 0.55rem;
}

.faq-item summary:hover {
  color: oklch(var(--primary));
}

.faq-item p {
  padding-bottom: 1.25rem;
  margin: 0;
  font-size: 0.875rem;
  color: oklch(var(--muted-foreground));
}

/* Trust */
.section-trust {
  position: relative;
  overflow: hidden;
}

.section-trust::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: radial-gradient(circle, oklch(0.4 0.16 265) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}

.trust-card {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin-inline: auto;
  border-radius: 0.75rem;
  border: 1px solid oklch(var(--border));
  background-color: oklch(var(--card));
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  padding: 2rem;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 500;
}

/* Objection */
.objection-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}

/* About */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 72rem;
  }
}

.quote-block {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid oklch(var(--secondary));
  background-color: oklch(var(--secondary) / 0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.quote-block p {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  font-style: italic;
  color: oklch(var(--secondary));
  line-height: 1.4;
}

.about-checks {
  list-style: none;
  padding: 0.5rem 0 0;
  margin: 0;
}

.about-checks li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.about-checks svg {
  stroke: oklch(var(--secondary));
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual-inner {
  position: relative;
  width: 100%;
  min-height: 280px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgb(0 0 0 / 0.08);
  border: 1px solid oklch(var(--primary) / 0.1);
  background: linear-gradient(145deg, oklch(var(--muted) / 0.35), oklch(var(--background)));
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-logo-watermark {
  width: min(55%, 220px);
  height: auto;
  opacity: 0.85;
}

@media (min-width: 1024px) {
  .about-visual-inner {
    min-height: 400px;
  }
}

/* Team */
.team-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: oklch(var(--primary) / 0.1);
  border: 2px solid oklch(var(--primary) / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.25rem;
  color: oklch(var(--primary));
  margin-bottom: 1rem;
}

.avatar.avatar-photo {
  display: block;
  padding: 0;
  object-fit: cover;
}

.role {
  font-size: 0.875rem;
  font-weight: 500;
  color: oklch(var(--secondary));
  margin-bottom: 1rem;
}

.team-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: left;
  margin-top: auto;
}

.team-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: oklch(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

.team-bullets .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: oklch(var(--secondary));
  flex-shrink: 0;
  margin-top: 0.35rem;
}

/* Gradient CTA */
.section-gradient {
  padding-block: 5rem;
  background: linear-gradient(135deg, oklch(var(--primary)) 0%, oklch(var(--secondary)) 100%);
  position: relative;
  overflow: hidden;
}

.section-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 80% 20%, white 1px, transparent 1px),
    radial-gradient(circle at 20% 80%, white 1px, transparent 1px);
  background-size: 40px 40px, 60px 60px;
}

.section-gradient .container {
  position: relative;
  z-index: 1;
}

.title-on-gradient {
  color: oklch(var(--primary-foreground));
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
}

.lead-on-gradient {
  font-size: 1.125rem;
  color: oklch(var(--primary-foreground) / 0.8);
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-inline: auto;
}

.fine-print-gradient {
  margin: 1.5rem 0 0;
  font-size: 0.875rem;
  color: oklch(var(--primary-foreground) / 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.dot-soft {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: oklch(var(--primary-foreground) / 0.55);
}

/* Footer */
.site-footer {
  background-color: oklch(var(--muted) / 0.4);
  border-top: 1px solid oklch(var(--border));
  padding-block: 3rem 2rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

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

.footer-logo {
  height: 3rem;
  width: auto;
  display: block;
}

.footer-bottom {
  border-top: 1px solid oklch(var(--border) / 0.65);
  padding-top: 2rem;
}

.footer-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .footer-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.link-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.link-inline:hover {
  color: oklch(var(--foreground));
}

.link-inline svg {
  stroke-width: 2;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.link-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.link-btn:hover {
  color: oklch(var(--foreground));
}

.sep {
  color: oklch(var(--border));
}

.disclaimer {
  margin-bottom: 1rem;
  max-width: 42rem;
  line-height: 1.5;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

body.nav-open {
  overflow: hidden;
}
