:root {
  --bg: #07080b;
  --bg-soft: #0d1016;
  --panel: rgba(255, 255, 255, 0.064);
  --panel-strong: rgba(255, 255, 255, 0.096);
  --ink: #f4f7fb;
  --muted: #9aa4b2;
  --dim: #626b77;
  --line: rgba(255, 255, 255, 0.12);
  --dark-line: rgba(255, 255, 255, 0.075);
  --green: #46d1a8;
  --cyan: #49bfe3;
  --coral: #f06f5b;
  --gold: #e6b75f;
  --paper: #f6f7f4;
  --paper-ink: #11151c;
  --paper-muted: #626b77;
  --radius: 8px;
  --max: 1160px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

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

.home-page {
  background:
    linear-gradient(135deg, rgba(70, 209, 168, 0.08), transparent 28%),
    linear-gradient(315deg, rgba(240, 111, 91, 0.08), transparent 32%),
    var(--bg);
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.progress span {
  display: block;
  width: var(--scroll-progress, 0%);
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--coral));
}

.stage {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.035), transparent 24%),
    linear-gradient(250deg, rgba(73, 191, 227, 0.075), transparent 30%),
    var(--bg);
}

.line-field {
  position: absolute;
  inset: -20%;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  transform: perspective(900px) rotateX(64deg) translateY(-22%);
  transform-origin: top center;
}

.light-sweep {
  position: absolute;
  inset: -30%;
  opacity: 0.5;
  background:
    conic-gradient(from 140deg at 48% 42%, transparent, rgba(70, 209, 168, 0.15), transparent 24%),
    linear-gradient(120deg, transparent 0 34%, rgba(255, 255, 255, 0.09) 42%, transparent 51%);
  animation: sweep 18s ease-in-out infinite alternate;
}

.noise {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(0deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(90deg, transparent 0 2px, rgba(255, 255, 255, 0.03) 2px 3px);
  mix-blend-mode: overlay;
}

.pointer-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  opacity: 0;
  background:
    radial-gradient(circle, rgba(70, 209, 168, 0.18), rgba(73, 191, 227, 0.08) 40%, transparent 68%);
  filter: blur(18px);
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 0.3s ease;
}

@keyframes sweep {
  from {
    transform: translate3d(-3%, -2%, 0) rotate(0deg);
  }
  to {
    transform: translate3d(3%, 2%, 0) rotate(10deg);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 12px 28px;
  color: var(--ink);
  background: rgba(7, 8, 11, 0.74);
  border-bottom: 1px solid var(--dark-line);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #06100d;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  border-radius: var(--radius);
  font-size: 1.25rem;
  font-weight: 950;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 760;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
}

.site-nav .nav-cta {
  margin-left: 8px;
  color: #07100e;
  background: var(--green);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus {
  color: #07100e;
  background: #77e1c2;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.chapter {
  position: relative;
  width: min(var(--max), calc(100% - 48px));
  min-height: calc(100svh - 68px);
  display: grid;
  align-items: center;
  gap: 56px;
  margin: 0 auto;
  padding: 84px 0;
  border-bottom: 1px solid var(--dark-line);
}

.chapter-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.chapter-label span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 28px;
  color: var(--green);
  border: 1px solid rgba(70, 209, 168, 0.38);
  border-radius: var(--radius);
}

.chapter h1,
.chapter h2,
.page-hero h1,
.legal-hero h1 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
}

.hero-title {
  max-width: 900px;
  font-size: clamp(4.9rem, 12vw, 11rem);
  line-height: 0.82;
  font-weight: 940;
}

.hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.3em);
  animation: charIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--i) * 42ms);
}

@keyframes charIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chapter h2,
.page-hero h1,
.legal-hero h1 {
  max-width: 980px;
  font-size: clamp(2.65rem, 6.2vw, 6.5rem);
  line-height: 0.96;
  font-weight: 920;
}

.hero-lead,
.wide-statement p,
.section-heading p,
.quote-wrap p,
.stacked-copy p,
.app-card p,
.process-list p,
.contact-chapter p,
.legal-hero p,
.page-hero p,
.legal-content p,
.legal-content li,
.support-card p,
.support-card li,
.contact-card p {
  color: var(--muted);
}

.hero-lead {
  max-width: 760px;
  margin: 30px 0 0;
  font-size: clamp(1.2rem, 2vw, 1.62rem);
  line-height: 1.45;
}

.hero-chapter,
.split-chapter,
.metrics-chapter,
.product-chapter,
.legal-hub-chapter,
.contact-chapter {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
}

.hero-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  text-decoration: none;
}

.button-primary {
  color: #06100d;
  background: var(--green);
}

.button-primary:hover,
.button-primary:focus {
  background: #77e1c2;
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus {
  background: rgba(255, 255, 255, 0.11);
}

.hero-showcase {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(70, 209, 168, 0.12), transparent 36%),
    linear-gradient(315deg, rgba(73, 191, 227, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.showcase-ring {
  position: absolute;
  inset: 52px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.ring-one {
  animation: ringSpin 18s linear infinite;
}

.ring-two {
  inset: 112px;
  border-color: rgba(70, 209, 168, 0.18);
  animation: ringSpin 24s linear infinite reverse;
}

@keyframes ringSpin {
  to {
    transform: rotate(360deg);
  }
}

.showcase-icon {
  position: absolute;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.showcase-irade {
  top: 74px;
  left: 64px;
  width: min(280px, 54%);
}

.showcase-spambye {
  right: 58px;
  bottom: 120px;
  width: min(220px, 42%);
  border: 8px solid rgba(255, 255, 255, 0.86);
}

.showcase-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  background: rgba(7, 8, 11, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
}

.showcase-card span,
.app-card-head span,
.ops-links span,
.contact-label {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.showcase-card strong {
  font-size: 1.18rem;
}

.showcase-card p {
  max-width: 180px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.centered-chapter,
.quote-chapter,
.word-chapter,
.final-chapter {
  place-items: center;
  text-align: center;
}

.wide-statement {
  max-width: 960px;
}

.wide-statement p,
.section-heading p {
  max-width: 760px;
  margin-top: 24px;
  font-size: 1.1rem;
}

.centered-chapter .wide-statement p,
.quote-chapter p {
  margin-right: auto;
  margin-left: auto;
}

.stacked-copy {
  display: grid;
  gap: 14px;
}

.stacked-copy p {
  margin: 0;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
}

.apps-chapter {
  align-items: stretch;
}

.section-heading {
  max-width: 860px;
}

.section-heading h2 {
  font-size: clamp(2.35rem, 5vw, 5.25rem);
  line-height: 0.98;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.app-card,
.process-list article,
.ops-links a,
.metric-grid article,
.support-card,
.contact-card,
.legal-content,
details {
  background: var(--panel);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.app-card {
  min-height: 510px;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.irade-card {
  background:
    linear-gradient(160deg, rgba(70, 209, 168, 0.15), transparent 38%),
    var(--panel);
}

.spambye-card {
  background:
    linear-gradient(160deg, rgba(73, 191, 227, 0.16), transparent 38%),
    var(--panel);
}

.app-card-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}

.app-card-head img,
.product-token img,
.support-card img {
  width: 84px;
  height: 84px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.app-card h3 {
  margin: 2px 0 0;
  font-size: 2.35rem;
  line-height: 1.04;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: auto 0 0;
  list-style: none;
}

.tag-list li {
  padding: 8px 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 760;
}

.dark-chapter {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100% - var(--max)) / 2));
  padding-left: max(24px, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(70, 209, 168, 0.1), transparent 44%),
    #030406;
  border-bottom: 0;
}

.metrics-chapter {
  align-items: center;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.metric-grid article {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.metric-grid strong {
  font-size: 2.3rem;
  line-height: 1;
}

.metric-grid span {
  color: var(--muted);
  font-weight: 760;
}

.product-chapter {
  overflow: hidden;
}

.product-chapter::before {
  content: "";
  position: absolute;
  inset: 12% auto 12% 0;
  width: 1px;
  background: linear-gradient(transparent, var(--line), transparent);
}

.product-token {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.product-token span {
  font-size: 1.16rem;
  font-weight: 900;
}

.irade-focus {
  background: linear-gradient(90deg, rgba(70, 209, 168, 0.08), transparent 48%);
}

.spambye-focus {
  background: linear-gradient(90deg, rgba(73, 191, 227, 0.08), transparent 48%);
}

.quote-wrap {
  max-width: 1020px;
}

.quote-wrap blockquote {
  margin: 0;
  font-size: clamp(2.7rem, 6.2vw, 6.6rem);
  font-weight: 930;
  line-height: 0.98;
}

.quote-wrap p {
  max-width: 640px;
  margin: 26px auto 0;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.process-list article {
  min-height: 240px;
  padding: 20px;
}

.process-list span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.process-list strong {
  display: block;
  margin: 34px 0 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.word-lines {
  display: grid;
  gap: 2px;
  width: min(980px, 100%);
  text-align: left;
}

.word-lines span {
  display: block;
  color: var(--ink);
  font-size: clamp(4rem, 12vw, 11rem);
  font-weight: 940;
  line-height: 0.86;
}

.word-lines span:nth-child(even) {
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 247, 251, 0.48);
}

.release-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.release-track span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 16px;
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  font-weight: 900;
  text-transform: uppercase;
}

.ops-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ops-links a {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  text-decoration: none;
}

.ops-links strong {
  color: var(--ink);
  line-height: 1.28;
}

.product-links {
  grid-template-columns: 1fr;
}

.contact-chapter a:not(.button),
.legal-content a,
.page-hero a,
.support-card a,
.contact-card a {
  color: var(--green);
  font-weight: 850;
}

.final-lockup {
  display: grid;
  justify-items: center;
  gap: 26px;
}

.final-icons {
  display: flex;
  gap: 14px;
}

.final-icons img {
  width: 74px;
  height: 74px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.site-footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 42px 28px;
  color: var(--ink);
  background: #030406;
  border-top: 1px solid var(--dark-line);
}

.site-footer strong {
  font-size: 1.18rem;
}

.site-footer p {
  margin: 8px 0 0;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--ink);
}

.copyright {
  grid-column: 1 / -1;
  font-size: 0.9rem;
}

body:not(.home-page) {
  color: var(--paper-ink);
  background: var(--paper);
}

body:not(.home-page) .stage,
body:not(.home-page) .progress {
  display: none;
}

body:not(.home-page) .site-header {
  color: var(--paper-ink);
  background: rgba(246, 247, 244, 0.92);
  border-bottom-color: #dfe3e8;
}

body:not(.home-page) .site-nav a {
  color: var(--paper-muted);
}

body:not(.home-page) .site-nav a:hover,
body:not(.home-page) .site-nav a:focus,
body:not(.home-page) .site-nav a[aria-current="page"] {
  color: var(--paper-ink);
  background: #ecefeb;
}

body:not(.home-page) .site-nav .nav-cta {
  color: #06100d;
}

.page-hero,
.legal-hero {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0 42px;
}

.page-hero h1,
.legal-hero h1 {
  max-width: 760px;
  color: var(--paper-ink);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
}

.page-hero p,
.legal-hero p {
  max-width: 720px;
  font-size: 1.08rem;
}

.legal-content {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto 88px;
  padding: 32px;
  color: var(--paper-ink);
  background: #ffffff;
  border: 1px solid #dfe3e8;
}

.legal-content h2 {
  margin: 28px 0 8px;
  color: var(--paper-ink);
  font-size: 1.28rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.section,
.support-layout,
.contact-grid,
.app-links-section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0;
}

body:not(.home-page) .section-heading h2,
body:not(.home-page) .support-card h2,
body:not(.home-page) .contact-card h2 {
  color: var(--paper-ink);
}

body:not(.home-page) .section-heading p {
  color: var(--paper-muted);
}

.support-layout,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding-top: 30px;
}

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

.support-card,
.contact-card {
  padding: 26px;
  color: var(--paper-ink);
  background: #ffffff;
  border: 1px solid #dfe3e8;
}

.support-card img {
  margin-bottom: 22px;
}

.faq-section {
  padding-top: 70px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  color: var(--paper-ink);
  background: #ffffff;
  border: 1px solid #dfe3e8;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--paper-ink);
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--paper-muted);
}

.contact-label {
  color: var(--coral);
}

.contact-card {
  min-height: 200px;
}

.contact-card h2 {
  margin-top: 20px;
  word-break: break-word;
}

body:not(.home-page) .ops-links a {
  color: var(--paper-ink);
  background: #ffffff;
  border: 1px solid #dfe3e8;
}

body:not(.home-page) .ops-links strong {
  color: var(--paper-ink);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 12px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(7, 8, 11, 0.96);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  body:not(.home-page) .site-nav {
    background: #ffffff;
    border-color: #dfe3e8;
  }

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

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .chapter,
  .hero-chapter,
  .split-chapter,
  .metrics-chapter,
  .product-chapter,
  .legal-hub-chapter,
  .contact-chapter {
    grid-template-columns: 1fr;
  }

  .chapter {
    min-height: auto;
  }

  .hero-chapter {
    min-height: calc(100svh - 68px);
  }

  .hero-showcase {
    min-height: 440px;
  }

  .process-list,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  .chapter,
  .section,
  .support-layout,
  .contact-grid,
  .app-links-section,
  .page-hero,
  .legal-hero,
  .legal-content {
    width: min(100% - 30px, var(--max));
  }

  .chapter {
    padding: 64px 0;
  }

  .hero-title {
    font-size: clamp(4.1rem, 21vw, 6.8rem);
  }

  .hero-actions,
  .card-actions,
  .button {
    width: 100%;
  }

  .apps-grid,
  .metric-grid,
  .process-list,
  .ops-links,
  .support-layout,
  .contact-grid,
  .release-track {
    grid-template-columns: 1fr;
  }

  .app-card {
    min-height: 0;
    padding: 22px;
  }

  .app-card-head {
    align-items: flex-start;
  }

  .app-card h3 {
    font-size: 1.85rem;
  }

  .hero-showcase {
    min-height: 340px;
  }

  .showcase-icon {
    border-radius: 24px;
  }

  .showcase-irade {
    top: 28px;
    left: 24px;
    width: 56%;
  }

  .showcase-spambye {
    right: 24px;
    bottom: 92px;
    width: 42%;
  }

  .showcase-card {
    right: 18px;
    bottom: 18px;
    left: 18px;
    align-items: flex-start;
    flex-direction: column;
  }

  .word-lines span {
    font-size: clamp(3.1rem, 21vw, 5.6rem);
  }

  .legal-content {
    padding: 24px;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }
}
