@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-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;
}

@property --x {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 50%;
}

@property --y {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 50%;
}

:root {
  --bg: #070707;
  --fg: #fff8ed;
  --accent: #d7ff5a;
  --muted: rgba(255, 248, 237, .78);
  --quiet: rgba(255, 248, 237, .62);
  --dim: rgba(255, 248, 237, .5);
  --line: rgba(255, 248, 237, .2);
  --line-strong: rgba(255, 248, 237, .42);
  --surface: rgba(255, 248, 237, .045);
  --surface-strong: rgba(255, 248, 237, .072);
  --max: 1180px;
  --pad-x: clamp(20px, 4.4vw, 72px);
  --pad-y: clamp(18px, 5dvh, 60px);
  --measure: 68ch;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-out: cubic-bezier(.19, 1, .22, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--fg);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 100%;
  font-synthesis: none;
  background:
    linear-gradient(118deg, rgba(215,255,90,.1), transparent 30rem),
    radial-gradient(circle at var(--x) var(--y), rgba(255,255,255,.11), rgba(255,255,255,.028) 17rem, transparent 34rem),
    linear-gradient(145deg, #030303, #101010 48%, #050505);
  isolation: isolate;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

body::before {
  opacity: .16;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 88px 88px;
  -webkit-mask-image: radial-gradient(circle at var(--x) var(--y), black, transparent 66%);
  mask-image: radial-gradient(circle at var(--x) var(--y), black, transparent 66%);
}

body::after {
  opacity: .08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 260 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.72'/%3E%3C/svg%3E");
}

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

a,
button {
  -webkit-tap-highlight-color: transparent;
}

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

ul,
ol {
  margin: 0;
}

p,
li {
  max-width: var(--measure);
  text-wrap: pretty;
  overflow-wrap: break-word;
}

strong {
  color: var(--fg);
  font-weight: 800;
}

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

main {
  min-width: 0;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 20;
  padding: 12px 16px;
  border: 1px solid rgba(215,255,90,.62);
  border-radius: 999px;
  background: var(--accent);
  color: #070707;
  font-size: .84rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transform: translateY(-160%);
  transition: transform .25s var(--ease);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.page {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: 28px var(--pad-x) 44px;
}

.home-shell {
  width: min(100%, var(--max));
  min-height: 100vh;
  min-height: 100dvh;
  padding: var(--pad-y) var(--pad-x);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(20px, 4dvh, 54px);
}

.site-header,
.bottom,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.bottom {
  align-items: flex-end;
}

.bottom .contact {
  flex: 0 0 auto;
}

.bottom .site-footer {
  flex: 1 1 auto;
  text-align: right;
}

.brand,
.site-nav,
.contact,
.site-footer,
.hero,
.section,
.final,
.legal-hero,
.legal-main,
.legal-cta {
  opacity: 0;
  transform: translateY(14px);
  animation: in .9s var(--ease) forwards;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  font-size: 1rem;
  font-weight: 680;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand::before {
  width: 8px;
  height: 8px;
  margin-right: 11px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 34px rgba(215,255,90,.48);
  content: "";
  animation: pulse 3.2s var(--ease) infinite;
}

.site-nav {
  animation-delay: .08s;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.site-nav .button {
  gap: 10px;
  min-height: 40px;
  padding-inline: 18px;
  font-size: .76rem;
}

.site-nav .button--mail::before,
.site-nav .button--call::before {
  width: 1.75em;
  height: 1.75em;
}

.site-nav .button--mail {
  border-color: rgba(215,255,90,.34);
  background: rgba(215,255,90,.09);
  color: rgba(255,248,237,.98);
}

.site-nav .button--mail:hover {
  border-color: rgba(215,255,90,.58);
  background: rgba(215,255,90,.14);
  color: var(--accent);
}

.stage {
  align-self: center;
  min-width: 0;
  width: min(100%, 1160px);
}

.home-title {
  font-size: 7.35rem;
  line-height: .98;
  letter-spacing: 0;
  font-weight: 800;
  text-transform: uppercase;
  text-wrap: balance;
}

.line {
  display: block;
  overflow: visible;
  padding-block: .035em;
}

.line > span {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%) rotateX(36deg);
  transform-origin: 0 100%;
  animation: title .95s var(--ease-out) forwards;
}

.line--intro > span { animation-delay: .16s; }
.line--offer > span { animation-delay: .25s; }
.line--tail > span { animation-delay: .34s; }

.line--intro {
  color: rgba(255,248,237,.92);
  font-size: .52em;
}

.line--offer {
  font-size: 1em;
}

.line--tail {
  color: rgba(255,248,237,.96);
  font-size: .64em;
}

.switch-wrap {
  display: inline-flex;
  align-items: center;
  gap: .06em;
  color: var(--fg);
  line-height: 1;
}

.line > .switch-wrap {
  display: inline-flex;
}

.bracket {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--accent);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 0 28px rgba(215,255,90,.22);
  transform: translateY(-.03em);
}

.switch {
  position: relative;
  display: inline-grid;
  grid-template-rows: repeat(2, auto);
  row-gap: 0;
  width: max-content;
  max-width: none;
  flex: 0 0 auto;
  min-width: 0;
  margin: -.02em -.035em -.14em;
  padding: .02em .035em .22em;
  color: transparent;
  background:
    linear-gradient(90deg, rgba(255,248,237,.98), rgba(255,248,237,.68), rgba(255,248,237,.98));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1.04;
  overflow: visible;
  filter: drop-shadow(0 24px 64px rgba(0,0,0,.28));
  animation: glowText 5.2s var(--ease) infinite;
  will-change: transform, opacity;
}

.switch.is-changing {
  animation: glitchText .34s steps(2, end), glowText 5.2s var(--ease) infinite;
}

.switch-word {
  display: block;
  width: max-content;
  padding-block: .03em .14em;
  line-height: 1;
  white-space: nowrap;
}

.switch-word + .switch-word {
  margin-top: -.085em;
}

.lead {
  max-width: 720px;
  margin: clamp(18px, 2.5dvh, 30px) 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.58;
  letter-spacing: 0;
}

.home-page .lead {
  opacity: 0;
  transform: translateY(18px);
  animation: in .9s var(--ease) .52s forwards;
}

.contact,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(10px, 1.3vw, 16px);
}

.contact {
  animation-delay: .68s;
}

.contact--mobile {
  display: none;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 clamp(18px, 2vw, 30px);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: rgba(255,248,237,.94);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
}

.button--mail::before,
.button--call::before {
  position: relative;
  z-index: 1;
  display: inline-block;
  flex: 0 0 auto;
  width: 1.7em;
  height: 1.7em;
  background: currentColor;
  content: "";
}

.button--mail::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' fill-rule='evenodd' d='M4.7 6.25h14.6c.97 0 1.75.78 1.75 1.75v8c0 .97-.78 1.75-1.75 1.75H4.7c-.97 0-1.75-.78-1.75-1.75V8c0-.97.78-1.75 1.75-1.75Zm.05 2.56V16h14.5V8.82l-6.42 4.56a1.45 1.45 0 0 1-1.68 0L4.75 8.81Zm1.93-.81 5.32 3.78L17.32 8H6.68Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' fill-rule='evenodd' d='M4.7 6.25h14.6c.97 0 1.75.78 1.75 1.75v8c0 .97-.78 1.75-1.75 1.75H4.7c-.97 0-1.75-.78-1.75-1.75V8c0-.97.78-1.75 1.75-1.75Zm.05 2.56V16h14.5V8.82l-6.42 4.56a1.45 1.45 0 0 1-1.68 0L4.75 8.81Zm1.93-.81 5.32 3.78L17.32 8H6.68Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.button--call::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7.04 4.9c.6-.6 1.6-.6 2.2.02l1.9 1.96c.46.47.57 1.18.28 1.76l-.86 1.72c.77 1.35 1.83 2.41 3.18 3.18l1.72-.86c.59-.29 1.29-.18 1.76.28l1.96 1.9c.62.6.63 1.6.02 2.2l-1.04 1.04c-.76.76-1.86 1.07-2.9.8C10.08 17.57 6.43 13.92 5.1 8.73c-.27-1.04.04-2.14.8-2.9L7.04 4.9Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7.04 4.9c.6-.6 1.6-.6 2.2.02l1.9 1.96c.46.47.57 1.18.28 1.76l-.86 1.72c.77 1.35 1.83 2.41 3.18 3.18l1.72-.86c.59-.29 1.29-.18 1.76.28l1.96 1.9c.62.6.63 1.6.02 2.2l-1.04 1.04c-.76.76-1.86 1.07-2.9.8C10.08 17.57 6.43 13.92 5.1 8.73c-.27-1.04.04-2.14.8-2.9L7.04 4.9Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.button--primary,
.button--nav,
.button--mail {
  border-color: rgba(215,255,90,.72);
  background: var(--accent);
  color: #070707;
}

.button--call {
  border-color: rgba(215,255,90,.34);
  background: rgba(215,255,90,.09);
  color: rgba(255,248,237,.98);
}

.button--secondary {
  border-color: rgba(215,255,90,.34);
  background: rgba(215,255,90,.09);
  color: rgba(255,248,237,.98);
}

.button::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,.16), transparent);
  transform: translateX(-120%);
}

.button:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background: var(--surface-strong);
}

.button--primary:hover,
.button--nav:hover,
.button--mail:hover {
  border-color: rgba(255,248,237,.9);
  background: rgba(255,248,237,.96);
  color: #070707;
}

.button--call:hover {
  border-color: rgba(215,255,90,.58);
  background: rgba(215,255,90,.14);
  color: var(--accent);
}

.button--secondary:hover {
  border-color: rgba(215,255,90,.58);
  background: rgba(215,255,90,.14);
  color: var(--accent);
}

.button:hover::after {
  opacity: 1;
  animation: shine .72s var(--ease);
}

.site-footer {
  animation-delay: .76s;
  color: var(--quiet);
  font-size: .8rem;
  line-height: 1.6;
  white-space: nowrap;
}

.site-footer p {
  margin: 0;
}

.site-footer a,
.legal-content a {
  border-bottom: 1px solid rgba(255,248,237,.28);
  text-underline-offset: .2em;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}

.site-footer a:hover,
.legal-content a:hover {
  color: var(--fg);
  border-color: rgba(255,248,237,.66);
}

.footer-links {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 6px;
}

.footer-separator {
  color: rgba(255,248,237,.34);
}

.content-page .page,
.legal-page .page {
  width: min(100%, var(--max));
}

.hero {
  min-height: calc(100dvh - 230px);
  display: grid;
  align-content: center;
  padding: 54px 0;
  animation-delay: .14s;
}

.hero-inner {
  max-width: 1080px;
}

.offer-title {
  max-width: 980px;
  font-size: 5rem;
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 800;
  text-transform: uppercase;
  text-wrap: balance;
}

.offer-title span {
  display: block;
}

.content-page .lead {
  max-width: 760px;
  margin-top: 30px;
  font-size: 1.28rem;
  line-height: 1.6;
}

.final-actions {
  margin-top: 34px;
}

.section {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: 52px;
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

.section:nth-of-type(2) { animation-delay: .2s; }
.section:nth-of-type(3) { animation-delay: .26s; }
.section:nth-of-type(4) { animation-delay: .32s; }
.section:nth-of-type(5) { animation-delay: .38s; }
.section:nth-of-type(6) { animation-delay: .44s; }
.section:nth-of-type(7) { animation-delay: .5s; }
.section:nth-of-type(8) { animation-delay: .56s; }

.section-title {
  max-width: 430px;
}

.section-kicker,
.legal-kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section h2,
.final h2,
.legal-title,
.legal-content h2 {
  letter-spacing: 0;
  font-weight: 800;
  text-wrap: balance;
}

.section h2 {
  font-size: 2.8rem;
  line-height: 1.08;
}

.section-copy {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.74;
}

.section-copy p + p {
  margin-top: 22px;
}

.quote {
  margin-top: 34px;
  padding-left: 22px;
  border-left: 2px solid var(--accent);
  color: var(--fg);
  font-size: 1.34rem;
  font-weight: 760;
  line-height: 1.42;
  text-wrap: balance;
}

.rows {
  display: grid;
}

.row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.row:first-child {
  border-top: 0;
  padding-top: 0;
}

.row-number {
  color: var(--accent);
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.3;
}

.row h3,
.check h3,
.split-block h3,
.service-group h3,
.faq-item h3 {
  font-weight: 800;
  letter-spacing: 0;
}

.row h3 {
  font-size: 1.32rem;
  line-height: 1.2;
}

.row p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.66;
}

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

.check {
  min-height: 122px;
  padding: 23px 0;
  border-top: 1px solid var(--line);
}

.check:nth-child(-n + 2) {
  padding-top: 0;
  border-top: 0;
}

.check h3 {
  font-size: 1.14rem;
  line-height: 1.25;
}

.check p {
  margin-top: 10px;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.62;
}

.service-groups,
.faq-list {
  display: grid;
  gap: 0;
}

.service-group,
.faq-item {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.service-group:first-child,
.faq-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.service-group h3,
.faq-item h3 {
  font-size: 1.18rem;
  line-height: 1.25;
}

.service-group p,
.faq-item p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.66;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding-left: 0;
  list-style: none;
}

.area-tags li {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(215,255,90,.28);
  border-radius: 999px;
  background: rgba(215,255,90,.07);
  color: rgba(255,248,237,.9);
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

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

.split-block h3 {
  margin-bottom: 18px;
  font-size: 1.22rem;
  line-height: 1.2;
}

.split-block ul {
  display: grid;
  gap: 14px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.split-block li {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.final {
  padding: 78px 0 20px;
  border-top: 1px solid var(--line);
  animation-delay: .44s;
}

.final h2 {
  max-width: 780px;
  font-size: 3.55rem;
  line-height: 1.08;
}

.final p {
  max-width: 700px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.72;
}

.legal-page .page {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 54px;
}

.legal-hero {
  max-width: 920px;
  padding: 58px 0 18px;
  animation-delay: .14s;
}

.legal-title {
  max-width: 900px;
  font-size: clamp(2.55rem, 7vw, 5.6rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.legal-lead {
  max-width: 760px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.legal-main {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 64px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
  animation-delay: .22s;
}

.legal-nav {
  position: sticky;
  top: 28px;
  align-self: start;
  display: grid;
  gap: 12px;
  color: var(--quiet);
  font-size: .92rem;
  line-height: 1.5;
}

.legal-nav a {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 28px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}

.legal-nav a:hover {
  color: var(--fg);
  border-color: var(--line-strong);
}

.legal-content {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.legal-section {
  padding: 0 0 44px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 34px;
}

.legal-section + .legal-section {
  padding-top: 44px;
}

.legal-content h2 {
  color: var(--fg);
  font-size: 1.65rem;
  line-height: 1.2;
}

.legal-content h3 {
  margin-top: 28px;
  color: var(--fg);
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 800;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
  margin-top: 16px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.25rem;
}

.legal-content li + li {
  margin-top: 10px;
}

.legal-note {
  margin-top: 22px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  color: var(--fg);
  font-weight: 720;
}

.legal-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  margin-top: 54px;
  padding: 38px 0 8px;
  border-top: 1px solid var(--line);
  animation-delay: .28s;
}

.legal-cta h2 {
  max-width: 720px;
  color: var(--fg);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 800;
  text-wrap: balance;
}

.legal-cta p {
  max-width: 660px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.68;
}

.legal-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.legal-cta-actions .button {
  min-height: 52px;
  padding-inline: 22px;
  font-size: .88rem;
}

.legal-meta {
  margin-top: 22px;
  color: var(--quiet);
  font-size: .92rem;
}

::selection {
  color: #070707;
  background: var(--fg);
}

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

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

@keyframes title {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .76; }
  50% { transform: scale(1.55); opacity: 1; }
}

@keyframes glowText {
  0%, 100% { background-position: 0% 50%; filter: drop-shadow(0 0 0 rgba(255,248,237,0)); }
  50% { background-position: 100% 50%; filter: drop-shadow(0 0 22px rgba(255,248,237,.16)); }
}

@keyframes glitchText {
  0% { transform: translateY(0); opacity: 1; }
  28% { transform: translateY(-.04em) skewX(-4deg); opacity: .62; }
  58% { transform: translateY(.035em) skewX(3deg); opacity: .9; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes shine {
  from { transform: translateX(-120%); }
  to { transform: translateX(120%); }
}

@media (min-width: 1280px) {
  .home-title {
    font-size: 8rem;
  }
}

@media (max-width: 1180px) {
  .home-title {
    font-size: 6.2rem;
  }

  .home-page .lead {
    font-size: 1rem;
  }
}

@media (max-width: 1120px) {
  .offer-title {
    font-size: 4.28rem;
  }

  .section h2 {
    font-size: 2.36rem;
  }

  .section,
  .legal-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .legal-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .legal-cta-actions {
    justify-content: flex-start;
  }

  .section-title {
    max-width: 720px;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 761px) {
  html {
    scrollbar-gutter: stable;
  }
}

@media (max-width: 900px) {
  .home-title {
    font-size: 4.25rem;
  }

  .bottom,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .bottom .contact,
  .bottom .site-footer {
    flex: 0 1 auto;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  body::before {
    opacity: 0;
  }

  body::after {
    opacity: 0;
  }

  .page {
    padding-top: 20px;
  }

  .home-shell {
    gap: 18px;
  }

  .site-header {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: clamp(6px, 2vw, 9px);
  }

  .brand {
    flex: 0 0 auto;
    min-height: 40px;
    font-size: clamp(.96rem, 3.9vw, 1.08rem);
  }

  .brand::before {
    width: 8px;
    height: 8px;
    margin-right: 9px;
  }

  .site-nav {
    flex: 1 1 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    line-height: 1.2;
    min-width: 0;
    max-width: min(72vw, 300px);
  }

  .site-nav .button {
    gap: 5px;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    padding: 0 6px;
    font-size: clamp(.56rem, 2.55vw, .74rem);
  }

  .site-nav .button--mail::before,
  .site-nav .button--call::before {
    width: 1.6em;
    height: 1.6em;
  }

  .home-page .site-nav .button--nav {
    display: none;
  }

  .home-title,
  .offer-title {
    max-width: 100%;
    font-size: 3.08rem;
  }

  .home-title .switch-wrap {
    gap: .045em;
  }

  .offer-title {
    text-wrap: normal;
  }

  .lead,
  .content-page .lead {
    max-width: 36ch;
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 58px;
  }

  .final-actions,
  .contact,
  .button {
    width: 100%;
  }

  .button {
    justify-content: center;
    min-height: 54px;
    padding: 0 20px;
    font-size: .96rem;
  }

  .site-nav .button {
    gap: 5px;
    min-height: 42px;
    padding: 0 6px;
    font-size: clamp(.56rem, 2.55vw, .74rem);
  }

  .home-page .bottom {
    align-items: center;
  }

  .contact--mobile {
    display: flex;
  }

  .site-footer {
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 0;
    border-top: 0;
    color: var(--quiet);
    font-size: .78rem;
    line-height: 1.62;
    text-align: center;
    white-space: normal;
  }

  .bottom .site-footer {
    text-align: center;
  }

  .footer-links {
    display: inline-flex;
    justify-content: center;
    gap: 6px;
  }

  .footer-links a {
    width: auto;
    max-width: 100%;
    padding-bottom: 2px;
  }

  .footer-separator {
    display: inline;
  }

  .section {
    padding: 58px 0;
  }

  .section h2,
  .legal-content h2,
  .legal-cta h2 {
    font-size: 2rem;
  }

  .section-copy,
  .legal-content {
    font-size: 1rem;
  }

  .quote {
    font-size: 1.12rem;
  }

  .legal-cta {
    gap: 22px;
    margin-top: 42px;
    padding-top: 32px;
  }

  .legal-cta p {
    font-size: .98rem;
  }

  .legal-cta-actions,
  .legal-cta-actions .button {
    width: 100%;
  }

  .checks,
  .split,
  .legal-nav {
    grid-template-columns: 1fr;
  }

  .check:nth-child(2) {
    padding-top: 23px;
    border-top: 1px solid var(--line);
  }

  .row {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
  }

  .final h2 {
    font-size: 2.28rem;
  }
}

@media (max-width: 430px) {
  :root {
    --pad-x: clamp(18px, 6vw, 26px);
    --pad-y: 18px;
  }

  .home-title,
  .offer-title {
    font-size: 2.42rem;
  }

  .home-title {
    font-size: 2.4rem;
  }

  .section h2,
  .legal-content h2 {
    font-size: 1.78rem;
  }

  .legal-title {
    font-size: 2.28rem;
  }

  .row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .final h2 {
    font-size: 2rem;
  }
}

@media (max-width: 360px) {
  .home-shell {
    gap: 12px;
  }

  .site-nav .button--mail::before,
  .site-nav .button--call::before {
    width: 1.45em;
    height: 1.45em;
  }

  .home-title,
  .offer-title {
    font-size: 2rem;
  }

  .legal-title {
    font-size: 1.98rem;
  }

  .home-title {
    font-size: 1.98rem;
  }

  .lead,
  .content-page .lead,
  .legal-lead {
    font-size: 1rem;
    line-height: 1.56;
  }

  .hero {
    padding: 42px 0 44px;
  }

  .final-actions {
    margin-top: 24px;
  }

  .contact {
    gap: 8px;
  }

  .button {
    min-height: 50px;
  }

  .site-footer {
    font-size: .76rem;
  }
}

@media (max-height: 720px) and (min-width: 901px) {
  :root {
    --pad-y: 24px;
  }

  .home-title {
    font-size: 6rem;
  }

  .home-page .lead {
    max-width: 700px;
    font-size: 1.05rem;
  }

  .contact .button {
    min-height: 52px;
    font-size: 1.05rem;
  }
}

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