:root {
  --bg: #030303;
  --text: #f7f7f7;
  --muted: #a8a8a8;
  --soft: #6f6f6f;
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.07);
  --white: #fff;
  --black: #000;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: rgba(255, 255, 255, 0.34) rgba(255, 255, 255, 0.04);
  scrollbar-width: thin;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
}

body::selection {
  color: var(--black);
  background: var(--white);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.035);
}

::-webkit-scrollbar-thumb {
  border: 3px solid #030303;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.52);
}

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

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

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at calc(72% + var(--mx, 0px)) calc(20% + var(--my, 0px)), rgba(255, 255, 255, 0.09), transparent 25%),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #030303;
  background-size: auto, 100% 92px, auto;
}

.wrap {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 20px 0 auto;
  z-index: 50;
  pointer-events: none;
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  min-height: 56px;
  margin: 0 auto;
  padding: 8px 8px 8px 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(3, 3, 3, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: auto;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0);
  transition: width 360ms cubic-bezier(0.22, 1, 0.36, 1),
    min-height 360ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 360ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 360ms ease,
    background 360ms ease,
    box-shadow 360ms ease;
}

.nav::before,
.nav::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transition: opacity 360ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav::before {
  inset: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.26), transparent 24%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.18), transparent 26%, transparent 74%, rgba(255, 255, 255, 0.1));
  mix-blend-mode: screen;
}

.nav::after {
  width: 140px;
  height: 120%;
  top: -10%;
  left: -35%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: skewX(-18deg);
}

.site-header.is-compact .nav {
  width: min(760px, calc(100% - 44px));
  min-height: 50px;
  padding: 7px 8px 7px 18px;
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035));
  backdrop-filter: blur(28px) saturate(1.55);
  -webkit-backdrop-filter: blur(28px) saturate(1.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06),
    0 18px 70px rgba(0, 0, 0, 0.42);
}

.site-header.is-compact .nav::before {
  opacity: 0.7;
}

.site-header.is-compact .nav::after {
  opacity: 0.55;
  transform: translateX(620%) skewX(-18deg);
}

.site-header.is-compact .brand {
  font-size: 16px;
}

.site-header.is-compact .nav-links {
  gap: 20px;
  font-size: 11px;
}

.site-header.is-compact .nav-cta {
  min-height: 38px;
  padding: 0 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 900;
}

.brand-logo {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.42));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 19px;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  overflow: hidden;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-cta,
.button.primary {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.button.ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.78);
}

.nav-cta:hover,
.button.primary:hover {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.button.ghost:hover {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.section {
  position: relative;
  padding: 118px 0;
  border-top: 1px solid var(--line-soft);
}

.hero {
  min-height: 100svh;
  padding: 158px 0 98px;
  display: flex;
  align-items: center;
  border-top: 0;
  overflow: hidden;
}

.hero-art {
  position: absolute;
  inset: 2% -6% 0 auto;
  width: min(53vw, 720px);
  opacity: 0.48;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: contrast(1.18) brightness(0.82) saturate(1.18);
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg), transparent 32%, rgba(3, 3, 3, 0.22) 68%, var(--bg)),
    linear-gradient(180deg, var(--bg), transparent 20%, transparent 72%, var(--bg));
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-grid {
  display: block;
}

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

.eyebrow {
  margin: 0 0 20px;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 28px;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, Inter, system-ui, sans-serif;
  font-size: clamp(44px, 6.2vw, 82px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.dynamic-word {
  position: relative;
  display: inline-flex;
  min-width: 4.9em;
  height: 1.08em;
  overflow: hidden;
  color: var(--white);
  vertical-align: bottom;
}

.dynamic-word-list {
  position: absolute;
  inset: 0 auto auto 0;
  display: flex;
  flex-direction: column;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dynamic-word-item {
  height: 1.08em;
  display: flex;
  align-items: center;
  white-space: nowrap;
  opacity: 0.18;
  transform: scale(0.96);
  transform-origin: left center;
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dynamic-word-item.active {
  opacity: 1;
  transform: scale(1);
}

.dynamic-word-width {
  visibility: hidden;
  height: 0;
  pointer-events: none;
  white-space: nowrap;
}

h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.hero-text {
  max-width: 640px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.66;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-head {
  margin-bottom: 52px;
}

.faq {
  padding-top: 92px;
}

.faq .wrap {
  width: min(1180px, calc(100% - 44px));
  min-height: 890px;
}

.faq .section-head {
  max-width: 1120px;
  margin: 0 auto 76px;
  text-align: center;
}

.faq .section-head h2 {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, Inter, system-ui, sans-serif;
  max-width: max-content;
  margin: 0 auto;
  font-size: clamp(42px, 5.1vw, 70px);
  line-height: 1;
  letter-spacing: -0.065em;
  font-weight: 800;
  white-space: nowrap;
}

.faq .eyebrow {
  margin-bottom: 18px;
  color: var(--muted);
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: none;
}

.service-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-item {
  min-height: 0;
  padding: 28px 0;
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 0.65fr);
  gap: 32px;
  border-bottom: 1px solid var(--line-soft);
}

.service-item span {
  display: block;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.service-item p,
.step p,
.faq-item p,
.contact-box p {
  color: var(--muted);
  line-height: 1.64;
}

.service-item p {
  max-width: 640px;
  margin-bottom: 0;
  font-size: 17px;
}

.process-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 72px;
  align-items: start;
}

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

.step {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.step span {
  display: block;
  margin-bottom: 18px;
  color: var(--soft);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
}

.faq-list {
  width: min(744px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

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

.faq-question {
  width: 100%;
  min-height: 84px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 0;
  cursor: pointer;
  color: var(--white);
  background: transparent;
  font: inherit;
  text-align: left;
}

.faq-question span:first-child {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Inter, system-ui, sans-serif;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.faq-question:focus-visible {
  outline: 1px solid var(--white);
  outline-offset: 8px;
}

.faq-plus {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  opacity: 0.72;
  transition: transform 260ms ease, opacity 260ms ease;
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 18px;
  height: 2px;
  background: var(--muted);
  transform: translateY(-50%);
}

.faq-plus::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item.open .faq-plus {
  opacity: 1;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 360ms ease, opacity 260ms ease, transform 360ms ease;
}

.faq-item.open .faq-answer {
  max-height: 180px;
  opacity: 1;
  transform: translateY(0);
}

.faq-answer p {
  max-width: 650px;
  margin: -2px 0 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.contact {
  padding-bottom: 134px;
}

.contact-box {
  max-width: 900px;
}

.contact-box p {
  max-width: 620px;
  margin: 22px 0 32px;
  font-size: 18px;
}

.footer {
  border-top: 1px solid var(--line-soft);
  color: var(--soft);
}

.footer-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 900;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .hero-art {
    inset: auto -24% 0 auto;
    width: 96vw;
    opacity: 0.18;
  }

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

  .faq-item:last-child {
    border-bottom: 0;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

@media (max-width: 760px) {
  .site-bg {
    background-size: auto, 100% 76px, auto;
  }

  .wrap {
    width: min(var(--max), calc(100% - 32px));
  }

  .site-header {
    inset: 12px 0 auto;
  }

  .nav,
  .site-header.is-compact .nav {
    width: calc(100% - 24px);
    min-height: 52px;
    padding: 7px 8px 7px 16px;
    gap: 12px;
  }

  .brand,
  .site-header.is-compact .brand {
    font-size: 16px;
    gap: 8px;
  }

  .brand-logo {
    width: 24px;
    height: 24px;
  }

  .nav-cta,
  .site-header.is-compact .nav-cta {
    min-height: 36px;
    padding: 0 13px;
    font-size: 11px;
    white-space: nowrap;
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: 100svh;
    padding: 112px 0 70px;
    align-items: flex-end;
  }

  .hero-art {
    inset: 64px -34% auto auto;
    width: 122vw;
    height: 62svh;
    opacity: 0.24;
  }

  .hero-copy {
    max-width: 100%;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(38px, 13vw, 56px);
    line-height: 0.98;
    letter-spacing: -0.06em;
  }

  .dynamic-word {
    display: flex;
    min-width: min(100%, 5.2em);
    margin-top: 4px;
  }

  .hero-text {
    max-width: 34ch;
    margin-bottom: 26px;
    line-height: 1.55;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 280px;
  }

  .button {
    width: 100%;
  }

  h2 {
    font-size: clamp(32px, 10vw, 46px);
    line-height: 1.04;
  }

  .section-head {
    margin-bottom: 38px;
  }

  .service-item {
    padding: 24px 0;
  }

  .service-item span {
    font-size: 30px;
  }

  .process-grid {
    gap: 34px;
  }

  .steps {
    gap: 26px;
  }

  .step {
    min-height: auto;
  }

  .faq {
    padding-top: 78px;
  }

  .faq .wrap {
    width: min(744px, calc(100% - 32px));
    min-height: auto;
  }

  .faq .section-head {
    margin-bottom: 42px;
  }

  .faq .section-head h2 {
    max-width: 10ch;
    font-size: clamp(38px, 12vw, 52px);
    white-space: normal;
  }

  .faq .eyebrow {
    margin-bottom: 16px;
    font-size: 13px;
  }

  .faq-list {
    width: 100%;
  }

  .faq-question {
    min-height: 68px;
    gap: 18px;
  }

  .faq-question span:first-child {
    max-width: calc(100% - 42px);
    font-size: 15px;
    line-height: 1.25;
  }

  .faq-plus,
  .faq-plus::before,
  .faq-plus::after {
    width: 15px;
  }

  .faq-answer p {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.55;
  }

  .contact {
    padding-bottom: 88px;
  }

  .footer-inner {
    min-height: 76px;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(var(--max), calc(100% - 28px));
  }

  .site-header {
    top: 10px;
  }

  .nav,
  .site-header.is-compact .nav {
    width: calc(100% - 20px);
    min-height: 50px;
    padding-left: 16px;
  }

  .brand {
    font-size: 17px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 10px;
  }

  .section {
    padding: 82px 0;
  }

  .hero {
    padding: 104px 0 66px;
  }

  h1 {
    font-size: clamp(36px, 12.6vw, 48px);
  }

  h2 {
    font-size: 34px;
  }

  .faq .section-head {
    margin-bottom: 46px;
  }

  .faq .section-head h2 {
    font-size: 34px;
    white-space: normal;
  }

  .faq-question {
    min-height: 70px;
  }

  .faq-question span:first-child {
    font-size: 16px;
  }

  .faq-plus,
  .faq-plus::before,
  .faq-plus::after {
    width: 16px;
  }

  .faq-answer p {
    margin-bottom: 26px;
    font-size: 15px;
  }

  .hero-text,
  .contact-box p,
  .service-item p {
    font-size: 16px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}
