:root {
  color-scheme: dark;
  --ink: #f8f3e8;
  --muted: #b9b1a3;
  --black: #060606;
  --panel: rgba(17, 17, 17, 0.78);
  --panel-strong: rgba(236, 226, 207, 0.08);
  --line: rgba(248, 243, 232, 0.16);
  --gold: #d8b46a;
  --copper: #b76e4a;
  --cyan: #67d7d1;
  --rose: #df6f79;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 12%, rgba(103, 215, 209, 0.16), transparent 28rem),
    linear-gradient(135deg, #060606 0%, #16120e 38%, #080808 100%);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  z-index: -2;
}

#signal-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  opacity: 0.62;
}

a {
  color: inherit;
}

/* FORCE JARAF HEADER CENTERING */
header.site-header {
  box-sizing: border-box !important;
  width: calc(100% - 32px) !important;
  max-width: 1180px !important;
  margin: 20px auto 0 auto !important;

  display: grid !important;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr) !important;
  align-items: center !important;
  gap: 24px !important;

  left: auto !important;
  right: auto !important;
  transform: none !important;
}

header.site-header .brand {
  justify-self: start !important;
}

header.site-header .desktop-nav {
  justify-self: center !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 28px !important;
}

header.site-header .header-cta {
  justify-self: end !important;
}

@media (max-width: 760px) {
  header.site-header {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
  }

  header.site-header .brand,
  header.site-header .desktop-nav,
  header.site-header .header-cta {
    justify-self: center !important;
  }

  header.site-header .desktop-nav {
    flex-wrap: wrap !important;
    gap: 16px !important;
  }
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-logo {
  width: 38px;
  height: 42px;
  object-fit: contain;
  filter: invert(1) brightness(1.15) drop-shadow(0 0 18px rgba(216, 180, 106, 0.28));
}

.desktop-nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

.desktop-nav a,
.header-cta,
.contact-strip a,
.site-footer a,
.proof-copy a {
  text-decoration: none;
}

.desktop-nav a:hover,
.contact-strip a:hover,
.site-footer a:hover {
  color: var(--gold);
}

.header-cta {
  padding: 12px 18px;
  background: var(--ink);
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
}

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

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 64px;
  padding: 130px 0 70px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.96;
}

h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(3.7rem, 7vw, 6.8rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5.5vw, 5.4rem);
}

h3 {
  font-size: 1.15rem;
}

.hero-lede,
.booking-copy > p,
.system-list p,
.service-grid p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-lede {
  max-width: 720px;
  font-size: 1.17rem;
}

.hero-actions,
.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  border: 0;
  background: linear-gradient(90deg, var(--gold), var(--copper), var(--rose));
  color: #090806;
}

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

.hero-stage {
  min-height: 620px;
  display: grid;
  place-items: center;
}

.glass-console {
  width: min(100%, 520px);
  padding: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03)),
    rgba(10, 10, 10, 0.62);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(22px);
  transform: perspective(900px) rotateY(-8deg) rotateX(5deg);
}

.console-top {
  display: flex;
  gap: 8px;
  margin-bottom: 60px;
}

.console-top span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--line);
}

.console-top span:nth-child(1) {
  background: var(--rose);
}

.console-top span:nth-child(2) {
  background: var(--gold);
}

.console-top span:nth-child(3) {
  background: var(--cyan);
}

.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.metric-row strong {
  font-size: 1.35rem;
}

.metric-row em {
  color: var(--cyan);
  font-style: normal;
}

.impact-meter {
  height: 11px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.09);
}

.impact-meter span {
  display: block;
  width: var(--w);
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

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

.console-grid p,
.service-grid article,
.system-list article {
  border: 1px solid var(--line);
  background: var(--panel-strong);
}

.console-grid p {
  min-height: 132px;
  padding: 18px;
}

.console-grid b,
.console-grid span {
  display: block;
}

.console-grid span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.marquee-band {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 44px;
  padding: 22px 0;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4.2rem);
  white-space: nowrap;
}

.split-section,
.proof-section,
.booking-section {
  padding: 120px 0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}

.system-list,
.service-grid {
  display: grid;
  gap: 18px;
}

.system-list article,
.service-grid article {
  padding: 28px;
}

.system-list span {
  color: var(--cyan);
  font-weight: 800;
}

.proof-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 64px;
  align-items: center;
}

.proof-art {
  min-height: 460px;
  display: grid;
  place-items: center;
}

.proof-frame {
  position: relative;
  width: min(100%, 560px);
  padding: 14px;
  border: 1px solid rgba(216, 180, 106, 0.45);
  background: linear-gradient(160deg, rgba(216, 180, 106, 0.17), rgba(103, 215, 209, 0.08));
  box-shadow: 0 30px 120px rgba(183, 110, 74, 0.18);
  transform: perspective(900px) rotateY(7deg) rotateX(2deg);
}

.proof-frame img {
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-badge {
  position: absolute;
  right: -18px;
  bottom: -22px;
  display: grid;
  gap: 2px;
  min-width: 128px;
  padding: 16px;
  border: 1px solid rgba(216, 180, 106, 0.5);
  background: rgba(6, 6, 6, 0.88);
  backdrop-filter: blur(18px);
}

.proof-badge strong {
  color: var(--gold);
  font-size: 2rem;
}

.proof-badge span,
.star-line {
  color: var(--muted);
}

.star-line {
  margin-bottom: 16px;
  color: var(--gold);
}

blockquote {
  margin: 0 0 22px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4.8rem);
  line-height: 1.05;
}

.proof-copy a {
  color: var(--gold);
  font-weight: 800;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-bottom: 120px;
}

.booking-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.contact-strip a {
  padding: 10px 12px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(22px);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font: inherit;
  padding: 14px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
}

select option {
  color: #080808;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 46px 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

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

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

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

  .hero,
  .split-section,
  .proof-section,
  .booking-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 120px;
    gap: 20px;
  }

  .hero-stage {
    min-height: 430px;
  }

  .glass-console {
    transform: none;
  }

  .proof-frame {
    transform: none;
  }

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

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

  .header-cta {
    padding-inline: 12px;
  }

  h1 {
    font-size: 3.35rem;
  }

  .console-grid,
  .form-row,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .split-section,
  .proof-section,
  .booking-section {
    padding: 76px 0;
  }
}

