:root {
  color-scheme: light dark;
  --orange: #ff6d00;
  --orange-dark: #d95700;
  --teal: #00c7db;
  --ink: #12161a;
  --muted: #64707d;
  --line: #d8dee6;
  --paper: #ffffff;
  --wash: #f3f6f8;
  --dark: #0b0e11;
  --dark-soft: #151a20;
  --shadow: 0 24px 60px rgba(10, 14, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  color: var(--ink);
  background: var(--wash);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 64px);
  background: rgba(11, 14, 17, 0.94);
  color: white;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

nav a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 700;
}

nav a:hover {
  color: white;
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.7fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(58px, 7vw, 96px) clamp(20px, 6vw, 72px) 54px;
  background:
    linear-gradient(rgba(7, 10, 13, 0.76), rgba(7, 10, 13, 0.78)),
    url("assets/app-icon.png") center right 8% / min(680px, 78vw) no-repeat,
    var(--dark);
  color: white;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  max-width: 860px;
  font-size: clamp(2.55rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

p {
  color: var(--muted);
}

.hero p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  background: var(--orange);
  color: white;
  text-decoration: none;
  font-weight: 850;
}

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

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.product-preview {
  justify-self: center;
  width: min(390px, 100%);
}

.phone-shell {
  padding: 12px;
  border-radius: 36px;
  background: #050608;
  box-shadow: var(--shadow);
}

.phone-screen {
  min-height: 620px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: #101419;
  color: white;
}

.appbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 22px;
}

.appbar img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.appbar strong,
.appbar span,
.quote-total span,
.mini-grid span,
.job-card span {
  display: block;
}

.appbar span,
.quote-total span,
.mini-grid span,
.job-card span {
  color: #93a0ad;
  font-size: 0.86rem;
}

.quote-total,
.mini-grid div,
.job-card {
  border: 1px solid #26313b;
  border-radius: 8px;
  background: #171d23;
}

.quote-total {
  padding: 20px;
  margin-bottom: 14px;
}

.quote-total strong {
  display: block;
  margin-top: 8px;
  color: var(--orange);
  font-size: 2.45rem;
  line-height: 1;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.mini-grid div {
  padding: 14px;
}

.schedule-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin: 20px 0 14px;
}

.schedule-strip span {
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 1px solid #26313b;
  border-radius: 8px;
  color: #a8b2bc;
  font-weight: 800;
}

.schedule-strip .active {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

.schedule-strip .busy {
  border-color: var(--teal);
  color: white;
}

.job-card {
  padding: 15px;
  margin-top: 10px;
}

.muted-card {
  background: #12171c;
}

.section,
.cloud-panel {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 76px 0 36px;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.feature-grid article,
.content-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 42px rgba(18, 22, 26, 0.08);
}

.feature-grid article {
  padding: 24px;
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--orange);
  font-weight: 900;
}

.cloud-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 36px;
  align-items: start;
  margin-top: 38px;
  padding: 34px;
  border-radius: 8px;
  background: var(--dark-soft);
  color: white;
}

.cloud-panel p {
  color: rgba(255, 255, 255, 0.72);
}

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

.roadmap-list li {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.roadmap-list strong,
.roadmap-list span {
  display: block;
}

.roadmap-list span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
}

.compact-section {
  padding-bottom: 80px;
}

.page {
  width: min(920px, 92vw);
  margin: 0 auto;
  padding: 64px 0 82px;
}

.content-panel {
  padding: clamp(24px, 4vw, 42px);
}

.content-panel h1 {
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.content-panel h2 {
  margin-top: 30px;
  font-size: 1.45rem;
}

.contact-link a,
.policy a {
  color: var(--orange);
  font-weight: 850;
}

ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.updated {
  font-size: 0.95rem;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 26px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

footer p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 750;
  text-decoration: none;
}

@media (max-width: 940px) {
  .hero,
  .cloud-panel,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .product-preview {
    justify-self: start;
  }

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

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

  nav {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .hero {
    padding-top: 42px;
    background-position: center top 20px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .phone-screen {
    min-height: 560px;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f7f8f9;
    --muted: #a8b2bc;
    --line: #27313a;
    --paper: #151a20;
    --wash: #0b0e11;
  }

  .feature-grid article,
  .content-panel {
    box-shadow: none;
  }
}
