:root {
  --bg: #0e0f10;
  --bg-2: #1a1d1f;
  --bg-3: #222629;
  --bg-card: rgba(32, 36, 38, 0.72);
  --ink: #f4f4f4;
  --muted: #9aa0a3;
  --muted-2: #7c8386;
  --line: rgba(255, 255, 255, 0.08);
  --teal: #2f5554;
  --teal-hover: #3a6a68;
  --light: #e6eaeb;
  --light-2: #dfe4e5;
  --light-card: #d5dbdc;
  --ink-dark: #161818;
  --radius: 14px;
  --radius-sm: 10px;
  --max: 1180px;
  --nav-h: 76px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  min-height: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, .btn { font-family: inherit; cursor: pointer; border: 0; }

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

/* nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(14, 15, 16, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}
.nav-inner {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.mark {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #fff;
  color: #111;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #d5d8d9;
  font-size: 14.5px;
}
.nav-links a { display: inline-flex; align-items: center; gap: 5px; }
.nav-links a:hover { color: #fff; }
.nav-links .caret { font-size: 9px; opacity: 0.7; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.18s ease;
}
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-hover); }
.btn-ghost {
  background: #2a2e30;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-ghost:hover { background: #34393b; }
.btn-dark {
  background: #2b2f31;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
}

/* hero home */
.hero {
  padding: 28px 0 72px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 0;
  align-items: stretch;
  min-height: 560px;
}
.hero-card {
  align-self: center;
  z-index: 2;
  margin-right: -72px;
  background: var(--bg-card);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 36px 36px 32px;
  max-width: 520px;
}
.kicker {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 650;
  margin-bottom: 16px;
}
.lede {
  color: var(--muted);
  font-size: 16px;
  max-width: 38ch;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-visual {
  border-radius: 8px;
  overflow: hidden;
  min-height: 560px;
  background: #0a1218 center/cover no-repeat;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 560px;
}

/* sections */
.section { padding: 88px 0; }
.section-dark { background: var(--bg); }
.section-mid { background: var(--bg-2); }
.section-light { background: var(--light); color: var(--ink-dark); }
.center { text-align: center; }
h2 {
  font-size: clamp(32px, 3.4vw, 44px);
  letter-spacing: -0.03em;
  font-weight: 620;
  line-height: 1.15;
}
.sub {
  margin-top: 10px;
  color: var(--muted);
  font-size: 16px;
}
.section-light .sub { color: #6d7476; }

.split {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 48px;
  align-items: center;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.logo-cell {
  height: 92px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #ececec;
  font-weight: 650;
  letter-spacing: 0.04em;
  background: rgba(255,255,255,0.02);
}
.logo-cell span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.target-card {
  text-align: left;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px 18px 18px;
  background: rgba(255,255,255,0.02);
}
.target-card b {
  display: block;
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.03em;
}
.target-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin: 6px 0 10px;
}
.target-card p {
  margin: 0;
  color: #c9cecf;
  font-size: 14px;
  line-height: 1.45;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 36px 28px;
  margin-top: 48px;
  text-align: center;
  justify-items: center;
}
.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  grid-column: span 2;
}
.metric:nth-child(4) { grid-column: 2 / span 2; }
.metric:nth-child(5) { grid-column: 4 / span 2; }
.metric b {
  font-size: clamp(40px, 4.4vw, 60px);
  letter-spacing: -0.05em;
  font-weight: 650;
  line-height: 1;
}
.metric-pair b { letter-spacing: -0.03em; }
.metric-pair span { margin: 0; }
.metric-pair span + span { margin-top: -4px; }
.metric span { color: var(--muted); font-size: 15px; line-height: 1.35; max-width: 16em; }
.section-light .metric span { color: #6d7476; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.gallery-grid img,
.ph {
  aspect-ratio: 1;
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  background: #2a3033;
}
.ph { background: center/cover no-repeat var(--bg-3); }
.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(8,10,12,0.72) 100%);
  pointer-events: none;
}
.gallery-item span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.gallery-item:hover { color: #fff; }

/* testimonials */
.quote-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  margin: 40px auto 0;
  align-items: stretch;
  text-align: left;
}
.quote-card {
  margin: 0;
  max-width: none;
  background: var(--light-card);
  border-radius: 16px;
  padding: 36px 40px 28px;
}
.quote-photo {
  border-radius: 16px;
  min-height: 360px;
  background: #c5cbcc center/cover no-repeat;
}
.quote-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  margin-bottom: 18px;
}
.quote-mark {
  font-size: 56px;
  line-height: 0.8;
  font-weight: 700;
  margin: 8px 0 16px;
}
.quote-card p { font-size: 22px; line-height: 1.4; max-width: 34ch; }
.who { margin-top: 18px; color: #5f6668; font-size: 14px; }
.quote-stats {
  display: flex;
  gap: 64px;
  margin-top: 36px;
}
.quote-stats b { display: block; font-size: 40px; letter-spacing: -0.03em; }
.quote-stats span { color: #5f6668; font-size: 14px; }
.quote-flow { align-items: baseline; gap: 16px; flex-wrap: wrap; }
.quote-flow .arr { color: #5f6668; font-size: 28px; font-weight: 500; }
.quote-foot {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 28px;
}
.arrow-link { font-size: 14px; }
.pager { display: flex; gap: 8px; }
.pager button {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #b7bfc1;
  background: transparent;
}

/* how it works */
.how-hero {
  padding: 48px 0 0;
}
.how-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  padding-bottom: 40px;
}
.how-top h1 {
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.04em;
  font-weight: 560;
  line-height: 1.05;
}
.glass {
  min-width: 320px;
  max-width: 380px;
  background: rgba(40, 44, 47, 0.55);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 22px 22px 18px;
}
.glass h3 { font-size: 20px; font-weight: 560; margin-bottom: 6px; }
.glass p { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.scene {
  height: 420px;
  border-radius: 28px 28px 0 0;
  background:
    linear-gradient(180deg, rgba(14,15,16,0.15), rgba(14,15,16,0.55)),
    url("../img/how-nanobody.png") center/cover no-repeat;
}

.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.trio img, .trio .ph {
  height: 240px;
  aspect-ratio: auto;
  border-radius: 14px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.cat { color: var(--muted-2); font-size: 13px; margin-bottom: 10px; }
.features h3 { font-size: 28px; letter-spacing: -0.03em; margin-bottom: 12px; font-weight: 580; }
.features p { color: var(--muted); margin-bottom: 22px; max-width: 28ch; }

.fan {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 14px;
  margin-top: 48px;
  min-height: 280px;
}
.fan img, .fan .ph {
  width: 190px;
  height: 240px;
  aspect-ratio: auto;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}
.fan .t-2 { transform: rotate(-8deg) translateY(18px); }
.fan .t-1 { transform: rotate(-4deg) translateY(8px); }
.fan .t0 { transform: rotate(0deg); }
.fan .t1 { transform: rotate(4deg) translateY(8px); }
.fan .t2 { transform: rotate(8deg) translateY(18px); }

/* faq */
.faq { color: #fff; }
.faq-list { margin-top: 36px; border-top: 1px solid rgba(255,255,255,0.1); }
.faq-row {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.faq-row b { font-weight: 560; }
.faq-row p { color: #b7b7b7; }
.faq-help { margin-top: 28px; color: #9e8e7a; font-size: 14px; }
.faq-help a { display: inline-block; color: #fff; margin-top: 6px; }

/* footer */
.footer { padding: 72px 0 0; }
.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer h2 { font-size: clamp(28px, 3vw, 40px); }
.blurb { margin: 20px 0 22px; max-width: 42ch; color: #3d4446; }
.cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
}
.cols h4 { color: #6d7476; font-size: 13px; font-weight: 500; margin-bottom: 12px; }
.cols a { display: block; margin: 8px 0; color: #2a3032; }
.footer-bar {
  border-top: 1px solid #c9d0d1;
  padding: 18px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.socials { display: flex; gap: 16px; opacity: 0.75; }
.tiny-links { display: flex; gap: 16px; color: #2a3032; font-size: 14px; }
.to-top {
  position: fixed;
  right: 18px;
  bottom: 28%;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 12px;
  color: #8a9092;
}

/* tools */
.tools-hero {
  min-height: 78vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 120px 24px 80px;
  background:
    linear-gradient(180deg, rgba(8,10,12,0.35), rgba(8,10,12,0.72)),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=2000&q=70") center/cover no-repeat;
}
.tools-hero .kicker { letter-spacing: 0.18em; color: #c9cecf; }
.tools-hero h1 {
  font-size: clamp(40px, 5.2vw, 68px);
  letter-spacing: -0.04em;
  font-weight: 620;
  margin: 10px 0 12px;
}
.tools-hero .lede { margin: 0 auto 28px; color: #ececec; max-width: 36ch; }
.tools-hero .hero-actions { justify-content: center; }

.bento {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
  min-height: 640px;
}
.tool-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  min-height: 0;
  color: #fff;
  text-decoration: none;
}
.tool-card.vt {
  grid-column: 1;
  grid-row: 1 / span 2;
}
.tool-card .ph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  border-radius: 0;
  background-size: cover;
  background-position: center;
}
.tool-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(8,10,12,0.72) 100%);
  pointer-events: none;
}
.tool-card h3 {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  margin: 0;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 600;
  letter-spacing: -0.03em;
}
.tool-card:hover { color: #fff; }
.tool-copy { padding: 28px 26px; display: flex; flex-direction: column; }
.tool-copy h3 { font-size: 26px; font-weight: 560; letter-spacing: -0.03em; margin-bottom: 8px; }
.tool-copy p { color: var(--muted); margin-bottom: 16px; }
.tool-list { color: #c9cecf; font-size: 14px; margin-bottom: 18px; }
.tool-list div { display: flex; align-items: center; gap: 8px; margin: 6px 0; }

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px 0 28px;
  text-align: left;
}
.t-card {
  background: #2d3436;
  color: #fff;
  border-radius: 14px;
  padding: 22px 22px 18px;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.t-card.hi { background: #ced6d9; color: #161818; }
.t-card q { font-size: 18px; quotes: none; }
.who-row { display: flex; align-items: center; gap: 10px; margin-top: 22px; font-size: 13px; }
.avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: #7d8688 center/cover no-repeat;
}
.who-row small { display: block; opacity: 0.7; }

.cta-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 28px 0 8px;
}

/* pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.price-card {
  background: #1b1e20;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 24px 26px;
  text-align: center;
}
.price-card .plan { color: var(--muted); font-size: 12px; letter-spacing: 0.14em; }
.price-card .amt { font-size: 48px; letter-spacing: -0.04em; font-weight: 650; margin: 10px 0 8px; }
.price-card .amt small { font-size: 18px; font-weight: 500; color: var(--muted); }
.price-card .why { color: var(--muted); font-size: 14px; min-height: 44px; margin-bottom: 18px; }
.price-card hr { border: 0; border-top: 1px solid rgba(255,255,255,0.1); margin: 22px 0 16px; }
.price-card .plus { text-align: left; color: var(--muted-2); font-size: 11px; letter-spacing: 0.12em; margin-bottom: 10px; }
.price-card ul { text-align: left; list-style: none; color: #e8e8e8; font-size: 14px; }
.price-card li { display: flex; gap: 8px; align-items: flex-start; margin: 8px 0; }
.tick { color: #c9cecf; }

.quote-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 18px;
  overflow: hidden;
  margin-top: 40px;
  background: #111315;
  text-align: left;
}
.quote-split .left { padding: 36px 36px 28px; }
.quote-split .right {
  background: #2f5554;
  padding: 18px;
  min-height: 360px;
}
.quote-split .right .ph { height: 100%; min-height: 320px; border-radius: 12px; }

.highlights { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 40px; align-items: center; }
.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.brand-cell {
  height: 72px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #2a3032;
  color: #fff;
  font-weight: 650;
  letter-spacing: 0.06em;
}
.brand-cell.lite { background: #d5dbdc; color: #161818; }

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
label.tiny { display: block; font-size: 11px; letter-spacing: 0.12em; color: var(--muted); margin: 14px 0 6px; }
input:not([type="checkbox"]), textarea {
  width: 100%;
  background: #15181a;
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 8px;
  padding: 12px 12px;
  font: inherit;
}
textarea { min-height: 120px; resize: vertical; }
.agree {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  margin: 14px 0 16px;
}
.agree input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  flex-shrink: 0;
  accent-color: var(--teal);
}
.touch-list { margin-top: 28px; color: #c9cecf; }
.touch-list p { margin: 10px 0; }

.onboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 18px;
  overflow: hidden;
  background: #d5dbdc;
}
.onboard .copy { padding: 40px 36px; }
.onboard .ph { min-height: 320px; }

.metric-board {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: center;
  margin-top: 36px;
}
.metric-board .ph { min-height: 320px; border-radius: 16px; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-card {
  background: #2a2d30;
  border-radius: 12px;
  padding: 22px 20px;
}
.stat-card b { display: block; font-size: 36px; letter-spacing: -0.03em; }

.nav-links a.is-on { color: #fff; }
.menu-btn { display: none; background: none; color: #fff; font-size: 22px; }
.tool-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
  text-align: left;
}
.tool-item {
  background: #2a3033;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px 18px;
}
.tool-item h3 { font-size: 18px; font-weight: 580; margin-bottom: 8px; }
.tool-item p { color: var(--muted); font-size: 14px; margin-bottom: 14px; min-height: 42px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; text-align: left; }
.step-n { color: var(--muted-2); font-size: 13px; letter-spacing: 0.12em; margin-bottom: 8px; }
.price-card.is-hot { border-color: #4d7c7a; box-shadow: 0 0 0 1px #4d7c7a inset; }
.section-light .cols a:hover { color: var(--teal); }

/* about */
.about-hero { padding: 64px 0 80px; }
.about-hero h1 {
  font-size: clamp(36px, 5.4vw, 68px);
  letter-spacing: -0.045em;
  font-weight: 620;
  line-height: 1.06;
  max-width: 16ch;
}
.about-lead {
  margin-top: 28px;
  max-width: 48ch;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}
.about-rule {
  width: 48px;
  height: 2px;
  background: var(--teal);
  margin: 32px 0 0;
}
.people-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 40px;
}
.person-xl {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 32px 28px 28px;
  background: rgba(255,255,255,0.02);
  text-align: left;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}
.person-mark {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--teal);
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 650;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.person-mark-2 { background: #3a4a4c; }
.person-tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted-2);
  margin-bottom: 8px;
}
.person-xl h3 {
  font-size: 30px;
  letter-spacing: -0.03em;
  font-weight: 620;
}
.person-xl .role {
  color: var(--muted);
  font-size: 14px;
  margin: 8px 0 16px;
}
.person-xl p { color: #c9cecf; font-size: 15px; }
.person-xl .arrow-link { margin-top: auto; padding-top: 22px; }
.arrow-link { color: #fff; font-size: 14px; }
.arrow-link:hover { color: #d7e4e3; }
.roster {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
  text-align: left;
}
.roster article {
  background: #1b1e20;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 22px 20px;
  min-height: 188px;
}
.roster b { display: block; font-size: 18px; font-weight: 600; letter-spacing: -0.02em; }
.roster small { display: block; color: var(--muted); margin: 6px 0 10px; font-size: 13px; }
.roster p { color: #c9cecf; font-size: 14px; margin: 0; line-height: 1.45; }
.roster-note { background: #2f5554; }
.roster-note p { color: #e6ecec; }
.places {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 40px;
}
.place {
  border-radius: 16px;
  padding: 32px 28px;
  min-height: 200px;
  background: #1b1e20;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.06);
}
.place h3 { font-size: 28px; letter-spacing: -0.03em; margin: 8px 0 12px; font-weight: 600; }
.place p { color: #c9cecf; max-width: 34ch; }
.place-suzhou { background: #243333; }
.about-close {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: end;
  text-align: left;
}
.thread-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.thread-row span {
  border: 1px solid rgba(22,24,24,0.16);
  background: #fff;
  color: #161818;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 550;
}
.about-cta p {
  color: #4b5153;
  font-size: 16px;
  margin-bottom: 18px;
  max-width: 32ch;
}
.section-light .btn-ghost {
  background: #2a2e30;
  color: #fff;
}

@media (max-width: 900px) {
  .hero-grid, .split, .how-top, .features, .trio, .gallery-grid, .footer-top, .faq-row, .bento, .t-grid, .tool-card.hz, .price-grid, .quote-split, .quote-row, .highlights, .contact, .onboard, .metric-board, .tool-table, .steps, .target-grid, .people-feature, .roster, .places, .about-close { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .metric, .metric:nth-child(4), .metric:nth-child(5) { grid-column: auto; }
  .metric:last-child { grid-column: 1 / -1; }
  .bento { min-height: 0; grid-template-rows: auto; }
  .tool-card.vt { grid-row: auto; grid-column: auto; }
  .hero-card { margin-right: 0; max-width: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #111314;
    flex-direction: column;
    padding: 16px 24px 20px;
    gap: 14px;
  }
  .nav.open .nav-links { display: flex; }
  .menu-btn { display: block; }
  .fan { flex-wrap: wrap; }
  .how-top { align-items: flex-start; flex-direction: column; }
}
