:root {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, sans-serif;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  background: #fff;
  color: #050505;
  padding: 10px 14px;
}

.skip-link:focus {
  top: 16px;
}

.nav-menu {
  display: none;
  position: absolute;
  inset: 80px 20px auto 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 5, 0.96);
  padding: 12px;
}

.nav-menu a {
  display: block;
  padding: 13px 12px;
  color: #d4d4d8;
  font-size: 14px;
}

.nav-menu a:hover,
footer a:hover {
  color: #ff5a00;
}

.nav-menu.is-open {
  display: block;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
    position: static;
    gap: 28px;
    border: 0;
    background: transparent;
    padding: 0;
  }

  .nav-menu a {
    padding: 0;
  }
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
}

.menu-lines::before {
  transform: translateY(-6px);
}

.menu-lines::after {
  transform: translateY(4px);
}

.eyebrow {
  color: #ff5a00;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 22px;
  font-weight: 700;
}

.btn-primary {
  background: #ff5a00;
  color: #fff;
  box-shadow: 0 22px 80px rgba(255, 90, 0, 0.18);
}

.btn-primary:hover {
  background: #ff7326;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
}

.btn-secondary:hover {
  border-color: #ff5a00;
  color: #ff5a00;
}

.hero-board {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(145deg, #111, #070707);
  border-radius: 8px;
  padding: 16px;
}

.hero-board__top,
.hero-board__footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #a1a1aa;
  font-size: 12px;
}

.hero-board__top strong {
  color: #2dd4bf;
}

.hero-board__screen {
  margin: 16px 0;
  min-height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    #0a0a0a;
  background-size: 34px 34px;
  border-radius: 6px;
  padding: 18px;
}

.signal-track {
  height: 160px;
  border-bottom: 2px solid rgba(255, 90, 0, 0.6);
  background: linear-gradient(90deg, rgba(255,90,0,.06), rgba(45,212,191,.12));
  clip-path: polygon(0 70%, 12% 48%, 24% 62%, 36% 24%, 48% 55%, 60% 38%, 72% 66%, 84% 20%, 100% 46%, 100% 100%, 0 100%);
  margin-bottom: 18px;
}

.metric {
  min-height: 82px;
  border: 1px solid rgba(255, 90, 0, 0.3);
  border-radius: 6px;
  padding: 14px;
  background: rgba(255, 90, 0, 0.08);
}

.metric span,
.metric strong {
  display: block;
}

.metric span {
  color: #a1a1aa;
  font-size: 12px;
}

.metric strong {
  margin-top: 6px;
  font-size: 20px;
}

.accent-aqua {
  border-color: rgba(45, 212, 191, 0.35);
  background: rgba(45, 212, 191, 0.08);
}

.accent-white {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.stat {
  background: #fff;
  padding: 28px 20px;
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  font-size: 34px;
  font-weight: 800;
}

.stat span {
  margin-top: 4px;
  color: #52525b;
  font-size: 13px;
}

.section {
  padding: 90px 0;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 44px;
  padding: 0 20px;
  text-align: center;
}

.section-head h2 {
  margin-top: 14px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  font-weight: 800;
}

.section-head p:last-child {
  margin-top: 16px;
  color: #a1a1aa;
  line-height: 1.8;
}

.service-card,
.price-card {
  border-radius: 8px;
}

.service-card {
  min-height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #101010;
  padding: 28px;
  transition: transform .2s ease, border-color .2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 0, 0.55);
}

.service-card span,
.timeline span {
  color: #ff5a00;
  font-size: 12px;
  font-weight: 800;
}

.service-card h3,
.timeline h3 {
  margin-top: 32px;
  font-size: 25px;
  font-weight: 800;
}

.service-card p,
.timeline p {
  margin-top: 14px;
  color: #a1a1aa;
  line-height: 1.75;
}

.timeline {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.timeline > div {
  background: #090909;
  padding: 28px;
}

.price-card {
  border: 1px solid #e4e4e7;
  padding: 28px;
  background: #fff;
}

.price-card.featured {
  border-color: #ff5a00;
  box-shadow: 0 30px 70px rgba(255, 90, 0, 0.16);
}

.price-card p {
  color: #ff5a00;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.price-card h3 {
  margin-top: 14px;
  font-size: 40px;
  font-weight: 800;
}

.price-card h3 span {
  font-size: 14px;
  color: #71717a;
}

.price-card ul {
  margin: 24px 0;
  display: grid;
  gap: 12px;
  color: #3f3f46;
}

.price-card li::before {
  content: "- ";
  color: #ff5a00;
  font-weight: 800;
}

.price-card a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 6px;
  background: #050505;
  color: #fff;
  font-weight: 700;
}

.price-card a:hover {
  background: #ff5a00;
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #101010;
  padding: 22px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #d4d4d8;
  font-size: 13px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: #050505;
  color: #fff;
  padding: 13px 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #ff5a00;
}

.legal-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 20px;
  color: #d4d4d8;
}

.legal-section h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 800;
}

.legal-section p {
  margin-top: 14px;
  line-height: 1.8;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s ease, transform .5s ease;
}

/* Static fallback layer: keeps the page correct even if Tailwind CDN is blocked or the file is opened directly. */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #050505;
  color: #fff;
}

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

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

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

.bg-white {
  background: #fff;
}

.text-ink {
  color: #050505;
}

.text-white {
  color: #fff;
}

.text-zinc-300 {
  color: #d4d4d8;
}

.text-zinc-400 {
  color: #a1a1aa;
}

.text-zinc-600 {
  color: #52525b;
}

.bg-zinc-950 {
  background: #09090b;
}

header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(18px);
}

header nav {
  max-width: 1280px;
  height: 80px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header nav > a {
  display: flex;
  align-items: center;
  gap: 12px;
}

header img {
  height: 44px;
  width: auto;
}

header nav > a span {
  color: #d4d4d8;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
}

#menuToggle {
  display: inline-flex;
  height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: #e4e4e7;
}

main {
  overflow: hidden;
}

#home {
  min-height: 100vh;
  padding-top: 128px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

#home > div,
#about > div,
#contact > div,
#work > div {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

#home > div {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 48px;
  align-items: center;
  padding-bottom: 64px;
}

#home h1 {
  margin: 20px 0 0;
  max-width: 820px;
  color: #fff;
  font-size: clamp(48px, 6vw, 86px);
  line-height: .96;
  font-weight: 800;
  letter-spacing: 0;
}

#home h1 + p {
  max-width: 680px;
  margin-top: 24px;
  color: #d4d4d8;
  font-size: 18px;
  line-height: 1.75;
}

#home h1 + p + div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

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

.bg-white > .grid,
#services > .grid,
#pricing > .grid {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: grid;
  gap: 16px;
}

.bg-white > .grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.stat + .stat {
  border-left: 1px solid #e4e4e7;
}

#services > .grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#pricing > .grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#work > div {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 40px;
  padding-top: 80px;
  padding-bottom: 80px;
}

#work h2,
#about h2,
#contact h2 {
  margin: 16px 0 0;
  color: #fff;
  font-size: clamp(32px, 4.8vw, 58px);
  line-height: 1.05;
  font-weight: 800;
}

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

#about > div {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 48px;
}

#about p {
  color: #d4d4d8;
  line-height: 1.8;
}

#contact > div {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  padding-top: 80px;
  padding-bottom: 80px;
}

#contact p {
  color: #d4d4d8;
}

#contact strong {
  color: #fff;
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 32px 20px;
  color: #a1a1aa;
  font-size: 14px;
}

footer > div {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

footer div div {
  display: flex;
  gap: 20px;
}

@media (max-width: 1024px) {
  #home > div,
  #work > div,
  #about > div,
  #contact > div {
    grid-template-columns: 1fr;
  }

  #services > .grid,
  #pricing > .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  header nav > a span {
    display: none;
  }

  #home {
    padding-top: 112px;
  }

  #home > div {
    min-height: auto;
  }

  #home h1 {
    font-size: 44px;
  }

  .bg-white > .grid,
  #services > .grid,
  #pricing > .grid,
  .timeline,
  .hero-board__screen .grid {
    grid-template-columns: 1fr;
  }

  .stat + .stat {
    border-left: 0;
    border-top: 1px solid #e4e4e7;
  }

  .section {
    padding: 70px 0;
  }

  footer > div {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Reference redesign */
header {
  background: rgba(4, 4, 4, 0.94);
}

header nav {
  max-width: 1500px;
}

header img {
  height: 54px;
}

.nav-menu {
  align-items: center;
}

.nav-menu a {
  font-size: 17px;
  font-weight: 500;
}

.nav-menu .nav-cta {
  margin-left: 28px;
  min-height: 52px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff5a00;
  color: #fff;
  font-weight: 800;
}

.nav-menu .nav-cta:hover {
  color: #fff;
  background: #ff6a17;
}

.home-hero {
  position: relative;
  min-height: 100vh;
  padding-top: 80px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #030303;
}

.hero-bg {
  position: absolute;
  inset: 80px 0 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.63) 45%, rgba(0,0,0,.92) 100%),
    radial-gradient(circle at 58% 30%, rgba(255, 90, 0, .18), transparent 23%),
    radial-gradient(circle at 80% 16%, rgba(255, 166, 0, .14), transparent 19%),
    radial-gradient(circle at 72% 70%, rgba(255, 90, 0, .10), transparent 17%),
    linear-gradient(135deg, #080808, #181818 38%, #030303);
}

.hero-bg::before,
.hero-bg::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  border: 22px solid rgba(255, 114, 24, .22);
  filter: blur(.2px);
  opacity: .55;
}

.hero-bg::before {
  width: 390px;
  height: 390px;
  right: 29%;
  top: 11%;
  box-shadow: 0 0 90px rgba(255, 90, 0, .08);
}

.hero-bg::after {
  width: 260px;
  height: 260px;
  right: 9%;
  top: 2%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1500px;
  margin: 0 auto;
  min-height: calc(100vh - 80px);
  padding: 0 20px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 40px;
}

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

.hero-ghost {
  position: absolute;
  top: 84px;
  left: 20px;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,.13);
  text-stroke: 2px rgba(255,255,255,.13);
  font-size: clamp(64px, 8vw, 116px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin: 0;
}

.hero-copy h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: clamp(58px, 7.5vw, 102px);
  line-height: 1;
  max-width: 900px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.hero-copy h1 span {
  color: #ff5a00;
}

.hero-lede {
  margin: 54px 0 0;
  max-width: 760px;
  color: #d9d9df;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.45;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 52px;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
  min-height: 68px;
  border-radius: 0;
  padding: 0 36px;
  font-size: 18px;
}

.hero-actions .btn-secondary {
  border-color: rgba(255,255,255,.24);
  background: rgba(0,0,0,.18);
}

.hero-experience {
  align-self: end;
  margin-bottom: 160px;
  padding-left: 28px;
  border-left: 1px solid rgba(255,255,255,.18);
}

.hero-experience span,
.hero-experience small {
  display: block;
  color: #9b9ba3;
  font-size: 15px;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.hero-experience strong {
  display: block;
  margin: 26px 0 16px;
  color: #fff;
  font-size: 38px;
  line-height: 1;
}

.hero-experience strong span {
  display: inline;
  color: #ff5a00;
  letter-spacing: 0;
  font-size: 38px;
}

.hero-ticker {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
  padding: 28px 0;
  color: #d4d4d8;
  font-size: 22px;
  white-space: nowrap;
}

.hero-ticker i {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #ff5a00;
}

.about-reference {
  background: #030303;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 80px 0;
}

.about-wrap {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: minmax(420px, .95fr) minmax(0, 1fr);
  align-items: center;
  gap: 50px;
}

.about-media {
  position: relative;
  min-height: 650px;
}

.about-media img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  filter: saturate(.95) contrast(1.02);
}

.about-badge {
  position: absolute;
  right: -34px;
  bottom: -30px;
  width: 260px;
  min-height: 132px;
  padding: 28px 30px;
  background: #ff5a00;
  color: #fff;
}

.about-badge strong {
  display: block;
  font-size: 48px;
  line-height: 1;
  font-weight: 900;
}

.about-badge span {
  display: block;
  margin-top: 18px;
  color: rgba(255,255,255,.86);
  font-size: 13px;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.about-copy {
  padding-left: 0;
}

.about-copy .eyebrow {
  margin-bottom: 22px;
  letter-spacing: .38em;
}

.about-copy h2 {
  position: relative;
  margin: 0 0 30px;
  color: #fff;
  font-size: clamp(46px, 5.2vw, 70px);
  line-height: .9;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.about-copy h2 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.18);
  text-stroke: 1px rgba(255,255,255,.18);
}

.about-copy p {
  max-width: 800px;
  color: #c7c7d0;
  font-size: 21px;
  line-height: 1.42;
}

.about-copy .about-lead {
  color: #fff;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.about-facts div {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255,255,255,.13);
  padding: 0 22px;
  color: #fff;
  font-size: 18px;
}

.about-facts span {
  color: #ff5a00;
  font-size: 13px;
  font-weight: 900;
}

@media (min-width: 900px) {
  #menuToggle {
    display: none;
  }
}

@media (max-width: 1180px) {
  .hero-inner,
  .about-wrap {
    grid-template-columns: 1fr;
  }

  .hero-experience {
    align-self: auto;
    margin: 0;
  }

  .hero-ticker {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .about-badge {
    right: 20px;
  }
}

@media (max-width: 768px) {
  header img {
    height: 42px;
  }

  .nav-menu .nav-cta {
    margin: 10px 0 0;
    width: 100%;
  }

  .home-hero {
    padding-top: 80px;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 54px;
  }

  .hero-copy h1 {
    font-size: 48px;
  }

  .hero-ghost {
    top: 70px;
    font-size: 62px;
  }

  .hero-lede {
    margin-top: 30px;
    font-size: 17px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
  }

  .about-wrap {
    padding: 0 16px;
  }

  .about-media,
  .about-media img {
    min-height: 420px;
    height: 420px;
  }

  .about-badge {
    left: 18px;
    right: auto;
    bottom: -36px;
    width: 220px;
  }

  .about-copy {
    padding-top: 52px;
  }

  .about-copy h2 {
    font-size: 44px;
  }

  .about-copy p {
    font-size: 17px;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }
}

/* Footer reference layout */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  background: #020202;
  color: #fff;
  padding: 132px 20px 42px;
}

.footer-main {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(520px, 1.15fr) .55fr .65fr;
  gap: 80px;
  align-items: start;
  padding-bottom: 84px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: block;
}

.footer-brand img {
  width: 230px;
  height: auto;
  margin-bottom: 42px;
}

.footer-brand h2 {
  margin: 0;
  font-size: clamp(54px, 5.4vw, 74px);
  line-height: .95;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.footer-brand p {
  max-width: 560px;
  margin: 34px 0 0;
  color: #c6c6d0;
  font-size: 16px;
  line-height: 1.45;
}

.footer-links,
.footer-reach {
  display: grid;
  gap: 16px;
}

.footer-links p,
.footer-reach p {
  margin: 0 0 14px;
  color: #8d8d99;
  font-size: 12px;
  letter-spacing: .42em;
  text-transform: uppercase;
}

.footer-links a,
.footer-reach a,
.footer-reach span {
  color: #fff;
  font-size: 19px;
  line-height: 1.1;
}

.footer-links a:hover,
.footer-reach a:hover,
.footer-legal a:hover {
  color: #ff5a00;
}

.reach-item {
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.reach-item svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  fill: none;
  stroke: #ff5a00;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  max-width: 1600px;
  margin: 0 auto;
  padding-top: 38px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer-bottom p {
  margin: 0;
  color: #bfc0ca;
  font-size: 18px;
}

.footer-bottom p > span:first-child {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 10px;
  background: #ff5a00;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 36px;
  padding: 0;
  border-top: 0;
  border-radius: 0;
}

.footer-legal a {
  color: #fff;
  font-size: 18px;
}

.footer-socials {
  justify-self: end;
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #d8d8df;
}

.footer-socials svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-socials a[aria-label="Facebook"] svg {
  fill: currentColor;
  stroke: none;
}

.footer-socials a:hover {
  border-color: #ff5a00;
  color: #ff5a00;
}

.compact-footer {
  padding-top: 28px;
}

.privacy-body header {
  position: fixed;
}

.privacy-nav {
  display: flex;
  position: static;
  border: 0;
  background: transparent;
  padding: 0;
  gap: 28px;
}

.privacy-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 150px 20px 80px;
}

.privacy-hero {
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.privacy-hero h1 {
  margin: 18px 0;
  font-size: clamp(46px, 7vw, 82px);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -0.05em;
}

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

.privacy-meta span {
  border: 1px solid rgba(255,255,255,.13);
  padding: 14px 16px;
  color: #d8d8df;
}

.privacy-hero p,
.privacy-content p,
.privacy-content li {
  color: #c9c9d2;
  font-size: 17px;
  line-height: 1.72;
}

.privacy-content section {
  padding: 42px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.privacy-content h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 850;
}

.privacy-content h3 {
  margin: 28px 0 10px;
  color: #ff5a00;
  font-size: 21px;
  font-weight: 800;
}

.privacy-content ul {
  margin: 16px 0;
  padding-left: 22px;
}

.privacy-content li {
  margin: 8px 0;
}

.privacy-content strong {
  color: #fff;
}

@media (max-width: 980px) {
  .site-footer {
    padding-top: 80px;
  }

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

  .footer-legal {
    justify-content: flex-start;
    padding: 18px 0 0;
    border-radius: 0;
  }

  .footer-socials {
    justify-self: start;
  }

  .privacy-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .footer-main {
    gap: 44px;
  }

  .footer-brand img {
    width: 185px;
  }

  .footer-brand h2 {
    font-size: 52px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 14px;
  }

  .footer-socials {
    flex-wrap: wrap;
  }

  .privacy-nav {
    display: none;
  }
}
