
:root {
  --bg: #0a111d;
  --bg-2: #0f1b2d;
  --panel: rgba(18, 29, 47, 0.72);
  --panel-solid: #111d2f;
  --panel-strong: #0f1728;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(208, 165, 111, 0.32);
  --text: #edf3f8;
  --muted: #96a3b4;
  --gold: #d0a56f;
  --gold-strong: #e1b77d;
  --teal: #77b5b9;
  --teal-soft: rgba(119, 181, 185, 0.15);
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(119, 181, 185, 0.16), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(208, 165, 111, 0.22), transparent 26%),
    radial-gradient(circle at 82% 82%, rgba(119, 181, 185, 0.14), transparent 24%),
    linear-gradient(180deg, #08111c 0%, #0b1320 45%, #09111c 100%);
  overflow-x: hidden;
}

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

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

.page-noise,
.spotlight,
.blueprint-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.page-noise {
  opacity: 0.08;
  mix-blend-mode: soft-light;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.5) 0 0.7px, transparent 0.8px),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.4) 0 0.8px, transparent 0.9px),
    radial-gradient(circle at 50% 80%, rgba(255,255,255,0.35) 0 0.9px, transparent 1px);
  background-size: 200px 200px, 260px 260px, 340px 340px;
}

.spotlight {
  background:
    radial-gradient(600px 420px at var(--mouse-x, 82%) var(--mouse-y, 14%), rgba(208, 165, 111, 0.12), transparent 60%);
  transition: background-position 120ms linear;
}

.blueprint-bg {
  opacity: 0.45;
}

.blueprint-bg .grid-lines path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.045);
  stroke-width: 1.2;
}

.blueprint-bg .architect-lines path,
.blueprint-bg .architect-lines circle {
  fill: none;
  stroke: rgba(119, 181, 185, 0.18);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 12 14;
  animation: blueprintMove 22s linear infinite;
}

@keyframes blueprintMove {
  to {
    stroke-dashoffset: -260;
  }
}

.shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 34px 0 72px;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - 106px);
}

.hero__copy,
.portrait-card,
.service-card,
.contact-card {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero__copy {
  padding: 34px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero__copy::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(208, 165, 111, 0.18), transparent 68%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
}

.eyebrow__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  box-shadow: 0 0 0 6px rgba(208, 165, 111, 0.08);
}

.hero__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 22px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(208, 165, 111, 0.24);
  background: rgba(208, 165, 111, 0.08);
  color: #f5ddbe;
  font-size: 14px;
  font-weight: 600;
}

.hero-tag--ghost {
  color: #cdd7e2;
  border-color: rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.04);
}

h1 {
margin: 0;
  font-size: clamp(32px, 8vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 400;
}

.hero__lead {
  max-width: 62ch;
  margin: 22px 0 0;
  color: #dce6ee;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  color: #0d1320;
  background: linear-gradient(135deg, #f0d1a5, var(--gold));
  box-shadow: 0 12px 24px rgba(208, 165, 111, 0.26);
}

.btn--secondary {
  color: var(--text);
  border-color: rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
}

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

.metric {
  display: flex;
  gap: 14px;
  padding: 8px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
}

.metric strong {
  display: block;
  font-size: 15px;
}

.metric span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.metric__icon {
  flex: 0 0 5px;
}

.metric__icon svg,
.service-card__icon svg,
.contact-action__icon svg {
  width: 26px;
  height: 26px;
}

.metric__icon svg *,
.service-card__icon svg *,
.contact-action__icon svg *,
.contact-card svg * {
  fill: rgba(119, 181, 185, 0.18);
  stroke: var(--gold);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metric__icon svg .stroke,
.service-card__icon svg .stroke,
.contact-action__icon svg .stroke {
  fill: none;
  stroke: var(--gold-strong);
}

.hero__visual {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
}

.portrait-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px;
  border-radius: 36px;
  overflow: hidden;
  min-height: 690px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
    radial-gradient(circle at 50% 16%, rgba(119,181,185,0.18), transparent 30%),
    linear-gradient(180deg, #101a2c 0%, #0b1423 100%);
}

.portrait-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.05);
  pointer-events: none;
}

.portrait-card__frame {
  position: relative;
  flex: 0 0 auto;
  border-radius: 28px;
  overflow: hidden;
  height: 650px;
  min-height: 650px;
  background:
    linear-gradient(180deg, rgba(13, 22, 37, 0.12), rgba(13, 22, 37, 0.85)),
    linear-gradient(135deg, rgba(208, 165, 111, 0.18), rgba(119, 181, 185, 0.18));
}

.portrait-card__frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(5, 8, 12, 0), rgba(5, 8, 12, 0.74));
}

.portrait-card__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(0.94) contrast(1.03);
}

.portrait-callout {
  position: absolute;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  backdrop-filter: blur(16px);
}

.callout--main {
  position: relative;
  right: auto;
  top: auto;
  left: auto;
  bottom: auto;
  width: 100%;
  padding: 20px 20px 18px;
  background: rgba(10, 17, 29, 0.66);
}

.callout--main::before {
  display: none;
}

.callout--main strong {
  display: block;
  font-size: 24px;
  line-height: 1.14;
}

.callout--main p {
  margin: 10px 0 0;
  color: #c7d2dd;
  font-size: 15px;
  line-height: 1.6;
}

.callout__label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.callout--mini {
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 0 18px;
  background: rgba(9, 15, 25, 0.68);
  color: #dbe5ec;
  font-weight: 600;
  margin: 0;
  z-index: 2;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(119, 181, 185, 0.4);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(119, 181, 185, 0.55);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(119, 181, 185, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(119, 181, 185, 0);
  }
}

.photo-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(208, 165, 111, 0.15);
  pointer-events: none;
}

.orbit--one {
  inset: 42px 40px 46px 38px;
  animation: slowSpin 18s linear infinite;
}

.orbit--two {
  inset: 92px 88px 96px 86px;
  border-color: rgba(119, 181, 185, 0.14);
  animation: slowSpinReverse 26s linear infinite;
}

.orbit--one::before,
.orbit--two::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  top: 8%;
  left: 74%;
  box-shadow: 0 0 0 10px rgba(208, 165, 111, 0.08);
}

.orbit--two::before {
  width: 12px;
  height: 12px;
  top: 72%;
  left: 18%;
}

@keyframes slowSpin {
  to { transform: rotate(360deg); }
}

@keyframes slowSpinReverse {
  to { transform: rotate(-360deg); }
}

.services,
.contact-panel,
.status-strip {
  margin-top: 34px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 18px;
}

.section-heading__line {
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, rgba(208,165,111,0), var(--gold), rgba(119,181,185,0));
}

.section-heading p {
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

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

.service-card {
  padding: 24px;
  border-radius: 28px;
}

.service-card__icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  background: linear-gradient(180deg, rgba(208,165,111,0.10), rgba(119,181,185,0.10));
}

.service-card h2 {
  margin: 18px 0 10px;
  font-size: 22px;
  line-height: 1.15;
}

.service-card p {
  margin: 0;
  color: #c5d0dc;
  line-height: 1.66;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
}

.contact-card {
  padding: 28px;
  border-radius: 28px;
}

.contact-card--company {
  overflow: hidden;
}

.contact-card__glow {
  position: absolute;
  inset: -20% auto auto -12%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(119, 181, 185, 0.16), transparent 66%);
  pointer-events: none;
}

.contact-card h2 {
  margin: 0 0 22px;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.05;
}

.details-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.details-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.details-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.details-list__label {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.details-list strong {
  font-size: 17px;
  line-height: 1.5;
}

.details-list a {
  color: #f2e4ce;
}

.contact-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.micro-label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.time-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: #dbe4ee;
  font-size: 14px;
  white-space: nowrap;
}

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

.contact-action {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 112px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.contact-action:hover {
  transform: translateY(-2px);
  border-color: rgba(208,165,111,0.24);
  background: rgba(208,165,111,0.08);
}

.contact-action__icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(119,181,185,0.12), rgba(208,165,111,0.08));
}

.contact-action strong {
  display: block;
  font-size: 18px;
}

.contact-action em {
  display: block;
  margin-top: 8px;
  font-style: normal;
  color: var(--muted);
  line-height: 1.45;
}

.status-strip {
  padding: 22px 24px 12px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.status-strip__line {
  height: 1px;
  background: linear-gradient(90deg, rgba(208,165,111,0), rgba(208,165,111,0.65), rgba(119,181,185,0));
}

.status-strip__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
}

.status-strip__content p {
  margin: 0;
  color: #cfdae5;
  line-height: 1.7;
}

.status-strip__content a {
  flex: 0 0 auto;
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #0d1320;
  font-weight: 700;
  background: linear-gradient(135deg, #f0d1a5, var(--gold));
}

[data-tilt] {
  transform-style: preserve-3d;
  transition: transform 0.16s ease;
}

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

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

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

  .hero__visual {
    min-height: 580px;
  }

  .portrait-card {
    min-height: 560px;
  }

  .portrait-card__frame {
    height: 520px;
    min-height: 520px;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .shell {
    width: min(calc(100% - 28px), var(--max));
    padding-top: 18px;
    padding-bottom: 40px;
  }

  .hero__copy {
    padding: 24px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .metric-strip,
  .service-grid,
  .action-grid {
    grid-template-columns: 1fr;
  }

  .portrait-card {
    min-height: 520px;
    gap: 14px;
    padding: 14px;
    border-radius: 26px;
  }

  .portrait-card__frame {
    height: 480px;
    min-height: 480px;
    border-radius: 22px;
  }

  .callout--main {
    width: 100%;
    padding: 16px;
  }

  .callout--main::before {
    display: none;
  }

  .callout--mini {
    right: 14px;
    left: 14px;
    bottom: 14px;
    min-height: 54px;
    font-size: 14px;
  }

  .orbit--one,
  .orbit--two {
    display: none;
  }

  .details-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-topline,
  .status-strip__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .time-chip,
  .status-strip__content a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .hero__lead {
    font-size: 17px;
  }

  .hero-tag {
    width: 100%;
    justify-content: center;
  }

  .metric,
  .service-card,
  .contact-card,
  .contact-action {
    padding: 16px;
  }

  .portrait-card {
    min-height: 480px;
  }

  .portrait-card__frame {
    height: 448px;
    min-height: 448px;
  }

  .callout--main strong {
    font-size: 20px;
  }

  .callout--main p {
    font-size: 14px;
  }
}
