@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --ink: #1d2421;
  --paper: #f3f0e9;
  --muted: #6e756d;
  --line: rgba(29, 36, 33, 0.14);
  --accent: #ed8067;
  --accent-deep: #ba5947;
  --soft-accent: #f7b09a;
}

* { box-sizing: border-box; }

html { min-width: 320px; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Space Grotesk', sans-serif;
}

.maintenance-page {
  min-height: 100vh;
  padding: 30px clamp(24px, 5vw, 76px) 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.site-header, .site-footer, .hero { position: relative; z-index: 1; }
.site-header, .site-footer { display: flex; justify-content: space-between; align-items: center; }

.brand {
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand-mark { display: inline-flex; align-items: flex-end; gap: 3px; height: 20px; }
.brand-mark span { width: 4px; background: var(--accent); display: block; border-radius: 2px; }
.brand-mark span:nth-child(1) { height: 10px; }
.brand-mark span:nth-child(2) { height: 16px; }
.brand-mark span:nth-child(3) { height: 20px; }

.status-pill, .eyebrow, .panel-topline, .caption-label, .panel-footer, .site-footer {
  font-family: 'DM Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-pill { font-size: 10px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(237, 128, 103, 0.17); animation: pulse 2s infinite; }

.hero { flex: 1; width: min(1180px, 100%); margin: 10vh auto 7vh; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr); align-items: center; gap: clamp(42px, 10vw, 150px); }
.eyebrow { color: var(--accent-deep); font-size: 11px; display: flex; gap: 15px; align-items: center; margin: 0 0 28px; }
.eyebrow span { color: var(--muted); }
h1 { font-size: clamp(3.6rem, 7vw, 7.5rem); letter-spacing: -0.075em; line-height: 0.9; font-weight: 600; margin: 0; max-width: 780px; }
h1 em { color: var(--accent); font-style: normal; }
.intro { color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.15rem); line-height: 1.55; max-width: 500px; margin: 32px 0 38px; }
.contact-link { color: var(--ink); display: inline-grid; grid-template-columns: auto auto auto; align-items: center; column-gap: 9px; text-decoration: none; border-bottom: 1px solid var(--ink); padding-bottom: 9px; font-size: 14px; transition: color 180ms ease, border-color 180ms ease; }
.contact-link strong { font-weight: 600; }
.contact-link:hover, .contact-link:focus-visible { color: var(--accent-deep); border-color: var(--accent-deep); }
.arrow { font-size: 21px; line-height: 12px; margin-left: 8px; }

.signal-panel { justify-self: end; width: min(100%, 410px); aspect-ratio: 0.86; background: var(--ink); color: var(--paper); padding: 21px; display: flex; flex-direction: column; box-shadow: 19px 19px 0 var(--soft-accent); animation: appear 700ms both; }
.panel-topline { color: #aab0a9; display: flex; justify-content: space-between; font-size: 9px; }
.orbital-mark { position: relative; flex: 1; min-height: 220px; display: grid; place-items: center; margin: 10px 0; }
.orbit { position: absolute; border: 1px solid rgba(243, 240, 233, 0.36); border-radius: 50%; transform: rotate(-28deg); }
.orbit-one { width: 65%; height: 44%; }
.orbit-two { width: 72%; height: 68%; transform: rotate(51deg); }
.orbit-three { width: 45%; height: 88%; transform: rotate(74deg); }
.core { width: 73px; height: 73px; border: 1px solid var(--accent); border-radius: 50%; display: grid; place-items: center; animation: breathe 3s ease-in-out infinite; }
.core span { width: 29px; height: 29px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 30px 8px rgba(237, 128, 103, 0.34); }
.panel-caption { display: flex; justify-content: space-between; align-items: end; border-top: 1px solid rgba(243, 240, 233, 0.22); padding-top: 16px; }
.caption-label { color: #aab0a9; font-size: 9px; }
.caption-value { color: var(--soft-accent); font-size: 14px; }
.progress-line { height: 2px; background: #434a45; margin: 18px 0 12px; overflow: hidden; }
.progress-line span { display: block; width: 66%; height: 100%; background: var(--accent); animation: progress 2.8s ease-in-out infinite alternate; }
.panel-footer { color: #aab0a9; display: flex; justify-content: space-between; font-size: 9px; }
.site-footer { color: var(--muted); font-size: 9px; border-top: 1px solid var(--line); padding-top: 17px; }
.footer-note { color: var(--accent-deep); }

@keyframes pulse { 50% { opacity: 0.45; transform: scale(0.8); } }
@keyframes breathe { 50% { transform: scale(1.07); } }
@keyframes progress { from { width: 45%; } to { width: 78%; } }
@keyframes appear { from { opacity: 0; transform: translateY(18px) rotate(2deg); } to { opacity: 1; transform: translateY(0) rotate(0); } }

@media (max-width: 760px) {
  .maintenance-page { padding: 24px 20px 18px; }
  .status-pill { font-size: 8px; }
  .hero { margin: 10vh auto 12vh; grid-template-columns: 1fr; gap: 62px; }
  h1 { font-size: clamp(3.15rem, 15vw, 5.5rem); }
  .intro { margin: 25px 0 31px; }
  .signal-panel { justify-self: center; width: min(100%, 350px); box-shadow: 12px 12px 0 var(--soft-accent); }
  .site-footer { font-size: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* Pitlane product landing */
:root { --ink: #10252d; --paper: #f6f4ee; --muted: #687476; --line: rgba(16, 37, 45, .13); --accent: #ef714d; --accent-deep: #c65337; --soft-accent: #f9c4a6; }
html { scroll-behavior: smooth; }
body { background: var(--paper); font-family: 'Manrope', sans-serif; }
.landing-page { min-height: 100vh; padding: 30px clamp(24px, 5vw, 76px) 24px; display: flex; flex-direction: column; overflow: hidden; position: relative; }
.site-header, .site-footer, .hero, .feature-strip { position: relative; z-index: 1; }
.brand { letter-spacing: -.06em; font-weight: 800; }.brand-dot { color: var(--accent); }
.main-nav { display: flex; gap: clamp(18px, 3vw, 42px); margin-left: auto; margin-right: clamp(22px, 4vw, 55px); }.main-nav a, .login-link { color: var(--muted); font-size: 12px; text-decoration: none; transition: color 180ms ease; }.main-nav a:hover, .login-link:hover { color: var(--accent-deep); }.login-link { color: var(--ink); font-weight: 700; }.login-link span { color: var(--accent); font-size: 16px; margin-left: 5px; }
.hero { flex: 1; width: min(1240px, 100%); margin: clamp(76px, 11vh, 140px) auto 94px; display: grid; grid-template-columns: minmax(0, .78fr) minmax(560px, 1.22fr); align-items: center; gap: clamp(46px, 7vw, 110px); }.eyebrow { color: var(--accent-deep); font-size: 10px; display: flex; gap: 11px; align-items: center; margin: 0 0 28px; }.eyebrow-line { width: 32px; height: 1px; background: var(--accent); }.hero h1 { font-size: clamp(4.2rem, 7.2vw, 7.6rem); letter-spacing: -.085em; line-height: .88; font-weight: 800; margin: 0; max-width: 600px; }.hero h1 em { color: var(--accent); font-style: normal; }.intro { color: var(--muted); font-size: clamp(1rem, 1.35vw, 1.12rem); line-height: 1.6; max-width: 475px; margin: 34px 0 31px; }
.hero-actions { display: flex; align-items: center; gap: 23px; flex-wrap: wrap; }.primary-button { background: var(--accent); color: white; padding: 16px 20px; font-size: 12px; font-weight: 800; text-decoration: none; box-shadow: 5px 5px 0 var(--ink); transition: transform 180ms ease, box-shadow 180ms ease; }.primary-button:hover, .primary-button:focus-visible { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--ink); }.primary-button span { font-size: 17px; margin-left: 16px; }.secondary-link { color: var(--ink); font-size: 12px; font-weight: 700; text-decoration: none; border-bottom: 1px solid var(--ink); padding-bottom: 5px; }.secondary-link span { color: var(--accent); font-size: 16px; margin-left: 5px; }.trust-row { display: flex; align-items: center; gap: 8px; color: var(--muted); font: 8px 'DM Mono', monospace; text-transform: uppercase; letter-spacing: .08em; margin-top: 43px; }.trust-row .status-dot { width: 6px; height: 6px; box-shadow: none; animation: none; background: #5ca887; }.trust-divider { width: 1px; height: 12px; background: var(--line); margin: 0 6px; }
.dashboard-shell { min-width: 0; background: white; color: var(--ink); box-shadow: 18px 18px 0 var(--soft-accent); transform: rotate(1.2deg); animation: appear 700ms both; }.dashboard-topbar { height: 35px; padding: 0 15px; background: #e6eeea; color: #71807d; display: flex; align-items: center; justify-content: space-between; font: 7px 'DM Mono', monospace; letter-spacing: .08em; text-transform: uppercase; }.window-dots { display: flex; gap: 4px; }.window-dots i { display: block; width: 5px; height: 5px; border-radius: 50%; background: #b2c2bb; }.window-dots i:first-child { background: var(--accent); }.dashboard-body { min-height: 430px; display: grid; grid-template-columns: 145px 1fr; }.dashboard-sidebar { background: #102d36; padding: 20px 12px; color: #c6d6d1; display: flex; flex-direction: column; }.mini-brand { color: white; font-size: 13px; font-weight: 800; letter-spacing: -.06em; display: flex; align-items: center; gap: 6px; margin: 0 7px 31px; }.mini-brand .brand-mark { height: 13px; }.mini-brand .brand-mark span { width: 3px; }.mini-brand .brand-mark span:nth-child(1) { height: 6px; }.mini-brand .brand-mark span:nth-child(2) { height: 10px; }.mini-brand .brand-mark span:nth-child(3) { height: 13px; }.sidebar-label { color: #78918e; font: 7px 'DM Mono', monospace; text-transform: uppercase; letter-spacing: .08em; margin: 0 8px 9px; }.second-label { margin-top: 27px; }.side-item { color: #a8bfba; display: flex; align-items: center; gap: 9px; padding: 9px 8px; margin: 2px 0; font-size: 9px; text-decoration: none; }.side-item span { width: 13px; color: #829c97; text-align: center; font-size: 15px; }.side-item.active { color: white; background: #214952; }.side-item.active span { color: var(--soft-accent); }.side-item b { margin-left: auto; color: var(--soft-accent); font-size: 8px; }.sidebar-help { margin-top: auto; border-top: 1px solid rgba(255,255,255,.12); padding: 15px 7px 0; }.sidebar-help span { float: left; border: 1px solid #718d88; width: 16px; height: 16px; border-radius: 50%; text-align: center; margin-right: 7px; font-size: 11px; }.sidebar-help strong, .sidebar-help small { display: block; }.sidebar-help strong { font-size: 8px; color: white; margin-bottom: 3px; }.sidebar-help small { color: #78918e; font-size: 6px; line-height: 1.4; }
.dashboard-content { background: #f8faf8; padding: 24px; min-width: 0; }.dashboard-heading { display: flex; justify-content: space-between; align-items: start; gap: 15px; }.dash-kicker { margin: 0 0 6px; font: 7px 'DM Mono', monospace; color: #82908d; }.dashboard-heading h2 { font-size: 19px; letter-spacing: -.06em; margin: 0; }.dashboard-heading h2 span { color: var(--accent); font-size: 16px; }.new-order { border: 0; background: var(--accent); color: white; padding: 10px 12px; font-family: inherit; font-size: 8px; font-weight: 800; cursor: pointer; }.new-order.is-added { background: #5ca887; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin: 24px 0 19px; }.stat-card { background: white; border: 1px solid #e5eae6; padding: 12px 10px; display: flex; gap: 8px; }.stat-icon { width: 21px; height: 21px; display: grid; place-items: center; font-weight: 800; font-size: 12px; flex: 0 0 auto; }.stat-icon.orange { background: #fff0e9; color: var(--accent); }.stat-icon.green { background: #e7f3ed; color: #5ca887; }.stat-icon.blue { background: #e5eff1; color: #4a8991; }.stat-card small, .stat-card strong, .stat-card em { display: block; }.stat-card small { color: #82908d; font-size: 7px; white-space: nowrap; }.stat-card strong { font-size: 16px; letter-spacing: -.05em; margin: 4px 0 2px; }.stat-card em { color: #5ca887; font-size: 7px; font-style: normal; font-weight: 700; }.stat-card em span { color: #9ba6a2; font-weight: 500; }.stat-card em.neutral { color: #d38c53; }
.dashboard-columns { display: grid; grid-template-columns: 1.25fr .75fr; gap: 10px; }.appointments, .workload { background: white; border: 1px solid #e5eae6; padding: 15px 13px; }.section-heading { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 13px; }.section-heading h3 { font-size: 11px; margin: 0; letter-spacing: -.03em; }.section-heading a, .section-heading span { color: #80908c; font-size: 7px; text-decoration: none; }.appointment-row { min-width: 0; border-top: 1px solid #edf0ee; display: grid; grid-template-columns: 33px 26px 1fr auto; gap: 7px; align-items: center; padding: 9px 0; }.time { color: #71827e; font: 7px 'DM Mono', monospace; }.car-avatar { width: 26px; height: 26px; display: grid; place-items: center; background: #f8d2c0; color: #b6513b; border-radius: 50%; font-size: 7px; font-weight: 800; }.car-avatar.dark { background: #d5e3e1; color: #306b73; }.car-avatar.silver { background: #e7dfd1; color: #75634d; }.appointment-row strong, .appointment-row small { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }.appointment-row strong { font-size: 8px; }.appointment-row small { color: #87938f; font-size: 7px; margin-top: 3px; }.tag { font-size: 6px; padding: 4px 5px; font-weight: 700; }.tag.ready { background: #e7f3ed; color: #4f9a7b; }.tag.booked { background: #f2f1e9; color: #968e71; }.chart { height: 105px; border-bottom: 1px solid #e7ece9; display: flex; align-items: end; justify-content: space-around; gap: 7px; padding-top: 13px; background: repeating-linear-gradient(to bottom, transparent 0, transparent 25px, #eff2ef 26px); }.chart i { display: block; width: 12px; background: #c9e2da; }.chart i.today { background: var(--accent); }.chart-labels { display: flex; justify-content: space-around; color: #99a5a1; font: 7px 'DM Mono', monospace; padding-top: 8px; }
.feature-strip { width: min(1240px, 100%); margin: 0 auto 70px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; border-top: 1px solid var(--line); padding-top: 23px; }.feature-strip > div { display: grid; grid-template-columns: 35px 1fr; column-gap: 8px; }.feature-number { color: var(--accent); font: 10px 'DM Mono', monospace; }.feature-strip strong { font-size: 13px; }.feature-strip p { color: var(--muted); font-size: 11px; line-height: 1.4; margin: 6px 0 0; grid-column: 2; }.site-footer { color: var(--muted); font-size: 9px; border-top: 1px solid var(--line); padding-top: 17px; }.footer-note { color: var(--accent-deep); }
@keyframes appear { from { opacity: 0; transform: translateY(18px) rotate(2deg); } to { opacity: 1; transform: translateY(0) rotate(1.2deg); } }
@media (max-width: 1050px) { .hero { grid-template-columns: 1fr; max-width: 780px; }.hero-copy { max-width: 620px; }.dashboard-shell { width: 100%; }.feature-strip { max-width: 780px; } }
@media (max-width: 760px) { .landing-page { padding: 24px 20px 18px; }.main-nav { display: none; }.login-link { margin-left: auto; }.hero { margin: 76px auto 80px; gap: 60px; }.hero h1 { font-size: clamp(3.8rem, 17vw, 6rem); }.intro { margin: 26px 0 29px; }.trust-row { line-height: 1.7; flex-wrap: wrap; margin-top: 33px; }.dashboard-shell { box-shadow: 11px 11px 0 var(--soft-accent); transform: none; }.dashboard-topbar { font-size: 6px; }.dashboard-body { grid-template-columns: 92px 1fr; }.dashboard-sidebar { padding: 16px 8px; }.mini-brand { margin-left: 4px; font-size: 10px; }.side-item { font-size: 7px; padding: 8px 4px; gap: 5px; }.side-item span { font-size: 11px; }.sidebar-help { display: none; }.dashboard-content { padding: 16px 12px; }.dashboard-heading h2 { font-size: 14px; }.new-order { padding: 8px; font-size: 7px; }.stat-grid { gap: 5px; margin: 17px 0 12px; }.stat-card { padding: 8px 5px; gap: 4px; }.stat-card small { font-size: 5px; }.stat-card strong { font-size: 12px; }.stat-card em { font-size: 6px; }.stat-icon { width: 16px; height: 16px; font-size: 9px; }.dashboard-columns { grid-template-columns: 1fr; }.workload { display: none; }.appointment-row { grid-template-columns: 28px 22px 1fr auto; gap: 4px; }.car-avatar { width: 22px; height: 22px; }.appointment-row strong { font-size: 7px; }.appointment-row small { font-size: 6px; }.tag { font-size: 5px; padding: 3px; }.feature-strip { grid-template-columns: 1fr; gap: 20px; margin-bottom: 48px; }.site-footer { font-size: 7px; } }
