/* Main site styles for denge.dev */

:root {
  color-scheme: dark;
  --bg: #08111d;
  --bg-deep: #050a12;
  --panel: rgba(18, 32, 48, 0.72);
  --panel-strong: rgba(24, 42, 61, 0.88);
  --panel-soft: rgba(255, 255, 255, 0.045);
  --line: rgba(176, 196, 222, 0.18);
  --line-strong: rgba(205, 219, 236, 0.3);
  --text: #edf4fa;
  --muted: #aebdca;
  --muted-2: #7f91a4;
  --silver: #d6dde5;
  --accent: #9ec8d8;
  --accent-2: #d4b98a;
  --success: #9fd6bd;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --step--1: clamp(0.88rem, 0.84rem + 0.18vw, 1rem);
  --step-0: clamp(1rem, 0.96rem + 0.22vw, 1.13rem);
  --step-1: clamp(1.18rem, 1.08rem + 0.45vw, 1.5rem);
  --step-2: clamp(1.55rem, 1.32rem + 1.02vw, 2.25rem);
  --step-3: clamp(2.15rem, 1.66rem + 2.18vw, 3.65rem);
  --step-4: clamp(2.75rem, 2rem + 3.2vw, 4.9rem);
  --space-xs: clamp(0.55rem, 0.5rem + 0.22vw, 0.7rem);
  --space-sm: clamp(0.85rem, 0.76rem + 0.44vw, 1.15rem);
  --space-md: clamp(1.25rem, 1.05rem + 0.9vw, 1.9rem);
  --space-lg: clamp(2rem, 1.56rem + 1.95vw, 3.35rem);
  --space-xl: clamp(3.5rem, 2.55rem + 4.2vw, 6.4rem);
  --space-2xl: clamp(5.2rem, 3.65rem + 6.8vw, 9.7rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-deep);
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background: rgba(158, 200, 216, 0.026);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: rgba(255, 255, 255, 0.012);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(158, 200, 216, 0.88);
  outline-offset: 4px;
  border-radius: 999px;
}

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

p {
  color: var(--muted);
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

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

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.92);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.55rem);
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 0.68rem 1rem;
  color: var(--text);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.hero {
  position: relative;
  padding: clamp(4.4rem, 8vw, 8.2rem) 0 var(--space-xl);
}

.hero > .container.hero-grid {
  width: min(100% - 2rem, var(--container));
}

.hero-grid {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 500px;
  grid-template-areas:
    "logo eyebrow eyebrow"
    "title title visual"
    "copy copy visual"
    "actions actions visual";
  align-items: start;
  column-gap: clamp(1.5rem, 2.6vw, 3rem);
  row-gap: 1.35rem;
}

.hero-grid > div:first-child {
  display: contents;
}

.hero-logo-wrap {
  grid-area: logo;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin: 0;
}

.hero-logo {
  width: clamp(64px, 5vw, 88px);
  height: clamp(52px, 4.2vw, 74px);
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.94)
    drop-shadow(0 0 18px rgba(158, 200, 216, 0.24));
}

.eyebrow {
  grid-area: eyebrow;
  align-self: center;
  margin: 0;
  padding: 0;
  color: var(--silver);
  font-size: clamp(1.30rem, 1.25rem + 0.85vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.043em;
  line-height: 1.14;
  text-transform: uppercase;
  white-space: normal;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.eyebrow::before {
  content: none;
}

h1 {
  max-width: 100%;
  margin-bottom: 1.45rem;
  font-size: var(--step-4);
  line-height: 1;
  letter-spacing: -0.068em;
}

.hero h1 {
  grid-area: title;
  min-width: 0;
  max-width: 100%;
  margin-top: 0;
}

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

.hero-copy {
  grid-area: copy;
  min-width: 0;
  max-width: 650px;
  margin-bottom: 2.15rem;
  color: #bfccd7;
  font-size: var(--step-1);
  line-height: 1.58;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.hero .actions {
  grid-area: actions;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 1.2rem;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: #07111d;
  background: #cfe4ed;
  box-shadow: 0 18px 44px rgba(83, 132, 153, 0.22);
}

.button-secondary {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.045);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(205, 219, 236, 0.48);
}

.hero-visual {
  grid-area: visual;
  width: 500px;
  max-width: 100%;
  min-width: 0;
  min-height: clamp(460px, 38vw, 540px);
  justify-self: end;
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 2.2vw, 1.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.052);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -38%;
  z-index: -1;
  background: rgba(158, 200, 216, 0.045);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-xl) - 1px);
  background: rgba(255, 255, 255, 0.018);
  z-index: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

.dashboard-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  gap: 1rem;
}

.dashboard-header,
.dashboard-card,
.dashboard-lane,
.dashboard-panel {
  border: 1px solid rgba(205, 219, 236, 0.2);
  background: rgba(8, 17, 29, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 58px;
  padding: 0.85rem 1rem;
  border-radius: 18px;
}

.dashboard-header strong {
  color: var(--silver);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.dashboard-header span {
  color: var(--muted-2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-dots {
  display: inline-flex;
  gap: 0.42rem;
  flex: 0 0 auto;
}

.dashboard-dots i {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--accent);
}

.dashboard-dots i:nth-child(2) {
  background: var(--accent-2);
}

.dashboard-dots i:nth-child(3) {
  background: var(--success);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.dashboard-card,
.dashboard-panel {
  min-height: 132px;
  display: grid;
  align-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: 18px;
}

.dashboard-card span,
.dashboard-panel span {
  color: var(--muted-2);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-card strong,
.dashboard-panel strong {
  color: var(--silver);
  font-size: clamp(1.1rem, 1.6vw, 1.38rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.dashboard-card p,
.dashboard-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.meter {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.meter.warm i {
  background: var(--accent-2);
}

.meter.good i {
  background: var(--success);
}

.dashboard-lane {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 18px;
}

.lane-step {
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 0.22rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.045);
}

.lane-step span {
  color: var(--accent-2);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lane-step strong {
  color: var(--silver);
  font-size: 0.9rem;
  line-height: 1.15;
}

.dashboard-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

section {
  padding: var(--space-xl) 0;
}

.credibility {
  padding-top: 0;
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.035);
}

.credibility-grid span {
  min-height: 86px;
  display: grid;
  place-items: center;
  padding: 1rem;
  color: #c7d3de;
  font-size: 0.86rem;
  font-weight: 650;
  text-align: center;
  border-right: 1px solid var(--line);
}

.credibility-grid span:last-child {
  border-right: 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: var(--space-lg);
}

.section-label {
  margin-bottom: 0.8rem;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  color: var(--text);
  font-size: var(--step-3);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.section-head p {
  margin-bottom: 0;
  font-size: var(--step-0);
}

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

.card {
  position: relative;
  min-height: 100%;
  padding: clamp(1.25rem, 2vw, 1.65rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.046);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.055);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(158, 200, 216, 0.42);
  background: rgba(255, 255, 255, 0.07);
}

.card-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(158, 200, 216, 0.06);
}

.card h3 {
  margin-bottom: 0.8rem;
  color: var(--silver);
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.card p {
  margin-bottom: 1.15rem;
  font-size: 0.98rem;
}

.best-for {
  margin-top: auto;
  padding-top: 1rem;
  color: #d7e3eb;
  font-size: 0.86rem;
  font-weight: 650;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.best-for span {
  color: var(--accent-2);
}

.approach-wrap,
.founder-wrap {
  display: grid;
  grid-template-columns: minmax(280px, 0.64fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.032);
}

.founder-wrap {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
}

.approach-list {
  display: grid;
  gap: 0.75rem;
  counter-reset: steps;
}

.approach-item {
  counter-increment: steps;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  background: rgba(8, 17, 29, 0.5);
}

.approach-item::before {
  content: counter(steps, decimal-leading-zero);
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.approach-item h3 {
  margin-bottom: 0.22rem;
  font-size: 1.02rem;
  color: var(--text);
}

.approach-item p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

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

.why-item {
  padding: 1.15rem;
  border-left: 1px solid rgba(158, 200, 216, 0.46);
  background: rgba(158, 200, 216, 0.04);
}

.why-item h3 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
  color: var(--silver);
}

.why-item p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.founder-facts {
  display: grid;
  gap: 0.75rem;
}

.founder-fact {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  background: rgba(8, 17, 29, 0.5);
}

.founder-fact strong {
  display: block;
  margin-bottom: 0.32rem;
  color: var(--silver);
  font-size: 0.96rem;
}

.founder-fact p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.models {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.model-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.036);
  transition: transform 180ms ease, border-color 180ms ease;
}

.model-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 185, 138, 0.44);
}

.model-card h3 {
  margin-bottom: 0.8rem;
  color: var(--silver);
  font-size: 1.05rem;
  line-height: 1.25;
}

.model-card p {
  margin-bottom: 0;
  font-size: 0.93rem;
}

.model-tag {
  margin-top: auto;
  padding-top: 1.25rem;
  color: var(--accent-2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.final-cta {
  padding-bottom: var(--space-2xl);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.052);
  box-shadow: var(--shadow);
}

.cta-panel::after {
  content: "";
  position: absolute;
  right: -7rem;
  top: -7rem;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.cta-copy {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  max-width: 14em;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 2.9vw, 3rem);
  letter-spacing: -0.045em;
}

.cta-panel p {
  max-width: 56ch;
  margin-bottom: 1.8rem;
  font-size: var(--step-0);
}

.contact-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  max-width: none;
  margin-top: 0;
}

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

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--silver);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--text);
  font: inherit;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(5, 10, 18, 0.58);
  padding: 0.88rem 0.95rem;
  resize: vertical;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 3px solid rgba(158, 200, 216, 0.88);
  outline-offset: 3px;
}

.contact-form .button {
  width: fit-content;
  min-width: 180px;
  justify-self: end;
  cursor: pointer;
}

.form-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 1rem;
}

.turnstile-wrap {
  width: 258px;
  min-height: 56px;
  display: grid;
  align-items: center;
  justify-self: start;
  transform: scale(0.86);
  transform-origin: left top;
}

.contact-form .button:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 1.5rem;
  margin: -0.2rem 0 0;
  color: var(--success);
  font-size: 0.94rem;
  font-weight: 650;
}

.form-status.is-error {
  color: #f0b8ae;
}

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

.faq-item {
  padding: clamp(1.15rem, 2vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.036);
}

.faq-item h3 {
  margin-bottom: 0.55rem;
  color: var(--silver);
  font-size: 1.04rem;
  line-height: 1.25;
}

.faq-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.site-footer {
  padding: 2rem 0;
  color: var(--muted-2);
  border-top: 1px solid var(--line);
  background: rgba(5, 10, 18, 0.45);
}

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

.footer-grid strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--silver);
}

.footer-grid p {
  margin: 0;
  font-size: 0.93rem;
}

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

.footer-meta a:hover {
  color: var(--text);
}

@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: clamp(60px, 5vw, 80px) minmax(0, 1fr) minmax(420px, 500px);
    column-gap: clamp(1.25rem, 2.2vw, 2.25rem);
  }

  .hero h1 {
    font-size: clamp(2.5rem, 4.5vw, 4.15rem);
  }

  .eyebrow {
    font-size: clamp(0.92rem, 1.35vw, 1.06rem);
  }

  .hero-visual {
    width: 100%;
    min-height: 430px;
  }
}

@media (max-width: 1040px) {
  .section-head,
  .approach-wrap,
  .cta-panel,
  .founder-wrap {
    grid-template-columns: 1fr;
  }

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

  .credibility-grid span:nth-child(3n) {
    border-right: 0;
  }

  .credibility-grid span:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

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

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

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "logo eyebrow"
      "title title"
      "copy copy"
      "actions actions"
      "visual visual";
    row-gap: 1.5rem;
  }

  .hero-grid > div:first-child {
    display: contents;
  }

  .hero-logo-wrap {
    width: 62px;
    height: 52px;
  }

  .eyebrow {
    font-size: clamp(1rem, 3.4vw, 1.25rem);
    line-height: 1.2;
  }

  .hero h1 {
    font-size: var(--step-4);
  }

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

  .hero-visual {
    width: 100%;
    min-height: auto;
    justify-self: stretch;
  }
}

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

  .site-header {
    position: static;
  }

  .nav {
    min-height: auto;
    padding: 1rem 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .nav-links a {
    padding: 0.65rem 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    text-align: center;
    background: rgba(255, 255, 255, 0.035);
  }

  .nav-cta {
    grid-column: 1 / -1;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-logo-wrap {
    width: 52px;
    height: 44px;
  }

  .eyebrow {
    font-size: 1rem;
    line-height: 1.25;
  }

  h1 {
    letter-spacing: -0.06em;
  }

  .actions,
  .actions .button {
    width: 100%;
  }

  .hero-visual {
    border-radius: 24px;
  }

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

  .credibility-grid,
  .card-grid,
  .faq-grid,
  .why-grid,
  .models {
    grid-template-columns: 1fr;
  }

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

  .contact-form .button {
    width: 100%;
  }

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

  .turnstile-wrap {
    width: 100%;
    transform: none;
  }

  .credibility-grid span,
  .credibility-grid span:nth-child(3n),
  .credibility-grid span:nth-child(-n + 3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .credibility-grid span:last-child {
    border-bottom: 0;
  }

  .model-card {
    min-height: auto;
  }

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

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