:root {
  color-scheme: light;
  --page: #edf0ea;
  --surface: #fffefa;
  --surface-raised: #fffefa;
  --text: #102029;
  --muted: #536159;
  --subtle: #7a857c;
  --wood: #5f7564;
  --lumber: #c9a57c;
  --commerce: #7a6fa3;
  --warehouse: #70716b;
  --shadow-panel: 0 0 24px rgba(70, 66, 54, 0.055);
  --shadow-soft: 0 0 13px rgba(70, 66, 54, 0.077), 0 0 24px rgba(70, 66, 54, 0.04);
  --radius-lg: 1.375rem;
  --radius-xl: 1.75rem;
  --radius-2xl: 2.125rem;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--page);
  color: var(--text);
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", Inter,
    "Segoe UI", ui-sans-serif, system-ui, sans-serif;
}

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

.page-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 18px 16px 28px;
}

.topbar,
.section,
.phone-panel {
  background: var(--surface);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-panel);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.brand strong,
.brand small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand strong {
  font-size: 16px;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(3, 13px);
  gap: 3px 4px;
  flex: 0 0 auto;
}

.brand-mark span,
.brand-mark i {
  display: block;
  width: 13px;
  height: 5px;
  border-radius: 99px;
  background: var(--wood);
}

.brand-mark i {
  border-radius: 2px;
  background: var(--lumber);
}

.top-link,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.top-link,
.secondary-action {
  background: var(--surface-raised);
  box-shadow: var(--shadow-soft);
  color: var(--wood);
  padding: 0 18px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: 22px;
  padding: 54px 0 34px;
}

.hero-copy {
  padding: 8px 4px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1;
}

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

.lead {
  max-width: 610px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 600;
  line-height: 1.35;
}

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

.primary-action {
  background: var(--wood);
  color: #fffefa;
  padding: 0 22px;
  box-shadow: var(--shadow-soft);
}

.phone-preview {
  display: flex;
  justify-content: center;
}

.phone-panel {
  width: min(330px, 100%);
  padding: 18px;
}

.preview-header,
.summary-row,
.preview-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.preview-header {
  margin-bottom: 14px;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-header strong {
  color: var(--muted);
}

.summary-row,
.preview-card {
  min-height: 64px;
  margin-bottom: 10px;
  border-radius: var(--radius-lg);
  background: var(--surface-raised);
  box-shadow: var(--shadow-soft);
  padding: 12px 14px;
}

.summary-row span,
.preview-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.summary-row strong,
.preview-card strong {
  font-size: 22px;
  font-variant-numeric: tabular-nums;
}

.tone-wood {
  color: var(--wood);
}

.tone-lumber {
  color: var(--lumber);
}

.tone-commerce {
  color: var(--commerce);
}

.tone-warehouse {
  color: var(--warehouse);
}

.dock {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 250, 0.64);
  box-shadow: var(--shadow-soft);
  padding: 9px;
}

.dock span {
  height: 28px;
  border-radius: 999px;
  background: rgba(95, 117, 100, 0.12);
}

.dock span:first-child {
  background: var(--surface-raised);
  box-shadow: var(--shadow-soft);
}

.section {
  margin-top: 16px;
  padding: 24px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.steps article {
  min-height: 190px;
  border-radius: var(--radius-xl);
  background: var(--surface-raised);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.steps p,
.benefits p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(95, 117, 100, 0.14);
  color: var(--wood);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
}

.benefits {
  display: grid;
  gap: 10px;
}

.benefits p {
  margin: 0;
  border-radius: var(--radius-lg);
  background: var(--surface-raised);
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 4px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 760px) {
  .page-shell {
    padding: 12px 12px 24px;
  }

  .topbar {
    border-radius: 1.5rem;
  }

  .top-link {
    padding: 0 14px;
    font-size: 13px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 42px 0 20px;
  }

  .hero-copy {
    padding: 0 2px;
  }

  .phone-preview {
    justify-content: stretch;
  }

  .phone-panel {
    width: 100%;
  }

  .steps,
  .split {
    grid-template-columns: 1fr;
  }

  .steps article {
    min-height: 0;
  }

  .footer {
    flex-direction: column;
  }
}
