:root {
  --ink: #0f1115;
  --charcoal: #151922;
  --charcoal-2: #171c26;
  --panel: #1b2130;
  --panel-2: #222a3a;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f5f7fa;
  --muted: #aab2c0;
  --soft: #7f8999;
  --accent: #4f8cff;
  --accent-hover: #7aa8ff;
  --sage: #7f8999;
  --cream: #f5f7fa;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --max: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  overflow: hidden;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(79, 140, 255, 0.11), transparent 32rem),
    linear-gradient(180deg, #0f1115 0%, #151922 38%, #0f1115 100%);
}

.container {
  width: calc(100% - 40px);
  max-width: var(--max);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  background: var(--accent);
  color: #07101f;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 17, 21, 0.84);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 1;
}

.brand-logo {
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-logo-full {
  width: 164px;
  max-width: 42vw;
}

.brand-logo-icon {
  width: 38px;
  display: none;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 12px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.nav-action {
  display: none;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 19px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.menu-icon::before {
  transform: translateY(-7px);
}

.menu-icon::after {
  transform: translateY(5px);
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  padding: 10px 0 18px;
}

.mobile-panel.is-open {
  display: block;
}

.mobile-panel a {
  display: block;
  border-radius: 7px;
  color: var(--muted);
  font-weight: 800;
  padding: 13px 4px;
}

.mobile-panel .button {
  justify-content: center;
  margin-top: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 12px 18px;
  font-size: 0.93rem;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--accent);
  color: #07101f;
  box-shadow: 0 12px 34px rgba(79, 140, 255, 0.22);
}

.button.primary:hover {
  background: var(--accent-hover);
}

.button.secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button.secondary:hover {
  border-color: rgba(122, 168, 255, 0.5);
  background: rgba(79, 140, 255, 0.1);
}

.button.nav-action {
  display: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-hover);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero {
  padding: 64px 0 42px;
}

.hero-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
  max-width: 720px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.75rem, 10vw, 5.75rem);
  line-height: 0.98;
  font-weight: 900;
}

.hero h1 {
  font-size: clamp(2.75rem, 7.4vw, 5rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 5.5vw, 3.05rem);
  line-height: 1.08;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.18rem, 4vw, 1.48rem);
  line-height: 1.22;
  font-weight: 850;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 3vw, 1.24rem);
  max-width: 690px;
}

.positioning-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  max-width: 680px;
}

.positioning-strip span {
  border: 1px solid rgba(122, 168, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.stat {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.stat strong {
  display: block;
  color: var(--text);
  font-size: 1.45rem;
  line-height: 1;
}

.stat span {
  color: var(--soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-media {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-projects {
  display: grid;
  gap: 12px;
  padding: 12px;
}

.hero-browser {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 17, 21, 0.82);
}

.hero-browser-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  padding: 11px 13px;
}

.hero-browser-bar span,
.hero-browser-bar strong {
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-browser-bar span {
  color: var(--muted);
}

.hero-browser-bar strong {
  color: var(--accent-hover);
}

.hero-showcase {
  display: grid;
  gap: 10px;
  padding: 10px;
}

.hero-supporting {
  display: grid;
  gap: 10px;
}

.hero-project {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
}

.hero-project img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center top;
}

.hero-project-featured img {
  aspect-ratio: 16 / 9;
}

.hero-project-secondary {
  display: none;
}

.hero-project figcaption {
  display: none;
}

.hero-project figcaption span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.hero-project figcaption strong {
  color: var(--text);
  font-size: 0.93rem;
}

.media-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: rgba(15, 17, 21, 0.78);
  backdrop-filter: blur(14px);
  padding: 12px 14px;
}

.media-caption span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.media-caption strong {
  color: var(--accent-hover);
  font-size: 0.94rem;
}

.section {
  padding: 74px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.section.alt {
  background: var(--charcoal);
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.section-head p {
  color: var(--muted);
  max-width: 680px;
  font-size: 1.05rem;
}

.split-head {
  display: grid;
  gap: 20px;
  align-items: end;
}

.grid {
  display: grid;
  gap: 16px;
}

.cards-3 {
  grid-template-columns: 1fr;
}

.cards-2 {
  grid-template-columns: 1fr;
}

.cards-4 {
  grid-template-columns: 1fr;
}

.card,
.service-card,
.case-card,
.faq-item,
.contact-panel,
.value-card,
.step-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(27, 33, 48, 0.96), rgba(27, 33, 48, 0.82));
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.card:hover,
.service-card:hover,
.case-card:hover,
.value-card:hover,
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(122, 168, 255, 0.34);
  background: linear-gradient(180deg, rgba(31, 39, 58, 0.98), rgba(27, 33, 48, 0.9));
}

.service-card,
.card,
.value-card,
.step-card {
  padding: 24px;
}

.service-card h2,
.step-card h2 {
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  line-height: 1.16;
}

.service-card .icon,
.card .icon,
.value-card .icon {
  display: none;
}

.card p,
.service-card p,
.case-card p,
.faq-item p,
.value-card p,
.step-card p {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.feature-list li::before {
  color: var(--accent-hover);
  content: "+";
  font-weight: 900;
}

.case-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.case-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center top;
  border-bottom: 1px solid var(--line);
}

.case-card:nth-child(1) .browser-frame img {
  object-position: center top;
}

.case-card:nth-child(2) .browser-frame img {
  object-position: center top;
}

.case-card:nth-child(3) .browser-frame img {
  object-position: center top;
}

.browser-frame {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #0b0d12;
}

.browser-frame::before {
  display: none;
}

.browser-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
  border-bottom: 0;
}

#summit .browser-frame img {
  object-position: center 34%;
}

#auto-detailing .browser-frame img {
  object-position: center 18%;
}

#volt-electrical .browser-frame img,
#blackline .browser-frame img {
  object-position: center top;
}

.browser-frame.large {
  width: min(100%, 980px);
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.project-showcase {
  width: min(100%, 980px);
  display: grid;
  gap: 14px;
  margin-inline: auto;
}

.showcase-supporting {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.showcase-primary.browser-frame.large {
  width: 100%;
}

.showcase-primary img {
  aspect-ratio: 16 / 9;
}

.showcase-secondary {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.showcase-secondary img {
  aspect-ratio: 16 / 9;
}

.showcase-mobile {
  width: min(100%, 420px);
  justify-self: center;
}

.showcase-mobile img,
.project-feature .showcase-mobile img {
  aspect-ratio: 9 / 12;
  object-fit: cover;
  object-position: center top;
}

.showcase-supporting:not(.showcase-supporting-single) .showcase-mobile {
  width: 100%;
}

.showcase-supporting:not(.showcase-supporting-single) .showcase-mobile img,
.project-feature .showcase-supporting:not(.showcase-supporting-single) .showcase-mobile img {
  aspect-ratio: 16 / 9;
}

#summit .shot-summit-home {
  object-position: center top;
}

#summit .shot-summit-projects {
  object-position: center top;
}

#auto-detailing .shot-auto-home {
  object-position: center top;
}

#volt-electrical .shot-volt-home {
  object-position: center top;
}

#blackline .shot-blackline-home {
  object-position: center top;
}

.shot-mobile-preview {
  object-fit: cover;
  object-position: center top;
  background: #0b0d12;
}

.concept-visual {
  min-height: 258px;
  display: grid;
  place-items: center;
  gap: 8px;
  align-content: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(79, 140, 255, 0.14), transparent 42%),
    linear-gradient(180deg, #1b2130, #151922);
  padding: 28px;
  text-align: center;
}

.concept-visual span {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(122, 168, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(79, 140, 255, 0.1);
  color: var(--accent-hover);
  font-size: 1.45rem;
  font-weight: 900;
}

.concept-visual strong {
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1.1;
}

.concept-visual em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.case-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.case-content .text-link {
  margin-top: auto;
}

.case-improvement {
  display: grid;
  gap: 3px;
  margin: 18px 0 16px;
  border-left: 2px solid var(--accent);
  background: rgba(255, 255, 255, 0.035);
  padding: 12px 14px;
}

.case-improvement strong {
  color: var(--text);
  font-size: 0.9rem;
}

.case-improvement span {
  color: var(--muted);
  font-size: 0.92rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-hover);
  font-weight: 900;
  transition: color 180ms ease, transform 180ms ease;
}

.text-link::after {
  content: ">";
  font-size: 0.88em;
}

.text-link:hover {
  color: var(--cream);
  transform: translateX(2px);
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.pill {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 10px;
}

.case-detail {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.case-thinking {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  padding: 18px;
}

.case-detail strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.process-line {
  position: relative;
  display: grid;
  gap: 16px;
}

.step-card {
  position: relative;
}

.cta-band {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(122, 168, 255, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(79, 140, 255, 0.18), transparent 45%),
    linear-gradient(180deg, #1b2130, #151922);
  padding: 34px 24px;
}

.cta-band p {
  color: var(--muted);
  max-width: 700px;
}

.page-hero {
  padding: 64px 0 40px;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 7.2vw, 4.05rem);
}

.compact-hero h1 {
  max-width: 920px;
  font-size: clamp(2.08rem, 6.4vw, 3.65rem);
}

.page-hero .lead {
  max-width: 800px;
}

.portfolio-layout {
  display: grid;
  gap: 26px;
}

.portfolio-note,
.portfolio-disclaimer {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(27, 33, 48, 0.72);
  padding: 18px 20px;
}

.portfolio-note {
  max-width: 860px;
  margin-top: 28px;
}

.portfolio-note strong,
.portfolio-disclaimer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.portfolio-note p,
.portfolio-disclaimer p {
  margin-bottom: 0;
  color: var(--muted);
}

.project-feature {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
}

.project-media {
  position: relative;
  min-height: auto;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 72% 78%, rgba(79, 140, 255, 0.12), transparent 14rem),
    linear-gradient(180deg, #151922, #10131a);
}

.project-feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.project-feature .shot-mobile-preview {
  object-fit: cover;
  object-position: center top;
  background: #0b0d12;
}

.project-body {
  padding: 24px;
}

.project-cta {
  margin-top: 24px;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 20px;
}

.metric {
  border-left: 2px solid var(--accent);
  background: rgba(255, 255, 255, 0.04);
  padding: 14px 16px;
}

.metric strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.1;
}

.metric span {
  color: var(--soft);
  font-size: 0.86rem;
  font-weight: 800;
}

.about-panel {
  display: grid;
  gap: 24px;
  align-items: center;
}

.founder-panel {
  display: grid;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(79, 140, 255, 0.1), transparent 46%),
    linear-gradient(180deg, rgba(27, 33, 48, 0.96), rgba(21, 25, 34, 0.92));
  padding: 24px;
}

.founder-panel > div {
  max-width: 880px;
}

.founder-panel p {
  color: var(--muted);
}

.founder-panel h2 {
  max-width: 820px;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
}

.trust-chips span {
  border: 1px solid rgba(122, 168, 255, 0.28);
  border-radius: 999px;
  background: rgba(79, 140, 255, 0.08);
  color: var(--accent-hover);
  padding: 8px 11px;
  font-size: 0.78rem;
  font-weight: 850;
}

.founder-portrait {
  min-height: 260px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(122, 168, 255, 0.26);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 34%, rgba(122, 168, 255, 0.22), transparent 9rem),
    linear-gradient(180deg, #222a3a, #151922);
}

.founder-portrait span {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(15, 17, 21, 0.52);
  color: var(--accent-hover);
  font-size: 2.5rem;
  font-weight: 900;
}

.quote-panel {
  border-left: 3px solid var(--accent);
  background: rgba(27, 33, 48, 0.78);
  padding: 24px;
}

.quote-panel p {
  color: var(--cream);
  font-size: 1.28rem;
  line-height: 1.45;
}

.contact-layout {
  display: grid;
  gap: 20px;
}

.contact-hero-grid {
  display: grid;
  gap: 22px;
  align-items: start;
}

.contact-hero-card,
.team-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(27, 33, 48, 0.96), rgba(27, 33, 48, 0.82));
  padding: 22px;
}

.contact-hero-card h2 {
  font-size: clamp(1.35rem, 4vw, 1.75rem);
}

.team-card p {
  color: var(--muted);
}

.team-label {
  display: inline-flex;
  margin-bottom: 16px;
  border: 1px solid rgba(122, 168, 255, 0.28);
  border-radius: 999px;
  color: var(--accent-hover);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 6px 10px;
}

.contact-panel {
  padding: 24px;
}

.form-intro {
  margin-bottom: 22px;
}

.reassurance-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.reassurance-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
  padding: 7px 10px;
}

.form-intro p,
.contact-note p {
  color: var(--muted);
}

.form {
  display: grid;
  gap: 18px;
}

.netlify-hidden {
  display: none;
}

.form-row {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(15, 17, 21, 0.42);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

select {
  color-scheme: dark;
}

select option {
  background: var(--panel);
  color: var(--text);
}

select option:checked {
  background: var(--accent);
  color: #ffffff;
}

input::placeholder,
textarea::placeholder {
  color: rgba(200, 193, 183, 0.58);
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(122, 168, 255, 0.68);
  background: rgba(255, 255, 255, 0.08);
}

.detail-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.detail-list span {
  display: block;
  color: var(--soft);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.detail-list strong,
.detail-list a {
  color: var(--text);
  font-size: 1rem;
}

.contact-note {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  padding: 18px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 54px 20px 20px;
  color: var(--text);
  cursor: pointer;
  font-size: 1.03rem;
  font-weight: 850;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  right: 18px;
  top: 50%;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(122, 168, 255, 0.32);
  border-radius: 7px;
  background: rgba(79, 140, 255, 0.1);
  color: var(--accent-hover);
  content: "+";
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
}

.faq-item:hover {
  border-color: rgba(122, 168, 255, 0.36);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #0b0d12;
  padding: 48px 0 30px;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-brand p,
.site-footer p {
  color: var(--muted);
  max-width: 420px;
}

.footer-brand .brand {
  margin-bottom: 10px;
}

.footer-brand .brand-logo-full {
  width: 178px;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 800;
}

.footer-bottom {
  margin-top: 4px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 0.88rem;
  max-width: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 700px) {
  .container {
    width: calc(100% - 64px);
    max-width: var(--max);
  }

  .cards-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cards-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-head,
  .about-panel,
  .contact-layout {
    grid-template-columns: 1fr 0.8fr;
  }

  .contact-hero-grid {
    grid-template-columns: 1fr 0.82fr;
  }

  .form-row,
  .metric-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-supporting {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-supporting {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-supporting-single {
    grid-template-columns: minmax(240px, 420px);
    justify-content: center;
  }

  .founder-panel {
    grid-template-columns: minmax(0, 1fr);
    padding: 34px;
  }

  .cta-band {
    padding: 44px;
  }

  .footer-grid {
    grid-template-columns: 1.35fr 0.7fr 0.9fr;
    align-items: start;
  }

  .footer-bottom {
    grid-column: 1 / -1;
  }
}

@media (min-width: 940px) {
  .nav-links,
  .button.nav-action {
    display: flex;
  }

  .menu-toggle,
  .mobile-panel {
    display: none;
  }

  .hero {
    padding: 90px 0 66px;
  }

  .hero-grid {
    grid-template-columns: 1.04fr 0.96fr;
    gap: 48px;
  }

  .hero-projects {
    padding: 18px;
  }

  .hero-showcase {
    gap: 12px;
    padding: 12px;
  }

  .hero-supporting {
    gap: 12px;
  }

  .hero-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .section {
    padding: 82px 0;
  }

  .cards-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .process-line {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .process-line::before {
    display: none;
  }

  .step-card {
    min-height: 280px;
  }

  .portfolio-layout {
    gap: 34px;
  }

  .project-feature {
    display: block;
  }

  .project-media {
    min-height: auto;
    padding: 36px;
  }

  .project-concept-visual {
    min-height: 520px;
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }

  .project-body {
    padding: 38px;
  }
}

@media (max-width: 520px) {
  .container {
    width: 320px;
    max-width: calc(100vw - 40px);
    margin-inline: 20px;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.35rem);
    line-height: 1.04;
  }

  .page-hero h1 {
    max-width: 13.5ch;
  }

  .hero h1 {
    max-width: 13ch;
  }

  .hero .lead {
    max-width: 32ch;
  }

  .page-hero .lead,
  .portfolio-note,
  .portfolio-disclaimer,
  .portfolio-layout,
  .project-feature,
  .project-media,
  .browser-frame {
    width: 320px;
    max-width: 100%;
    min-width: 0;
  }

  .page-hero .lead,
  .portfolio-note p,
  .portfolio-disclaimer p,
  .case-detail p,
  .metric span {
    overflow-wrap: anywhere;
  }

  .portfolio-note,
  .portfolio-disclaimer {
    padding: 16px;
  }

  .project-media {
    min-height: auto;
    padding: 14px;
  }

  .hero {
    padding-top: 50px;
  }

  .lead {
    font-size: 1rem;
  }

  .media-caption {
    position: static;
    border-inline: 0;
    border-bottom: 0;
    border-radius: 0;
  }

  .hero-projects {
    padding-bottom: 0;
  }

  .hero-project figcaption {
    display: none;
  }

  .founder-panel h2 {
    font-size: clamp(1.65rem, 8vw, 2.05rem);
  }
}

@media (max-width: 360px) {
  .brand-logo-full {
    display: none;
  }

  .brand-logo-icon {
    display: block;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
