
:root {
  --bg: #09111f;
  --bg-soft: #101c32;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.12);
  --text: #eff5ff;
  --muted: #a6b4d1;
  --ink: #0d1628;
  --light-bg: #f5f8fd;
  --light-bg-2: #eef4fb;
  --light-text: #18263d;
  --light-muted: #60708d;
  --accent: #7ce2ff;
  --accent-2: #7b8cff;
  --accent-3: #8bffd7;
  --warning: #ffc97a;
  --danger: #ff9f9f;
  --radius: 24px;
  --shadow: 0 16px 44px rgba(3, 8, 20, 0.12);
  --container: min(1180px, calc(100vw - 2rem));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--light-text);
  background: linear-gradient(180deg, #edf4ff 0%, #f7f9fc 25%, #ffffff 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.site-shell { overflow: clip; }
.container { width: var(--container); margin: 0 auto; }
.section { padding: clamp(4.2rem, 6vw, 6.5rem) 0; }
.section-tight { padding: 1.4rem 0 0; }
.section-soft { background: linear-gradient(180deg, #f2f7ff 0%, #ffffff 100%); }
.section-dark {
  background:
    radial-gradient(circle at top right, rgba(124, 226, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #0a1222 0%, #0f1b31 100%);
  color: var(--text);
}
.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4a6fff;
}
.light .eyebrow,
.hero .eyebrow,
.cta-panel .eyebrow { color: var(--accent); }
h1, h2, h3, h4, p { margin-top: 0; }
h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}
h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}
h3 { font-size: 1.2rem; line-height: 1.2; }
h4 { font-size: 1rem; line-height: 1.3; }
p { line-height: 1.7; }
.section-heading { max-width: 760px; margin-bottom: 2.5rem; }
.section-heading p:last-child { color: var(--light-muted); }
.section-heading.light p:last-child,
.hero-text,
.hero-points,
.infra-copy p,
.solution-card p,
.cta-panel p,
.site-footer p,
.site-footer li,
.content-copy,
.guide-list li,
.checklist li,
.body-list li,
.stat-grid span,
.meta-strip span,
.page-summary,
.note,
.process-list p,
.table-card li,
.two-col-copy p,
.case-card p,
.case-card li,
.faq-answer p,
.resource-card p,
.contact-method p { color: var(--muted); }
.narrow { max-width: 580px; }
.page-shell { min-height: 100vh; }
.site-header {
  position: sticky; top: 0; z-index: 40; backdrop-filter: blur(18px);
  background: rgba(245, 248, 253, 0.82);
  border-bottom: 1px solid rgba(11, 29, 52, 0.06);
}
.nav-wrap {
  min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand {
  display: inline-flex; align-items: center; gap: 0.8rem; font-weight: 800; letter-spacing: -0.03em;
}
.brand-mark {
  width: 2.3rem; height: 2.3rem; display: inline-grid; place-items: center; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: var(--ink);
  box-shadow: 0 10px 24px rgba(54, 117, 255, 0.25);
}
.brand-text { font-size: 1.05rem; }
.site-nav {
  display: flex; align-items: center; gap: 1.1rem; font-weight: 600; color: #243452;
}
.site-nav a { position: relative; }
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -0.35rem; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent)); transform: scaleX(0);
  transform-origin: left; transition: transform 0.24s ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.active::after { transform: scaleX(1); }
.site-nav a.active { color: #111e34; }
.menu-toggle {
  display: none; width: 50px; height: 50px; border: 0; background: white; border-radius: 16px;
  box-shadow: var(--shadow); padding: 0; cursor: pointer;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px; margin: 5px auto; background: #18263d;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; min-height: 52px;
  padding: 0 1.35rem; border-radius: 999px; border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #09111f; font-weight: 700;
  box-shadow: 0 14px 34px rgba(66, 105, 255, 0.2);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.button:hover, .button:focus-visible {
  transform: translateY(-2px); box-shadow: 0 18px 40px rgba(66, 105, 255, 0.24);
}
.button-small { min-height: 46px; padding-inline: 1.1rem; }
.nav-actions {
  display: flex; align-items: center; gap: 0.75rem; margin-left: auto;
}
.nav-admin {
  white-space: nowrap;
}
.button-ghost {
  background: transparent; border-color: rgba(33, 51, 78, 0.14); color: #1f2f4a; box-shadow: none;
}
.button-light { border-color: rgba(255,255,255,0.18); color: var(--text); }
.hero {
  position: relative; padding-top: clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(circle at top left, rgba(124, 226, 255, 0.2), transparent 24%),
    radial-gradient(circle at right, rgba(123, 140, 255, 0.14), transparent 22%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(1.8rem, 4vw, 4rem); align-items: center;
}
.hero-copy { padding: 2rem 0; }
.hero-text { max-width: 680px; font-size: 1.08rem; margin-bottom: 1.6rem; }
.hero-actions, .button-row {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem;
}
.hero-points, .meta-strip {
  list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.85rem;
}
.hero-points li, .meta-strip span {
  padding: 0.8rem 1rem; border-radius: 999px; background: rgba(255,255,255,0.82);
  border: 1px solid rgba(27, 42, 68, 0.08); font-size: 0.95rem; color: #30415f;
}
.hero-panel { position: relative; }
.status-card,
.infrastructure-card,
.feature-card,
.solution-card,
.case-card,
.timeline-item,
.cta-panel,
.faq-item,
.resource-card,
.info-card,
.table-card,
.contact-method,
.article-card,
.stat-card,
.proof-card,
.note-card,
.location-card,
.service-card,
.process-card,
.quote-card,
.form-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.status-card {
  display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.15rem; background: #fff; margin-bottom: 1rem;
}
.status-card strong, .stat-card strong, .metric-card strong {
  display: block; font-size: clamp(1.7rem, 3vw, 2.1rem); color: #17253c; letter-spacing: -0.05em;
}
.status-pill, .pill {
  display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.65rem 0.8rem; border-radius: 999px;
  font-size: 0.85rem; background: rgba(124, 226, 255, 0.14); color: #0f3555; border: 1px solid rgba(124, 226, 255, 0.3);
}
.infrastructure-card {
  position: relative; overflow: hidden; padding: clamp(1.5rem, 3vw, 2rem); min-height: 380px;
  background: linear-gradient(180deg, #0b1425 0%, #101d34 100%); color: var(--text);
}
.grid-graphic { position: absolute; inset: 0; opacity: 0.9; }
.grid-graphic span {
  position: absolute; width: 12px; height: 12px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 0 0 6px rgba(124,226,255,0.08);
}
.grid-graphic span:nth-child(1) { top: 18%; left: 15%; }
.grid-graphic span:nth-child(2) { top: 28%; right: 20%; }
.grid-graphic span:nth-child(3) { left: 34%; top: 50%; }
.grid-graphic span:nth-child(4) { right: 12%; top: 56%; }
.grid-graphic span:nth-child(5) { left: 18%; bottom: 16%; }
.grid-graphic span:nth-child(6) { right: 33%; bottom: 20%; }
.grid-graphic::before,
.grid-graphic::after {
  content: ""; position: absolute; inset: 12% 10%; border: 1px solid rgba(255,255,255,0.05); border-radius: 28px;
}
.grid-graphic::after { inset: 24% 18%; }
.infra-copy { position: relative; z-index: 1; margin-top: auto; max-width: 430px; padding-top: 9rem; }
.infra-copy h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
.mini-label {
  margin: 0 0 0.35rem; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted);
}
.hero-metrics, .stat-grid, .card-grid, .proof-grid, .resource-grid, .quote-grid, .contact-grid, .table-grid, .service-grid, .process-grid-cards {
  display: grid; gap: 1rem;
}
.hero-metrics { grid-template-columns: repeat(3, 1fr); margin-top: 1rem; }
.hero-metrics article,
.stat-card,
.metric-card {
  padding: 1.1rem 1rem; border-radius: 20px; background: rgba(255,255,255,0.92); border: 1px solid rgba(13,27,48,0.06);
}
.hero-metrics strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #17253c;
}
.hero-metrics span {
  display: block;
  color: var(--light-muted);
  line-height: 1.45;
}
.stat-grid { grid-template-columns: repeat(3, 1fr); }
.trust-items {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem;
}
.trust-items span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.4rem;
  padding: 1rem 1.1rem;
  text-align: center;
  border-radius: 18px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(17,32,54,0.08);
  color: #405271;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  box-shadow: 0 12px 28px rgba(10, 22, 40, 0.05);
}
.card-grid.three-up, .proof-grid.three-up, .resource-grid.three-up, .quote-grid.three-up, .contact-grid.three-up, .service-grid.three-up, .table-grid.three-up {
  grid-template-columns: repeat(3, 1fr);
}
.card-grid.two-up, .proof-grid.two-up, .resource-grid.two-up, .quote-grid.two-up, .contact-grid.two-up, .service-grid.two-up, .table-grid.two-up {
  grid-template-columns: repeat(2, 1fr);
}
.card-grid.four-up, .proof-grid.four-up, .resource-grid.four-up, .service-grid.four-up {
  grid-template-columns: repeat(4, 1fr);
}
.feature-card,
.info-card,
.case-card,
.resource-card,
.layer-card,
.proof-card,
.note-card,
.location-card,
.service-card,
.process-card,
.quote-card,
.form-card,
.contact-method,
.table-card,
.article-card,
.stat-card {
  background: rgba(255,255,255,0.92); padding: 1.55rem; border: 1px solid rgba(17,32,54,0.08);
  color: var(--light-text);
}
.feature-card p,
.info-card p,
.case-card p,
.resource-card p,
.layer-card p,
.proof-card p,
.note-card p,
.location-card p,
.service-card p,
.process-card p,
.quote-card p,
.form-card p,
.contact-method p,
.table-card p,
.article-card p,
.stat-card p { color: var(--light-muted); margin-bottom: 0; }
.card-icon {
  width: 3rem; height: 3rem; display: grid; place-items: center; border-radius: 18px; margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(124,226,255,0.18), rgba(123,140,255,0.16)); color: #2a3f63; font-weight: 800;
}
.card-label {
  display: inline-flex; margin-bottom: 0.9rem; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700;
  color: #4965d6;
}
.service-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
}
.service-spotlight {
  padding: clamp(1.7rem, 3.8vw, 2.4rem);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(160deg, #0b1425 0%, #12284a 100%);
  color: var(--text);
  box-shadow: var(--shadow);
}
.service-spotlight p:not(.eyebrow) {
  color: var(--muted);
}
.service-bullets {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.75rem;
}
.service-bullets li {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
}
.service-stack {
  display: grid;
  gap: 1rem;
}
.service-tile {
  padding: 1.45rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(17,32,54,0.08);
  box-shadow: var(--shadow);
}
.service-tile p {
  margin-bottom: 0;
  color: var(--light-muted);
}
.service-tile h3 {
  margin-bottom: 0.55rem;
}
.support-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}
.support-intro {
  max-width: 34rem;
}
.support-intro p:last-child {
  color: var(--light-muted);
}
.support-notes {
  display: grid;
  gap: 0.9rem;
}
.support-note {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 0.15rem 0 1rem;
  border-bottom: 1px solid rgba(17,32,54,0.08);
}
.support-note:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.support-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 2rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4965d6;
}
.support-note h3 {
  margin-bottom: 0.45rem;
}
.support-note p {
  margin: 0;
  color: var(--light-muted);
}
.companion-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}
.companion-panel {
  padding: clamp(1.5rem, 3.2vw, 2rem);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(17,32,54,0.08);
  box-shadow: var(--shadow);
}
.companion-panel p:not(.eyebrow) {
  color: var(--light-muted);
}
.companion-panel-dark {
  background: linear-gradient(180deg, #0b1425 0%, #10203a 100%);
  border-color: rgba(255,255,255,0.08);
  color: var(--text);
}
.companion-panel-dark p:not(.eyebrow) {
  color: var(--muted);
}
.companion-list {
  display: grid;
  gap: 1rem;
}
.companion-entry {
  padding: 0 0 1rem;
  border-bottom: 1px solid rgba(17,32,54,0.08);
}
.companion-entry:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.companion-panel-dark .companion-entry {
  border-bottom-color: rgba(255,255,255,0.08);
}
.companion-entry h3 {
  margin-bottom: 0.45rem;
}
.companion-entry p {
  margin: 0;
}
.companion-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #60708d;
}
.companion-panel-dark .companion-meta {
  color: var(--accent);
}
.resource-library {
  display: grid;
  gap: 1rem;
}
.library-group {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(17,32,54,0.08);
  box-shadow: var(--shadow);
}
.library-group > p {
  color: var(--light-muted);
}
.library-items {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.library-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-top: 1px solid rgba(17,32,54,0.08);
}
.library-item:first-child {
  padding-top: 0;
  border-top: 0;
}
.library-type {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4965d6;
}
.library-item h3 {
  margin-bottom: 0.35rem;
}
.library-item p {
  margin: 0;
  color: var(--light-muted);
}
.library-action {
  font-weight: 700;
  color: #1f3150;
  white-space: nowrap;
}
.reference-note {
  padding: 1.25rem 1.35rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #f7fbff 0%, #edf5ff 100%);
  border: 1px solid rgba(17,32,54,0.08);
}
.reference-note p {
  margin-bottom: 0;
  color: var(--light-muted);
}
.mock-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.mock-project {
  padding: 1.2rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(17,32,54,0.08);
  box-shadow: var(--shadow);
}
.mock-browser {
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, #e9f1fb 0%, #f8fbff 100%);
  border: 1px solid rgba(17,32,54,0.08);
  margin-bottom: 1rem;
}
.mock-toolbar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 0.95rem;
  background: rgba(10,18,34,0.08);
}
.mock-toolbar span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: #9eb2d1;
}
.mock-surface {
  min-height: 220px;
  padding: 1rem;
  background:
    radial-gradient(circle at top right, rgba(124, 226, 255, 0.2), transparent 24%),
    linear-gradient(180deg, #f6faff 0%, #edf4ff 100%);
}
.mock-surface.alt {
  background:
    radial-gradient(circle at top left, rgba(123, 140, 255, 0.18), transparent 22%),
    linear-gradient(180deg, #f5f9ff 0%, #ecf3ff 100%);
}
.mock-panels {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.75rem;
  height: 100%;
}
.mock-panel {
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(17,32,54,0.08);
}
.mock-panel.primary {
  padding: 1rem;
}
.mock-panel.secondary {
  display: grid;
  gap: 0.65rem;
  padding: 0.75rem;
}
.mock-line {
  height: 0.8rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(123,140,255,0.28), rgba(124,226,255,0.28));
}
.mock-line.short {
  width: 52%;
}
.mock-line.mid {
  width: 76%;
}
.mock-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.9rem 0;
}
.mock-chip {
  min-width: 4.6rem;
  height: 2.4rem;
  border-radius: 999px;
  background: rgba(123,140,255,0.14);
  border: 1px solid rgba(123,140,255,0.18);
}
.mock-card-stack {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.9rem;
}
.mock-card {
  height: 3.4rem;
  border-radius: 16px;
  background: rgba(124,226,255,0.14);
  border: 1px solid rgba(124,226,255,0.18);
}
.mock-project p {
  margin-bottom: 0;
  color: var(--light-muted);
}
.policy-note {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(17,32,54,0.08);
}
.policy-note p {
  margin: 0;
  color: var(--light-muted);
}
.case-card h3 {
  margin-bottom: 0.8rem;
}
.layer-section {
  background:
    radial-gradient(circle at top left, rgba(124, 226, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #eef4fb 0%, #f8fbff 100%);
}
.layer-shell {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 1.4rem;
  align-items: start;
}
.layer-intro {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #0b1425 0%, #10203a 100%);
  color: var(--text);
  box-shadow: var(--shadow);
}
.layer-intro p:not(.eyebrow) {
  color: var(--muted);
}
.layer-points {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 0.75rem;
}
.layer-points li {
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
}
.layer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.layer-card {
  position: relative;
  min-height: 100%;
  background: rgba(255,255,255,0.95);
  padding: 1.55rem;
  border: 1px solid rgba(17,32,54,0.08);
  color: var(--light-text);
}
.layer-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 24px 0 0 24px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}
.layer-card h3 {
  margin-bottom: 0.7rem;
}
.guide-flow {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.4rem;
  align-items: start;
}
.guide-intro {
  padding: clamp(1.45rem, 3vw, 2rem);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  border: 1px solid rgba(17,32,54,0.08);
  box-shadow: var(--shadow);
}
.guide-intro p:last-child {
  color: var(--light-muted);
}
.guide-listing {
  display: grid;
  gap: 1rem;
}
.guide-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem 1.25rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(17,32,54,0.08);
  box-shadow: var(--shadow);
}
.guide-step {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124,226,255,0.24), rgba(123,140,255,0.2));
  color: #20324f;
  font-weight: 800;
}
.guide-row h3 {
  margin-bottom: 0.5rem;
}
.guide-row p {
  margin: 0;
  color: var(--light-muted);
}
.guide-row .card-label {
  margin-bottom: 0.55rem;
}
.editorial-band,
.journal-shell,
.reading-shell {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 1.5rem;
  align-items: start;
}
.editorial-feature,
.journal-feature {
  padding: clamp(1.6rem, 3.5vw, 2.2rem);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.editorial-feature {
  background: linear-gradient(180deg, #0b1425 0%, #10203a 100%);
  color: var(--text);
}
.editorial-feature p:not(.eyebrow),
.journal-note p {
  color: var(--muted);
}
.editorial-list,
.reading-list,
.journal-notes {
  display: grid;
  gap: 1rem;
}
.editorial-item,
.reading-entry {
  padding: 0 0 1rem;
  border-bottom: 1px solid rgba(17,32,54,0.08);
}
.editorial-item:last-child,
.reading-entry:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.editorial-item .card-label,
.reading-entry .card-label {
  margin-bottom: 0.45rem;
}
.editorial-item h3,
.reading-entry h3 {
  margin-bottom: 0.45rem;
}
.editorial-item p,
.reading-entry p {
  margin-bottom: 0;
  color: var(--light-muted);
}
.editorial-meta,
.reading-entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  color: #60708d;
  font-size: 0.84rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.journal-feature {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(17,32,54,0.08);
}
.journal-feature p {
  color: var(--light-muted);
}
.journal-note {
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(17,32,54,0.08);
}
.journal-note:first-child {
  padding-top: 0;
  border-top: 0;
}
.reading-shell .section-heading {
  margin-bottom: 0;
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.5rem;
  align-items: start;
}
.article-body {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(17,32,54,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.6rem, 4vw, 2.4rem);
}
.article-body > * + * {
  margin-top: 1.35rem;
}
.article-body p,
.article-body li {
  color: #3f506d;
}
.article-body h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.08;
  margin-bottom: 0.65rem;
}
.article-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}
.article-body ul,
.article-body ol {
  padding-left: 1.15rem;
  margin: 0;
}
.article-body li + li {
  margin-top: 0.45rem;
}
.article-lead {
  font-size: 1.06rem;
  color: #283a59;
}
.article-section + .article-section {
  padding-top: 0.2rem;
  border-top: 1px solid rgba(17,32,54,0.08);
}
.article-callout,
.article-aside-card {
  border-radius: 24px;
  background: linear-gradient(180deg, #f7fbff 0%, #edf5ff 100%);
  border: 1px solid rgba(17,32,54,0.08);
  padding: 1.2rem 1.25rem;
}
.article-callout strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #1f3150;
}
.article-aside {
  display: grid;
  gap: 1rem;
}
.article-aside-card p,
.article-aside-card li {
  color: var(--light-muted);
}
.article-aside-card ul {
  margin: 0;
  padding-left: 1rem;
}
.article-aside-card li + li {
  margin-top: 0.45rem;
}
.article-links {
  list-style: none;
  padding: 0;
}
.article-links li {
  padding: 0.8rem 0;
  border-top: 1px solid rgba(17,32,54,0.08);
}
.article-links li:first-child {
  border-top: 0;
  padding-top: 0;
}
.article-links a {
  font-weight: 700;
  color: #1f3150;
}
.article-links p {
  margin: 0.25rem 0 0;
}
.case-card ul {
  padding-left: 1.15rem;
  margin: 1rem 0 0;
}
.light .card-label { color: var(--accent-3); }
.two-col {
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 1.6rem; align-items: start;
}
.two-col-copy { max-width: 640px; }
.process-list, .guide-list, .checklist, .body-list { padding-left: 1.15rem; margin: 0; }
.process-list li + li,
.guide-list li + li,
.checklist li + li,
.body-list li + li { margin-top: 0.55rem; }
.timeline {
  display: grid; gap: 1rem;
}
.timeline-item {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: 1.4rem; background: #fff; border: 1px solid rgba(17,32,54,0.08);
}
.timeline-step {
  width: 3rem; height: 3rem; display: grid; place-items: center; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #071019; font-weight: 800;
  box-shadow: 0 12px 26px rgba(66, 105, 255, 0.2);
}
.page-hero {
  padding: clamp(3rem, 5vw, 4.8rem) 0;
  background:
    radial-gradient(circle at top left, rgba(124, 226, 255, 0.18), transparent 22%),
    radial-gradient(circle at right, rgba(123, 140, 255, 0.10), transparent 18%);
}
.page-hero h1 {
  max-width: 850px;
  font-size: clamp(2.6rem, 5vw, 4.25rem);
  line-height: 0.99;
}
.page-hero-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr); gap: clamp(1.6rem, 4vw, 3rem); align-items: center;
}
.breadcrumbs {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0 0 1rem; font-size: 0.9rem; color: #506480;
}
.breadcrumbs a { color: #364c6f; }
.summary-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,0.98) 0%, #edf6ff 100%);
  color: var(--light-text);
  padding: 1.7rem;
  border: 1px solid rgba(70, 105, 184, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.summary-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.summary-panel h2, .summary-panel h3 { font-size: 1.2rem; }
.summary-panel ul { padding-left: 1rem; margin: 0; }
.summary-panel li + li { margin-top: 0.45rem; }
.summary-panel p, .summary-panel li { color: var(--light-muted); }
.summary-panel .mini-label { color: #4965d6; font-weight: 700; }
.page-summary {
  font-size: 1.06rem; max-width: 720px; margin-bottom: 1.4rem; color: var(--light-muted);
}
.previous-project-shell {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.5rem;
  align-items: start;
}
.previous-project-intro {
  padding: clamp(1.6rem, 3.5vw, 2.2rem);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #0b1425 0%, #10203a 100%);
  color: var(--text);
  box-shadow: var(--shadow);
}
.previous-project-intro p:not(.eyebrow) {
  color: var(--muted);
}
.previous-project-points {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.75rem;
}
.previous-project-points li {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
}
.project-evidence {
  margin: 1.4rem 0;
  padding: 1.1rem 1.15rem;
  border-radius: 20px;
  background: rgba(124, 226, 255, 0.09);
  border: 1px solid rgba(124, 226, 255, 0.18);
}
.project-evidence .card-label { color: var(--accent); }
.project-evidence h3 { color: var(--text); }
.project-evidence p { margin-bottom: 0; color: var(--muted); }
.previous-project-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.previous-project-shot {
  margin: 0;
  padding: 1rem;
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(17,32,54,0.08);
  box-shadow: var(--shadow);
}
.previous-project-shot img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(17,32,54,0.08);
  background: linear-gradient(180deg, #eef4fb 0%, #f7fbff 100%);
}
.previous-project-shot-wide {
  grid-column: span 2;
}
.rust-page-hero {
  background:
    radial-gradient(circle at top left, rgba(216, 95, 44, 0.24), transparent 23%),
    radial-gradient(circle at 82% 18%, rgba(92, 41, 23, 0.16), transparent 20%),
    linear-gradient(180deg, #fff6ef 0%, #fffaf7 62%, #ffffff 100%);
}
.rust-page-hero .eyebrow {
  color: #b64c24;
}
.rust-page-hero .meta-strip span {
  background: rgba(255, 249, 244, 0.92);
  border-color: rgba(182, 76, 36, 0.14);
  color: #6f422b;
}
.rust-summary-panel {
  background: linear-gradient(180deg, #2a140e 0%, #3c2016 100%);
  border: 1px solid rgba(255,255,255,0.08);
}
.rust-summary-panel .mini-label {
  color: rgba(255, 216, 198, 0.82);
}
.rust-terminal {
  margin-top: 1.3rem;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.rust-terminal-bar {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}
.rust-terminal-bar span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
}
.rust-terminal-bar span:nth-child(1) { background: #ff9f7a; }
.rust-terminal-bar span:nth-child(2) { background: #ffc37a; }
.rust-terminal-bar span:nth-child(3) { background: #ffe5b7; }
.rust-terminal pre {
  margin: 0;
  font-family: Consolas, "SFMono-Regular", "Liberation Mono", Menlo, monospace;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #ffe3d2;
  white-space: pre-wrap;
}
.rust-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.rust-pillar-card,
.rust-check-card,
.rust-related-item {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.rust-pillar-card {
  position: relative;
  overflow: hidden;
  padding: 1.55rem;
  background: linear-gradient(180deg, #fffdfa 0%, #fff4ed 100%);
  border: 1px solid rgba(173, 84, 47, 0.12);
}
.rust-pillar-card::before,
.rust-check-card::before,
.rust-related-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #de6f3e 0%, #f2a16c 48%, #f5d4ba 100%);
}
.rust-pillar-card p,
.rust-check-card p,
.rust-related-item p {
  margin-bottom: 0;
  color: var(--light-muted);
}
.rust-pillar-card h3,
.rust-check-card h3,
.rust-related-item h3 {
  margin-bottom: 0.6rem;
}
.rust-architecture-shell,
.rust-related-shell {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 1.3rem;
  align-items: start;
}
.rust-approach-card,
.rust-related-panel {
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}
.rust-approach-card {
  padding: clamp(1.6rem, 3.4vw, 2.2rem);
  background: linear-gradient(180deg, #1b100d 0%, #321a12 100%);
  color: var(--text);
}
.rust-approach-card p:not(.eyebrow) {
  color: #d9b7a8;
}
.rust-approach-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 0.75rem;
}
.rust-approach-list li {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
}
.rust-check-grid,
.rust-related-list {
  display: grid;
  gap: 1rem;
}
.rust-check-card,
.rust-related-item {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(173, 84, 47, 0.12);
  color: var(--light-text);
}
.rust-related-panel {
  padding: clamp(1.65rem, 3.6vw, 2.25rem);
  background: linear-gradient(135deg, #9d4d2a 0%, #ca6d3e 46%, #302018 100%);
  color: #fff7f2;
}
.rust-related-panel .eyebrow {
  color: #ffe5d4;
}
.rust-related-panel p:not(.eyebrow) {
  color: rgba(255, 245, 237, 0.8);
}
.partner-page-hero {
  background:
    linear-gradient(135deg, #f4fbff 0%, #fff7f1 58%, #ffffff 100%);
}
.partner-page-hero .eyebrow {
  color: #197380;
}
.partner-page-hero .meta-strip span {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(25, 115, 128, 0.16);
  color: #285f66;
}
.partner-summary-panel {
  background: linear-gradient(180deg, #092d34 0%, #143d35 100%);
  border: 1px solid rgba(255,255,255,0.08);
}
.partner-summary-panel .mini-label {
  color: rgba(169, 242, 227, 0.82);
}
.partner-ledger {
  margin-top: 1.3rem;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
}
.partner-ledger-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.9rem;
  color: #d8fff5;
  font-weight: 700;
}
.partner-ledger-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(139, 255, 215, 0.16);
  color: #c9fff0;
  font-size: 0.78rem;
}
.partner-ledger-number {
  display: block;
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  color: #ffffff;
}
.partner-ledger-note {
  margin: 0.85rem 0 0;
  color: rgba(225, 255, 247, 0.78);
}
.partner-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.partner-pillar-card,
.partner-check-card,
.partner-related-item {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.partner-pillar-card {
  position: relative;
  overflow: hidden;
  padding: 1.55rem;
  background: linear-gradient(180deg, #ffffff 0%, #effcff 100%);
  border: 1px solid rgba(25, 115, 128, 0.12);
}
.partner-pillar-card::before,
.partner-check-card::before,
.partner-related-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #1c8998 0%, #8bffd7 52%, #ffd08a 100%);
}
.partner-pillar-card p,
.partner-check-card p,
.partner-related-item p {
  margin-bottom: 0;
  color: var(--light-muted);
}
.partner-pillar-card h3,
.partner-check-card h3,
.partner-related-item h3 {
  margin-bottom: 0.6rem;
}
.partner-program-shell,
.partner-related-shell {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 1.3rem;
  align-items: start;
}
.partner-program-card,
.partner-related-panel {
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}
.partner-program-card {
  padding: clamp(1.6rem, 3.4vw, 2.2rem);
  background: linear-gradient(180deg, #071f28 0%, #0d342d 100%);
  color: var(--text);
}
.partner-program-card p:not(.eyebrow) {
  color: #b9d8d6;
}
.partner-program-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 0.75rem;
}
.partner-program-list li {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
}
.partner-check-grid,
.partner-related-list {
  display: grid;
  gap: 1rem;
}
.partner-check-card,
.partner-related-item {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(25, 115, 128, 0.12);
  color: var(--light-text);
}
.partner-related-panel {
  padding: clamp(1.65rem, 3.6vw, 2.25rem);
  background: linear-gradient(135deg, #176d7a 0%, #189b8c 48%, #1e2f4d 100%);
  color: #f7fffd;
}
.partner-related-panel .eyebrow {
  color: #d2fff1;
}
.partner-related-panel p:not(.eyebrow) {
  color: rgba(239, 255, 251, 0.8);
}
.partner-economics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.partner-economics-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(25, 115, 128, 0.12);
  box-shadow: var(--shadow);
}
.partner-economics-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
  color: #126c75;
}
.partner-economics-card p {
  margin-bottom: 0;
  color: var(--light-muted);
}
.partner-footnote {
  margin-top: 1.4rem;
  color: var(--light-muted);
  font-size: 0.92rem;
}
.partner-application-section {
  background:
    radial-gradient(circle at bottom left, rgba(139, 255, 215, 0.16), transparent 26%),
    linear-gradient(180deg, #f2f7ff 0%, #ffffff 100%);
}
.partner-application-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: start;
}
.partner-application-copy,
.partner-form-card {
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}
.partner-application-copy {
  padding: clamp(1.7rem, 3.5vw, 2.4rem);
  background: linear-gradient(160deg, #092d34 0%, #143d35 100%);
  color: var(--text);
}
.partner-application-copy .eyebrow {
  color: #b9ffeb;
}
.partner-application-copy p {
  color: #c4dcda;
}
.partner-application-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.75rem;
}
.partner-application-list li {
  position: relative;
  padding: 0.9rem 1rem 0.9rem 2.6rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
}
.partner-application-list li::before {
  content: "\2713";
  position: absolute;
  left: 1rem;
  color: #8bffd7;
  font-weight: 800;
}
.partner-application-email {
  margin-bottom: 0;
  font-size: 0.92rem;
}
.partner-application-email a,
.partner-form-card noscript a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.partner-form-card {
  min-width: 0;
  min-height: 520px;
  padding: clamp(0.75rem, 2vw, 1.5rem);
  background: #ffffff;
  border: 1px solid rgba(25, 115, 128, 0.12);
}
.partner-form-card noscript p {
  margin: 0;
  color: var(--light-muted);
}
.shopify-page-hero {
  background:
    radial-gradient(circle at top left, rgba(104, 211, 145, 0.26), transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(49, 143, 96, 0.18), transparent 22%),
    linear-gradient(180deg, #f2fff6 0%, #f8fffb 60%, #ffffff 100%);
}
.shopify-page-hero .eyebrow {
  color: #1f8c54;
}
.shopify-page-hero .meta-strip span {
  background: rgba(251, 255, 252, 0.94);
  border-color: rgba(31, 140, 84, 0.16);
  color: #2f6d47;
}
.shopify-summary-panel {
  background: linear-gradient(180deg, #0d2b1a 0%, #15462a 100%);
  border: 1px solid rgba(255,255,255,0.08);
}
.shopify-summary-panel .mini-label {
  color: rgba(203, 255, 213, 0.82);
}
.shopify-board {
  margin-top: 1.3rem;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.shopify-board-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.9rem;
  color: #edfff0;
  font-weight: 700;
}
.shopify-board-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(134, 255, 172, 0.16);
  border: 1px solid rgba(134, 255, 172, 0.22);
  color: #d9ffe4;
  font-size: 0.78rem;
}
.shopify-board-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.shopify-board-metrics article {
  padding: 0.85rem 0.8rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  color: #d7f5dd;
}
.shopify-board-metrics strong {
  display: block;
  margin-bottom: 0.18rem;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #ffffff;
}
.shopify-board-metrics span {
  font-size: 0.83rem;
}
.shopify-board-strips {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.95rem;
}
.shopify-board-strips span {
  display: block;
  height: 0.72rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(133, 255, 172, 0.46) 0%, rgba(248, 255, 210, 0.24) 100%);
}
.shopify-board-strips span:nth-child(1) { width: 88%; }
.shopify-board-strips span:nth-child(2) { width: 72%; }
.shopify-board-strips span:nth-child(3) { width: 61%; }
.shopify-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.shopify-pillar-card,
.shopify-check-card,
.shopify-related-item {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.shopify-pillar-card {
  position: relative;
  overflow: hidden;
  padding: 1.55rem;
  background: linear-gradient(180deg, #ffffff 0%, #f1fff5 100%);
  border: 1px solid rgba(31, 140, 84, 0.12);
}
.shopify-pillar-card::before,
.shopify-check-card::before,
.shopify-related-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #1f8c54 0%, #72d09c 48%, #dbf7c8 100%);
}
.shopify-pillar-card p,
.shopify-check-card p,
.shopify-related-item p {
  margin-bottom: 0;
  color: var(--light-muted);
}
.shopify-pillar-card h3,
.shopify-check-card h3,
.shopify-related-item h3 {
  margin-bottom: 0.6rem;
}
.shopify-program-shell,
.shopify-related-shell {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 1.3rem;
  align-items: start;
}
.shopify-program-card,
.shopify-related-panel {
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}
.shopify-program-card {
  padding: clamp(1.6rem, 3.4vw, 2.2rem);
  background: linear-gradient(180deg, #0b2014 0%, #163524 100%);
  color: var(--text);
}
.shopify-program-card p:not(.eyebrow) {
  color: #cde7d5;
}
.shopify-program-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 0.75rem;
}
.shopify-program-list li {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
}
.shopify-check-grid,
.shopify-related-list {
  display: grid;
  gap: 1rem;
}
.shopify-check-card,
.shopify-related-item {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(31, 140, 84, 0.12);
  color: var(--light-text);
}
.shopify-related-panel {
  padding: clamp(1.65rem, 3.6vw, 2.25rem);
  background: linear-gradient(135deg, #1f8c54 0%, #39ab72 48%, #183228 100%);
  color: #f7fff9;
}
.shopify-related-panel .eyebrow {
  color: #ddffe7;
}
.shopify-related-panel p:not(.eyebrow) {
  color: rgba(247, 255, 249, 0.82);
}
.wordpress-page-hero {
  background:
    radial-gradient(circle at top left, rgba(33, 117, 155, 0.22), transparent 23%),
    radial-gradient(circle at 84% 18%, rgba(78, 167, 191, 0.14), transparent 20%),
    linear-gradient(180deg, #f2fbff 0%, #f8fcff 60%, #ffffff 100%);
}
.wordpress-page-hero .eyebrow {
  color: #1d6f96;
}
.wordpress-page-hero .meta-strip span {
  background: rgba(248, 253, 255, 0.94);
  border-color: rgba(33, 117, 155, 0.16);
  color: #285f79;
}
.wordpress-summary-panel {
  background: linear-gradient(180deg, #10273a 0%, #14364f 100%);
  border: 1px solid rgba(255,255,255,0.08);
}
.wordpress-summary-panel .mini-label {
  color: rgba(191, 232, 255, 0.82);
}
.wordpress-admin-card {
  margin-top: 1.3rem;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.wordpress-admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  color: #e4f6ff;
}
.wordpress-admin-badge {
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(116, 226, 179, 0.18);
  border: 1px solid rgba(116, 226, 179, 0.28);
  color: #bdf0d2;
  font-size: 0.78rem;
  font-weight: 700;
}
.wordpress-admin-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}
.wordpress-admin-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.8rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  color: #d8ecf6;
}
.wordpress-admin-list strong {
  color: #f4fbff;
  font-size: 0.84rem;
}
.wordpress-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.wordpress-pillar-card,
.wordpress-check-card,
.wordpress-related-item {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.wordpress-pillar-card {
  position: relative;
  overflow: hidden;
  padding: 1.55rem;
  background: linear-gradient(180deg, #fbfeff 0%, #eef8ff 100%);
  border: 1px solid rgba(33, 117, 155, 0.12);
}
.wordpress-pillar-card::before,
.wordpress-check-card::before,
.wordpress-related-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #21759b 0%, #4ea7bf 48%, #d8f1f8 100%);
}
.wordpress-pillar-card p,
.wordpress-check-card p,
.wordpress-related-item p {
  margin-bottom: 0;
  color: var(--light-muted);
}
.wordpress-pillar-card h3,
.wordpress-check-card h3,
.wordpress-related-item h3 {
  margin-bottom: 0.6rem;
}
.wordpress-decision-shell,
.wordpress-related-shell {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 1.3rem;
  align-items: start;
}
.wordpress-decision-card,
.wordpress-related-panel {
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}
.wordpress-decision-card {
  padding: clamp(1.6rem, 3.4vw, 2.2rem);
  background: linear-gradient(180deg, #102233 0%, #16354c 100%);
  color: var(--text);
}
.wordpress-decision-card p:not(.eyebrow) {
  color: #c8deea;
}
.wordpress-decision-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 0.75rem;
}
.wordpress-decision-list li {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
}
.wordpress-check-grid,
.wordpress-related-list {
  display: grid;
  gap: 1rem;
}
.wordpress-check-card,
.wordpress-related-item {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(33, 117, 155, 0.12);
  color: var(--light-text);
}
.wordpress-related-panel {
  padding: clamp(1.65rem, 3.6vw, 2.25rem);
  background: linear-gradient(135deg, #1d6d8b 0%, #2a9bb3 46%, #173144 100%);
  color: #f4fcff;
}
.wordpress-related-panel .eyebrow {
  color: #d7f4ff;
}
.wordpress-related-panel p:not(.eyebrow) {
  color: rgba(244, 252, 255, 0.8);
}
.php-page-hero {
  background:
    radial-gradient(circle at top left, rgba(96, 167, 71, 0.22), transparent 23%),
    radial-gradient(circle at 82% 20%, rgba(22, 87, 63, 0.18), transparent 22%),
    linear-gradient(180deg, #f6fff2 0%, #fbfffa 60%, #ffffff 100%);
}
.php-page-hero .eyebrow {
  color: #34764b;
}
.php-page-hero .meta-strip span {
  background: rgba(250, 255, 248, 0.94);
  border-color: rgba(52, 118, 75, 0.14);
  color: #2f6843;
}
.php-summary-panel {
  background: linear-gradient(180deg, #13261d 0%, #1d382c 100%);
  border: 1px solid rgba(255,255,255,0.08);
}
.php-summary-panel .mini-label {
  color: rgba(214, 244, 223, 0.82);
}
.php-runtime-card {
  margin-top: 1.3rem;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.php-runtime-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
  color: #e8f8ed;
}
.php-runtime-chip {
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgba(132, 219, 138, 0.18);
  border: 1px solid rgba(132, 219, 138, 0.26);
  color: #d6f5d8;
  font-size: 0.76rem;
  font-weight: 700;
}
.php-runtime-card pre {
  margin: 0;
  font-family: Consolas, "SFMono-Regular", "Liberation Mono", Menlo, monospace;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #def6e5;
  white-space: pre-wrap;
}
.php-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.php-pillar-card,
.php-check-card,
.php-related-item {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.php-pillar-card {
  position: relative;
  overflow: hidden;
  padding: 1.55rem;
  background: linear-gradient(180deg, #fcfff9 0%, #f0faef 100%);
  border: 1px solid rgba(52, 118, 75, 0.12);
}
.php-pillar-card::before,
.php-check-card::before,
.php-related-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #5eae43 0%, #89cc62 50%, #dff2d4 100%);
}
.php-pillar-card p,
.php-check-card p,
.php-related-item p {
  margin-bottom: 0;
  color: var(--light-muted);
}
.php-pillar-card h3,
.php-check-card h3,
.php-related-item h3 {
  margin-bottom: 0.6rem;
}
.php-architecture-shell,
.php-related-shell {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 1.3rem;
  align-items: start;
}
.php-approach-card,
.php-related-panel {
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}
.php-approach-card {
  padding: clamp(1.6rem, 3.4vw, 2.2rem);
  background: linear-gradient(180deg, #17271d 0%, #274130 100%);
  color: var(--text);
}
.php-approach-card p:not(.eyebrow) {
  color: #d2e9d6;
}
.php-approach-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 0.75rem;
}
.php-approach-list li {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
}
.php-check-grid,
.php-related-list {
  display: grid;
  gap: 1rem;
}
.php-check-card,
.php-related-item {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(52, 118, 75, 0.12);
  color: var(--light-text);
}
.php-related-panel {
  padding: clamp(1.65rem, 3.6vw, 2.25rem);
  background: linear-gradient(135deg, #4d9a44 0%, #79ba4e 48%, #203322 100%);
  color: #f7fff4;
}
.php-related-panel .eyebrow {
  color: #e8f7df;
}
.php-related-panel p:not(.eyebrow) {
  color: rgba(247, 255, 244, 0.82);
}
.php-webapp-page-hero {
  background:
    radial-gradient(circle at top left, rgba(214, 163, 58, 0.24), transparent 23%),
    radial-gradient(circle at 82% 18%, rgba(116, 74, 18, 0.14), transparent 22%),
    linear-gradient(180deg, #fff9ef 0%, #fffdf7 62%, #ffffff 100%);
}
.php-webapp-page-hero .eyebrow {
  color: #aa6f17;
}
.php-webapp-page-hero .meta-strip span {
  background: rgba(255, 252, 245, 0.94);
  border-color: rgba(170, 111, 23, 0.14);
  color: #805719;
}
.php-webapp-summary-panel {
  background: linear-gradient(180deg, #271d12 0%, #3a2a17 100%);
  border: 1px solid rgba(255,255,255,0.08);
}
.php-webapp-summary-panel .mini-label {
  color: rgba(255, 232, 195, 0.84);
}
.php-webapp-board {
  margin-top: 1.3rem;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.php-webapp-board-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
  color: #fff4dd;
}
.php-webapp-dot {
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 50%;
  background: #f2c357;
  box-shadow: 0 0 0 6px rgba(242, 195, 87, 0.12);
}
.php-webapp-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}
.php-webapp-metrics article {
  padding: 0.75rem 0.8rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  display: grid;
  gap: 0.25rem;
}
.php-webapp-metrics strong {
  font-size: 1rem;
  color: #fff7e7;
}
.php-webapp-metrics span {
  color: #ead7b3;
  font-size: 0.8rem;
}
.php-webapp-rows {
  display: grid;
  gap: 0.55rem;
}
.php-webapp-rows span {
  display: block;
  height: 0.78rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.18), rgba(255,255,255,0.05));
}
.php-webapp-rows span:nth-child(1) { width: 100%; }
.php-webapp-rows span:nth-child(2) { width: 82%; }
.php-webapp-rows span:nth-child(3) { width: 64%; }
.php-webapp-stage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.php-webapp-stage-card,
.php-webapp-check-card,
.php-webapp-related-item {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.php-webapp-stage-card {
  position: relative;
  overflow: hidden;
  padding: 1.55rem;
  background: linear-gradient(180deg, #fffefb 0%, #fff5e8 100%);
  border: 1px solid rgba(170, 111, 23, 0.12);
}
.php-webapp-stage-card::before,
.php-webapp-check-card::before,
.php-webapp-related-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #cc8e1a 0%, #ebb44b 48%, #f8e4bf 100%);
}
.php-webapp-stage-card p,
.php-webapp-check-card p,
.php-webapp-related-item p {
  margin-bottom: 0;
  color: var(--light-muted);
}
.php-webapp-stage-card h3,
.php-webapp-check-card h3,
.php-webapp-related-item h3 {
  margin-bottom: 0.6rem;
}
.php-webapp-build-shell,
.php-webapp-related-shell {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 1.3rem;
  align-items: start;
}
.php-webapp-build-card,
.php-webapp-related-panel {
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}
.php-webapp-build-card {
  padding: clamp(1.6rem, 3.4vw, 2.2rem);
  background: linear-gradient(180deg, #261c12 0%, #3b2c1b 100%);
  color: var(--text);
}
.php-webapp-build-card p:not(.eyebrow) {
  color: #ead7bc;
}
.php-webapp-build-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 0.75rem;
}
.php-webapp-build-list li {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
}
.php-webapp-check-grid,
.php-webapp-related-list {
  display: grid;
  gap: 1rem;
}
.php-webapp-check-card,
.php-webapp-related-item {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(170, 111, 23, 0.12);
  color: var(--light-text);
}
.php-webapp-related-panel {
  padding: clamp(1.65rem, 3.6vw, 2.25rem);
  background: linear-gradient(135deg, #a56a18 0%, #d3972e 46%, #342316 100%);
  color: #fffaf1;
}
.php-webapp-related-panel .eyebrow {
  color: #ffefcf;
}
.php-webapp-related-panel p:not(.eyebrow) {
  color: rgba(255, 250, 241, 0.82);
}
.smartphone-page-hero {
  background:
    radial-gradient(circle at top left, rgba(72, 155, 255, 0.25), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(92, 236, 196, 0.2), transparent 22%),
    linear-gradient(180deg, #eff8ff 0%, #f7fdff 62%, #ffffff 100%);
}
.smartphone-page-hero .eyebrow {
  color: #2475d8;
}
.smartphone-page-hero .meta-strip span {
  background: rgba(245, 252, 255, 0.94);
  border-color: rgba(36, 117, 216, 0.14);
  color: #24547d;
}
.smartphone-summary-panel {
  background: linear-gradient(180deg, #0d243d 0%, #102f4c 54%, #163d54 100%);
  border: 1px solid rgba(255,255,255,0.08);
}
.smartphone-summary-panel .mini-label {
  color: rgba(190, 236, 255, 0.84);
}
.smartphone-device {
  position: relative;
  width: min(100%, 18rem);
  margin: 1.4rem auto 0;
  padding: 0.78rem;
  border-radius: 38px;
  background: linear-gradient(155deg, #0a1222 0%, #152c4a 100%);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.04), 0 24px 60px rgba(3,8,20,0.28);
}
.smartphone-notch {
  position: absolute;
  top: 0.78rem;
  left: 50%;
  width: 5.4rem;
  height: 1.15rem;
  transform: translateX(-50%);
  border-radius: 0 0 16px 16px;
  background: #0a1222;
  z-index: 2;
}
.smartphone-screen {
  min-height: 22rem;
  padding: 1.1rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at 20% 16%, rgba(124,226,255,0.32), transparent 28%),
    linear-gradient(180deg, #eaf8ff 0%, #ffffff 58%, #dff8f1 100%);
  color: #0f2540;
}
.smartphone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.2rem;
  font-size: 0.76rem;
  font-weight: 800;
}
.smartphone-app-card {
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(17,32,54,0.08);
  box-shadow: 0 14px 36px rgba(17, 49, 87, 0.16);
}
.smartphone-app-card span {
  display: inline-flex;
  margin-bottom: 0.7rem;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  background: rgba(60, 184, 255, 0.14);
  color: #23628c;
  font-size: 0.72rem;
  font-weight: 800;
}
.smartphone-app-card strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.18rem;
  letter-spacing: -0.04em;
}
.smartphone-app-card p {
  margin: 0;
  color: #5e7088;
  line-height: 1.5;
}
.smartphone-action-row {
  display: grid;
  grid-template-columns: 1fr 1fr 0.74fr;
  gap: 0.65rem;
  margin-top: 1rem;
}
.smartphone-action-row span,
.smartphone-dock span {
  display: block;
  min-height: 3.4rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(17,32,54,0.06);
}
.smartphone-dock {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 3.1rem;
  padding: 0.65rem;
  border-radius: 24px;
  background: rgba(13, 37, 64, 0.08);
}
.smartphone-dock span {
  min-height: 2.6rem;
}
.smartphone-stage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.smartphone-stage-card,
.smartphone-check-card,
.smartphone-related-item {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.smartphone-stage-card {
  position: relative;
  overflow: hidden;
  padding: 1.55rem;
  background: linear-gradient(180deg, #fbfeff 0%, #edf9ff 100%);
  border: 1px solid rgba(36, 117, 216, 0.12);
}
.smartphone-stage-card::before,
.smartphone-check-card::before,
.smartphone-related-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #3d8bff 0%, #64d7ff 46%, #7ff0c7 100%);
}
.smartphone-stage-card p,
.smartphone-check-card p,
.smartphone-related-item p {
  margin-bottom: 0;
  color: var(--light-muted);
}
.smartphone-stage-card h3,
.smartphone-check-card h3,
.smartphone-related-item h3 {
  margin-bottom: 0.6rem;
}
.smartphone-build-shell,
.smartphone-related-shell {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 1.3rem;
  align-items: start;
}
.smartphone-build-card,
.smartphone-related-panel {
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}
.smartphone-build-card {
  padding: clamp(1.6rem, 3.4vw, 2.2rem);
  background: linear-gradient(180deg, #0c172c 0%, #102f50 100%);
  color: var(--text);
}
.smartphone-build-card p:not(.eyebrow) {
  color: #b8cbe5;
}
.smartphone-build-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 0.75rem;
}
.smartphone-build-list li {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
}
.smartphone-check-grid,
.smartphone-related-list {
  display: grid;
  gap: 1rem;
}
.smartphone-check-card,
.smartphone-related-item {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(36, 117, 216, 0.12);
  color: var(--light-text);
}
.smartphone-related-panel {
  padding: clamp(1.65rem, 3.6vw, 2.25rem);
  background: linear-gradient(135deg, #2468d8 0%, #32b8df 48%, #11324f 100%);
  color: #f3fbff;
}
.smartphone-related-panel .eyebrow {
  color: #d5fbff;
}
.smartphone-related-panel p:not(.eyebrow) {
  color: rgba(243, 251, 255, 0.84);
}
.rust-summary-panel,
.partner-summary-panel,
.shopify-summary-panel,
.wordpress-summary-panel,
.php-summary-panel,
.php-webapp-summary-panel,
.smartphone-summary-panel {
  color: var(--text);
}
.rust-summary-panel h2,
.rust-summary-panel h3,
.partner-summary-panel h2,
.partner-summary-panel h3,
.shopify-summary-panel h2,
.shopify-summary-panel h3,
.wordpress-summary-panel h2,
.wordpress-summary-panel h3,
.php-summary-panel h2,
.php-summary-panel h3,
.php-webapp-summary-panel h2,
.php-webapp-summary-panel h3,
.smartphone-summary-panel h2,
.smartphone-summary-panel h3 {
  color: var(--text);
}
.rust-summary-panel p,
.rust-summary-panel li,
.partner-summary-panel p,
.partner-summary-panel li,
.shopify-summary-panel p,
.shopify-summary-panel li,
.wordpress-summary-panel p,
.wordpress-summary-panel li,
.php-summary-panel p,
.php-summary-panel li,
.php-webapp-summary-panel p,
.php-webapp-summary-panel li,
.smartphone-summary-panel p,
.smartphone-summary-panel li {
  color: var(--muted);
}
.checklist-box,
.note-box,
.cta-panel {
  background: linear-gradient(135deg, #0c1629 0%, #11203c 100%); color: var(--text); padding: clamp(1.5rem, 4vw, 2.2rem);
}
.cta-panel {
  display: grid; grid-template-columns: 1.1fr auto; gap: 2rem; align-items: center;
}
.friendly-cta-section { padding-top: 1rem; }
.friendly-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.6rem, 4vw, 2.3rem);
  border: 1px solid rgba(70, 105, 184, 0.14);
  border-radius: calc(var(--radius) + 4px);
  background:
    radial-gradient(circle at top right, rgba(124, 226, 255, 0.2), transparent 30%),
    linear-gradient(145deg, #ffffff 0%, #eef5ff 100%);
  box-shadow: var(--shadow);
}
.friendly-note h2 { max-width: 760px; margin-bottom: 0.65rem; }
.friendly-note p:not(.eyebrow) { max-width: 720px; margin-bottom: 0; color: var(--light-muted); }
.friendly-note .button-row { margin-bottom: 0; justify-content: flex-end; }
.faq-list {
  display: grid; gap: 1rem;
}
.faq-item {
  overflow: hidden; background: #fff; border: 1px solid rgba(17,32,54,0.08);
}
.faq-question {
  width: 100%; background: transparent; border: 0; padding: 1.3rem 1.4rem; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; text-align: left; font: inherit; font-weight: 700; color: #1b2a43; cursor: pointer;
}
.faq-symbol {
  font-size: 1.3rem; line-height: 1; transition: transform 0.22s ease;
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.28s ease; }
.faq-answer p { margin: 0; padding: 0 1.4rem 1.35rem; color: var(--light-muted); }
.faq-item.open .faq-answer { max-height: 260px; }
.faq-item.open .faq-symbol { transform: rotate(45deg); }
.quote-card blockquote {
  margin: 0 0 1rem; font-size: 1rem; line-height: 1.7; color: #2f4364;
}
.quote-meta { color: var(--light-muted); font-size: 0.9rem; }
.contact-card-panel {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 1rem;
}
.form-embed {
  margin: 1.25rem 0;
}
.form-card form { display: grid; gap: 0.8rem; }
.input-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
.form-card label {
  display: grid; gap: 0.45rem; font-weight: 600; color: #20324f; font-size: 0.94rem;
}
.form-card input,
.form-card textarea,
.form-card select {
  width: 100%; border-radius: 14px; border: 1px solid rgba(24,38,61,0.14); padding: 0.95rem 1rem; font: inherit; color: #1b2a43;
  background: #fbfdff;
}
.form-card textarea { min-height: 160px; resize: vertical; }
.site-footer { padding: 2.2rem 0 3rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr 0.85fr 0.85fr; gap: 1.6rem; padding-top: 1rem;
  border-top: 1px solid rgba(17,32,54,0.08);
}
.footer-grid h3 { margin-bottom: 1rem; font-size: 1rem; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li + li { margin-top: 0.5rem; }
.footer-brand { margin-bottom: 1rem; }

/* Editorial markers: every instance must be replaced with approved evidence before deployment. */
.owner-input-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.info-card-wide { grid-column: 1 / -1; }
.info-card p + p { margin-top: 0.85rem; }
.owner-input {
  padding: 1.25rem;
  border: 2px dashed #b45309;
  border-radius: 18px;
  background: #fff7df;
  color: #4b2a08;
  box-shadow: 0 12px 30px rgba(120, 68, 8, 0.1);
}
.owner-input-wide { grid-column: 1 / -1; }
.owner-input-compact { margin: 1rem 0 1.2rem; padding: 1rem 1.1rem; }
.owner-input-label {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.38rem 0.65rem;
  border-radius: 999px;
  background: #8a3f08;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.3;
}
.owner-input h2,
.owner-input h3 { color: #3c2209; margin-bottom: 0.55rem; }
.owner-input p { color: #5f3a13; margin-bottom: 0; }
.owner-input p + p { margin-top: 0.65rem; }
.owner-input strong { color: #3c2209; }
.owner-input-example { font-size: 0.9rem; font-style: italic; }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
@media (max-width: 1120px) {
  .hero-grid,
  .page-hero-grid,
  .two-col,
  .service-mosaic,
  .companion-shell,
  .mock-gallery,
  .layer-shell,
  .guide-flow,
  .support-shell,
  .editorial-band,
  .journal-shell,
  .reading-shell,
  .article-layout,
  .previous-project-shell,
  .rust-architecture-shell,
  .rust-related-shell,
  .shopify-program-shell,
  .shopify-related-shell,
  .partner-program-shell,
  .partner-related-shell,
  .partner-application-shell,
  .wordpress-decision-shell,
  .wordpress-related-shell,
  .php-architecture-shell,
  .php-related-shell,
  .php-webapp-build-shell,
  .php-webapp-related-shell,
  .smartphone-build-shell,
  .smartphone-related-shell,
  .contact-card-panel,
  .friendly-note,
  .cta-panel,
  .footer-grid { grid-template-columns: 1fr; }
  .trust-items,
  .card-grid.four-up,
  .proof-grid.four-up,
  .resource-grid.four-up,
  .service-grid.four-up,
  .card-grid.three-up,
  .proof-grid.three-up,
  .resource-grid.three-up,
  .quote-grid.three-up,
  .contact-grid.three-up,
  .service-grid.three-up,
  .table-grid.three-up,
  .rust-pillar-grid,
  .shopify-pillar-grid,
  .partner-pillar-grid,
  .partner-economics-grid,
  .wordpress-pillar-grid,
  .php-pillar-grid,
  .php-webapp-stage-grid,
  .smartphone-stage-grid,
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1000px) {
  .menu-toggle { display: inline-block; }
  .nav-actions { display: none; }
  .site-nav {
    position: absolute; top: calc(100% + 0.5rem); right: 1rem; left: 1rem; display: none; flex-direction: column; align-items: flex-start;
    gap: 0; padding: 0.6rem; border-radius: 24px; background: rgba(255,255,255,0.96); box-shadow: var(--shadow);
    border: 1px solid rgba(17,32,54,0.08);
  }
  .site-nav a {
    width: 100%; padding: 0.9rem 1rem; border-radius: 16px;
  }
  .site-nav a:hover,
  .site-nav a:focus-visible { background: rgba(86,112,189,0.08); }
  .site-nav a::after { display: none; }
  .site-header.menu-open .site-nav { display: flex; }
  .site-header.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .site-header.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 860px) {
  .hero-metrics, .trust-items, .card-grid.three-up, .proof-grid.three-up, .resource-grid.three-up, .quote-grid.three-up, .contact-grid.three-up, .service-grid.three-up, .table-grid.three-up, .rust-pillar-grid, .shopify-pillar-grid, .partner-pillar-grid, .partner-economics-grid, .wordpress-pillar-grid, .php-pillar-grid, .php-webapp-stage-grid, .smartphone-stage-grid, .stat-grid { grid-template-columns: 1fr; }
  .layer-grid,
  .previous-project-gallery { grid-template-columns: 1fr; }
  .previous-project-shot-wide { grid-column: auto; }
  .support-note,
  .library-item,
  .mock-panels { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 3.8rem 0; }
  h1 { font-size: clamp(2.25rem, 11vw, 2.8rem); line-height: 1; }
  h2 { font-size: clamp(1.8rem, 9vw, 2.3rem); }
  .hero-actions,
  .button-row,
  .hero-points,
  .meta-strip { flex-direction: column; align-items: stretch; }
  .button, .button-small { width: 100%; }
  .timeline-item { grid-template-columns: 1fr; }
  .status-card { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .nav-wrap { min-height: 72px; }
  .input-grid { grid-template-columns: 1fr; }
  .owner-input-grid { grid-template-columns: minmax(0, 1fr); }
  .owner-input { min-width: 0; }
  .owner-input-label {
    display: block;
    width: fit-content;
    max-width: 100%;
    border-radius: 12px;
    overflow-wrap: anywhere;
  }
  .shopify-board-metrics { grid-template-columns: 1fr; }
  .php-webapp-metrics { grid-template-columns: 1fr; }
}

/* Free project-planning tools */
.project-brief-tool-summary {
  background: linear-gradient(145deg, #0b1830 0%, #122b4d 58%, #123f4a 100%);
  border-color: rgba(255,255,255,0.1);
}
.project-brief-tool-summary .mini-label { color: #85ecd9; }
.project-brief-tool-summary p,
.project-brief-tool-summary li { color: rgba(237,247,255,0.82); }
.project-brief-step-cards .info-card { height: 100%; }
.project-brief-methodology { align-items: start; }
.project-brief-example-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.project-brief-example-card dl {
  display: grid;
  gap: 0.55rem;
  margin: 0.3rem 0 1.25rem;
  padding: 0.9rem;
  border-radius: 16px;
  background: #f1f6fc;
}
.project-brief-example-card dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
}
.project-brief-example-card dt {
  color: var(--light-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.project-brief-example-card dd {
  margin: 0;
  color: var(--light-text);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: right;
}
.project-brief-example-card .button {
  align-self: flex-start;
  margin-top: auto;
}
.project-brief-page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 5vw, 4rem);
}
.project-brief-page-cta > div:first-child { max-width: 720px; }
.project-brief-page-cta h2 { margin-bottom: 0.65rem; }
.project-brief-page-cta p:not(.eyebrow) { color: rgba(237,247,255,0.76); }
.planning-tool-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1.7rem, 4vw, 3rem);
  border: 1px solid rgba(76,112,205,0.14);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f8fbff 0%, #ecf5ff 64%, #e8fbf7 100%);
  box-shadow: var(--shadow);
}
.planning-tool-feature h2 { margin-bottom: 0.8rem; }
.planning-tool-feature-card {
  padding: 1.4rem;
  border: 1px solid rgba(11,29,52,0.08);
  border-radius: 22px;
  background: rgba(255,255,255,0.94);
}
.planning-tool-feature-card ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}
.planning-tool-feature-card li + li { margin-top: 0.45rem; }

@media (max-width: 900px) {
  .planning-tool-feature { grid-template-columns: 1fr; }
  .project-brief-page-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .project-brief-example-card dl div {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.1rem;
  }
  .project-brief-example-card dd { text-align: left; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
