:root {
  --ink:#f1eee7;
  --muted:#9caaa9;
  --night:#071116;
  --panel:rgba(15,32,38,.72);
  --line:rgba(214,224,218,.16);
  --amber:#e3aa61;
  --green:#77bc9a;
}

* { box-sizing:border-box; }

html { scroll-behavior:smooth; }

body {
  margin:0;
  background:
    radial-gradient(circle at 12% 4%,rgba(27,74,81,.38),transparent 34rem),
    linear-gradient(150deg,#09171c 0%,var(--night) 55%,#050b0f 100%);
  color:var(--ink);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  min-height:100vh;
}

body::before {
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.18;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
  background-size:72px 72px;
  mask-image:linear-gradient(to bottom,black,transparent 75%);
}

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

main {
  position:relative;
  overflow:hidden;
  min-height:100vh;
}

.siteHeader,.hero,.services,footer {
  width:min(1120px,calc(100% - 48px));
  margin-inline:auto;
}

.siteHeader {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:28px 0;
  border-bottom:1px solid var(--line);
}

.wordmark {
  display:flex;
  gap:12px;
  align-items:center;
  font-weight:650;
  letter-spacing:-.02em;
}

.mark {
  display:grid;
  place-items:center;
  width:31px;
  height:31px;
  border:1px solid var(--amber);
  border-radius:50%;
  color:var(--amber);
  font-family:Georgia,serif;
  font-size:14px;
}

.privateLabel {
  color:var(--muted);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.16em;
}

.hero { padding:112px 0 96px; }

.eyebrow {
  color:var(--amber);
  margin:0 0 22px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
}

h1 {
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(48px,7.2vw,96px);
  font-weight:400;
  line-height:.96;
  letter-spacing:-.055em;
}

.intro {
  width:min(650px,100%);
  margin:42px 0 0 auto;
  color:var(--muted);
  font-size:18px;
  line-height:1.65;
}

.intro p { margin:0; }

.intro p + p {
  margin-top:14px;
  color:#c5ccc8;
}

.services { padding:12px 0 104px; }

.sectionHeading {
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  padding-bottom:18px;
  border-bottom:1px solid var(--line);
}

.sectionHeading h2 {
  margin:0;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.18em;
}

.sectionHeading span {
  color:var(--muted);
  font-size:12px;
}

.serviceGrid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  padding-top:18px;
}

.serviceCard {
  min-height:330px;
  padding:26px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:4px;
  backdrop-filter:blur(16px);
  transition:transform .25s ease,border-color .25s ease,background .25s ease;
}

.activeCard:hover {
  transform:translateY(-4px);
  border-color:rgba(227,170,97,.65);
  background:rgba(20,42,48,.86);
}

.activeCard:focus-visible {
  outline:2px solid var(--amber);
  outline-offset:4px;
}

.cardTopline,.cardAction {
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.number {
  color:#768585;
  font-family:ui-monospace,monospace;
  font-size:12px;
}

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

.status::before {
  content:"";
  display:inline-block;
  width:6px;
  height:6px;
  margin-right:8px;
  border-radius:50%;
  background:#64706f;
  vertical-align:1px;
}

.status.isActive { color:var(--green); }

.status.isActive::before {
  background:var(--green);
  box-shadow:0 0 12px rgba(119,188,154,.7);
}

.serviceCard h3 {
  margin:0;
  font-family:Georgia,serif;
  font-size:48px;
  font-weight:400;
  letter-spacing:-.04em;
}

.serviceCard p {
  width:min(350px,100%);
  margin:14px 0 0;
  color:var(--muted);
  line-height:1.65;
}

.cardAction {
  padding-top:22px;
  border-top:1px solid var(--line);
  color:#cbd1cc;
  font-size:13px;
}

.cardAction svg {
  width:21px;
  height:21px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.5;
}

footer {
  display:flex;
  justify-content:space-between;
  padding:28px 0 38px;
  border-top:1px solid var(--line);
  color:#6f7d7d;
  font-size:12px;
}

footer p { margin:0; }

.glow {
  position:absolute;
  border-radius:50%;
  filter:blur(80px);
  pointer-events:none;
  opacity:.22;
}

.glowOne {
  width:380px;
  height:380px;
  right:-180px;
  top:180px;
  background:#1b6670;
}

.glowTwo {
  width:240px;
  height:240px;
  left:-140px;
  top:620px;
  background:#b77438;
  opacity:.1;
}

@media (max-width:720px) {
  .siteHeader,.hero,.services,footer {
    width:min(100% - 32px,1120px);
  }

  .privateLabel { display:none; }
  .hero { padding:80px 0 70px; }
  h1 { font-size:clamp(42px,12vw,68px); }
  .intro { margin-top:34px; font-size:16px; }
  .serviceGrid { grid-template-columns:1fr; }
  .serviceCard { min-height:280px; }
  .sectionHeading span { display:none; }
  footer { gap:20px; flex-direction:column; }
}

@media (prefers-reduced-motion:reduce) {
  * {
    scroll-behavior:auto!important;
    transition:none!important;
  }
}
