:root {
  --bg: #f5f7f6;
  --ink: #17211d;
  --muted: #5f6f68;
  --line: #d8e0dc;
  --green: #0b6e4f;
  --green-dark: #084935;
  --red: #b42318;
  --yellow: #f3b13f;
  --white: #ffffff;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(16px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small,
nav a,
footer span {
  color: var(--muted);
}

nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

nav a {
  text-decoration: none;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: calc(100vh - 67px);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(32px, 7vw, 88px) clamp(16px, 4vw, 56px);
  overflow: hidden;
}

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

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(40px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.lead {
  max-width: 640px;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions,
.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
.paypal-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.primary {
  background: var(--green);
  color: var(--white);
}

.secondary {
  border-color: var(--line);
  background: var(--white);
}

.hero-metrics {
  margin-top: 34px;
}

.hero-metrics div {
  min-width: 150px;
  border-left: 4px solid var(--green);
  padding-left: 12px;
}

.hero-metrics dt {
  font-size: 24px;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 0;
  color: var(--muted);
}

.phone-stage {
  display: grid;
  min-height: 520px;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(11, 110, 79, 0.16), transparent 40%),
    linear-gradient(45deg, rgba(180, 35, 24, 0.10), transparent 42%),
    #e7eeea;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.phone-shell {
  width: min(330px, 84vw);
  padding: 12px;
  background: #111b18;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(23, 33, 29, 0.25);
}

.phone-top {
  width: 92px;
  height: 8px;
  margin: 0 auto 10px;
  background: #3e4b46;
  border-radius: 999px;
}

.app-screen {
  display: flex;
  min-height: 610px;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  background: #f4f6f5;
  border-radius: 20px;
}

.screen-header,
.status-panel,
.duty-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}

.screen-header strong,
.duty-panel strong {
  color: var(--green);
}

.status-panel p,
.status-panel h2,
.duty-panel span,
.screen-brand {
  margin: 0;
}

.status-panel h2 {
  margin-top: 6px;
  font-size: 25px;
  line-height: 1.08;
}

.status-panel span,
.duty-panel span {
  color: var(--muted);
}

.talk-button {
  display: grid;
  flex: 1;
  place-items: center;
  gap: 8px;
  align-content: center;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius);
  text-align: center;
}

.mic-symbol {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 30px;
}

.screen-brand {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.band,
.section {
  padding: clamp(42px, 7vw, 84px) clamp(16px, 4vw, 56px);
}

.band {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.section-copy {
  max-width: 830px;
  margin-bottom: 28px;
}

.section-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.comparison-grid,
.pricing-grid,
.tenant-lanes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.comparison-grid article,
.price-card,
.tenant-lanes div,
.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 20px;
}

.comparison-grid article {
  min-height: 170px;
}

.comparison-grid p,
.price-card p {
  color: var(--muted);
}

.tenant-lanes div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tenant-lanes span {
  border-left: 4px solid var(--green);
  padding-left: 10px;
  color: var(--muted);
}

.pricing-grid {
  grid-template-columns: repeat(6, minmax(180px, 1fr));
  overflow-x: auto;
  padding-bottom: 6px;
}

.price-card {
  display: flex;
  min-height: 240px;
  flex-direction: column;
}

.price-card.featured {
  border-color: var(--green);
  box-shadow: inset 0 4px 0 var(--green);
}

.price {
  margin: 8px 0;
  color: var(--ink);
  font-size: 26px;
  font-weight: 900;
}

.paypal-slot,
.paypal-button {
  margin-top: auto;
}

.paypal-button.pending {
  width: 100%;
  border-color: var(--line);
  background: #eef3f1;
  color: var(--green-dark);
}

.paypal-placeholder {
  margin-top: auto;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 12px;
  color: var(--muted);
  font-size: 13px;
}

.lead-form {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 700;
}

input {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  font: inherit;
}

.lead-form button,
#lead-result {
  grid-column: 1 / -1;
}

#lead-result {
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(16px, 4vw, 56px);
  background: #111b18;
  color: var(--white);
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .comparison-grid,
  .tenant-lanes {
    grid-template-columns: 1fr;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }
}

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

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .phone-stage {
    min-height: auto;
    padding: 18px;
  }

  .app-screen {
    min-height: 540px;
  }
}
