:root {
  color-scheme: dark;
  --bg: #100d0b;
  --panel: #1c1613;
  --panel-strong: #251b16;
  --ink: #fff7ed;
  --muted: #cbb8aa;
  --line: #4d3428;
  --orange: #ff4500;
  --yellow: #f6c453;
  --yellow-soft: #ffefb0;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 69, 0, 0.2), transparent 28%),
    linear-gradient(180deg, #1a120e 0%, var(--bg) 45%, #080706 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  font-weight: 900;
}

.brand-mark,
.app-logo {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(246, 196, 83, 0.32), 0 10px 24px rgba(255, 69, 0, 0.18);
}

.brand-mark img,
.app-logo img {
  display: block;
  width: 100%;
  height: 100%;
}

.nav-actions a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: 38px;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 34px 0 58px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.hero-text,
.pricing-section p,
.download-section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 14px;
}

.button {
  display: inline-grid;
  place-items: center;
  min-height: 46px;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 900;
}

.button.primary {
  background: var(--yellow);
  color: #1b120d;
}

.button.secondary {
  border: 1px solid var(--line);
  background: #281c16;
  color: var(--yellow-soft);
}

.trust-note {
  color: #a9988b;
  font-size: 13px;
  font-weight: 700;
}

.product-shot {
  min-width: 0;
}

.app-window {
  border: 1px solid #5b3a2d;
  border-top: 4px solid var(--yellow);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(246, 196, 83, 0.07), transparent), var(--panel);
  box-shadow: var(--shadow);
  padding: 18px;
}

.app-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.app-top strong {
  display: block;
  font-size: 24px;
}

.app-kicker {
  display: block;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-pill,
.ready {
  margin-left: auto;
  border-radius: 999px;
  background: #30231d;
  color: var(--yellow-soft);
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 900;
}

.account-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  border: 1px solid #4b3127;
  border-radius: 9px;
  background: #1a1411;
  overflow: hidden;
}

.account-card + .account-card {
  margin-top: 12px;
}

.account-card.dim {
  opacity: 0.78;
}

.vote-rail {
  background: #120f0d;
  border-right: 1px solid #33241e;
}

.account-body {
  padding: 16px;
}

.account-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--orange);
}

.account-head strong,
.account-head small {
  display: block;
}

.account-head small {
  color: var(--muted);
  margin-top: 2px;
}

.fields {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10px;
  margin: 16px 0;
}

.fields span {
  overflow: hidden;
  border: 1px solid #4b3127;
  border-radius: 7px;
  background: #100d0b;
  color: var(--muted);
  padding: 10px 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-card button {
  border: 0;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  padding: 11px 18px;
  font: inherit;
  font-weight: 900;
}

.feature-strip,
.workflow-section,
.pro-section,
.proof-strip,
.faq-section,
.pricing-section,
.download-section {
  border-top: 1px solid var(--line);
  padding: 58px 0;
}

.feature-strip,
.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-strip div,
.workflow-grid div,
.proof-strip div,
.pricing-card,
.download-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 20px;
}

.feature-strip strong,
.feature-strip span,
.workflow-grid strong,
.workflow-grid span,
.proof-strip strong,
.proof-strip span {
  display: block;
}

.feature-strip span,
.workflow-grid span,
.proof-strip span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.workflow-section,
.pro-section,
.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.workflow-section p,
.pro-section p,
.faq-section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

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

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

.pro-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 18px 20px;
}

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

.pro-list span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 16px 18px;
}

.faq-list summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  font-size: 15px;
}

.pricing-section,
.download-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.pricing-card {
  border-top: 4px solid var(--yellow);
}

.price {
  display: block;
  color: var(--yellow);
  font-size: 58px;
  font-weight: 950;
  line-height: 1;
}

.pricing-card strong {
  display: block;
  margin: 8px 0;
  font-size: 20px;
}

.download-grid {
  display: grid;
  gap: 12px;
}

.download-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  gap: 16px;
  align-items: center;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.download-card:hover {
  border-color: rgba(246, 196, 83, 0.82);
  background: var(--panel-strong);
  transform: translateY(-1px);
}

.download-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.download-card .download-platform {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.download-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(246, 196, 83, 0.58);
  border-radius: 8px;
  background: #30231d;
  color: var(--yellow);
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.download-card:hover .download-icon {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #1b120d;
}

.download-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.download-card small {
  color: var(--muted);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 26px 0 38px;
  font-size: 13px;
}

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

.footer-links a,
.legal-content a {
  color: var(--yellow-soft);
  font-weight: 800;
}

.legal-page {
  min-height: 100vh;
}

.legal-hero {
  border-top: 1px solid var(--line);
  padding: 58px 0 26px;
}

.legal-hero h1 {
  max-width: 780px;
  font-size: clamp(42px, 6vw, 72px);
}

.legal-updated {
  color: var(--muted);
  font-weight: 800;
}

.legal-content {
  max-width: 860px;
  padding: 18px 0 74px;
}

.legal-card {
  border: 1px solid var(--line);
  border-top: 4px solid var(--yellow);
  border-radius: 8px;
  background: var(--panel);
  padding: 28px;
}

.legal-card + .legal-card {
  margin-top: 18px;
}

.legal-card h2 {
  font-size: 26px;
}

.legal-card h3 {
  margin: 24px 0 8px;
  color: var(--yellow);
  font-size: 15px;
  text-transform: uppercase;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.62;
}

.legal-card ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.legal-callout {
  border: 1px solid rgba(246, 196, 83, 0.34);
  border-radius: 8px;
  background: #130f0d;
  color: var(--yellow-soft);
  padding: 16px 18px;
  font-weight: 800;
}

@media (max-width: 860px) {
  .hero,
  .pricing-section,
  .download-section,
  .feature-strip,
  .workflow-section,
  .pro-section,
  .proof-strip,
  .faq-section,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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