/* ---------- Tokens ---------- */
:root {
  --bg: oklch(0.16 0.008 240);
  --bg-2: oklch(0.2 0.01 240);
  --bg-3: oklch(0.24 0.012 240);
  --line: oklch(0.32 0.01 240);
  --line-soft: oklch(0.28 0.008 240 / 0.6);
  --fg: oklch(0.96 0.005 240);
  --fg-2: oklch(0.78 0.008 240);
  --fg-3: oklch(0.58 0.01 240);
  --accent: oklch(0.78 0.12 175);
  --accent-dim: oklch(0.78 0.12 175 / 0.18);
  --accent-line: oklch(0.78 0.12 175 / 0.45);

  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  --pad: 1;
  --max: 1280px;
  --r: 4px;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  text-align: left;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mono {
  font-family: var(--mono);
  font-feature-settings: 'ss01';
  letter-spacing: -0.01em;
}
.dim {
  color: var(--fg-3);
}
.small {
  font-size: 11px;
}
.hide-sm {
}
@media (max-width: 720px) {
  .hide-sm {
    display: none !important;
  }
}

/* ---------- Status bar ---------- */
.statusbar {
  background: var(--bg);
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--fg-2);
  position: sticky;
  top: 0;
  z-index: 50;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.statusbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
  overflow: hidden;
}
.sb-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.sb-sep {
  color: var(--fg-3);
  opacity: 0.5;
}
.sb-spacer {
  flex: 1;
}
.sb-item.link {
  color: var(--accent);
}
.sb-item.link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}
.dot-live {
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}
.dot-off {
  background: var(--fg-3);
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

/* ---------- Nav ---------- */
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
}
.brand-mark {
  height: 36px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: 18px;
  font-size: 14px;
  color: var(--fg-2);
}
.nav-links a:hover {
  color: var(--fg);
}
.nav-cta {
  margin-left: auto;
  display: flex;
  gap: 10px;
  align-items: center;
}
@media (max-width: 820px) {
  .nav-links {
    display: none;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  transition:
    background 0.15s,
    border-color 0.15s,
    transform 0.15s;
  white-space: nowrap;
}
.btn-lg {
  padding: 14px 22px;
  font-size: 15px;
}
.btn-primary {
  background: var(--accent);
  color: oklch(0.18 0.01 240);
  font-weight: 600;
}
.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--fg-2);
}
.btn-ghost:hover {
  border-color: var(--fg-2);
  color: var(--fg);
}
.btn-arrow {
  transition: transform 0.2s;
}
.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: calc(48px * var(--pad)) 28px calc(96px * var(--pad));
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: 28px 0;
  mask-image: radial-gradient(ellipse 80% 60% at 30% 20%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 30% 20%, black 30%, transparent 75%);
  pointer-events: none;
  opacity: 0.7;
}
.hero-inner {
  position: relative;
  max-width: 980px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11.5px;
  color: var(--fg-2);
  margin-bottom: 32px;
}
.eyebrow-tag {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid var(--accent-line);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.eyebrow-meta {
  color: var(--fg-3);
  letter-spacing: 0.04em;
}

.h-display {
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 0 0 28px;
  text-wrap: balance;
}
.hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--fg-2);
  max-width: 640px;
  margin: 0 0 36px;
  text-wrap: pretty;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 16px 0 48px;
}
.hero-pillar {
  display: flex;
  gap: 14px;
  padding: 20px 22px;
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
}
.hero-pillar-tag {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--accent);
  padding-top: 2px;
  flex-shrink: 0;
}
.hero-pillar-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-pillar-title {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.hero-pillar-text {
  font-size: 13.5px;
  color: var(--fg-2);
  margin: 0;
  line-height: 1.5;
  text-wrap: pretty;
}
@media (max-width: 880px) {
  .hero-pillars {
    grid-template-columns: 1fr;
  }
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  font-size: 12px;
}
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px 18px 0;
  border-right: 1px solid var(--line-soft);
}
.meta-item:last-child {
  border-right: 0;
}
.meta-item:not(:first-child) {
  padding-left: 20px;
}
.meta-k {
  color: var(--fg-3);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.meta-v {
  color: var(--fg);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
@media (max-width: 720px) {
  .hero-meta {
    grid-template-columns: repeat(2, 1fr);
  }
  .meta-item:nth-child(2) {
    border-right: 0;
  }
  .meta-item:nth-child(3),
  .meta-item:nth-child(4) {
    border-top: 1px solid var(--line-soft);
  }
}

/* ---------- Section ---------- */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: calc(96px * var(--pad)) 28px;
}
.section-tight {
  padding-top: 0;
  padding-bottom: calc(48px * var(--pad));
}
.section-header {
  margin-bottom: 56px;
  max-width: 720px;
}
.kicker {
  font-size: 11.5px;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.h-lg {
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0 0 16px;
  text-wrap: balance;
}
.h-md {
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 0 0 12px;
}
.section-sub {
  font-size: 17px;
  color: var(--fg-2);
  margin: 0;
  max-width: 580px;
}

/* ---------- Services ---------- */
.svc-wrap {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 0;
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  background: var(--bg-2);
  overflow: hidden;
}
.svc-list {
  border-right: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
}
.svc-row {
  display: grid;
  grid-template-columns: 48px 1fr 24px;
  align-items: center;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--fg-2);
  transition:
    background 0.15s,
    color 0.15s;
}
.svc-row:first-child{
  color: var(--accent);
}
.svc-row:last-child {
  border-bottom: 0;
}
.svc-row:hover {
  background: var(--bg-3);
  color: var(--fg);
}
.svc-row.is-active {
  background: var(--bg);
  color: var(--fg);
  border-left: 2px solid var(--accent);
  padding-left: 20px;
}
.svc-row.is-active .svc-code {
  color: var(--accent);
}
.svc-code {
  color: var(--fg-3);
  font-size: 12px;
  font-family: var(--mono);
}
.svc-title {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.svc-arrow {
  color: var(--fg-3);
  font-size: 12px;
}
.svc-row.is-active .svc-arrow {
  color: var(--accent);
}

.svc-detail {
  padding: 44px 44px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.svc-detail-head {
  max-width: 540px;
}
.svc-detail .mono.dim {
  font-size: 11.5px;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  display: block;
}
.svc-blurb {
  color: var(--fg-2);
  font-size: 17px;
  margin: 0;
  text-wrap: pretty;
}
.svc-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.svc-sub {
  margin-top: 8px;
  padding: 24px 24px 28px;
  border: 1px solid var(--accent-line);
  border-radius: var(--r);
  background: radial-gradient(ellipse 70% 100% at 0% 0%, var(--accent-dim), transparent 60%), var(--bg);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.svc-sub-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.svc-sub-tag {
  font-size: 11px;
  letter-spacing: 0.08em;
  background: var(--accent);
  color: oklch(0.18 0.01 240);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.svc-sub-title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0;
}
.svc-sub-blurb {
  color: var(--fg-2);
  font-size: 14.5px;
  margin: 0;
  text-wrap: pretty;
}
.svc-bullets-sub li {
  font-size: 14px;
  padding-bottom: 10px;
}
.svc-bullets li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  color: var(--fg-2);
  font-size: 15px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line-soft);
}
.bullet-tick {
  color: var(--accent);
  font-size: 13px;
}
.link-arrow {
  color: var(--accent);
  font-size: 13px;
  align-self: flex-start;
  border-bottom: 1px solid var(--accent-line);
  padding-bottom: 4px;
  transition: padding-right 0.15s;
}
.link-arrow:hover {
  padding-right: 6px;
}

@media (max-width: 880px) {
  .svc-wrap {
    grid-template-columns: 1fr;
  }
  .svc-list {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .svc-detail {
    padding: 32px 24px;
  }
  .svc-bullets {
    grid-template-columns: 1fr;
  }
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.stat {
  padding: 32px 24px;
  border-right: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat:last-child {
  border-right: 0;
}
.stat-v {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-k {
  color: var(--fg-3);
  font-size: 11px;
  letter-spacing: 0.04em;
}
@media (max-width: 880px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat {
    border-bottom: 1px solid var(--line-soft);
  }
  .stat:nth-child(2n) {
    border-right: 0;
  }
  .stat:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  overflow: hidden;
}
.step {
  background: var(--bg);
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 220px;
}
.step:first-child  {
  border: solid 1px var(--accent);
}
.step-n {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.step-t {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
}
.step-d {
  color: var(--fg-2);
  font-size: 14.5px;
  margin: 0;
  text-wrap: pretty;
}
@media (max-width: 880px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* ---------- Stack ---------- */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
}
.stack-cat {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.stack-k {
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.04em;
}
.stack-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  font-size: 12px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--fg-2);
  background: var(--bg-2);
}
@media (max-width: 880px) {
  .stack-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .stack-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Quotes ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.quote {
  margin: 0;
  padding: 32px 28px;
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.quote-mark {
  font-size: 40px;
  line-height: 1;
  color: var(--accent);
}
.quote blockquote {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  color: var(--fg);
  text-wrap: pretty;
}
.quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.q-a {
  font-size: 14px;
  font-weight: 500;
}
.q-r {
  font-size: 11.5px;
  color: var(--fg-3);
  letter-spacing: 0.04em;
}
@media (max-width: 880px) {
  .quotes {
    grid-template-columns: 1fr;
  }
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-card {
  padding: 32px 32px;
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
}
.about-card-wide {
  grid-column: span 2;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
}
.about-body {
  font-size: 16px;
  color: var(--fg-2);
  margin: 14px 0 0;
  text-wrap: pretty;
}
.about-body.large {
  font-size: clamp(20px, 2vw, 26px);
  color: var(--fg);
  line-height: 1.35;
  letter-spacing: -0.015em;
  max-width: 820px;
}
@media (max-width: 720px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-card-wide {
    grid-column: span 1;
  }
}

/* ---------- US map ---------- */
:root {
  --us-map-stroke: oklch(0.42 0.012 240 / 0.65);
}
.us-map-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto 40px;
  max-width: 1100px;
  aspect-ratio: 1000 / 580;
}
.us-map {
  width: 100%;
  height: 100%;
  display: block;
}
@keyframes us-pin-pulse {
  0% {
    r: 8;
    opacity: 0.85;
  }
  100% {
    r: 36;
    opacity: 0;
  }
}
.us-pin-pulse {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  transform-origin: center;
  animation: us-pin-pulse 2.4s ease-out infinite;
}
.us-map-label {
  position: absolute;
  transform: translate(14px, -50%);
  display: flex;
  flex-direction: column;
  gap: 2px;
  pointer-events: none;
  font-size: 12px;
  white-space: nowrap;
}
.us-map-label-mke {
  transform: translate(14px, -120%);
}
.us-map-label-chi {
  transform: translate(14px, 20%);
}
.us-label-tag {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-line);
  padding: 2px 8px;
  border-radius: 999px;
  align-self: flex-start;
}
.us-label-text {
  font-size: 12px;
  color: var(--fg);
  font-weight: 500;
}
@media (max-width: 720px) {
  .us-map-wrap {
    margin-bottom: 28px;
  }
  .us-map-label {
    font-size: 10px;
  }
  .us-label-tag {
    font-size: 9px;
    padding: 1px 6px;
  }
}

/* ---------- Locations ---------- */
.loc-stage {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 1000 / 580;
}
.loc-stage .us-map-wrap {
  position: absolute;
  inset: 0;
  margin: 0;
  max-width: none;
  aspect-ratio: auto;
  height: 100%;
}
.loc-grid {
  position: absolute;
  left: 12.5%;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 2;
}
.loc-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px 22px;
  background: oklch(0.18 0.008 240 / 0.78);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition:
    border-color 0.15s,
    transform 0.15s,
    background 0.15s;
}
.loc-card:hover {
  border-color: var(--accent-line);
  transform: translateY(-2px);
  background: oklch(0.2 0.01 240 / 0.85);
}
.loc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.loc-tag {
  font-size: 11px;
  letter-spacing: 0.08em;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid var(--accent-line);
  padding: 3px 9px;
  border-radius: 999px;
}
.loc-link {
  font-size: 11px;
  color: var(--fg-3);
}
.loc-card:hover .loc-link {
  color: var(--accent);
}
.loc-city {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.loc-state {
  color: var(--fg-3);
  font-weight: 500;
}
.loc-host {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}
.loc-host .mono.dim {
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.loc-host-name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.loc-host-note {
  font-size: 12px;
  color: var(--fg-2);
  line-height: 1.45;
}
.loc-addr {
  font-size: 12px;
  color: var(--fg-2);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* On smaller screens, fall back to stacked layout below the map */
@media (max-width: 880px) {
  .loc-stage {
    aspect-ratio: auto;
    max-width: 100%;
  }
  .loc-stage .us-map-wrap {
    position: relative;
    aspect-ratio: 1000 / 580;
    height: auto;
  }
  .loc-grid {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    margin-top: 16px;
    flex-direction: column;
  }
  .loc-card {
    background: var(--bg-2);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

/* ---------- CTA ---------- */
.cta-section {
  padding-bottom: calc(120px * var(--pad));
}
.cta-card {
  border: 1px solid var(--accent-line);
  border-radius: var(--r);
  background: radial-gradient(ellipse 60% 40% at 80% 0%, var(--accent-dim), transparent 60%), var(--bg-2);
  overflow: hidden;
}
.cta-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  color: var(--fg-2);
  padding: 10px 20px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg);
}
.cta-bar-spacer {
  flex: 1;
}
.cta-body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  padding: 48px 44px;
}
.cta-sub {
  font-size: 16px;
  color: var(--fg-2);
  margin: 0 0 28px;
  max-width: 460px;
  text-wrap: pretty;
}
.cta-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 32px;
  border-left: 1px solid var(--line-soft);
}
.contact-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line-soft);
  font-size: 14px;
}
.contact-row:last-child {
  border-bottom: 0;
}
.contact-k {
  color: var(--fg-3);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.contact-v {
  color: var(--fg);
}
@media (max-width: 880px) {
  .cta-body {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 28px;
  }
  .cta-right {
    padding-left: 0;
    border-left: 0;
    padding-top: 24px;
    border-top: 1px solid var(--line-soft);
  }
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line-soft);
  margin-top: 40px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 28px 32px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
}
.footer-mark {
  height: 32px;
  margin-bottom: 16px;
}
.footer-tag {
  font-size: 14px;
  color: var(--fg-2);
  margin: 0;
  max-width: 320px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}
.footer-col a {
  font-size: 14px;
  color: var(--fg-2);
}
.footer-col a:hover {
  color: var(--fg);
}
.footer-base {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 28px 32px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  gap: 18px;
  font-size: 11.5px;
  color: var(--fg-2);
}
@media (max-width: 720px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.reveal-fade {
  transform: none;
}
.reveal.reveal-left {
  transform: translate3d(-32px, 0, 0);
}
.reveal.reveal-right {
  transform: translate3d(32px, 0, 0);
}
.reveal.reveal-zoom {
  transform: scale(0.96);
}
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.reveal-left,
  .reveal.reveal-right,
  .reveal.reveal-zoom {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.wm .ops {
  color: var(--accent);
  font-weight: 500;
}
.var{
  margin-left: 10px;
  
}