:root {
  /* Theme: navy (default) */
  --bg: hsl(201 60% 7%);
  --bg-2: hsl(201 50% 10%);
  --bg-3: hsl(201 40% 14%);
  --fg: hsl(36 25% 94%);
  --fg-muted: hsl(36 12% 68%);
  --fg-dim: hsl(36 8% 48%);
  --line: hsl(201 30% 22%);
  --line-soft: hsl(201 30% 16%);
  --accent: hsl(30 45% 65%);
  --accent-ink: hsl(201 60% 7%);

  --serif: 'Instrument Serif', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --page-max: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
}

[data-theme="bone"] {
  --bg: hsl(36 22% 94%);
  --bg-2: hsl(36 18% 90%);
  --bg-3: hsl(36 15% 85%);
  --fg: hsl(201 40% 10%);
  --fg-muted: hsl(201 15% 32%);
  --fg-dim: hsl(201 10% 50%);
  --line: hsl(36 15% 78%);
  --line-soft: hsl(36 15% 86%);
  --accent: hsl(20 55% 42%);
  --accent-ink: hsl(36 22% 94%);
}

[data-theme="ink"] {
  --bg: hsl(0 0% 6%);
  --bg-2: hsl(0 0% 9%);
  --bg-3: hsl(0 0% 13%);
  --fg: hsl(0 0% 96%);
  --fg-muted: hsl(0 0% 66%);
  --fg-dim: hsl(0 0% 46%);
  --line: hsl(0 0% 20%);
  --line-soft: hsl(0 0% 14%);
  --accent: hsl(30 45% 65%);
  --accent-ink: hsl(0 0% 6%);
}

[data-accent="ember"]  { --accent: hsl(14 70% 55%); --accent-ink: #fff; }
[data-accent="pine"]   { --accent: hsl(150 35% 48%); --accent-ink: #fff; }
[data-accent="sky"]    { --accent: hsl(205 70% 62%); --accent-ink: hsl(201 60% 7%); }
[data-accent="mono"]   { --accent: var(--fg); --accent-ink: var(--bg); }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--accent-ink); }

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

.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
.mono  { font-family: var(--mono); font-weight: 400; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.em-muted { font-style: normal; color: var(--fg-muted); }

.container {
  max-width: var(--page-max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ——————— NAV ——————— */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: backdrop-filter .3s ease, background .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: color-mix(in oklab, var(--bg) 70%, transparent);
  border-bottom-color: var(--line-soft);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1;
  display: inline-flex; align-items: baseline; gap: 2px;
}
.logo sup { font-size: 9px; font-family: var(--mono); letter-spacing: 0.1em; color: var(--fg-dim); top: -1.1em; }
.nav-links { display: none; gap: 28px; }
@media (min-width: 820px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 13px;
  color: var(--fg-muted);
  transition: color .2s ease;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--fg); }
.nav-links a.active { color: var(--fg); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--accent);
}

/* Liquid glass button */
.glass {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  background: color-mix(in oklab, var(--fg) 4%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  border-radius: 999px;
  color: var(--fg);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: inset 0 1px 1px color-mix(in oklab, var(--fg) 14%, transparent);
  transition: transform .25s ease, background .25s ease;
}
.glass::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1.2px;
  background: linear-gradient(180deg,
    color-mix(in oklab, var(--fg) 45%, transparent) 0%,
    color-mix(in oklab, var(--fg) 12%, transparent) 22%,
    transparent 45%, transparent 55%,
    color-mix(in oklab, var(--fg) 12%, transparent) 78%,
    color-mix(in oklab, var(--fg) 45%, transparent) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.glass:hover { transform: scale(1.03); background: color-mix(in oklab, var(--fg) 7%, transparent); }
.glass-lg { padding: 16px 36px; font-size: 15px; }
.glass .arrow { transition: transform .25s ease; display: inline-block; }
.glass:hover .arrow { transform: translateX(3px); }

/* ——————— HERO ——————— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 140px var(--gutter) 120px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute; inset: 0; z-index: -1;
  background: var(--bg);
  overflow: hidden;
}
.hero-media video, .hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.5;
  filter: saturate(1.05) contrast(1.05);
}
.hero-vignette {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at center, transparent 40%, color-mix(in oklab, var(--bg) 80%, transparent) 100%),
    linear-gradient(180deg, transparent 60%, var(--bg) 100%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
  text-transform: uppercase;
  margin-bottom: 40px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 18%, transparent);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 9vw, 124px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 auto;
  max-width: 14ch;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--fg-muted); }

.hero-sub {
  max-width: 46ch;
  margin: 36px auto 0;
  color: var(--fg-muted);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  text-wrap: pretty;
}

.hero-ctas { margin-top: 44px; display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.btn-text {
  font-size: 13px;
  color: var(--fg-muted);
  padding: 16px 20px;
  border-radius: 999px;
  transition: color .2s;
}
.btn-text:hover { color: var(--fg); }

.hero-meta {
  position: absolute;
  bottom: 28px; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: end;
  padding: 0 var(--gutter);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--fg-dim);
  text-transform: uppercase;
  pointer-events: none;
}
.hero-meta span { display: block; }
.hero-meta .r { text-align: right; }

/* Animations */
@keyframes fade-rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.rise { animation: fade-rise .9s cubic-bezier(.2,.7,.2,1) both; }
.rise-1 { animation-delay: .05s; }
.rise-2 { animation-delay: .2s; }
.rise-3 { animation-delay: .35s; }
.rise-4 { animation-delay: .5s; }

/* ——————— SECTION ATOMS ——————— */
section { position: relative; padding: clamp(80px, 12vw, 160px) 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 64px;
  align-items: end;
}
@media (min-width: 820px) {
  .section-head { grid-template-columns: 1fr 2fr; gap: 48px; }
}
.section-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 0.2em;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
  max-width: 18ch;
}
.section-title em { font-style: italic; color: var(--fg-muted); }

.divider {
  border: 0; border-top: 1px solid var(--line-soft);
  margin: 0;
}

/* ——————— WORK ——————— */
.work { background: var(--bg); }
.work-list { display: flex; flex-direction: column; }
.work-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 44px 0;
  border-top: 1px solid var(--line-soft);
  position: relative;
  transition: padding .35s ease;
}
.work-item:last-child { border-bottom: 1px solid var(--line-soft); }
@media (min-width: 820px) {
  .work-item {
    grid-template-columns: 80px 1.2fr 1fr 1fr 40px;
    gap: 32px;
    align-items: center;
  }
}
.work-item:hover { background: color-mix(in oklab, var(--fg) 2%, transparent); }
.work-item .idx { font-family: var(--mono); color: var(--fg-dim); font-size: 11px; letter-spacing: 0.2em; }
.work-item .name {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.work-item .name em { font-style: italic; color: var(--fg-muted); }
.work-item .desc { color: var(--fg-muted); font-size: 14px; line-height: 1.5; max-width: 38ch; }
.work-item .tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fg-muted);
}
.work-item .tags span { padding: 4px 10px; border: 1px solid var(--line); border-radius: 999px; }
.work-item .go {
  width: 40px; height: 40px; border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fg-muted);
  transition: all .25s ease;
  justify-self: start;
}
@media (min-width: 820px) { .work-item .go { justify-self: end; } }
.work-item:hover .go { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); transform: rotate(-45deg); }

/* ——————— SERVICES ——————— */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.svc {
  background: var(--bg);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 280px;
  position: relative;
  transition: background .25s;
}
.svc:hover { background: var(--bg-2); }
.svc .num { font-family: var(--mono); color: var(--fg-dim); font-size: 10px; letter-spacing: 0.2em; }
.svc .ttl { font-family: var(--serif); font-size: 30px; line-height: 1; letter-spacing: -0.02em; margin: 0; }
.svc .desc { color: var(--fg-muted); font-size: 14px; line-height: 1.55; text-wrap: pretty; }
.svc ul {
  list-style: none; padding: 0; margin: auto 0 0;
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--fg-muted);
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}
.svc ul li::before { content: '— '; color: var(--fg-dim); }

/* ——————— PROCESS ——————— */
.process { background: var(--bg-2); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.step {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  position: relative;
}
.step .num {
  font-family: var(--mono); color: var(--accent); font-size: 10px; letter-spacing: 0.2em;
  margin-bottom: 14px;
}
.step .ttl { font-family: var(--serif); font-size: 28px; line-height: 1; margin: 0 0 10px; letter-spacing: -0.02em; }
.step .desc { color: var(--fg-muted); font-size: 14px; line-height: 1.55; }

/* ——————— ABOUT ——————— */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 820px) {
  .about-grid { grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: start; }
}
.about-lead {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.about-lead em { font-style: italic; color: var(--fg-muted); }
.about-body { color: var(--fg-muted); font-size: 15px; line-height: 1.7; margin-top: 24px; max-width: 52ch; }
.facts { display: flex; flex-direction: column; gap: 20px; }
.fact {
  display: grid; grid-template-columns: 80px 1fr; gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line-soft);
}
.fact:last-child { border-bottom: 1px solid var(--line-soft); }
.fact .k { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; color: var(--fg-dim); text-transform: uppercase; padding-top: 3px; }
.fact .v { font-size: 14px; color: var(--fg); }
.fact .v .muted { color: var(--fg-muted); }

/* ——————— STATS ——————— */
.stats {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr 1.05fr 1.05fr;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.stat {
  padding: clamp(36px, 4vw, 56px) clamp(28px, 3.2vw, 44px);
  border-right: 1px solid var(--line-soft);
  min-width: 0;
}
.stat:last-child { border-right: 0; }
.stat .n {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat .n em { font-style: italic; color: var(--accent); }
.stat .l { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; color: var(--fg-muted); text-transform: uppercase; margin-top: 16px; }
.stat-platform .n { font-size: clamp(44px, 5.2vw, 76px); }
.stat-platform .n em { margin: 0 0.03em; }

@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat { border-bottom: 1px solid var(--line-soft); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-last-child(-n + 2) { border-bottom: 0; }
}

@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; }
  .stat {
    padding: 32px 24px;
    border-right: 0;
  }
  .stat:nth-last-child(2) { border-bottom: 1px solid var(--line-soft); }
  .stat:last-child { border-bottom: 0; }
}

/* ——————— CONTACT ——————— */
.contact { background: var(--bg-2); border-top: 1px solid var(--line-soft); }
.contact-inner {
  display: grid; grid-template-columns: 1fr; gap: 48px;
}
@media (min-width: 820px) {
  .contact-inner { grid-template-columns: 1.1fr 1fr; gap: 80px; }
}
.contact h2 {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
}
.contact h2 em { font-style: italic; color: var(--fg-muted); }
.contact-sub { color: var(--fg-muted); margin-top: 24px; max-width: 46ch; line-height: 1.6; }

form.brief {
  display: flex; flex-direction: column; gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--fg-dim);
  text-transform: uppercase;
}
.field input, .field textarea, .field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  color: var(--fg);
  font-family: var(--sans);
  font-size: 15px;
  resize: vertical;
  outline: none;
  transition: border-color .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: var(--accent); }
.field textarea { min-height: 80px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s;
  color: var(--fg-muted);
  user-select: none;
}
.chip:hover { color: var(--fg); border-color: var(--fg-muted); }
.chip.on { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.submit {
  align-self: flex-start;
  margin-top: 14px;
}
.form-note {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em; color: var(--fg-dim); text-transform: uppercase;
}
.sent {
  padding: 24px;
  border: 1px dashed var(--accent);
  color: var(--fg);
  font-size: 14px;
  border-radius: 4px;
  display: none;
}
.sent.show { display: block; }

.contact-direct {
  margin-top: 40px;
  display: flex; flex-direction: column; gap: 14px;
}
.contact-direct a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 15px;
  color: var(--fg);
  transition: padding .25s ease, color .25s;
}
.contact-direct a:last-child { border-bottom: 1px solid var(--line-soft); }
.contact-direct a:hover { padding-left: 12px; color: var(--accent); }
.contact-direct a .k { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; color: var(--fg-dim); text-transform: uppercase; }

/* ——————— FOOTER ——————— */
footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--line-soft);
}
.foot-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 720px) {
  .foot-inner { grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 48px; }
}
.foot h4 { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; color: var(--fg-dim); text-transform: uppercase; margin: 0 0 14px; font-weight: 500; }
.foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot a { color: var(--fg-muted); font-size: 13px; transition: color .2s; }
.foot a:hover { color: var(--fg); }
.foot-coords { font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em; color: var(--fg-dim); margin-top: 24px; text-transform: uppercase; }
.foot-bot {
  margin-top: 48px;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em; color: var(--fg-dim); text-transform: uppercase;
  gap: 12px; flex-wrap: wrap;
}

/* Misc */
.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  opacity: 0.025;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ——————— PROJECT PAGES ——————— */
.project-page {
  min-height: 100vh;
}

.project-hero {
  padding: 150px 0 clamp(72px, 10vw, 120px);
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 72% 18%, color-mix(in oklab, var(--accent) 18%, transparent), transparent 34%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
}

.project-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 7vw, 88px);
  align-items: center;
}

@media (min-width: 900px) {
  .project-hero-grid { grid-template-columns: 1fr 0.86fr; }
}

.project-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 11vw, 136px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin: 24px 0 0;
  text-wrap: balance;
}

.project-hero h1 em {
  font-style: italic;
  color: var(--fg-muted);
}

.project-lede {
  color: var(--fg-muted);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.55;
  max-width: 54ch;
  margin: 28px 0 0;
  text-wrap: pretty;
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 34px;
}

.store-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--fg);
  color: var(--bg);
  font-size: 14px;
  font-weight: 600;
  box-shadow: inset 0 1px 1px color-mix(in oklab, white 42%, transparent);
  transition: transform .25s ease, background .25s ease;
}

.store-link:hover {
  transform: scale(1.03);
  background: color-mix(in oklab, var(--fg) 90%, var(--accent));
}

.store-link img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: none;
}

.project-panel {
  min-height: clamp(360px, 45vw, 560px);
  border: 1px solid var(--line);
  background: color-mix(in oklab, var(--fg) 4%, transparent);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.project-orbit {
  position: absolute;
  border: 1px solid color-mix(in oklab, var(--accent) 40%, transparent);
  border-radius: 50%;
  opacity: 0.45;
}

.project-orbit.one { width: 440px; height: 440px; }
.project-orbit.two { width: 260px; height: 260px; transform: translate(70px, -80px); }

.project-device {
  width: min(280px, 74vw);
  aspect-ratio: 9 / 18;
  border: 10px solid hsl(0 0% 5%);
  border-radius: 38px;
  background: var(--bg);
  padding: 28px 18px;
  box-shadow: 0 40px 90px color-mix(in oklab, black 45%, transparent);
  position: relative;
  z-index: 2;
}

.device-top,
.device-list small,
.project-facts span,
.project-feature-grid article span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.device-title {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 0.95;
  margin-top: 24px;
}

.device-title em { color: var(--fg-muted); }

.device-map {
  height: 170px;
  margin-top: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(35deg, transparent 48%, var(--line-soft) 49%, transparent 51%),
    linear-gradient(135deg, transparent 48%, var(--line-soft) 49%, transparent 51%),
    color-mix(in oklab, var(--accent) 8%, var(--bg));
  position: relative;
}

.device-map span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px color-mix(in oklab, var(--accent) 18%, transparent);
}

.device-list {
  display: grid;
  gap: 3px;
  margin-top: 20px;
}

.device-list b {
  font-size: 13px;
  margin-top: 10px;
}

.project-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.project-facts div {
  padding: 28px 24px;
  border-right: 1px solid var(--line-soft);
}

.project-facts div:last-child { border-right: 0; }
.project-facts strong {
  display: block;
  margin-top: 10px;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  font-weight: 400;
}

.project-section.alt {
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
}

.project-copy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 820px) {
  .project-copy-grid { grid-template-columns: 1fr 1.1fr; gap: 72px; }
}

.project-copy {
  color: var(--fg-muted);
  font-size: 17px;
  line-height: 1.75;
}

.project-copy p {
  max-width: 58ch;
  margin: 0 0 22px;
}

.project-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}

.project-feature-grid article {
  background: var(--bg);
  padding: 32px 28px;
  min-height: 240px;
}

.project-feature-grid h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 18px 0 14px;
}

.project-feature-grid p {
  color: var(--fg-muted);
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.tax-panel {
  align-items: stretch;
  padding: 42px;
}

.tax-doc {
  position: absolute;
  width: min(300px, 64vw);
  min-height: 150px;
  background: hsl(36 22% 92%);
  color: hsl(201 40% 10%);
  border: 1px solid hsl(36 18% 78%);
  padding: 20px;
  box-shadow: 0 30px 60px color-mix(in oklab, black 35%, transparent);
}

.tax-doc b {
  display: block;
  font-size: 18px;
  margin-bottom: 42px;
}

.tax-doc span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(201 15% 32%);
}

.doc-a { left: 10%; top: 14%; transform: rotate(-8deg); }
.doc-b { right: 8%; top: 27%; transform: rotate(7deg); }
.doc-c { left: 20%; bottom: 13%; transform: rotate(-2deg); }

.tax-badge {
  position: absolute;
  right: 12%;
  bottom: 18%;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(-10deg);
  z-index: 4;
}

.tax-badge strong {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
}

.tax-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.tax-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.tax-trust-row span::before,
.tax-checklist li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 16%, transparent);
  flex: none;
}

.tax-feature-grid article {
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.tax-feature-grid article > p {
  margin-bottom: 26px;
}

.tax-bars,
.tax-chip-row,
.tax-offline {
  margin-top: auto;
}

.tax-bars {
  height: 76px;
  display: flex;
  align-items: end;
  gap: 7px;
}

.tax-bars i {
  flex: 1;
  min-width: 18px;
  border-radius: 4px 4px 0 0;
  background: color-mix(in oklab, var(--fg) 18%, transparent);
}

.tax-bars i:nth-child(1) { height: 88%; }
.tax-bars i:nth-child(2) { height: 70%; }
.tax-bars i:nth-child(3) { height: 82%; }
.tax-bars i:nth-child(4) { height: 42%; }
.tax-bars i:nth-child(5) { height: 30%; }
.tax-bars i.ok { background: var(--accent); }

.tax-dial {
  margin-top: auto;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--fg);
  font-family: var(--serif);
  font-size: 28px;
  background:
    radial-gradient(circle at center, var(--bg) 0 54%, transparent 55%),
    conic-gradient(var(--accent) 0 78%, color-mix(in oklab, var(--fg) 12%, transparent) 0);
}

.tax-checklist {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: grid;
  gap: 10px;
}

.tax-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--fg-muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tax-lock {
  margin-top: auto;
  width: 74px;
  height: 82px;
  border: 2px solid var(--fg-muted);
  border-radius: 8px;
  position: relative;
  display: grid;
  place-items: center;
}

.tax-lock::before {
  content: '';
  position: absolute;
  top: -30px;
  width: 42px;
  height: 34px;
  border: 2px solid var(--fg-muted);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
}

.tax-lock i {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: hsl(14 70% 55%);
}

.tax-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tax-chip-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--fg-muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tax-offline {
  border: 1px dashed var(--accent);
  color: var(--accent);
  padding: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tax-flow {
  display: grid;
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}

.tax-flow div {
  background: var(--bg);
  padding: 26px;
}

.tax-flow span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.tax-flow strong {
  display: block;
  margin-top: 16px;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
}

.tax-flow p {
  margin: 12px 0 0;
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.6;
}

.tax-screenshot-rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 0 28px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.tax-screenshot-rail::-webkit-scrollbar {
  height: 6px;
}

.tax-screenshot-rail::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 999px;
}

.tax-screenshot-rail figure {
  flex: 0 0 min(280px, 78vw);
  margin: 0;
  scroll-snap-align: start;
}

.tax-screenshot-rail figure > div {
  aspect-ratio: 1284 / 2778;
  border: 10px solid hsl(0 0% 5%);
  border-radius: 36px;
  overflow: hidden;
  background: hsl(0 0% 4%);
  box-shadow: 0 30px 70px color-mix(in oklab, black 42%, transparent);
}

.tax-screenshot-rail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tax-screenshot-rail figcaption {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  color: var(--fg-muted);
  font-size: 13px;
  line-height: 1.5;
}

.tax-screenshot-rail figcaption span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--accent);
  flex: none;
  padding-top: 2px;
}

.tax-marketing-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 0 32px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.tax-marketing-grid::-webkit-scrollbar {
  height: 6px;
}

.tax-marketing-grid::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 999px;
}

.tax-marketing-grid figure {
  flex: 0 0 min(330px, 82vw);
  margin: 0;
  scroll-snap-align: start;
}

.tax-marketing-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1284 / 2778;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px color-mix(in oklab, black 38%, transparent);
}

.tax-marketing-grid figcaption {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  color: var(--fg-muted);
  font-size: 13px;
  line-height: 1.5;
}

.tax-marketing-grid figcaption span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--accent);
  flex: none;
  padding-top: 2px;
}

.tax-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: end;
}

@media (min-width: 820px) {
  .tax-cta { grid-template-columns: 1.3fr 1fr; }
}

.tax-cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 22px 0 0;
}

.tax-cta h2 em {
  color: var(--accent);
  font-style: italic;
}

.tax-cta p {
  color: var(--fg-muted);
  max-width: 52ch;
  margin: 22px 0 0;
}

.afrika-hero {
  background:
    linear-gradient(180deg, color-mix(in oklab, var(--bg) 20%, transparent), var(--bg)),
    url("assets/afrikaburn/hero.jpg") center / cover;
}

.afrika-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.afrika-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.afrika-trust-row span::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 16%, transparent);
  flex: none;
}

.afrika-hero-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(440px, 48vw, 640px);
}

.afrika-icon {
  position: absolute;
  top: 6%;
  right: 8%;
  width: clamp(84px, 10vw, 132px);
  border-radius: 28px;
  box-shadow: 0 20px 60px color-mix(in oklab, black 38%, transparent);
  z-index: 2;
  transform: rotate(8deg);
}

.afrika-phone {
  width: min(300px, 72vw);
  aspect-ratio: 1084 / 2412;
  border-radius: 42px;
  padding: 10px;
  background: hsl(0 0% 4%);
  border: 1px solid hsl(0 0% 16%);
  box-shadow: 0 40px 90px color-mix(in oklab, black 45%, transparent);
  position: relative;
}

.afrika-phone::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 24px;
  border-radius: 999px;
  background: hsl(0 0% 4%);
  z-index: 1;
}

.afrika-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 34px;
  display: block;
}

.afrika-feature-grid article {
  min-height: 300px;
}

.afrika-feature-grid .afrika-unlock {
  background: hsl(0 0% 6%);
  color: var(--fg);
}

.afrika-feature-grid .afrika-unlock span,
.afrika-feature-grid .afrika-unlock h3 {
  color: var(--accent);
}

.afrika-screenshot-rail {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 4px 0 30px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.afrika-screenshot-rail::-webkit-scrollbar {
  height: 6px;
}

.afrika-screenshot-rail::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 999px;
}

.afrika-screenshot-rail figure {
  flex: 0 0 min(300px, 78vw);
  margin: 0;
  scroll-snap-align: start;
}

.afrika-screenshot-rail figcaption {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  color: var(--fg-muted);
  font-size: 13px;
  line-height: 1.5;
}

.afrika-screenshot-rail figcaption span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--accent);
  flex: none;
  padding-top: 2px;
}

.afrika-map-preview {
  margin: 42px 0 0;
  border: 1px solid var(--line);
  background: var(--bg);
  overflow: hidden;
}

.afrika-map-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 2048 / 1139;
  object-fit: cover;
}

.afrika-map-preview figcaption {
  margin: 0;
  padding: 14px 18px;
  color: var(--fg-muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-top: 1px solid var(--line);
}

.afrika-faq {
  display: grid;
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}

.afrika-faq div {
  background: var(--bg);
  padding: 26px;
}

.afrika-faq span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.afrika-faq strong {
  display: block;
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
}

.afrika-faq p,
.afrika-cta p {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 12px 0 0;
}

.afrika-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: end;
}

@media (min-width: 820px) {
  .afrika-cta { grid-template-columns: 1.3fr 1fr; }
}

.afrika-cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 22px 0 0;
}

.afrika-cta h2 em {
  color: var(--accent);
  font-style: italic;
}

.commute-panel {
  align-content: center;
  justify-items: stretch;
  gap: 22px;
  padding: 40px;
}

.line-preview {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto;
  gap: 10px;
  align-items: center;
  width: 100%;
}

.line-preview span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 10px;
}

.line-preview span.delay {
  background: hsl(35 90% 62%);
  color: hsl(201 60% 7%);
}

.line-preview i {
  height: 2px;
  background: var(--line);
}

.report-card-preview {
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 20px;
}

.report-card-preview b {
  display: block;
  margin-bottom: 8px;
}

.report-card-preview small {
  color: var(--fg-muted);
}

.report-card-preview.soft {
  background: color-mix(in oklab, var(--accent) 8%, var(--bg));
}

.commute-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.commute-trust-row span,
.commute-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.commute-trust-row span::before,
.commute-legend span::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 16%, transparent);
  flex: none;
}

.commute-legend span.delay::before,
.commute-line-map span.delayed::after {
  background: hsl(35 90% 62%);
}

.commute-hero-device {
  display: grid;
  place-items: center;
}

.commute-phone {
  width: min(310px, 72vw);
  aspect-ratio: 540 / 1200;
  border-radius: 42px;
  padding: 10px;
  background: hsl(0 0% 4%);
  border: 1px solid hsl(0 0% 16%);
  box-shadow: 0 40px 90px color-mix(in oklab, black 45%, transparent);
  position: relative;
}

.commute-phone::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 24px;
  border-radius: 999px;
  background: hsl(0 0% 4%);
  z-index: 1;
}

.commute-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 34px;
  display: block;
}

.commute-line-card {
  border: 1px solid var(--line);
  background: color-mix(in oklab, var(--fg) 3%, transparent);
  padding: clamp(24px, 4vw, 38px);
  overflow-x: auto;
}

.commute-line-endpoints {
  min-width: 980px;
  display: flex;
  justify-content: space-between;
  color: var(--fg-muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.commute-line-map {
  min-width: 980px;
  height: 230px;
  position: relative;
}

.commute-line-map::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 104px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0.8;
}

.commute-line-map span {
  position: absolute;
  top: 93px;
  transform: translateX(-50%);
}

.commute-line-map span::after {
  content: '';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  background: var(--bg);
  display: block;
}

.commute-line-map span.major::after {
  background: var(--accent);
  box-shadow: 0 0 0 7px color-mix(in oklab, var(--accent) 22%, transparent);
}

.commute-line-map b {
  position: absolute;
  top: 52px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  color: var(--fg-muted);
}

.commute-line-map i {
  position: absolute;
  left: 50%;
  bottom: 42px;
  writing-mode: vertical-rl;
  transform: translateX(-50%) rotate(180deg);
  font-style: normal;
  color: var(--fg-muted);
  font-size: 10px;
  white-space: nowrap;
}

.commute-legend {
  min-width: 980px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.commute-feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.commute-steps {
  display: grid;
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}

.commute-steps div {
  background: var(--bg-2);
  padding: 26px;
}

.commute-steps span,
.commute-screen-grid figcaption span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
}

.commute-steps strong,
.commute-screen-grid figcaption strong {
  display: block;
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
}

.commute-steps p,
.commute-screen-grid figcaption p,
.commute-cta p {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 12px 0 0;
}

.commute-feed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: start;
}

@media (min-width: 900px) {
  .commute-feed-grid { grid-template-columns: 1fr 1.1fr; }
}

.commute-feed {
  display: grid;
  gap: 12px;
}

.commute-feed div {
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 18px;
}

.commute-feed div.delay {
  border-color: hsl(35 90% 62%);
}

.commute-feed b {
  display: block;
  margin-bottom: 6px;
}

.commute-feed span {
  color: var(--fg-dim);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.commute-feed p {
  color: var(--fg-muted);
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.55;
}

.commute-screen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: start;
}

.commute-screen-grid figure {
  margin: 0;
  text-align: center;
}

.commute-screen-grid .commute-phone {
  margin: 0 auto;
  width: min(300px, 74vw);
}

.commute-screen-grid figcaption {
  margin: 18px auto 0;
  max-width: 310px;
  text-align: center;
}

.commute-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: end;
}

@media (min-width: 820px) {
  .commute-cta { grid-template-columns: 1.3fr 1fr; }
}

.commute-cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 22px 0 0;
}

.commute-cta h2 em {
  color: var(--accent);
  font-style: italic;
}

@media (max-width: 640px) {
  .project-hero { padding-top: 122px; }
  .project-panel { min-height: 420px; }
  .tax-panel { padding: 24px; }
  .tax-doc { width: 230px; }
  .tax-badge { width: 108px; height: 108px; right: 8%; }
  .line-preview { grid-template-columns: repeat(5, auto); justify-content: space-between; }
  .line-preview i { display: none; }
  .project-facts div { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .project-facts div:last-child { border-bottom: 0; }
}
