:root {
  --ink: #070b0b;
  --ink-2: #0d1514;
  --paper: #f5f4ee;
  --paper-2: #e9ede6;
  --white: #ffffff;
  --muted: #68716e;
  --line: rgba(7, 11, 11, 0.14);
  --glass: rgba(255, 255, 255, 0.1);
  --teal: #00b894;
  --teal-dark: #006e60;
  --gold: #d9aa3d;
  --coral: #eb654c;
  --max: 1200px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 18px;
  right: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 10px;
  color: var(--white);
  background: rgba(7, 11, 11, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(7, 11, 11, 0.93);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 164px;
  height: 40px;
  object-fit: contain;
  transition:
    opacity 180ms ease,
    transform 220ms var(--ease);
}

.brand:hover img,
.brand:focus-visible img {
  opacity: 0.86;
  transform: translateY(-1px);
}

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

.site-nav a {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  border-radius: 8px;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
  outline: none;
}

.site-nav .nav-cta {
  margin-left: 4px;
  color: var(--ink);
  background: var(--white);
  font-weight: 850;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--ink);
  background: #f2e4b9;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 94svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-image,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 11, 11, 0.94) 0%, rgba(7, 11, 11, 0.82) 36%, rgba(7, 11, 11, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 11, 11, 0.72) 0%, rgba(7, 11, 11, 0.06) 58%);
}

.hero-grid {
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 120px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.split-intro h2,
.section-heading h2,
.visual-copy h2,
.offer-panel h2,
.contact h2 {
  margin: 0;
  font-size: clamp(3.1rem, 8.4vw, 8.8rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 980px;
}

.hero-copy {
  max-width: 700px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 18px;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  transition:
    transform 180ms var(--ease),
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  outline: none;
}

.button.primary {
  color: var(--ink);
  background: var(--white);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #f3df9a;
  box-shadow: 0 18px 44px rgba(217, 170, 61, 0.24);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
}

.hero-card {
  position: absolute;
  right: max(18px, calc((100vw - var(--max)) / 2));
  bottom: 34px;
  z-index: 3;
  width: min(390px, calc(100% - 36px));
  padding: 20px;
  color: var(--white);
  background: rgba(7, 11, 11, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  overflow: hidden;
  transition:
    transform 260ms var(--ease),
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.hero-card::before,
.service-layout article::before,
.method-grid article::before,
.metric-grid article::before,
.offer-list a::before,
.contact-card a::before,
.contact-card > span::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(0, 184, 148, 0.24),
    transparent 36%
  );
  transition: opacity 220ms ease;
}

.hero-card:hover,
.hero-card:focus-within {
  transform: translateY(-4px);
  background: rgba(7, 11, 11, 0.76);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.hero-card:hover::before,
.service-layout article:hover::before,
.method-grid article:hover::before,
.metric-grid article:hover::before,
.offer-list a:hover::before,
.contact-card a:hover::before,
.contact-card > span:hover::before,
.service-layout article:focus-within::before,
.method-grid article:focus-within::before,
.metric-grid article:focus-within::before,
.offer-list a:focus-visible::before,
.contact-card a:focus-visible::before {
  opacity: 1;
}

.hero-card span,
.hero-card p {
  color: rgba(255, 255, 255, 0.68);
}

.hero-card strong {
  display: block;
  margin: 8px 0;
  font-size: 1.25rem;
}

.hero-card p {
  margin: 0;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  color: var(--white);
  background: #24302e;
}

.ticker span {
  display: grid;
  min-height: 80px;
  place-items: center;
  padding: 18px 12px;
  text-align: center;
  background: var(--ink-2);
  font-weight: 850;
  transition:
    color 180ms ease,
    background 220ms ease,
    transform 220ms var(--ease);
}

.ticker span:hover {
  color: var(--ink);
  background: var(--gold);
  transform: translateY(-2px);
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 138px) 0;
}

.split-intro {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: start;
}

.split-intro h2,
.section-heading h2,
.visual-copy h2,
.offer-panel h2,
.contact h2 {
  font-size: clamp(2.45rem, 5.8vw, 5.8rem);
}

.split-intro p,
.section-heading p,
.visual-copy p,
.method-grid p,
.metric-grid p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.services {
  padding-top: 0;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 720px;
}

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

.service-layout article {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(7, 11, 11, 0.06);
  transition:
    transform 260ms var(--ease),
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.service-layout article:hover,
.service-layout article:focus-within {
  transform: translateY(-8px);
  border-color: rgba(0, 184, 148, 0.34);
  box-shadow: 0 28px 70px rgba(7, 11, 11, 0.13);
}

.service-layout .service-feature {
  grid-row: span 2;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 184, 148, 0.22), transparent 42%),
    var(--ink);
  border-color: var(--ink);
}

.service-layout .service-feature:hover,
.service-layout .service-feature:focus-within {
  border-color: rgba(0, 184, 148, 0.45);
  box-shadow: 0 34px 84px rgba(0, 184, 148, 0.18);
}

.service-layout span,
.method-grid span,
.metric-grid small,
.offer-list span,
.contact-card span,
.contact-card small {
  display: block;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-feature span,
.service-feature p {
  color: rgba(255, 255, 255, 0.7);
}

.service-layout h3,
.method-grid h3 {
  margin: 22px 0 12px;
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.service-layout p {
  margin: 0;
  color: var(--muted);
}

.service-feature p {
  color: rgba(255, 255, 255, 0.72);
}

.visual-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  width: 100%;
  padding: clamp(76px, 10vw, 138px) max(18px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--ink);
}

.visual-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.visual-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  transition:
    transform 320ms var(--ease),
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.visual-frame img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  transition:
    transform 700ms var(--ease),
    filter 320ms ease;
}

.visual-frame:hover,
.visual-frame:focus-within {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 42px 105px rgba(0, 0, 0, 0.32);
}

.visual-frame:hover img,
.visual-frame:focus-within img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.03);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.method-grid article {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 24px;
  background: var(--white);
  transition:
    transform 260ms var(--ease),
    box-shadow 220ms ease,
    background 220ms ease;
}

.method-grid article:hover,
.method-grid article:focus-within {
  z-index: 1;
  transform: translateY(-7px);
  background: #fffdf6;
  box-shadow: 0 24px 64px rgba(7, 11, 11, 0.12);
}

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

.metric-grid article {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 24px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transition:
    transform 260ms var(--ease),
    box-shadow 220ms ease,
    filter 220ms ease;
}

.metric-grid article:hover,
.metric-grid article:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 34px 84px rgba(7, 11, 11, 0.2);
  filter: saturate(1.05);
}

.metric-grid article:nth-child(2) {
  background: var(--teal-dark);
}

.metric-grid article:nth-child(3) {
  color: var(--ink);
  background: #ead79c;
}

.metric-grid strong {
  display: block;
  margin: 52px 0 18px;
  font-size: clamp(2.4rem, 4.8vw, 5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.metric-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.metric-grid article:nth-child(3) p {
  color: #4d4c3f;
}

.offers {
  padding-top: 0;
}

.offer-panel {
  padding: clamp(28px, 6vw, 68px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(235, 101, 76, 0.2), transparent 34%),
    var(--ink);
  border-radius: 8px;
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.offer-list a {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  padding: 20px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  transition:
    transform 240ms var(--ease),
    background 220ms ease,
    border-color 220ms ease;
}

.offer-list a:hover,
.offer-list a:focus-visible {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  outline: none;
}

.offer-list strong {
  display: block;
  margin-top: 16px;
  font-size: 1.2rem;
  line-height: 1.18;
}

.contact {
  color: var(--white);
  background: var(--ink);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.62fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(80px, 11vw, 150px) 0;
}

.contact-card {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 20px;
  font-style: normal;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.contact-card a,
.contact-card > span {
  position: relative;
  overflow: hidden;
  display: block;
  overflow-wrap: anywhere;
  padding: 16px;
  color: var(--white);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  border: 1px solid transparent;
  transition:
    transform 220ms var(--ease),
    background 180ms ease,
    border-color 180ms ease;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(4px);
  outline: none;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px max(18px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.64);
  background: #020404;
}

.site-footer span:first-child {
  color: var(--white);
  font-weight: 900;
}

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

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

@media (hover: hover) and (pointer: fine) {
  .tilt-ready {
    transform:
      perspective(900px)
      rotateX(calc(var(--tilt-y, 0) * -1deg))
      rotateY(calc(var(--tilt-x, 0) * 1deg))
      translateY(var(--lift, 0));
  }

  .tilt-ready:hover {
    --lift: -6px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media (max-width: 980px) {
  .ticker {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split-intro,
  .visual-section,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .service-layout,
  .method-grid,
  .metric-grid,
  .offer-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-layout .service-feature {
    grid-row: auto;
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand img {
    width: 150px;
  }

  .nav-toggle {
    display: block;
  }

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

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

  .site-nav a,
  .site-nav .nav-cta {
    margin: 0;
    padding: 14px;
  }

  .hero {
    min-height: 96svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 11, 11, 0.9), rgba(7, 11, 11, 0.62)),
      linear-gradient(0deg, rgba(7, 11, 11, 0.78), rgba(7, 11, 11, 0.08));
  }

  .hero-inner {
    width: min(var(--max), calc(100% - 28px));
    padding: 124px 0 150px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 17vw, 5.8rem);
  }

  .button {
    width: 100%;
  }

  .hero-card {
    right: 14px;
    bottom: 16px;
    width: calc(100% - 28px);
    padding: 14px;
  }

  .ticker,
  .service-layout,
  .method-grid,
  .metric-grid,
  .offer-list {
    grid-template-columns: 1fr;
  }

  .service-layout .service-feature {
    grid-column: auto;
  }

  .visual-frame img {
    min-height: 360px;
  }

  .section,
  .contact-inner {
    width: min(var(--max), calc(100% - 28px));
  }
}
