:root {
  --black: #000;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --soft: #86868b;
  --brand-orange: #f7ae2b;
  --brand-orange-dark: #d78800;
  --brand-orange-soft: #fff3d9;
  --cream: #f5f5f7;
  --tile: #fff;
  --dark-tile: #101010;
  --line: rgba(0, 0, 0, 0.12);
  --line-invert: rgba(255, 255, 255, 0.18);
  --max: 980px;
  --wide: 1180px;
  --radius: 18px;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Aptos Display", sans-serif;
  --text: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--text);
  font-size: 17px;
  line-height: 1.47059;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(247, 174, 43, 0.48);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 max(18px, calc((100vw - var(--wide)) / 2));
  color: rgba(255, 255, 255, 0.86);
  background: rgba(22, 22, 23, 0.88);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand,
.header-nav,
.header-cta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
}

.brand-logo {
  display: block;
  width: auto;
  height: 48px;
}

.header-nav {
  gap: clamp(20px, 4vw, 44px);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.header-nav a,
.header-cta {
  transition: color 160ms ease, background 160ms ease;
}

.header-nav a:hover {
  color: #fff;
}

.header-cta {
  min-height: 24px;
  padding: 0 11px;
  border-radius: 999px;
  color: #050505;
  background: var(--brand-orange);
  font-size: 12px;
  font-weight: 600;
}

.header-cta:hover {
  color: #fff;
  background: var(--brand-orange-dark);
}

.section-shell {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.hero {
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: calc(100svh - 58px);
  padding: clamp(56px, 8vw, 92px) 0 clamp(42px, 7vw, 78px);
  text-align: center;
}

.hero-copy {
  display: grid;
  justify-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
}

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

h1 {
  max-width: 980px;
  margin-bottom: 16px;
  color: #000;
  font-size: clamp(54px, 8.8vw, 112px);
  line-height: 0.94;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0;
}

.hero-text {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: clamp(21px, 2.2vw, 28px);
  line-height: 1.22;
  font-weight: 500;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  background: var(--brand-orange);
  color: #050505;
}

.button-primary:hover {
  background: var(--brand-orange-dark);
  color: #fff;
}

.button-secondary {
  border-color: var(--brand-orange-dark);
  color: #111;
  background: transparent;
}

.button-secondary:hover {
  background: var(--brand-orange-soft);
}

.product-stage {
  width: min(1040px, 100%);
  margin-top: clamp(36px, 6vw, 72px);
}

.device-frame {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 28px;
  background: #fbfbfd;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.14);
  text-align: left;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.78);
}

.window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c7c7cc;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  min-height: 474px;
}

.side-panel {
  padding: 22px 12px;
  background: #0b0b0c;
  color: #f5f5f7;
}

.mini-brand {
  margin: 0 0 24px 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.side-link {
  display: block;
  margin-bottom: 4px;
  padding: 9px 10px;
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 500;
}

.side-link.active,
.side-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.workspace-preview {
  padding: 28px;
  background: #f5f5f7;
}

.workspace-top,
.schedule-head,
.panel-header,
.invoice-preview,
.progress-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.preview-kicker {
  margin-bottom: 5px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 600;
}

.workspace-top h2 {
  margin-bottom: 0;
  color: #1d1d1f;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 700;
}

.status-pill {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  color: #7a4b00;
  background: var(--brand-orange-soft);
  font-size: 12px;
  font-weight: 600;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0 14px;
}

.metric-card,
.schedule-card,
.ops-panel {
  border-radius: 18px;
  background: #fff;
}

.metric-card {
  padding: 17px;
}

.metric-card span,
.metric-card small,
.class-row small,
.invoice-preview small,
.platform-strip span,
.difference-item span,
.capability-card p {
  color: var(--muted);
}

.metric-card span,
.metric-card small {
  display: block;
  font-size: 12px;
}

.metric-card strong {
  display: block;
  margin: 7px 0 3px;
  color: #1d1d1f;
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
}

.schedule-card {
  padding: 18px 20px;
}

.schedule-head {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.class-row {
  display: grid;
  grid-template-columns: 42px 10px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.class-time {
  color: var(--soft);
  font-size: 12px;
  font-weight: 600;
}

.class-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand-orange);
}

.gold,
.green {
  background: #8e8e93;
}

.platform-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: min(var(--wide), calc(100% - 44px));
  margin: 0 auto;
  padding: 0 0 12px;
}

.platform-strip div {
  min-height: 176px;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
}

.platform-strip strong,
.platform-strip span {
  display: block;
}

.platform-strip strong {
  margin-bottom: 9px;
  font-size: 21px;
  line-height: 1.16;
  font-weight: 700;
}

.platform-strip span {
  font-size: 15px;
  line-height: 1.35;
}

.section-block,
.proof-section,
.difference-section {
  padding: clamp(66px, 9vw, 118px) 0;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2,
.ops-copy h2,
.proof-card h2,
.contact-card h2 {
  margin-bottom: 14px;
  color: #1d1d1f;
  font-size: clamp(40px, 5.8vw, 76px);
  line-height: 1.02;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0;
}

.section-heading p,
.ops-copy p,
.proof-card p,
.contact-card p {
  max-width: 710px;
  color: var(--muted);
  font-size: clamp(19px, 2.1vw, 24px);
  line-height: 1.32;
  font-weight: 500;
}

.section-heading p {
  margin-right: auto;
  margin-left: auto;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(var(--wide), calc(100vw - 44px));
  margin: 0 auto;
}

.capability-card {
  min-height: 360px;
  padding: 34px;
  border-radius: var(--radius);
  background: #fff;
}

.capability-card:nth-child(3),
.capability-card:nth-child(4) {
  background: #fbfbfd;
}

.card-index {
  display: block;
  margin-bottom: 84px;
  color: var(--brand-orange-dark);
  font-size: 14px;
  font-weight: 600;
}

.capability-card h3 {
  max-width: 420px;
  margin-bottom: 12px;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.05;
  font-family: var(--display);
  font-weight: 900;
}

.capability-card p {
  max-width: 420px;
  font-size: 17px;
  line-height: 1.42;
}

.operations-section {
  padding: clamp(78px, 10vw, 138px) 0;
  background: var(--dark-tile);
  color: #f5f5f7;
}

.operations-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(380px, 1.06fr);
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
  width: min(var(--wide), calc(100% - 44px));
}

.ops-copy .eyebrow {
  color: #86868b;
}

.ops-copy h2 {
  color: #f5f5f7;
}

.ops-copy p {
  color: #a1a1a6;
}

.ops-panel {
  padding: 28px;
  color: var(--ink);
  background: #f5f5f7;
}

.panel-header {
  margin-bottom: 22px;
  padding-bottom: 16px;
  color: var(--muted);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 13px;
  font-weight: 600;
}

.invoice-preview {
  margin-bottom: 12px;
  padding: 20px;
  border-radius: 14px;
  background: #fff;
}

.invoice-preview span,
.invoice-preview small {
  display: block;
}

.invoice-preview span {
  color: var(--soft);
  font-size: 12px;
  font-weight: 600;
}

.invoice-preview strong {
  font-size: 21px;
}

.progress-stack {
  display: grid;
  gap: 8px;
}

.progress-line {
  padding: 14px 16px;
  border-radius: 12px;
  background: #e8e8ed;
  font-size: 14px;
}

.proof-section {
  width: min(var(--wide), calc(100% - 44px));
}

.proof-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: clamp(34px, 6vw, 68px);
  border-radius: var(--radius);
  background: #fff;
}

.proof-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  color: #050505;
  background: var(--brand-orange);
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
}

.proof-link:hover {
  color: #fff;
  background: var(--brand-orange-dark);
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.difference-item {
  min-height: 230px;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}

.difference-item strong,
.difference-item span {
  display: block;
}

.difference-item strong {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1.08;
  font-family: var(--display);
  font-weight: 900;
}

.difference-item span {
  font-size: 17px;
  line-height: 1.42;
}

.contact-section {
  padding: 0 0 12px;
}

.contact-card {
  display: grid;
  justify-items: center;
  width: min(var(--wide), calc(100% - 44px));
  padding: clamp(52px, 8vw, 96px) 28px;
  border-radius: var(--radius);
  color: #f5f5f7;
  background: #000;
  text-align: center;
}

.contact-card .eyebrow {
  color: #86868b;
}

.contact-card h2 {
  max-width: 860px;
  color: #f5f5f7;
}

.contact-card p {
  margin-right: auto;
  margin-left: auto;
  color: #a1a1a6;
}

.contact-card .button-secondary {
  border-color: rgba(247, 174, 43, 0.82);
  color: var(--brand-orange);
}

.contact-card .button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  width: min(var(--wide), calc(100% - 44px));
  margin: 0 auto;
  color: var(--muted);
  font-size: 12px;
}

.site-footer a {
  color: #1d1d1f;
  font-weight: 600;
}

.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

@media (max-width: 980px) {
  .hero {
    min-height: 0;
  }

  .platform-strip,
  .operations-layout,
  .proof-section,
  .capability-grid,
  .contact-card {
    width: min(100% - 28px, var(--wide));
  }

  .operations-layout,
  .proof-card {
    grid-template-columns: 1fr;
  }

  .operations-layout {
    width: min(100% - 44px, var(--wide));
  }

  .capability-grid,
  .difference-grid {
    grid-template-columns: 1fr;
  }

  .platform-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 17px;
  }

  .site-header {
    padding: 0 14px;
  }

  .header-nav {
    display: none;
  }

  .section-shell {
    width: min(100% - 28px, var(--max));
  }

  .brand span:last-child {
    display: none;
  }

  .brand-logo {
    height: 44px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .hero {
    padding-top: 52px;
    text-align: center;
  }

  .hero-text,
  .section-heading p,
  .ops-copy p,
  .proof-card p,
  .contact-card p {
    font-size: 19px;
  }

  .button {
    width: 100%;
    max-width: 340px;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .side-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 10px;
  }

  .mini-brand {
    display: none;
  }

  .side-link {
    margin: 0;
    padding: 7px 5px;
    font-size: 11px;
    text-align: center;
  }

  .workspace-preview {
    padding: 14px;
  }

  .workspace-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .workspace-top h2 {
    font-size: 28px;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .class-row {
    grid-template-columns: 36px 9px minmax(0, 1fr);
  }

  .platform-strip div {
    min-height: 148px;
  }

  .capability-card {
    min-height: 300px;
    padding: 28px;
  }

  .card-index {
    margin-bottom: 58px;
  }

  .operations-layout {
    width: min(100% - 28px, var(--wide));
  }

  .invoice-preview,
  .progress-line,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .proof-link {
    width: 100%;
  }
}

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