/* Codertive design system. Plain hand-written CSS, no build step: this file
   is served exactly as written, so keep it valid CSS a browser can parse
   directly, no preprocessor syntax. */

:root {
  --ink: #0b1b2e;
  --ink-soft: #13233a;
  --paper: #f3f5f6;
  --blue: #0367bf;
  --blue-deep: #1c59ac;
  --baseline: #aeedfc;
  --rule: #c9d3d9;
  --rule-on-ink: rgba(243, 245, 246, 0.14);

  --font-display: 'Geist Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, 'SF Mono', 'Cascadia Code', 'Roboto Mono', Menlo, Consolas, monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);

  --section-pad: clamp(4.5rem, 4rem + 3vw, 8rem);
}

/* Self-hosted fonts, static instances. See fonts/README.md for where to get
   them; the site falls back to system fonts cleanly until they're added. */
@font-face {
  font-family: 'Geist Sans';
  src: url('/fonts/geist-sans-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Geist Sans';
  src: url('/fonts/geist-sans-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Geist Sans';
  src: url('/fonts/geist-sans-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Geist Sans';
  src: url('/fonts/geist-sans-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Geist Mono';
  src: url('/fonts/geist-mono-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Geist Mono';
  src: url('/fonts/geist-mono-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ---------------------------------------------------------------------- */
/* Reset and base                                                          */
/* ---------------------------------------------------------------------- */

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

html, body, h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote, table, th, td {
  margin: 0;
  padding: 0;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

a {
  color: var(--blue);
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

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

*:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.bg-ink :focus-visible {
  outline-color: var(--baseline);
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  z-index: 100;
  transition: top 0.2s var(--ease);
}

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

/* ---------------------------------------------------------------------- */
/* Layout helpers                                                           */
/* ---------------------------------------------------------------------- */

.container {
  max-width: 78rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

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

.section {
  padding-block: var(--section-pad);
}

.bg-ink {
  background: var(--ink);
  color: var(--paper);
}

.bg-ink a:not(.btn) {
  color: var(--baseline);
}

.bg-ink a:not(.btn):hover {
  color: #fff;
}

.bg-ink .eyebrow {
  color: var(--baseline);
}

.bg-ink .body-muted {
  color: rgba(243, 245, 246, 0.68);
}

.border-t {
  border-top: 1px solid var(--rule);
}

.bg-ink.border-t {
  border-top-color: var(--rule-on-ink);
}

.max-w-copy {
  max-width: 40rem;
}

.max-w-wide {
  max-width: 52rem;
}

.tabular {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

/* ---------------------------------------------------------------------- */
/* Typography                                                               */
/* ---------------------------------------------------------------------- */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--blue-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.eyebrow::before {
  content: '';
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.hero-heading {
  font-size: clamp(2.75rem, 2rem + 3.6vw, 5.75rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.h2 {
  font-size: clamp(2rem, 1.5rem + 2vw, 3.25rem);
  letter-spacing: -0.025em;
}

.h3 {
  font-size: clamp(1.375rem, 1.2rem + 0.7vw, 1.75rem);
  font-weight: 600;
}

.lede {
  font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.25rem);
  line-height: 1.55;
  color: rgba(11, 27, 46, 0.72);
}

.bg-ink .lede {
  color: rgba(243, 245, 246, 0.78);
}

.body-muted {
  color: rgba(11, 27, 46, 0.65);
}

.small {
  font-size: 0.9375rem;
}

/* ---------------------------------------------------------------------- */
/* Buttons                                                                   */
/* ---------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.9rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform 0.35s var(--ease), background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
  will-change: transform;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: var(--blue-deep);
}

.btn-outline {
  border: 1px solid var(--rule);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--ink);
}

.bg-ink .btn-outline {
  border-color: var(--rule-on-ink);
  color: var(--paper);
}

.bg-ink .btn-outline:hover {
  border-color: var(--paper);
}

.btn-arrow {
  transition: transform 0.35s var(--ease);
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* ---------------------------------------------------------------------- */
/* Header / nav                                                             */
/* ---------------------------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(11, 27, 46, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--rule-on-ink);
}

.site-header__bar {
  max-width: 78rem;
  margin-inline: auto;
  padding: 1.125rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .site-header__bar { padding: 1.25rem 2.5rem; }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand__mark {
  height: 1.75rem;
  width: 1.75rem;
}

.brand__word {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--paper);
  user-select: none;
  -webkit-user-select: none;
}

.brand--footer .brand__mark {
  height: 1.375rem;
  width: 1.375rem;
}

.primary-nav {
  display: none;
}

@media (min-width: 860px) {
  .primary-nav { display: block; }
}

.primary-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.25rem;
  font-size: 0.9375rem;
}

.primary-nav a {
  color: rgba(243, 245, 246, 0.75);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.primary-nav a:hover {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-cta {
  display: none;
  padding: 0.7rem 1.375rem;
  font-size: 0.875rem;
}

@media (min-width: 860px) {
  .header-cta { display: inline-flex; }
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid var(--rule-on-ink);
  color: var(--paper);
}

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

.mobile-nav {
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--ink);
  z-index: 49;
  padding: 6.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
}

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

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.mobile-nav a {
  color: var(--paper);
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
}

.mobile-nav .btn {
  margin-top: 2rem;
  align-self: flex-start;
}

/* ---------------------------------------------------------------------- */
/* Hero                                                                      */
/* ---------------------------------------------------------------------- */

.hero {
  position: relative;
  padding-top: clamp(8rem, 6rem + 8vw, 12rem);
  padding-bottom: clamp(5rem, 4rem + 4vw, 7rem);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -20% -10% auto auto;
  width: 60vw;
  height: 60vw;
  max-width: 46rem;
  max-height: 46rem;
  background: radial-gradient(circle, rgba(3, 103, 191, 0.32) 0%, rgba(3, 103, 191, 0) 70%);
  z-index: -2;
  animation: drift 22s ease-in-out infinite alternate;
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}

.hero__mark {
  position: absolute;
  right: -6vw;
  top: 8%;
  width: min(46vw, 34rem);
  opacity: 0.07;
  z-index: -1;
}

@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; }
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-6%, 8%) scale(1.08); }
}

.hero__body {
  max-width: 46rem;
}

.hero__word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.hero__sub {
  margin-top: 1.75rem;
}

.hero__ctas {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hidden-until-animated state only applies once js.js confirms JS is
   running (see the inline script in render_head) — without it, or if it
   fails, the hero renders fully visible and static instead of stuck
   invisible. */
html.js .hero__word span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.9s var(--ease);
}

html.js .hero.is-ready .hero__word span {
  transform: translateY(0);
}

html.js .hero__sub {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease) 0.5s, transform 0.7s var(--ease) 0.5s;
}

html.js .hero__ctas {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease) 0.65s, transform 0.7s var(--ease) 0.65s;
}

html.js .hero.is-ready .hero__sub,
html.js .hero.is-ready .hero__ctas {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html.js .hero__word span { transform: none; transition: none; }
  html.js .hero__sub, html.js .hero__ctas { opacity: 1; transform: none; transition: none; }
}

/* ---------------------------------------------------------------------- */
/* Scroll reveal                                                            */
/* ---------------------------------------------------------------------- */

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------------------------------------------------------------------- */
/* Section headers                                                          */
/* ---------------------------------------------------------------------- */

.section-head {
  max-width: 42rem;
}

.section-head .eyebrow {
  margin-bottom: 1.25rem;
}

.section-head .lede {
  margin-top: 1.25rem;
}

/* ---------------------------------------------------------------------- */
/* Services                                                                  */
/* ---------------------------------------------------------------------- */

.service-list {
  margin-top: clamp(2.5rem, 2rem + 2vw, 4rem);
  border-top: 1px solid var(--rule);
}

.service-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem 2rem;
  align-items: start;
  padding: clamp(1.75rem, 1.5rem + 1vw, 2.75rem) 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: padding-left 0.4s var(--ease);
}

@media (min-width: 700px) {
  .service-row {
    grid-template-columns: 4rem 1fr minmax(0, 22rem);
  }
}

.service-row:hover {
  padding-left: 0.75rem;
}

.service-row__num {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  color: var(--blue-deep);
  padding-top: 0.3rem;
}

.service-row__name {
  font-size: clamp(1.375rem, 1.15rem + 0.8vw, 1.875rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-row__name .btn-arrow {
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  color: var(--blue);
}

.service-row:hover .service-row__name .btn-arrow {
  opacity: 1;
  transform: translateX(0);
}

.service-row__summary {
  color: rgba(11, 27, 46, 0.68);
  grid-column: 1 / -1;
}

@media (min-width: 700px) {
  .service-row__summary { grid-column: 3; }
}

/* ---------------------------------------------------------------------- */
/* Approach                                                                  */
/* ---------------------------------------------------------------------- */

.approach-grid {
  margin-top: clamp(2.5rem, 2rem + 2vw, 4rem);
  display: grid;
  gap: 3rem;
}

@media (min-width: 780px) {
  .approach-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.approach-step__num {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--baseline);
}

.approach-step__name {
  margin-top: 0.75rem;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.approach-step__body {
  margin-top: 0.75rem;
  color: rgba(243, 245, 246, 0.7);
  max-width: 24rem;
}

/* ---------------------------------------------------------------------- */
/* Why + Pricing                                                            */
/* ---------------------------------------------------------------------- */

.split-block {
  display: grid;
  gap: 2rem;
}

@media (min-width: 780px) {
  .split-block {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}

.split-block .h2 {
  max-width: 20rem;
}

/* ---------------------------------------------------------------------- */
/* FAQ                                                                      */
/* ---------------------------------------------------------------------- */

.faq {
  margin-top: clamp(2rem, 1.5rem + 2vw, 3rem);
  border-top: 1px solid var(--rule);
}

.faq details {
  border-bottom: 1px solid var(--rule);
  padding-block: 1.5rem;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

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

.faq summary .icon {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  color: var(--blue-deep);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.faq details[open] summary .icon {
  transform: rotate(45deg);
}

.faq p {
  margin-top: 1rem;
  max-width: 40rem;
  color: rgba(11, 27, 46, 0.68);
}

/* ---------------------------------------------------------------------- */
/* Contact                                                                   */
/* ---------------------------------------------------------------------- */

.contact-layout {
  margin-top: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  display: grid;
  gap: 3rem;
}

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

.contact-form {
  display: grid;
  gap: 1.375rem;
}

.field label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  color: rgba(243, 245, 246, 0.75);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(243, 245, 246, 0.05);
  border: 1px solid var(--rule-on-ink);
  border-radius: 10px;
  color: var(--paper);
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--baseline);
  background: rgba(243, 245, 246, 0.08);
}

.field textarea {
  resize: vertical;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23AEEDFC' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.field-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.contact-aside dl div {
  padding-block: 0.9rem;
  border-top: 1px solid var(--rule-on-ink);
}

.contact-aside dl div:first-child {
  border-top: none;
}

.contact-aside dt {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(243, 245, 246, 0.5);
  margin-bottom: 0.3rem;
}

/* ---------------------------------------------------------------------- */
/* Footer                                                                   */
/* ---------------------------------------------------------------------- */

.site-footer {
  padding-top: clamp(3rem, 2.5rem + 2vw, 5rem);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--rule-on-ink);
}

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

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  font-size: 0.9375rem;
}

.footer-nav a {
  text-decoration: none;
}

.footer-bottom {
  padding-block: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: rgba(243, 245, 246, 0.55);
}

.footer-bottom .legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-bottom a,
.footer-bottom button {
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.footer-bottom a:hover,
.footer-bottom button:hover {
  color: var(--paper);
}

.footer-contact {
  font-size: 0.9375rem;
  color: rgba(243, 245, 246, 0.7);
}

.footer-contact div + div {
  margin-top: 0.35rem;
}

/* ---------------------------------------------------------------------- */
/* Consent banner                                                           */
/* ---------------------------------------------------------------------- */

.consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  border-top: 1px solid var(--rule-on-ink);
}

.consent-banner__inner {
  max-width: 78rem;
  margin-inline: auto;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .consent-banner__inner { padding: 1.75rem 2.5rem; }
}

.consent-summary {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 860px) {
  .consent-summary {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.consent-summary p {
  max-width: 42rem;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

.consent-actions .btn {
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
}

.consent-preferences {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule-on-ink);
}

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

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

.consent-option .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.consent-option .mono {
  font-family: var(--font-mono);
}

.consent-option .hint {
  margin-top: 0.4rem;
  font-size: 0.875rem;
  color: rgba(243, 245, 246, 0.6);
}

/* ---------------------------------------------------------------------- */
/* Legal pages                                                              */
/* ---------------------------------------------------------------------- */

.legal-hero {
  padding-top: clamp(8rem, 6rem + 6vw, 10rem);
}

.legal-body {
  display: grid;
  gap: 2rem;
  max-width: 42rem;
}

.legal-body h2 {
  font-size: 1.125rem;
  font-weight: 600;
}

.legal-body p + p,
.legal-body p {
  margin-top: 0.75rem;
  color: rgba(11, 27, 46, 0.72);
}

.legal-body > div > p:first-of-type {
  margin-top: 0.75rem;
}

.cookie-table {
  margin-top: clamp(2rem, 1.5rem + 1vw, 3rem);
  border-top: 1px solid var(--rule);
}

.cookie-row {
  padding-block: 1.75rem;
  border-bottom: 1px solid var(--rule);
  display: grid;
  gap: 0.5rem;
}

.cookie-row__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.cookie-badge {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--rule);
  color: rgba(11, 27, 46, 0.6);
}

.cookie-row p {
  color: rgba(11, 27, 46, 0.68);
  max-width: 40rem;
}
