:root {
  --ink: #101114;
  --muted: #64666d;
  --soft: #f5f5f7;
  --paper: #ffffff;
  --line: rgba(16, 17, 20, 0.12);
  --blue: #0071e3;
  --blue-dark: #0057b8;
  --violet: #7c3aed;
  --mint: #21c08b;
  --shadow: 0 34px 90px rgba(16, 17, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 56px;
  padding: 10px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(16, 17, 20, 0.08);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.4vw, 14px);
  color: #42444a;
  font-size: 12px;
  font-weight: 600;
}

.nav a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 7px 10px;
  transform-origin: center;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  border-color: rgba(0, 113, 227, 0.22);
  background: rgba(0, 113, 227, 0.08);
  box-shadow: 0 10px 28px rgba(0, 113, 227, 0.14);
  color: var(--blue);
  transform: scale(1.12);
}

.nav a:focus-visible {
  outline: 2px solid rgba(0, 113, 227, 0.28);
  outline-offset: 2px;
}

.hero {
  position: relative;
  width: 100%;
  max-width: 100vw;
  min-height: calc(100vh - 56px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.95fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  overflow: hidden;
  padding: clamp(42px, 5vw, 70px) clamp(18px, 6vw, 92px);
  background:
    radial-gradient(circle at 78% 20%, rgba(0, 113, 227, 0.17), transparent 32%),
    radial-gradient(circle at 12% 78%, rgba(33, 192, 139, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
}

.hero-inner {
  min-width: 0;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 6.2vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(18px, 1.75vw, 22px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 700;
}

.button.primary {
  background: var(--blue);
  color: #fff;
}

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

.button.quiet {
  color: var(--blue);
}

.button.dark {
  background: var(--ink);
  color: #fff;
}

.hero-side {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.device-stage {
  position: relative;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  min-height: clamp(300px, 35vw, 430px);
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.88;
}

.orb-one {
  width: 320px;
  height: 320px;
  right: 4%;
  top: 4%;
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.35), rgba(124, 58, 237, 0.2));
}

.orb-two {
  width: 240px;
  height: 240px;
  left: 0;
  bottom: 10%;
  background: linear-gradient(135deg, rgba(33, 192, 139, 0.26), rgba(0, 113, 227, 0.1));
}

.phone,
.desktop-panel {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.phone {
  right: 10%;
  bottom: 5%;
  z-index: 2;
  width: min(210px, 34vw);
  aspect-ratio: 9 / 18;
  border-radius: 38px;
  padding: 18px;
}

.phone-bar {
  width: 78px;
  height: 7px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: #1d1d1f;
}

.mini-hero {
  height: 116px;
  border-radius: 24px;
  background:
    linear-gradient(140deg, rgba(16, 17, 20, 0.84), rgba(16, 17, 20, 0.28)),
    linear-gradient(135deg, var(--blue), var(--mint));
}

.mini-lines {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.mini-lines span {
  height: 11px;
  border-radius: 999px;
  background: rgba(16, 17, 20, 0.12);
}

.mini-lines span:nth-child(1) {
  width: 88%;
}

.mini-lines span:nth-child(2) {
  width: 70%;
}

.mini-lines span:nth-child(3) {
  width: 50%;
}

.mini-actions {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 10px;
  margin-top: 20px;
}

.mini-actions span {
  height: 34px;
  border-radius: 999px;
  background: var(--blue);
}

.mini-actions span:nth-child(2) {
  background: rgba(16, 17, 20, 0.1);
}

.desktop-panel {
  top: 12%;
  left: 0;
  width: min(460px, 76vw);
  aspect-ratio: 16 / 10;
  border-radius: 28px;
  padding: 22px;
}

.window-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.window-dots span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(16, 17, 20, 0.18);
}

.panel-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.panel-grid span {
  min-height: 84px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.12), rgba(16, 17, 20, 0.06));
}

.panel-grid span:first-child {
  grid-row: span 2;
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.72), rgba(124, 58, 237, 0.48));
}

.wordmark-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.compact-wordmark {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.wordmark-strip div {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: clamp(18px, 2.4vw, 28px);
  border-right: 1px solid var(--line);
}

.wordmark-strip div:last-child {
  border-right: 0;
}

.wordmark-strip strong {
  font-size: clamp(25px, 2.9vw, 36px);
  line-height: 0.95;
  letter-spacing: 0;
}

.wordmark-strip span {
  color: var(--muted);
  font-size: 14px;
}

.section-heading {
  max-width: 920px;
}

.template-links {
  padding: clamp(76px, 10vw, 132px) clamp(18px, 6vw, 92px);
  background: #fff;
}

.template-button-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(34px, 5vw, 64px);
}

.template-button {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(16, 17, 20, 0.2);
  border-radius: 8px;
  padding: 24px;
  background: var(--soft);
  box-shadow: 0 14px 44px rgba(16, 17, 20, 0.06);
  overflow: hidden;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.template-button.live {
  background: var(--soft);
  color: var(--ink);
}

.template-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--template-image);
  background-position: center;
  background-size: cover;
  opacity: 0.24;
  transition: opacity 180ms ease;
}

.template-button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.8));
}

.template-button:hover,
.template-button:focus-visible {
  border-color: rgba(0, 113, 227, 0.42);
  box-shadow: 0 22px 64px rgba(16, 17, 20, 0.13);
  transform: translateY(-2px);
}

.template-button:hover::before,
.template-button:focus-visible::before {
  opacity: 0.7;
}

.template-button:focus-visible {
  outline: 2px solid rgba(0, 113, 227, 0.34);
  outline-offset: 4px;
}

.template-automotive {
  --template-image: url("https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&w=900&q=78");
}

.template-beauty {
  --template-image: url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&w=900&q=78");
}

.template-building {
  --template-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=900&q=78");
}

.template-trades {
  --template-image: url("https://images.unsplash.com/photo-1621905251189-08b45d6a269e?auto=format&fit=crop&w=900&q=78");
}

.template-cleaning {
  --template-image: url("https://images.unsplash.com/photo-1527515637462-cff94eecc1ac?auto=format&fit=crop&w=900&q=78");
}

.template-education {
  --template-image: url("https://images.unsplash.com/photo-1509062522246-3755977927d7?auto=format&fit=crop&w=900&q=78");
}

.template-button span,
.template-button small {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.template-button strong {
  position: relative;
  z-index: 1;
  display: block;
  font-size: clamp(28px, 3.3vw, 46px);
  line-height: 1;
  letter-spacing: 0;
}

.template-button[href="#"] {
  cursor: default;
}

.sample-stage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: #fff;
}

.sample {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 6vw, 76px);
  color: #fff;
  overflow: hidden;
}

.sample-one {
  background:
    linear-gradient(180deg, rgba(16, 17, 20, 0.12), rgba(16, 17, 20, 0.78)),
    url("https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&w=1200&q=82") center / cover;
}

.sample-two {
  background:
    linear-gradient(180deg, rgba(16, 17, 20, 0.12), rgba(16, 17, 20, 0.78)),
    url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&w=1200&q=82") center / cover;
}

.sample p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.sample h3 {
  max-width: 520px;
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 72px);
}

.faq {
  padding: clamp(76px, 10vw, 132px) clamp(18px, 6vw, 92px);
  background: var(--soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(34px, 5vw, 64px);
}

.faq-grid article {
  min-height: 240px;
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 36px);
  background: #fff;
}

.faq-grid h3 {
  font-size: clamp(22px, 2.4vw, 32px);
}

.faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.contact {
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: clamp(72px, 10vw, 140px) clamp(18px, 6vw, 92px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 113, 227, 0.16), transparent 34%),
    #fff;
}

.contact h2 {
  max-width: 980px;
}

.contact-actions {
  justify-content: center;
  margin-top: 10px;
}

.contact-note {
  max-width: 520px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 14px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 6vw, 92px);
  color: var(--muted);
  font-size: 14px;
}

.concept-page {
  background: #fff;
}

.concept-hero {
  min-height: calc(100vh - 56px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  padding: clamp(72px, 10vw, 132px) clamp(18px, 6vw, 92px);
  overflow: hidden;
}

.mechanic-hero {
  background:
    linear-gradient(90deg, rgba(16, 17, 20, 0.86), rgba(16, 17, 20, 0.36)),
    url("https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&w=1800&q=82") center / cover;
  color: #fff;
}

.concept-hero-copy {
  max-width: 860px;
}

.mechanic-hero .eyebrow,
.mechanic-hero .hero-copy,
.mechanic-hero .button.quiet {
  color: rgba(255, 255, 255, 0.78);
}

.workshop-preview {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
}

.preview-top {
  display: grid;
  gap: 8px;
}

.preview-top span,
.preview-panel p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 800;
}

.preview-top strong {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}

.preview-panel {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(0, 113, 227, 0.1), rgba(16, 17, 20, 0.82)),
    url("https://images.unsplash.com/photo-1530046339912-102c3f5c0e70?auto=format&fit=crop&w=1200&q=82") center / cover;
}

.preview-panel h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 58px);
}

.preview-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.preview-actions span {
  display: grid;
  min-height: 48px;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.preview-actions span:last-child {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.concept-section,
.local-search {
  padding: clamp(76px, 10vw, 132px) clamp(18px, 6vw, 92px);
}

.mechanic-services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(34px, 5vw, 64px);
}

.mechanic-services article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
}

.mechanic-services span {
  color: var(--blue);
  font-weight: 800;
}

.mechanic-services h3 {
  font-size: clamp(25px, 2.7vw, 38px);
}

.mechanic-services p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.mechanic-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--ink);
  color: #fff;
}

.mechanic-proof div {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  padding: clamp(28px, 5vw, 56px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.mechanic-proof div:last-child {
  border-right: 0;
}

.mechanic-proof span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
  font-weight: 800;
}

.mechanic-proof strong {
  font-size: clamp(26px, 3vw, 46px);
  line-height: 1.02;
}

.mechanic-proof p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.local-search {
  background: var(--soft);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(34px, 5vw, 64px);
}

.tag-cloud span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  background: #fff;
  color: #42444a;
  font-weight: 800;
}

.concept-contact {
  display: grid;
  place-items: center;
  padding: clamp(76px, 10vw, 132px) clamp(18px, 6vw, 92px);
  text-align: center;
}

.concept-contact h2,
.concept-contact p {
  max-width: 920px;
}

.concept-contact p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 64px;
  }

  .device-stage {
    min-height: 520px;
  }

  .wordmark-strip,
  .template-button-grid,
  .faq-grid,
  .concept-hero,
  .mechanic-services,
  .mechanic-proof,
  .sample-stage {
    grid-template-columns: 1fr;
  }

  .wordmark-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .wordmark-strip div:last-child {
    border-bottom: 0;
  }

  .mechanic-proof div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .mechanic-proof div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav a {
    flex: 0 0 auto;
  }

  h1 {
    max-width: 11ch;
    font-size: 42px;
    line-height: 1.02;
  }

  h2 {
    font-size: 42px;
    line-height: 1.04;
  }

  .hero-copy {
    max-width: 28ch;
    font-size: 18px;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero-inner {
    width: 100%;
    max-width: 100%;
  }

  .device-stage {
    display: none;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .hero-actions {
    max-width: 330px;
  }

  .compact-wordmark {
    margin-top: 4px;
  }

  .wordmark-strip div {
    min-height: 94px;
  }

  .wordmark-strip strong {
    font-size: 25px;
  }

  .sample {
    min-height: 440px;
  }

  .footer {
    flex-direction: column;
  }

  .concept-hero {
    min-height: auto;
    padding-top: 58px;
  }

  .workshop-preview {
    padding: 18px;
  }

  .preview-panel {
    min-height: 280px;
  }

  .preview-actions {
    grid-template-columns: 1fr;
  }
}
