:root {
  color-scheme: dark;
  --bg: #080b0f;
  --panel: #101720;
  --panel-2: #14202c;
  --text: #f2f6f8;
  --muted: #a8b6c4;
  --line: #263442;
  --brand: #55d6be;
  --brand-2: #f4c95d;
  --danger: #ff7d70;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  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;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

.site-shell {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(85, 214, 190, 0.14), transparent 32rem),
    radial-gradient(circle at 82% 12%, rgba(244, 201, 93, 0.12), transparent 24rem),
    var(--bg);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(85, 214, 190, 0.55);
  border-radius: 8px;
  background: rgba(85, 214, 190, 0.12);
  color: var(--brand);
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--brand);
  color: #06100e;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(85, 214, 190, 0.2);
}

.button.secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}

.button.gold {
  background: var(--brand-2);
  color: #151006;
  box-shadow: 0 14px 34px rgba(244, 201, 93, 0.18);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 46px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(85, 214, 190, 0.35);
  border-radius: 999px;
  color: var(--brand);
  background: rgba(85, 214, 190, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0;
  color: var(--muted);
}

.hero-copy {
  max-width: 680px;
  margin-top: 22px;
  font-size: 1.18rem;
}

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

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.trust-row div {
  min-height: 86px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 23, 32, 0.72);
}

.trust-row strong {
  display: block;
  margin-bottom: 5px;
}

.demo-panel,
.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 23, 32, 0.86);
  box-shadow: var(--shadow);
}

.demo-panel {
  overflow: hidden;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(244, 201, 93, 0.12);
  color: var(--brand-2);
  font-size: 0.78rem;
  font-weight: 800;
}

.demo-body {
  padding: 18px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0a1118;
  color: var(--text);
  padding: 12px;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.notice-output {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(85, 214, 190, 0.35);
  border-radius: 8px;
  background: rgba(85, 214, 190, 0.08);
  color: #dffdf6;
  font-size: 0.92rem;
  white-space: pre-wrap;
}

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

.section-head {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 28px;
}

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

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

.card,
.price-card,
.post-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 23, 32, 0.76);
}

.card strong {
  display: block;
  margin-bottom: 8px;
}

.icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: rgba(85, 214, 190, 0.12);
  color: var(--brand);
  font-weight: 900;
}

.price-card {
  display: grid;
  gap: 16px;
  align-content: start;
}

.price {
  color: var(--text);
  font-size: 2.5rem;
  font-weight: 900;
}

.price small {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.feature-list li {
  position: relative;
  padding-left: 24px;
}

.feature-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 900;
}

.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(20, 32, 44, 0.46);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(85, 214, 190, 0.16), rgba(244, 201, 93, 0.1));
}

.download-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 23, 32, 0.78);
}

.download-band h2 {
  margin-top: 14px;
}

.download-band p {
  max-width: 660px;
  margin-top: 12px;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.notice-band {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(244, 201, 93, 0.34);
  border-radius: 8px;
  background: rgba(244, 201, 93, 0.08);
}

.notice-band a {
  width: fit-content;
  color: var(--brand-2);
  font-weight: 800;
}

.legal-panel {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.intake-form {
  display: grid;
  gap: 14px;
}

.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 44px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.page-hero {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0 42px;
}

.page-hero p {
  margin-top: 18px;
  font-size: 1.14rem;
}

.not-found {
  min-height: 58vh;
}

.post-card {
  display: grid;
  gap: 12px;
}

.article {
  display: grid;
  gap: 34px;
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.article-header {
  display: grid;
  gap: 18px;
}

.article-header h1 {
  margin-top: 0;
}

.article section {
  display: grid;
  gap: 14px;
}

.article p {
  font-size: 1.03rem;
}

.article-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

.template-box {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(85, 214, 190, 0.35);
  border-radius: 8px;
  background: rgba(85, 214, 190, 0.08);
}

.template-box p {
  color: #dffdf6;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: rgba(16, 23, 32, 0.76);
}

th,
td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--text);
}

td {
  color: var(--muted);
}

tbody tr:last-child td {
  border-bottom: 0;
}

.tag {
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.fine-print {
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .hero,
  .grid-2,
  .grid-3,
  .download-band,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .nav {
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
  }

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

@media (max-width: 560px) {
  .nav {
    display: grid;
  }

  .nav-links {
    justify-content: flex-start;
  }

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

  .download-actions {
    display: grid;
    justify-content: stretch;
  }

  .hero-actions,
  .footer {
    display: grid;
  }

  h1 {
    font-size: 2.85rem;
  }
}
