:root {
  --primary: #f4511e;
  --primary-hover: #fb6a3a;
  --primary-active: #d84315;
  --yellow: #facc15;
  --magenta: #e879f9;
  --bg: #f9fafb;
  --surface: #ffffff;
  --border: #e5e7eb;
  --text: #111827;
  --muted: #6b7280;
  --success: #22c55e;
  --warning: #f59e0b;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(244, 81, 30, 0.05), transparent 360px),
    var(--bg);
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

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

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: rgba(244, 81, 30, 0.18);
}

.site-header,
.section,
.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  background: rgba(249, 250, 251, 0.88);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--text);
}

.brand img {
  width: 40px;
  height: 40px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.nav a {
  padding: 10px 12px;
  border-radius: 12px;
  transition: color 180ms ease, background 180ms ease;
}

.nav a:hover {
  color: var(--text);
  background: var(--surface);
}

.nav .nav-cta {
  color: var(--primary);
}

.section {
  padding: 68px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: 56px;
  min-height: calc(100vh - 72px);
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.25;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 26px;
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

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

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

.button.primary:active {
  background: var(--primary-active);
  transform: translateY(0);
}

.button.secondary {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}

.button.secondary:hover {
  border-color: rgba(244, 81, 30, 0.42);
  color: var(--primary);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.hero-metrics div,
.problem-grid article,
.plan,
.contact-card,
.contact-options .contact-card,
.contact-form,
.signup-card,
.product-panel,
.suite-note {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-metrics div {
  padding: 14px;
}

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

.hero-metrics dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.product-panel {
  display: grid;
  gap: 18px;
  padding: 18px;
}

.panel-top,
.panel-brand,
.qr-card {
  display: flex;
  align-items: center;
}

.panel-top {
  justify-content: space-between;
  gap: 14px;
}

.panel-brand {
  gap: 10px;
}

.panel-brand span,
.muted {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.status-pill,
.plan-label {
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
}

.qr-card {
  gap: 18px;
  border-radius: 14px;
  background: #fff7ed;
  padding: 18px;
}

.qr-grid {
  display: grid;
  flex: 0 0 116px;
  width: 116px;
  height: 116px;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
  border: 1px solid rgba(244, 81, 30, 0.18);
}

.qr-grid span {
  border-radius: 3px;
  background: #111827;
}

.qr-grid span:nth-child(2n),
.qr-grid span:nth-child(7),
.qr-grid span:nth-child(18),
.qr-grid span:nth-child(23) {
  background: #fff;
}

.qr-card h2 {
  margin-bottom: 6px;
  font-size: 24px;
}

.late {
  margin: 0;
  color: var(--primary-active);
  font-weight: 800;
}

.mini-table {
  display: grid;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.mini-table div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.mini-table div:last-child {
  border-bottom: 0;
}

.mini-table strong {
  color: var(--text);
}

.mini-table .ok {
  color: #15803d;
}

.mini-table .warn {
  color: var(--warning);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 28px;
}

.problem-grid,
.plans,
.contact-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.problem-grid article,
.plan {
  padding: 22px;
}

.problem-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--primary);
  font-weight: 900;
}

.flow-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.flow-list li {
  display: grid;
  gap: 14px;
  align-content: start;
  border-left: 3px solid rgba(244, 81, 30, 0.45);
  padding: 4px 14px 4px 18px;
}

.flow-list span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 12px;
  background: var(--primary);
  color: white;
  font-weight: 900;
}

.plan {
  display: grid;
  gap: 14px;
  align-content: start;
}

.plan.featured {
  border-color: rgba(244, 81, 30, 0.45);
}

.plan-label {
  justify-self: start;
  background: rgba(244, 81, 30, 0.1);
  color: var(--primary-active);
}

.price {
  margin: 0;
  color: var(--text);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.price span {
  color: var(--muted);
  font-size: 15px;
}

.beta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 16px;
  background: #fff7ed;
  padding: 34px;
}

.beta p {
  max-width: 720px;
  margin-bottom: 0;
}

.contact-section {
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 18px;
}

.contact-card a {
  color: var(--primary);
  font-weight: 800;
}

.contact-options {
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-grid .contact-card {
  align-content: start;
  margin-top: 0;
  padding: 22px;
}

.contact-grid .contact-card p {
  margin-bottom: 4px;
}

.contact-grid .contact-card a {
  color: var(--text);
}

.contact-grid .contact-card a:hover {
  color: var(--primary);
}

.contact-label {
  justify-self: start;
  border-radius: 999px;
  background: rgba(244, 81, 30, 0.1);
  color: var(--primary-active);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
}

.contact-card.support .contact-label {
  background: rgba(250, 204, 21, 0.22);
  color: #92400e;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
  padding: 22px;
}

.form-heading,
.contact-form .full {
  grid-column: 1 / -1;
}

.form-heading h3 {
  margin-bottom: 4px;
}

.form-heading p {
  margin-bottom: 0;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
  color: var(--text);
  padding: 10px 12px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(244, 81, 30, 0.14);
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 13px;
}

.signup-card {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.signup-card div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 12px;
  align-items: start;
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
}

.signup-card p {
  grid-column: 2;
  margin: 0;
  font-size: 14px;
}

.step-dot {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 12px;
  background: rgba(244, 81, 30, 0.1);
  color: var(--primary-active);
  font-size: 13px;
  font-weight: 900;
}

.full {
  width: 100%;
}

.suite-note {
  padding: 28px;
}

.suite-note p {
  max-width: 720px;
  margin-bottom: 0;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--border);
  padding: 28px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--primary);
  font-weight: 800;
}

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

  .nav {
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .hero,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .product-panel {
    max-width: 560px;
  }

  .problem-grid,
  .plans,
  .contact-grid,
  .flow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .beta,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header,
  .section,
  .footer {
    width: min(100% - 22px, 1120px);
  }

  .site-header {
    position: static;
  }

  .brand span {
    font-size: 16px;
  }

  .nav {
    gap: 2px;
    font-size: 13px;
  }

  .nav a {
    padding: 8px;
  }

  .section {
    padding: 44px 0;
  }

  .hero-metrics,
  .problem-grid,
  .plans,
  .contact-grid,
  .contact-form,
  .flow-list {
    grid-template-columns: 1fr;
  }

  .form-heading,
  .contact-form .full {
    grid-column: auto;
  }

  .qr-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .beta {
    padding: 22px;
  }

  .button {
    width: 100%;
  }
}
