@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Inter+Tight:wght@400;500;600;700&family=Shippori+Mincho:ital,wght@0,400;0,700;1,400&family=IBM+Plex+Mono:wght@400;500;600&family=Noto+Sans+JP:wght@400;500;700;900&family=Noto+Sans+Mono+JP:wght@400;500;700&display=swap');

:root {
  --c-paper: #F2F4F0;
  --c-indigo: #14233A;
  --c-indigo-12: rgba(20, 35, 58, 0.12);
  --c-indigo-18: rgba(20, 35, 58, 0.18);
  --c-indigo-70: rgba(20, 35, 58, 0.70);
  --c-indigo-80: rgba(20, 35, 58, 0.80);
  --c-indigo-90: rgba(20, 35, 58, 0.90);
  --c-signal: #F5C518;
  --c-signal-08: rgba(245, 197, 24, 0.08);
  --c-signal-12: rgba(245, 197, 24, 0.12);
  --c-signal-18: rgba(245, 197, 24, 0.18);
  --c-signal-24: rgba(245, 197, 24, 0.24);
  --c-cobalt: #2A6FB5;
  --c-teal: #4A8B8B;
  --c-sage: #B5C8B5;
  --c-sage-18: rgba(181, 200, 181, 0.18);
  --c-moss: #3D6B4F;
  --c-white: #FFFFFF;
  --c-graphite: #5C6878;
  --c-divider: #DCE3E0;
  --f-display: 'Inter', 'Noto Sans JP', sans-serif;
  --f-tight: 'Inter Tight', 'Noto Sans JP', sans-serif;
  --f-mincho: 'Shippori Mincho', 'Noto Sans JP', serif;
  --f-mono: 'IBM Plex Mono', 'Noto Sans Mono JP', monospace;
  --f-jp: 'Noto Sans JP', sans-serif;
  --shadow-soft: 4px 8px 0 0 rgba(20, 35, 58, 0.06), 8px 16px 28px rgba(20, 35, 58, 0.04);
  --shadow-hover: 12px 24px 0 0 rgba(245, 197, 24, 0.24);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  font-family: var(--f-tight);
  background: var(--c-paper);
  color: var(--c-indigo);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

strong, p { color: inherit; }

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

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

button { font-family: inherit; cursor: pointer; }

.fluid-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: var(--c-paper);
}

.fluid-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(180px);
  opacity: 0.34;
  will-change: transform;
}

.fluid-blob.b1 { width: 900px; height: 900px; background: var(--c-cobalt); top: -120px; left: 10%; animation: drift1 48s ease-in-out infinite; }
.fluid-blob.b2 { width: 750px; height: 750px; background: var(--c-teal); top: 35%; right: -150px; animation: drift2 52s ease-in-out infinite; }
.fluid-blob.b3 { width: 800px; height: 800px; background: var(--c-signal); bottom: -180px; left: 30%; opacity: 0.28; animation: drift3 56s ease-in-out infinite; }
.fluid-blob.b4 { width: 700px; height: 700px; background: var(--c-sage); top: 60%; left: -180px; opacity: 0.32; animation: drift4 44s ease-in-out infinite; }

@keyframes drift1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(28px, 32px); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-22px, 26px); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px, -24px); } }
@keyframes drift4 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-26px, -28px); } }

.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.left-dock {
  position: fixed;
  left: 24px;
  top: 32px;
  bottom: 32px;
  width: 280px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--c-indigo-12);
  border-radius: 18px;
  box-shadow: 6px 0 24px rgba(20, 35, 58, 0.08);
  z-index: 50;
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
  transition: width 320ms var(--ease-out);
}

.left-dock.collapsed { width: 80px; padding: 24px 14px; }

.dock-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  min-height: 56px;
}

.brand-pipe-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  position: relative;
  border: 2px solid var(--c-indigo);
  border-radius: 50%;
  background: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.left-dock.collapsed .brand-pipe-icon { width: 44px; height: 44px; }

.brand-pipe-icon::before {
  content: '';
  position: absolute;
  top: 4px; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 5px;
  background: var(--c-signal);
  border-radius: 2px;
}

.brand-pipe-icon::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 4px;
  border-radius: 2px;
  background: var(--c-cobalt);
  box-shadow: 0 -5px 0 var(--c-cobalt), 0 5px 0 var(--c-cobalt);
}

.brand-titles { display: flex; flex-direction: column; line-height: 1.05; }

.brand-domain {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 800;
  font-stretch: 130%;
  letter-spacing: -0.02em;
  color: var(--c-indigo);
}

.left-dock.collapsed .brand-domain { font-size: 12px; font-weight: 700; letter-spacing: -0.01em; }

.brand-jp {
  font-family: var(--f-mincho);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--c-indigo-70);
  margin-top: 4px;
  text-transform: uppercase;
}

.brand-jp .accent { color: var(--c-signal); }

.left-dock.collapsed .brand-titles { display: none; }
.left-dock.collapsed .brand-domain { display: block; }

.dock-divider {
  height: 1px;
  background: var(--c-indigo-18);
  margin: 0 0 18px 0;
}

.dock-nav {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 0;
}

.dock-link {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 52px;
  padding: 0 16px;
  border-radius: 12px;
  position: relative;
  color: var(--c-indigo);
  transition: all 280ms var(--ease-spring);
  border-bottom: 1px solid rgba(20, 35, 58, 0.10);
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dock-link:last-child { border-bottom: none; }

.dock-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 4px;
  background: transparent;
  border-radius: 2px;
  transition: background 280ms var(--ease-out);
}

.dock-link:hover, .dock-link.active {
  background: var(--c-signal-08);
  color: var(--c-signal);
  transform: translateX(6px);
}

.dock-link:hover::before, .dock-link.active::before { background: var(--c-signal); }

.dock-link-num {
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-indigo-70);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  width: 32px;
}

.left-dock.collapsed .dock-link-label, .left-dock.collapsed .dock-link-jp { display: none; }
.left-dock.collapsed .dock-link { justify-content: center; padding: 0; }
.left-dock.collapsed .dock-link-num { width: auto; }

.dock-foot {
  margin-top: 18px;
  border-top: 1px solid var(--c-indigo-18);
  padding-top: 18px;
}

.dock-status {
  background: rgba(20, 35, 58, 0.04);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.18em;
  color: var(--c-indigo-80);
  text-transform: uppercase;
  white-space: pre-line;
}

.left-dock.collapsed .dock-foot { display: none; }

.dock-toggle {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 64px;
  background: var(--c-indigo);
  color: var(--c-signal);
  border: none;
  border-radius: 0 8px 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 14px;
  cursor: pointer;
}

.dock-vertical-tag {
  position: absolute;
  right: -36px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: left center;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--c-indigo-70);
  text-transform: uppercase;
  white-space: nowrap;
}

.left-dock.collapsed .dock-vertical-tag { display: none; }

.mobile-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: var(--c-white);
  border-bottom: 2px solid var(--c-indigo);
  z-index: 60;
  padding: 0 18px;
  align-items: center;
  justify-content: space-between;
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-grow: 1;
  min-width: 0;
}

.mobile-brand-pipe { width: 36px; height: 36px; flex-shrink: 0; border: 2px solid var(--c-indigo); border-radius: 50%; position: relative; background: var(--c-white); }
.mobile-brand-pipe::before { content: ''; position: absolute; top: 3px; left: 50%; transform: translateX(-50%); width: 18px; height: 4px; background: var(--c-signal); border-radius: 2px; }
.mobile-brand-pipe::after { content: ''; position: absolute; bottom: 7px; left: 50%; transform: translateX(-50%); width: 14px; height: 3px; border-radius: 2px; background: var(--c-cobalt); box-shadow: 0 -4px 0 var(--c-cobalt), 0 4px 0 var(--c-cobalt); }

.mobile-brand-text { display: flex; flex-direction: column; line-height: 1.05; min-width: 0; }
.mobile-brand-domain { font-family: var(--f-display); font-size: 14px; font-weight: 800; letter-spacing: -0.01em; color: var(--c-indigo); text-transform: lowercase; }
.mobile-brand-jp { font-family: var(--f-jp); font-size: 9px; font-weight: 700; letter-spacing: 0.06em; color: var(--c-indigo-70); text-transform: uppercase; }

.mobile-burger {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 8px;
  flex-shrink: 0;
}

.mobile-burger span { display: block; width: 22px; height: 2px; background: var(--c-indigo); border-radius: 2px; transition: transform 280ms var(--ease-out); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top left, var(--c-white) 0%, var(--c-paper) 60%);
  z-index: 70;
  padding: 80px 28px 40px;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 520ms var(--ease-out);
  overflow-y: auto;
}

.mobile-overlay.open { transform: translateY(0); }

.mobile-overlay-head { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.mobile-overlay-head .mobile-brand-pipe { width: 40px; height: 40px; }
.mobile-overlay-head .mobile-brand-domain { font-size: 18px; }
.mobile-overlay-head .mobile-brand-jp { font-size: 11px; }

.mobile-overlay-title { font-family: var(--f-display); font-size: 56px; font-weight: 800; color: var(--c-indigo); letter-spacing: -0.02em; line-height: 1; margin-bottom: 32px; font-stretch: 130%; }

.mobile-overlay-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.mobile-overlay-list a { font-family: var(--f-display); font-size: 28px; font-weight: 700; color: var(--c-indigo); text-transform: uppercase; letter-spacing: 0.02em; display: flex; align-items: baseline; gap: 16px; }
.mobile-overlay-list .jp { font-family: var(--f-mincho); font-size: 14px; color: var(--c-indigo-70); text-transform: none; letter-spacing: 0.04em; }

.mobile-close {
  position: fixed;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  background: var(--c-indigo);
  color: var(--c-signal);
  border: none;
  border-radius: 12px;
  font-size: 22px;
  z-index: 80;
}

.app-shell {
  margin-left: 328px;
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

.kinetic-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(36px);
  filter: blur(8px);
  transition: opacity 820ms var(--ease-out), transform 820ms var(--ease-out), filter 820ms var(--ease-out);
  will-change: transform, opacity, filter;
}

.kinetic-letter.in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.section-line {
  height: 2px;
  width: 100%;
  background: var(--c-signal);
}

.hairline {
  height: 1px;
  background: var(--c-indigo-18);
}

.dashed-divider {
  height: 0;
  border-top: 1px dashed var(--c-indigo-18);
  position: relative;
}

.dashed-divider::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-signal);
}

.diagnostic-tile {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--c-white);
  border: 1.5px solid var(--c-indigo-18);
  box-shadow: var(--shadow-soft);
  transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out), z-index 0ms, border-color 320ms var(--ease-out);
}

.diagnostic-tile:hover {
  transform: scale(1.04);
  z-index: 10;
  border-color: var(--c-signal);
  box-shadow: var(--shadow-hover);
}

.diagnostic-tile img { width: 100%; height: 100%; object-fit: cover; }

.mono-pill {
  display: inline-block;
  background: var(--c-signal);
  color: var(--c-indigo);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 4px;
}

.mono-data {
  font-family: var(--f-mono);
  color: var(--c-indigo);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cta-brutal {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--c-signal);
  color: var(--c-indigo);
  border: 2px solid var(--c-indigo);
  border-radius: 14px;
  padding: 22px 30px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 6px 6px 0 0 var(--c-indigo);
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
  white-space: nowrap;
  min-height: 56px;
}

.cta-brutal:hover {
  transform: translate(4px, 4px);
  box-shadow: 10px 10px 0 0 var(--c-indigo);
}

.cta-brutal.outline {
  background: transparent;
  color: var(--c-indigo);
  border: 2px solid var(--c-indigo);
  box-shadow: none;
}

.cta-brutal.outline:hover { background: var(--c-indigo); color: var(--c-signal); transform: translate(2px, 2px); box-shadow: 4px 4px 0 0 var(--c-signal); }

.cta-brutal.dark {
  background: var(--c-indigo);
  color: var(--c-signal);
  border-color: var(--c-indigo);
  box-shadow: 6px 6px 0 0 var(--c-signal);
}

.cta-brutal.dark:hover { box-shadow: 10px 10px 0 0 var(--c-signal); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.section-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-signal);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
}

.h-display-xl {
  font-family: var(--f-display);
  font-size: clamp(54px, 9vw, 132px);
  font-weight: 800;
  font-stretch: 140%;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--c-indigo);
  margin: 0;
}

.h-display-lg {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 92px);
  font-weight: 800;
  font-stretch: 130%;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--c-indigo);
}

.h-display-md {
  font-family: var(--f-display);
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 800;
  font-stretch: 120%;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-indigo);
}

.h-jp-quote {
  font-family: var(--f-mincho);
  font-style: italic;
  font-weight: 400;
  color: var(--c-cobalt);
  font-size: 22px;
  line-height: 1.5;
}

.lead-text {
  font-family: var(--f-tight);
  font-size: 17px;
  line-height: 1.7;
  color: var(--c-indigo);
}

.surface-paper { background: var(--c-paper); }
.surface-white { background: var(--c-white); }

.cookie-banner {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 90;
  max-width: 380px;
  background: var(--c-white);
  border: 1.5px solid var(--c-indigo);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 12px 32px rgba(20, 35, 58, 0.18);
}

.cookie-banner h4 { font-family: var(--f-display); font-size: 14px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-indigo); margin-bottom: 8px; }
.cookie-banner p { font-family: var(--f-tight); font-size: 12px; line-height: 1.55; color: var(--c-indigo-80); margin-bottom: 12px; }
.cookie-banner .cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-banner button {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1.5px solid var(--c-indigo);
  cursor: pointer;
  flex: 1;
  min-width: 100px;
}

.cookie-banner button.accept { background: var(--c-signal); color: var(--c-indigo); }
.cookie-banner button.decline { background: transparent; color: var(--c-indigo); }
.cookie-banner a { color: var(--c-cobalt); text-decoration: underline; font-weight: 600; }

.site-footer {
  position: relative;
  z-index: 3;
  background: var(--c-indigo);
  color: var(--c-white);
  padding: 80px 40px 40px;
  margin-top: 80px;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.site-footer h5 {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-signal);
  margin-bottom: 16px;
}

.site-footer .footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.site-footer .footer-brand .brand-pipe-icon { width: 44px; height: 44px; border-color: var(--c-signal); background: rgba(245, 197, 24, 0.08); }
.site-footer .footer-brand .brand-pipe-icon::before { background: var(--c-signal); }
.site-footer .footer-brand .brand-domain { color: var(--c-white); font-size: 18px; }
.site-footer .footer-brand .brand-jp { color: rgba(255, 255, 255, 0.7); }
.site-footer .footer-brand .brand-jp .accent { color: var(--c-signal); }

.site-footer p, .site-footer li, .site-footer a { color: var(--c-white); font-family: var(--f-tight); font-size: 13px; line-height: 1.7; }
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.site-footer a:hover { color: var(--c-signal); }
.site-footer address { font-style: normal; color: rgba(255,255,255,0.85); }

.site-footer .footer-copy {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  margin-top: 32px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.legal-page {
  padding: 80px 0 40px;
  max-width: 820px;
  margin: 0 auto;
}

.legal-page h1 {
  font-family: var(--f-display);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  color: var(--c-indigo);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.legal-page h2 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-indigo);
  margin-top: 32px;
  margin-bottom: 10px;
}

.legal-page p, .legal-page li {
  font-family: var(--f-tight);
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-indigo);
  margin-bottom: 12px;
}

.legal-page ul { padding-left: 24px; margin-bottom: 16px; }

.thanks-card {
  margin: 80px auto;
  max-width: 640px;
  background: var(--c-white);
  border: 1.5px solid var(--c-indigo);
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 3;
}

.thanks-card .check-mark {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--c-signal);
  color: var(--c-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  font-weight: 800;
  box-shadow: 6px 6px 0 0 var(--c-indigo);
}

.thanks-card h1 {
  font-family: var(--f-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--c-indigo);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.thanks-card p {
  font-family: var(--f-tight);
  font-size: 17px;
  line-height: 1.7;
  color: var(--c-indigo-80);
  margin-bottom: 24px;
}

.thanks-card .mono-data { display: block; margin-bottom: 24px; }

@media (max-width: 1100px) {
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .left-dock { display: none; }
  .mobile-bar { display: flex; }
  .app-shell { margin-left: 0; padding-top: 64px; }
  .site-footer { padding: 56px 24px 32px; }
  .site-footer .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .thanks-card { margin: 32px 20px; padding: 40px 28px; }
  .thanks-card h1 { font-size: 28px; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; max-width: none; }
}

@media (min-width: 901px) {
  .mobile-bar { display: none; }
  .mobile-overlay { display: none; }
}
@media (max-width: 900px) and (min-width: 641px) {
  .hero-section { padding: 60px 30px 40px !important; }
  .hero-main-grid { grid-template-columns: 1fr 1fr !important; gap: 32px !important; }
  .hero-grid { height: 420px !important; }
  .hero-grid .diagnostic-tile { transform: scale(0.85); transform-origin: top left; }
}
@media (max-width: 640px) {
  .h-display-xl { font-size: clamp(32px, 10vw, 64px); }
  .h-display-lg { font-size: clamp(28px, 8vw, 48px); }
  .h-display-md { font-size: clamp(22px, 6vw, 32px); }
  section { padding: 60px 20px !important; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-section { padding: 60px 20px 40px !important; }
  .hero-main-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .hero-content { order: 1; }
  .hero-grid { display: flex !important; flex-direction: column; height: auto !important; order: 2; }
  .hero-grid .diagnostic-tile { position: relative !important; left: auto !important; top: auto !important; width: 100% !important; height: 200px !important; margin-bottom: 12px; }
  .hero-grid .diagnostic-tile:last-child { display: none; }
  .reasons-grid { grid-template-columns: 1fr !important; }
  .company-grid { grid-template-columns: 1fr !important; }
  .company-grid > div:first-child { position: relative !important; top: auto !important; }
  .contact-buttons { flex-direction: column; }
  .contact-buttons .cta-brutal { width: 100%; justify-content: center; }
}
