:root {
  color-scheme: dark;
  --bg: #0d0f14;
  --bg-2: #11141a;
  --surface: #171a21;
  --surface-2: #1d222b;
  --text: #f6f2ea;
  --muted: #aeb4bd;
  --soft: #747d8b;
  --line: rgba(246, 242, 234, 0.12);
  --line-strong: rgba(246, 242, 234, 0.2);
  --gold: #d8b86f;
  --gold-2: #f0d68d;
  --cyan: #5fc7d9;
  --green: #6dce9b;
  --danger: #dc6a63;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0) 340px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    var(--bg);
  background-size: auto, 42px 42px, 42px 42px, auto;
}

body,
button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 38px;
  line-height: 1.02;
}

h2 {
  margin-bottom: 14px;
  font-size: 30px;
  line-height: 1.08;
}

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

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

.page {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: calc(12px + env(safe-area-inset-top)) 14px calc(30px + env(safe-area-inset-bottom));
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 62px;
  margin: 0 -6px 22px;
  padding: 8px 6px;
  background: rgba(13, 15, 20, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}

.brand span {
  display: grid;
  gap: 1px;
  min-width: 0;
}

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

.brand small {
  color: var(--soft);
  font-size: 12px;
  line-height: 1.1;
}

.topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

.nav-link {
  display: none;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

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

.ghost-button,
.secondary-button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.ghost-button {
  max-width: 50vw;
  padding: 0 13px;
  overflow: hidden;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.primary-button {
  min-width: 148px;
  padding: 0 18px;
  border: 0;
  color: #111217;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  box-shadow: 0 14px 34px rgba(216, 184, 111, 0.22);
  font-weight: 850;
}

.secondary-button {
  min-width: 156px;
  padding: 0 16px;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 750;
}

.ghost-button:hover,
.secondary-button:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.07);
}

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

.hero {
  display: grid;
  gap: 24px;
  align-items: center;
  min-height: 620px;
  padding: 20px 0 34px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead {
  max-width: 660px;
  margin-bottom: 0;
  font-size: 17px;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.proof-list {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.proof-list div {
  min-width: 0;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.proof-list b {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 15px;
  overflow-wrap: anywhere;
}

.proof-list span {
  display: block;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.35;
}

.service-panel {
  position: relative;
  min-width: 0;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(216, 184, 111, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(29, 34, 43, 0.96), rgba(18, 21, 28, 0.96)),
    var(--surface);
  box-shadow: var(--shadow);
}

.service-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--cyan), var(--green));
}

.panel-head {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.panel-avatar {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
}

.panel-head span,
.check-list p {
  display: block;
  margin-bottom: 4px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.panel-head strong {
  display: block;
  font-size: 25px;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.status-line {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.status-dot {
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(109, 206, 155, 0.12);
}

.status-line b {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
}

.status-line p {
  margin-bottom: 0;
  font-size: 14px;
}

.check-list {
  padding-top: 18px;
}

.check-list p {
  margin-bottom: 12px;
}

.check-list ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.rule-section,
.split-section,
.experience-section,
.final-cta {
  margin-top: 58px;
}

.section-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
}

.section-heading.compact {
  margin-bottom: 16px;
}

.rule-grid,
.experience-grid {
  display: grid;
  gap: 10px;
}

.rule-grid article,
.experience-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.rule-grid article {
  padding: 18px;
}

.rule-grid article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 30px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--gold-2);
  background: rgba(216, 184, 111, 0.12);
  font-size: 12px;
  font-weight: 900;
}

.rule-grid p,
.copy-block p,
.experience-grid p,
.final-cta p {
  margin-bottom: 0;
}

.copy-block {
  display: grid;
  gap: 14px;
}

.split-section {
  display: grid;
  gap: 18px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.asset-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.asset-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(95, 199, 217, 0.08);
  font-size: 13px;
  font-weight: 720;
}

.experience-grid article {
  padding: 18px;
}

.experience-grid article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 32px;
  padding: 0 10px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #101217;
  background: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.final-cta {
  display: grid;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(220, 106, 99, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(220, 106, 99, 0.12), rgba(216, 184, 111, 0.07)),
    var(--surface);
}

.final-cta h2 {
  margin-bottom: 0;
}

@media (max-width: 390px) {
  h1 {
    font-size: 33px;
  }

  h2 {
    font-size: 26px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }
}

@media (min-width: 680px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 38px;
  }

  .page {
    padding-right: 22px;
    padding-left: 22px;
  }

  .nav-link {
    display: inline-flex;
  }

  .proof-list,
  .rule-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section {
    grid-template-columns: 0.9fr 1fr;
    align-items: start;
  }

  .final-cta {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (min-width: 940px) {
  h1 {
    font-size: 66px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) 380px;
    min-height: 650px;
    gap: 44px;
  }

  .service-panel {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ghost-button,
  .secondary-button,
  .primary-button {
    transition: none;
  }
}
