@font-face {
  font-family: "Brawler";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/brawler-v20-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* Craftin brand tokens */
  --bg: #f6f5ed;
  --bg-deep: #ebe9df;
  --bg-soft: #afc9c9;
  --ink: #1d262d;
  --ink-muted: #5c656d;
  --accent: #ff6038;
  --accent-hover: #e55530;
  /* Dark ink on the orange accent: ≥4.5:1 contrast (WCAG AA) */
  --accent-ink: #1d262d;
  --secondary: #1d262d;
  --brand-accent: #361e1c;
  --line: rgba(29, 38, 45, 0.12);
  --line-strong: rgba(29, 38, 45, 0.22);
  --header-bg: #1d262d;
  --hero-ink: #f6f5ed;
  --hero-muted: rgba(246, 245, 237, 0.82);
  --radius: 4px;
  --radius-shape: 8px;
  --font-display: "Brawler", Georgia, serif;
  --font-body: Helvetica, "Helvetica Neue", Arial, sans-serif;
  --pad-x: clamp(2.5rem, 12vw, 10rem);
  --max: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(255, 96, 56, 0.07), transparent 55%),
    radial-gradient(700px 380px at 100% 12%, rgba(29, 38, 45, 0.04), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, #f3f2e9 40%, var(--bg-deep) 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent);
}

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

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.25rem;
  padding: 0.75rem var(--pad-x);
  border-bottom: 1px solid rgba(246, 245, 237, 0.12);
  background: var(--header-bg);
  color: var(--hero-ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
  color: inherit;
}

.brand-logo {
  display: block;
  height: 1.35rem;
  width: auto;
}

.brand-logo-ink {
  display: none;
}

.brand-logo-cream {
  display: block;
}

.site-footer .brand-logo-ink {
  display: block;
}

.site-footer .brand-logo-cream {
  display: none;
}

.site-header .brand:hover {
  color: inherit;
}

.nav {
  display: flex;
  flex: 1;
  flex-wrap: nowrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  font-size: 0.875rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem 1.1rem;
}

.nav-actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.55rem;
}

.nav a {
  text-decoration: none;
  color: rgba(246, 245, 237, 0.82);
}

.nav-links a {
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.nav a:hover {
  color: var(--hero-ink);
}

/* `.nav a` outranks `.btn-primary` — keep dark ink on the orange header CTA */
.nav-actions .btn-primary,
.nav-actions .btn-primary:hover {
  color: var(--accent-ink);
}

.nav-actions .btn {
  padding: 0.38rem 0.8rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

/* Language switcher */

.language-switch {
  position: relative;
}

/* In the header bar, stretch the trigger to the same height as the buttons */
.nav-actions .language-switch {
  align-self: stretch;
  display: flex;
}

.lang-trigger {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.32rem 0.55rem;
  background: transparent;
  border: 1px solid rgba(246, 245, 237, 0.45);
  border-radius: var(--radius);
  color: var(--hero-muted);
  font: inherit;
  font-size: 0.8125rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease;
}

.lang-trigger:hover,
.language-switch.is-open .lang-trigger {
  border-color: var(--hero-ink);
  color: var(--hero-ink);
}

.lang-flag,
.lang-option-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  height: 0.8125rem;
  flex-shrink: 0;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(246, 245, 237, 0.2);
}

.lang-flag svg,
.lang-option-flag svg {
  display: block;
  width: 100%;
  height: 100%;
}

.lang-chevron {
  opacity: 0.5;
  flex-shrink: 0;
  transition: transform 180ms ease;
}

.language-switch.is-open .lang-chevron {
  transform: rotate(180deg);
  opacity: 0.8;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 10.5rem;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: var(--secondary);
  border: 1px solid rgba(246, 245, 237, 0.16);
  border-radius: var(--radius-shape);
  box-shadow: 0 18px 40px -18px rgba(29, 38, 45, 0.6);
  z-index: 60;
}

.lang-menu[hidden] {
  display: none;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.5rem 0.6rem;
  background: transparent;
  border: none;
  border-radius: var(--radius);
  color: var(--hero-muted);
  font: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  text-align: left;
  transition: background 150ms ease, color 150ms ease;
}

.lang-option:hover {
  background: rgba(246, 245, 237, 0.08);
  color: var(--hero-ink);
}

.lang-option.active {
  color: var(--accent);
}

.lang-option-label {
  flex: 1;
}

.lang-option-code {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0.55;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(246, 245, 237, 0.45);
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius);
  cursor: pointer;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--accent-ink);
}

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--ink);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero .btn-ghost,
.site-header .btn-ghost {
  border-color: rgba(246, 245, 237, 0.45);
  color: var(--hero-ink);
}

.hero .btn-ghost:hover,
.site-header .btn-ghost:hover {
  border-color: var(--hero-ink);
  color: var(--hero-ink);
  background: rgba(246, 245, 237, 0.08);
}

.btn-lg {
  padding: 0.85rem 1.35rem;
}

/* Hero — full-bleed composition */

.hero {
  position: relative;
  min-height: min(72svh, 42rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--hero-ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, 1%, 0);
  }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(29, 38, 45, 0.82) 0%, rgba(29, 38, 45, 0.45) 48%, rgba(29, 38, 45, 0.2) 100%),
    linear-gradient(180deg, rgba(29, 38, 45, 0.2) 0%, rgba(29, 38, 45, 0.58) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  padding: clamp(3rem, 7vh, 4.5rem) var(--pad-x);
  animation: hero-rise 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-brand {
  margin: 0 0 1.35rem;
  line-height: 0;
}

.hero-brand img {
  width: min(100%, 18rem);
  height: auto;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.8vw, 2.9rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 22ch;
}

.hero-lead {
  margin: 0 0 1.75rem;
  max-width: 36rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--hero-muted);
}

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

.hero-chips {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-chips li {
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(246, 245, 237, 0.35);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--hero-muted);
  background: rgba(29, 38, 45, 0.35);
  backdrop-filter: blur(4px);
}

/* Facts band */

.facts-band {
  padding: clamp(2.25rem, 5vw, 3.5rem) var(--pad-x);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
}

.facts {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem 2rem;
}

.facts div {
  display: flex;
  flex-direction: column-reverse;
  gap: 0.3rem;
  padding-left: 1.1rem;
  border-left: 2px solid var(--accent);
}

.facts dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.facts dt {
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* Sections */

.section {
  padding: clamp(4.5rem, 11vw, 8rem) var(--pad-x);
}

.section-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.section h2 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 100%;
}

.section-lead {
  margin: 0;
  max-width: 100%;
  font-size: 1.08rem;
  color: var(--ink-muted);
}

.section-promise {
  border-bottom: 1px solid var(--line);
}

.section-promise h2 {
  max-width: 100%;
}

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

/* Steps */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.steps li {
  padding: 1.5rem 1.25rem 0 0;
  border-right: 1px solid var(--line);
  min-height: 100%;
}

.steps li:last-child {
  border-right: none;
  padding-right: 0;
}

.step-num {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.steps h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.steps p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
  padding-right: 0.5rem;
}

/* Rate example */

.section-example {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(640px 320px at 85% 20%, rgba(255, 96, 56, 0.07), transparent 60%);
}

.example-copy h2 {
  max-width: 18ch;
}

.example-points {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  max-width: 34rem;
}

.example-points li {
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.example-points li:last-child {
  border-bottom: 1px solid var(--line);
}

.example-card {
  background: var(--secondary);
  color: var(--hero-ink);
  border-radius: var(--radius-shape);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  max-width: 26rem;
  justify-self: end;
  width: 100%;
  box-shadow: 0 24px 60px -30px rgba(29, 38, 45, 0.55);
}

.example-label {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.example-amount {
  margin: 0 0 1.4rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.example-terms {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.example-terms span {
  flex: 1;
  text-align: center;
  padding: 0.5rem 0.25rem;
  border: 1px solid rgba(246, 245, 237, 0.25);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--hero-muted);
}

.example-terms .is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
  font-weight: 600;
}

.example-rate {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(246, 245, 237, 0.18);
}

.example-rate-value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.example-rate-unit {
  color: var(--hero-muted);
  font-size: 0.95rem;
}

.example-note {
  margin: 1.2rem 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(246, 245, 237, 0.6);
}

/* Use cases */

.usecase-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.usecase-grid li {
  padding: 1.5rem 1.4rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-shape);
  background: rgba(255, 255, 255, 0.45);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.usecase-grid li:hover {
  border-color: rgba(255, 96, 56, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -28px rgba(29, 38, 45, 0.35);
}

.usecase-grid h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  font-weight: 600;
}

.usecase-grid p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-muted);
}

/* FAQ */

.section-faq {
  border-top: 1px solid var(--line);
}

.faq-list {
  max-width: 100%;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

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

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

.faq-list summary::after {
  content: "+";
  flex: none;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
  color: var(--accent);
  transition: transform 180ms ease;
}

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

.faq-list summary:hover {
  color: var(--accent);
}

.faq-list details p {
  margin: 0;
  padding: 0 2.5rem 1.25rem 0;
  color: var(--ink-muted);
  max-width: 40rem;
}

/* Split product section */

.section-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background: rgba(255, 255, 255, 0.35);
  border-block: 1px solid var(--line);
}

.split-copy h2 {
  max-width: 16ch;
}

.split-copy .section-lead {
  margin-bottom: 1.75rem;
}

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

.feature-list li {
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.feature-list strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--ink);
  font-weight: 600;
}

.split-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-shape);
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

/* Trust */

.section-trust {
  background:
    linear-gradient(180deg, transparent, rgba(255, 96, 56, 0.05));
}

.trust-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  max-width: 100%;
  display: grid;
  gap: 0;
}

.trust-list li {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
}

.trust-list li:last-child {
  border-bottom: 1px solid var(--line);
}

/* Closing CTA */

.section-cta {
  text-align: left;
  background: var(--secondary);
  color: var(--hero-ink);
}

.section-cta .section-kicker,
.section-cta h2 {
  color: var(--hero-ink);
}

.section-cta h2 {
  max-width: 100%;
}

.section-cta p {
  margin: 0 0 1.75rem;
  max-width: 100%;
  color: var(--hero-muted);
}

.section-cta .btn-ghost {
  border-color: rgba(246, 245, 237, 0.35);
  color: var(--hero-ink);
}

.section-cta .btn-ghost:hover {
  border-color: var(--hero-ink);
  color: var(--hero-ink);
  background: rgba(246, 245, 237, 0.08);
}

.section-cta .btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.section-cta .btn-primary:hover {
  background: var(--accent-hover);
  color: var(--accent-ink);
}

/* Footer */

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 1.5rem 2rem;
  align-items: end;
  padding: 3.25rem var(--pad-x) 2.75rem;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.25);
}

.footer-brand .brand {
  margin-bottom: 0.55rem;
}

.footer-brand .brand-logo {
  height: 1.75rem;
}

.footer-brand p {
  margin: 0;
  max-width: 22rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
}

.footer-copy {
  margin: 0;
}

/* Legal / 404 */

.legal {
  max-width: 42rem;
  padding: 4rem var(--pad-x) 5.5rem;
}

.legal h1 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.legal h2 {
  margin-top: 2rem;
  font-size: 1.15rem;
}

.legal p,
.legal li {
  color: var(--ink-muted);
}

/* Reveal motion */

.reveal {
  opacity: 0;
  transform: translateY(1.1rem);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

  .hero-media img,
  .hero-content,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Responsive */

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

  .section-example {
    grid-template-columns: 1fr;
  }

  .example-card {
    justify-self: start;
  }

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

  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 0 1.5rem;
  }

  .steps li {
    border-right: none;
    padding-right: 0;
    padding-bottom: 1.5rem;
  }

  .steps li:nth-child(odd) {
    border-right: 1px solid var(--line);
    padding-right: 1.25rem;
  }

  .section-split {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 960px) {
  .nav-links {
    gap: 0.1rem 0.85rem;
  }

  .nav {
    gap: 0.85rem;
    font-size: 0.8125rem;
  }
}

@media (max-width: 880px) {
  .site-header {
    min-height: 3.75rem;
    padding: 0.65rem var(--pad-x);
  }

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

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.35rem var(--pad-x) 1rem;
    background: var(--header-bg);
    border-bottom: 1px solid rgba(246, 245, 237, 0.12);
    backdrop-filter: blur(12px);
  }

  .site-header.is-open .nav {
    display: flex;
  }

  .nav-links,
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
  }

  .nav-links a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(246, 245, 237, 0.12);
  }

  .nav-actions {
    gap: 0.55rem;
    margin-top: 0.65rem;
  }

  .nav-actions .btn {
    width: 100%;
    padding: 0.65rem 1rem;
    font-size: 0.875rem;
  }

  .nav .language-switch {
    align-self: flex-start;
  }

  .lang-menu {
    right: auto;
    left: 0;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: min(80svh, 38rem);
  }

  .hero-media img {
    object-position: 70% center;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(10, 16, 14, 0.25) 0%, rgba(10, 16, 14, 0.72) 55%, rgba(10, 16, 14, 0.88) 100%);
  }

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

  .steps li,
  .steps li:nth-child(odd) {
    border-right: none;
    padding-right: 0;
  }

  .facts {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

  .faq-list details p {
    padding-right: 0;
  }
}
