:root {
  --ink: #f7fff8;
  --muted: #9ca99f;
  --muted-strong: #d6dfd7;
  --night: #020503;
  --night-soft: #061009;
  --panel: #0b1710;
  --line: rgba(255, 255, 255, 0.11);
  --lime: #78ff28;
  --acid: #dfff3f;
  --lime-bright: #9cff3c;
  --green: #76ff2f;
  --shell: min(1180px, calc(100vw - 48px));
  --radius-lg: 32px;
  --radius-md: 22px;
  --font-display: "Manrope", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 12%, rgba(63, 158, 23, 0.11), transparent 26%),
    linear-gradient(135deg, #020503 0%, #061009 48%, #020503 100%);
  background-attachment: fixed;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: #fff;
  background: var(--lime);
}

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

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

.page-noise {
  position: fixed;
  z-index: 20;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 82px;
  padding: 0 max(32px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid transparent;
  transition:
    height 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  height: 70px;
  border-color: var(--line);
  background: rgba(2, 5, 3, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  width: fit-content;
}

.brand-logo {
  display: block;
  width: 41px;
  height: 29px;
  object-fit: contain;
  filter: drop-shadow(0 0 9px rgba(120, 255, 40, 0.22));
}

.brand-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-name > span {
  color: var(--acid);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted-strong);
}

.site-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav a:hover {
  color: #fff;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-nav-actions {
  display: none;
}

.header-actions {
  position: relative;
  z-index: 56;
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.header-login,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.header-login {
  padding: 11px 16px;
  color: var(--acid);
  background: rgba(120, 255, 40, 0.06);
}

.header-cta {
  padding: 11px 18px;
  background: rgba(255, 255, 255, 0.07);
}

.header-login:hover,
.header-cta:hover {
  border-color: rgba(223, 255, 63, 0.8);
  background: rgba(120, 255, 40, 0.22);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  min-height: 780px;
  padding-top: 128px;
  padding-bottom: 92px;
}

.hero::before {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  content: "";
  background:
    radial-gradient(circle at 74% 18%, rgba(96, 255, 37, 0.18), transparent 30%),
    linear-gradient(125deg, #020503 10%, #061109 56%, #0b1a0d 100%);
  transform: translateX(-50%);
}

.hero-grid {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 28%;
  height: 65%;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(142, 255, 57, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 255, 57, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, transparent, black 50%, transparent 98%);
  transform: perspective(430px) rotateX(61deg) translateY(33%) scaleX(0.65);
  transform-origin: bottom;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(100px);
  pointer-events: none;
}

.hero-glow-one {
  top: 24%;
  right: 8%;
  width: 340px;
  height: 340px;
  opacity: 0.2;
  background: var(--lime);
}

.hero-glow-two {
  right: 32%;
  bottom: 6%;
  width: 200px;
  height: 200px;
  opacity: 0.1;
  background: var(--lime-bright);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 690px;
}

.eyebrow,
.section-index {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 30px;
  padding: 9px 13px;
  border: 1px solid rgba(223, 255, 63, 0.25);
  border-radius: 999px;
  color: #efffd9;
  background: rgba(120, 255, 40, 0.08);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: pulse 2.2s ease-in-out infinite;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(58px, 6.2vw, 92px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero h1 span {
  display: block;
  font-weight: 800;
  background: linear-gradient(95deg, #fff 10%, #dfff5a 50%, #78ff28 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-intro {
  max-width: 610px;
  margin: 30px 0 0;
  color: var(--muted-strong);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 58px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: linear-gradient(135deg, #62ed24, #d7ff2f);
  box-shadow: 0 14px 38px rgba(98, 237, 36, 0.25);
}

.button-primary:hover {
  box-shadow: 0 18px 46px rgba(98, 237, 36, 0.38);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.055);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.play-icon {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-size: 7px;
}

.hero-metrics {
  display: flex;
  gap: 0;
  margin-top: 58px;
}

.hero-metrics div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 142px;
  padding-right: 28px;
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.hero-metrics div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-metrics strong {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.04em;
}

.hero-metrics span {
  max-width: 115px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  z-index: 2;
  width: 590px;
  height: 590px;
  margin-left: -40px;
}

.visual-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 255, 40, 0.26), rgba(120, 255, 40, 0.03) 55%, transparent 72%);
  transform: translate(-50%, -50%);
}

.visual-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(190, 255, 55, 0.19);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 480px;
  height: 480px;
  animation: rotate 25s linear infinite;
}

.orbit-one::after {
  position: absolute;
  top: 15%;
  right: 8%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background: var(--lime-bright);
  box-shadow: 0 0 18px var(--lime-bright);
}

.orbit-two {
  width: 580px;
  height: 580px;
  border-style: dashed;
  opacity: 0.55;
  animation: rotateReverse 40s linear infinite;
}

.signal-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(145deg, rgba(13, 32, 17, 0.91), rgba(4, 13, 7, 0.94));
  box-shadow:
    0 30px 80px rgba(0, 4, 1, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.signal-card-main {
  position: absolute;
  z-index: 2;
  top: 154px;
  left: 55px;
  width: 480px;
  height: 310px;
  padding: 26px;
  overflow: hidden;
  border-radius: 27px;
  transform: perspective(900px) rotateY(-8deg) rotateX(3deg);
}

.signal-card-main::after {
  position: absolute;
  top: -120px;
  right: -110px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  content: "";
  background: rgba(120, 255, 40, 0.19);
  filter: blur(35px);
}

.card-topline,
.card-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-topline > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-kicker,
.floating-card small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.card-topline strong {
  font-family: var(--font-display);
  font-size: 37px;
  letter-spacing: -0.05em;
}

.status-pill {
  padding: 7px 10px;
  border: 1px solid rgba(133, 240, 198, 0.2);
  border-radius: 999px;
  color: var(--green);
  background: rgba(133, 240, 198, 0.08);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.chart {
  position: relative;
  height: 145px;
  margin-top: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 100% 36px, 54px 100%;
}

.chart-line {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='428' height='145' viewBox='0 0 428 145' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 115 C38 111 57 82 96 87 S149 112 195 89 S247 82 294 49 S351 53 428 13' fill='none' stroke='%23c9ff31' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E")
    center / 100% 100% no-repeat;
  filter: drop-shadow(0 0 7px rgba(190, 255, 55, 0.85));
}

.chart-fill {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background: linear-gradient(to top, rgba(120, 255, 40, 0.4), transparent 72%);
  clip-path: polygon(0 79%, 8% 76%, 28% 59%, 49% 66%, 70% 37%, 92% 15%, 100% 9%, 100% 100%, 0 100%);
}

.chart i {
  position: absolute;
  z-index: 3;
  left: var(--x);
  bottom: calc(100% - var(--y));
  width: 7px;
  height: 7px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
}

.card-footer {
  padding-top: 14px;
  color: #778379;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  border-radius: 17px;
}

.floating-card-top {
  top: 88px;
  right: -5px;
  gap: 12px;
  width: 208px;
  padding: 15px 17px;
  animation: float 5s ease-in-out infinite;
}

.floating-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  color: var(--lime-bright);
  background: rgba(156, 255, 60, 0.1);
  font-size: 22px;
}

.floating-card > span:not(.floating-icon):not(.avatar-stack) {
  display: flex;
  flex-direction: column;
}

.floating-card strong {
  margin-top: 3px;
  font-size: 14px;
}

.floating-card em {
  margin-left: auto;
  color: var(--green);
  font-size: 11px;
  font-style: normal;
}

.floating-card-bottom {
  bottom: 72px;
  left: 2px;
  gap: 13px;
  width: 225px;
  padding: 15px 17px;
  animation: float 6s 0.8s ease-in-out infinite;
}

.avatar-stack {
  display: flex;
  width: 68px;
}

.avatar-stack i {
  display: grid;
  width: 31px;
  height: 31px;
  margin-right: -8px;
  place-items: center;
  border: 2px solid #0a160c;
  border-radius: 50%;
  color: #fff;
  background: #3f7e2d;
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
}

.avatar-stack i:nth-child(2) {
  background: #68a824;
}

.avatar-stack i:nth-child(3) {
  background: #8aa52b;
}

.visual-badge {
  position: absolute;
  z-index: 3;
  right: 5px;
  bottom: 78px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 8px;
  letter-spacing: 0.12em;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: right bottom;
}

.visual-badge i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--acid);
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #737f75;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.hero-scroll i {
  position: relative;
  display: block;
  width: 43px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.hero-scroll i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--acid);
  animation: scrollLine 2s ease-in-out infinite;
}

.logo-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 55px;
  width: 100%;
  min-height: 118px;
  padding: 28px max(32px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.logo-strip p {
  margin: 0;
  color: #738075;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.logo-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #7d897f;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.logo-serif {
  font-family: Georgia, serif;
  font-size: 23px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.logo-round {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.services,
.process {
  padding-top: 140px;
  padding-bottom: 150px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 64px;
}

.section-index {
  display: block;
  margin-bottom: 22px;
  color: var(--acid);
}

.section-heading h2,
.process h2,
.contact h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 4.3vw, 65px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.section-heading h2 span,
.process h2 span,
.contact h2 span {
  color: #7c897e;
}

.section-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  padding: 31px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
  transition:
    border-color 0.35s ease,
    transform 0.35s ease,
    background 0.35s ease;
}

.service-card::before {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  content: "";
  opacity: 0;
  background: var(--lime);
  filter: blur(90px);
  transition: opacity 0.35s ease;
}

.service-card:hover {
  border-color: rgba(223, 255, 63, 0.35);
  background: rgba(120, 255, 40, 0.055);
  transform: translateY(-6px);
}

.service-card:hover::before {
  opacity: 0.17;
}

.service-card-featured {
  background:
    radial-gradient(circle at 82% 15%, rgba(120, 255, 40, 0.23), transparent 33%),
    linear-gradient(145deg, rgba(13, 35, 16, 0.75), rgba(5, 14, 8, 0.8));
}

.service-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-number {
  color: #738075;
  font-family: var(--font-display);
  font-size: 12px;
}

.service-icon {
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: var(--acid);
  background: rgba(255, 255, 255, 0.04);
  font-size: 19px;
}

.service-card h3 {
  margin: 0 0 13px;
  font-family: var(--font-display);
  font-size: 29px;
  letter-spacing: -0.04em;
}

.service-card p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.service-card a {
  position: relative;
  z-index: 1;
  width: fit-content;
  color: #e6ffc8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.process {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 130px;
}

.process-intro {
  position: sticky;
  top: 125px;
  align-self: start;
}

.process-intro > p {
  max-width: 430px;
  margin: 29px 0 35px;
  color: var(--muted);
  line-height: 1.75;
}

.button-small {
  min-height: 52px;
  padding: 0 20px;
}

.process-steps {
  border-top: 1px solid var(--line);
}

.process-steps article {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 12px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.process-steps article > span {
  padding-top: 4px;
  color: var(--acid);
  font-family: var(--font-display);
  font-size: 12px;
}

.process-steps h3 {
  margin: 0 0 11px;
  font-family: var(--font-display);
  font-size: 25px;
  letter-spacing: -0.035em;
}

.process-steps p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.testimonial {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 140px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.quote-mark {
  height: 55px;
  color: var(--acid);
  font-family: Georgia, serif;
  font-size: 100px;
  line-height: 1;
}

.testimonial blockquote {
  max-width: 920px;
  margin: 34px auto 42px;
  font-family: var(--font-display);
  font-size: clamp(31px, 3.6vw, 52px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.045em;
}

.testimonial blockquote span {
  color: #7e8b80;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.author-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: #efffdf;
  background: linear-gradient(135deg, #18351d, #6ccc30);
  font-size: 11px;
  font-weight: 700;
}

.quote-author > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.quote-author strong {
  font-size: 13px;
}

.quote-author span {
  color: var(--muted);
  font-size: 11px;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 80px;
  min-height: 460px;
  padding: 80px;
  overflow: hidden;
  border: 1px solid rgba(223, 255, 63, 0.2);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(115deg, rgba(7, 18, 9, 0.94), rgba(16, 43, 19, 0.92)),
    #07140a;
}

.contact::after {
  position: absolute;
  right: -90px;
  bottom: -250px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(223, 255, 63, 0.14);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 70px rgba(223, 255, 63, 0.035),
    0 0 0 140px rgba(223, 255, 63, 0.025);
}

.contact-glow {
  position: absolute;
  right: 3%;
  bottom: -40%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(120, 255, 40, 0.26);
  filter: blur(100px);
}

.contact-copy {
  position: relative;
  z-index: 2;
}

.contact h2 {
  max-width: 740px;
}

.contact p {
  max-width: 630px;
  margin: 25px 0 0;
  color: var(--muted-strong);
  line-height: 1.7;
}

.contact-actions {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  min-width: 310px;
}

.contact-booking,
.contact-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 27px;
  padding: 19px 21px 19px 24px;
  border-radius: 15px;
  backdrop-filter: blur(15px);
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.contact-booking {
  border: 1px solid rgba(223, 255, 63, 0.58);
  color: #071008;
  background: linear-gradient(135deg, var(--lime), var(--acid));
  box-shadow: 0 16px 38px rgba(120, 255, 40, 0.2);
  font-size: 14px;
  font-weight: 800;
}

.contact-button {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.contact-booking:hover {
  box-shadow: 0 20px 46px rgba(120, 255, 40, 0.3);
  transform: translateY(-3px);
}

.contact-button:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-3px);
}

.contact-button > span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.contact-button small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
}

.contact-booking i,
.contact-button i {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  font-style: normal;
}

.contact-booking i {
  color: #fff;
  background: #071008;
}

.contact-button i {
  background: var(--lime);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 45px;
  width: var(--shell);
  margin-inline: auto;
  padding: 90px 0 35px;
}

.footer-brand {
  align-self: start;
}

.site-footer > p {
  grid-column: 1;
  max-width: 320px;
  margin: -28px 0 0 38px;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  grid-column: 2;
  grid-row: 1 / span 2;
  gap: 29px;
  align-self: center;
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 600;
}

.footer-links a:hover {
  color: #fff;
}

.footer-meta {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #6f7b72;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(0.75);
  }
}

@keyframes rotate {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotateReverse {
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes scrollLine {
  0% {
    transform: translateX(-100%);
  }
  50%,
  100% {
    transform: translateX(100%);
  }
}

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

  .hero-visual {
    width: 500px;
    height: 540px;
    margin-left: -90px;
    transform: scale(0.9);
  }

  .hero-visual.is-visible {
    transform: scale(0.9);
  }

  .process {
    gap: 80px;
  }

  .contact {
    padding: 65px;
  }
}

@media (max-width: 1050px) {
  :root {
    --shell: min(100% - 40px, 760px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding-inline: 20px;
  }

  body.menu-open .site-header {
    height: 78px;
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(2, 8, 4, 0.92);
    backdrop-filter: blur(20px);
  }

  .brand {
    position: relative;
    z-index: 55;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 56;
    grid-row: 1;
    grid-column: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition:
      transform 0.25s ease,
      width 0.25s ease;
  }

  .menu-toggle span:first-child {
    transform: translateY(-4px);
  }

  .menu-toggle span:last-child {
    width: 14px;
    transform: translate(3px, 4px);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    width: 20px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    width: 20px;
    transform: rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 53;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    min-height: 100dvh;
    padding:
      max(116px, calc(92px + env(safe-area-inset-top)))
      24px
      max(28px, env(safe-area-inset-bottom));
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background:
      radial-gradient(circle at 88% 18%, rgba(120, 255, 40, 0.16), transparent 30%),
      linear-gradient(145deg, #020503 0%, #07130a 58%, #020503 100%);
    backdrop-filter: blur(20px);
    transform: translateY(-12px);
    overscroll-behavior: contain;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
  }

  .site-nav::before {
    margin-bottom: 12px;
    color: var(--acid);
    content: "NAVIGATION";
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
  }

  .site-nav.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    padding: 8px 4px;
    opacity: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    font-family: var(--font-display);
    font-size: clamp(34px, 10vw, 46px);
    font-weight: 600;
    letter-spacing: -0.05em;
    transform: translateX(-14px);
    transition:
      color 0.2s ease,
      opacity 0.3s ease,
      transform 0.3s ease;
  }

  .site-nav > a::after {
    position: static;
    width: auto;
    height: auto;
    color: var(--acid);
    content: "↘";
    background: none;
    font-size: 18px;
    transform: none;
  }

  .site-nav.open > a {
    opacity: 1;
    transform: translateX(0);
  }

  .site-nav.open > a:nth-child(1) {
    transition-delay: 0.05s;
  }

  .site-nav.open > a:nth-child(2) {
    transition-delay: 0.1s;
  }

  .site-nav.open > a:nth-child(3) {
    transition-delay: 0.15s;
  }

  .mobile-nav-actions {
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding-top: 32px;
  }

  .mobile-nav-login,
  .mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
  }

  .mobile-nav-actions a::after {
    display: none;
  }

  .mobile-nav-login {
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--acid);
    background: rgba(255, 255, 255, 0.055);
  }

  .mobile-nav-cta {
    gap: 12px;
    color: #071008;
    background: linear-gradient(135deg, var(--lime), var(--acid));
    box-shadow: 0 16px 38px rgba(120, 255, 40, 0.2);
  }

  .hero {
    display: block;
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 50px;
  }

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

  .hero-visual {
    width: 590px;
    height: 570px;
    margin: 5px auto -60px;
    transform: none;
  }

  .hero-scroll {
    display: none;
  }

  .logo-strip {
    display: block;
    padding-inline: 20px;
    text-align: center;
  }

  .logo-strip p {
    margin-bottom: 25px;
  }

  .logo-track {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 38px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-heading > p {
    max-width: 550px;
  }

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

  .process-intro {
    position: static;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 55px;
  }

  .contact-button {
    width: fit-content;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .site-header {
    height: 70px;
  }

  .brand-name {
    font-size: 15px;
  }

  .hero {
    padding-top: 120px;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 72px);
    line-height: 1;
  }

  .hero-intro {
    margin-top: 23px;
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 42px;
  }

  .hero-metrics div {
    min-width: 0;
    padding: 0 12px;
  }

  .hero-metrics strong {
    font-size: 20px;
  }

  .hero-metrics span {
    font-size: 10px;
  }

  .hero-visual {
    left: 50%;
    width: 590px;
    margin-top: -10px;
    margin-left: -295px;
    transform: scale(0.64);
  }

  .hero-visual.is-visible {
    transform: scale(0.64);
  }

  .services,
  .process {
    padding-top: 95px;
    padding-bottom: 100px;
  }

  .section-heading {
    margin-bottom: 43px;
  }

  .section-heading h2,
  .process h2,
  .contact h2 {
    font-size: 41px;
  }

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

  .service-card {
    min-height: 330px;
    padding: 25px;
  }

  .process {
    gap: 55px;
  }

  .process-steps article {
    grid-template-columns: 40px 1fr;
  }

  .testimonial {
    padding-top: 90px;
    padding-bottom: 100px;
  }

  .testimonial blockquote {
    font-size: 30px;
  }

  .contact {
    min-height: 560px;
    padding: 38px 28px;
    border-radius: 22px;
  }

  .contact-button {
    width: 100%;
    justify-content: space-between;
  }

  .contact-actions {
    width: 100%;
    min-width: 0;
  }

  .contact-booking {
    width: 100%;
  }

  .contact-button > span {
    white-space: normal;
  }

  .site-footer {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-top: 70px;
  }

  .site-footer > p {
    margin: -12px 0 15px 38px;
  }

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

  .footer-meta {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .brand-name {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 47px;
  }

  .hero-metrics strong {
    font-size: 18px;
  }

  .hero-metrics div {
    padding-inline: 8px;
  }

  .section-heading h2,
  .process h2,
  .contact h2 {
    font-size: 36px;
  }
}

@media (max-width: 340px) {
  .brand-name {
    display: none;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
