:root {
  color-scheme: dark;
  --bg: #05070d;
  --panel: #0b1220;
  --panel-2: #101827;
  --text: #eef5ff;
  --muted: #9db0c7;
  --line: rgba(148, 163, 184, 0.22);
  --green: #18d38b;
  --cyan: #39c9ff;
  --gold: #f6c244;
  --red: #ff4d68;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  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:
    radial-gradient(circle at top left, rgba(24, 211, 139, 0.14), transparent 34rem),
    radial-gradient(circle at 85% 12%, rgba(57, 201, 255, 0.12), transparent 30rem),
    linear-gradient(180deg, #060a12 0%, var(--bg) 42%, #070914 100%);
  color: var(--text);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(5, 7, 13, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(246, 194, 68, 0.5);
  border-radius: 50%;
  background: #05070d;
  box-shadow: 0 0 26px rgba(246, 194, 68, 0.18);
}

.brand-mark img,
.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}
.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  max-width: 260px;
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav a,
.nav-cta,
.button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 14px;
  font-weight: 750;
  font-size: 14px;
}

.nav a {
  color: var(--muted);
}

.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta,
.button.primary {
  background: var(--green);
  color: #03100b;
}

.button.ghost {
  border: 1px solid var(--line);
  color: var(--text);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(56px, 8vw, 110px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 10% -10% auto auto;
  width: min(56vw, 760px);
  aspect-ratio: 1;
  background:
    linear-gradient(115deg, rgba(24, 211, 139, 0.2), transparent 48%),
    conic-gradient(from 140deg, rgba(57, 201, 255, 0.24), rgba(246, 194, 68, 0.16), rgba(24, 211, 139, 0.22), rgba(57, 201, 255, 0.24));
  clip-path: polygon(50% 0, 95% 23%, 82% 81%, 34% 100%, 0 58%, 14% 14%);
  filter: drop-shadow(0 50px 120px rgba(24, 211, 139, 0.16));
  opacity: 0.88;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-mark {
  position: absolute;
  right: clamp(18px, 8vw, 120px);
  top: clamp(88px, 14vh, 160px);
  width: min(32vw, 360px);
  max-width: 46%;
  border-radius: 50%;
  opacity: 0.2;
  filter: drop-shadow(0 40px 100px rgba(246, 194, 68, 0.24));
  pointer-events: none;
}

.hero-content {
  position: relative;
  width: min(980px, 100%);
}

.eyebrow,
.section-kicker,
.tag {
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 930px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7.2vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  color: #c8d7ea;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions,
.signal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin: 30px 0;
}

.signal-strip {
  width: min(840px, 100%);
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(11, 18, 32, 0.76);
  box-shadow: var(--shadow);
}

.signal-strip div {
  flex: 1 1 180px;
  padding: 10px 12px;
}

.signal-strip dt {
  color: var(--muted);
  font-size: 12px;
}

.signal-strip dd {
  margin: 4px 0 0;
  font-weight: 850;
}

.section {
  padding: clamp(54px, 7vw, 98px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 5vw, 64px);
}

.section h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.video-card {
    background: #0f172a;
    border: 1px solid #243044;
    padding: 20px;
    border-radius: 18px;
}

.video-card iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 12px;
}

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

.service-grid,
.app-grid,
.timeline {
  display: grid;
  gap: 14px;
}

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

.service-grid article,
.timeline article,
.contact-card,
.app-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(16, 24, 39, 0.95), rgba(9, 14, 26, 0.95));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.service-grid article,
.timeline article {
  padding: 24px;
}

.service-grid span {
  color: var(--gold);
  font-weight: 900;
}

.service-grid h3,
.timeline h3,
.app-card h3 {
  margin: 12px 0 8px;
  font-size: 22px;
}

.service-grid p,
.timeline p,
.app-card p,
.contact-panel p {
  color: var(--muted);
  line-height: 1.6;
}

.app-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.app-card {
  overflow: hidden;
}

.app-card > div:last-child {
  padding: 22px;
}

.app-card.featured {
  grid-row: span 2;
}

.app-visual {
  min-height: 180px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(24, 211, 139, 0.25), rgba(57, 201, 255, 0.08)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 36px);
}

.app-card.featured .app-visual {
  min-height: 360px;
}

.app-visual.racing {
  background:
    linear-gradient(135deg, rgba(246, 194, 68, 0.23), rgba(24, 211, 139, 0.16)),
    linear-gradient(90deg, transparent 0 12%, rgba(255, 255, 255, 0.12) 12% 13%, transparent 13% 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 38px);
}

.app-visual.ai {
  background:
    radial-gradient(circle at 25% 30%, rgba(57, 201, 255, 0.34), transparent 28%),
    linear-gradient(135deg, rgba(24, 211, 139, 0.16), rgba(255, 77, 104, 0.1));
}

.app-visual.build {
  background:
    linear-gradient(135deg, rgba(255, 77, 104, 0.16), rgba(246, 194, 68, 0.17)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 20px);
}

.app-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--cyan);
  font-weight: 850;
}

.token-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(246, 194, 68, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(24, 211, 139, 0.06), rgba(5, 7, 13, 0.02));
}

.token-copy p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
}

.token-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.token-card {
  padding: 18px;
  border: 1px solid rgba(246, 194, 68, 0.28);
  background:
    linear-gradient(180deg, rgba(16, 24, 39, 0.95), rgba(3, 5, 10, 0.96)),
    radial-gradient(circle at top, rgba(246, 194, 68, 0.18), transparent 60%);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.token-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(246, 194, 68, 0.26);
}

.token-card p {
  margin: 16px 0 0;
  color: #c8d7ea;
  line-height: 1.6;
}

.token-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.token-stats span {
  display: grid;
  min-height: 44px;
  place-items: center;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

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

.process {
  background: rgba(255, 255, 255, 0.02);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 28px;
  align-items: center;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 28px;
}

.contact-card a,
.contact-card span {
  display: block;
  color: var(--text);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  padding: 26px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: #03050a;
}

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

.footer p {
  margin: 6px 0 0;
}

.footer a {
  display: block;
  color: var(--muted);
}

.copyright {
  text-align: right;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .split,
  .contact-panel,
  .token-section {
    grid-template-columns: 1fr;
  }

  .app-grid,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }
}


.project-grid,
.stats-grid,
.industry-grid {
  display: grid;
  gap: 24px;
}

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

.project-card,
.stat-card,
.industry-card,
.step,
.resource-card,
.download-card,
.faq-card,
.note-card {
  border: 1px solid #243044;
  border-radius: 8px;
  background: #0f172a;
}

.project-card {
  padding: 28px;
}

.project-card h3 {
  color: #fff;
  font-size: 28px;
}

.project-card p,
.industry-card p,
.step p,
.resource-card p,
.download-card p,
.faq-card p,
.note-card p,
.article-body p,
.article-body li {
  color: #aab6c8;
  line-height: 1.7;
}

.project-card span,
.step span {
  color: #21d88f;
  font-weight: 800;
}

.project-image img {
  width: 50%;
  height: 250px;
  object-fit: contain;
  display: block;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
}

.stat-card {
  padding: 40px;
  text-align: center;
}

.stat-card h1 {
  font-size: 55px;
  color: #21d88f;
}

.stat-card p {
  color: #cbd5e1;
}

.industry-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.industry-card {
  padding: 26px;
  font-size: 34px;
}

.industry-card h3 {
  font-size: 22px;
  color: white;
  margin: 16px 0 10px;
}

.industry-card p {
  font-size: 16px;
}

.industry-card:hover {
  border-color: #21d88f;
  transform: translateY(-4px);
  transition: 0.25s ease;
}

.step {
  padding: 28px;
}

.step span {
  font-size: 24px;
}

.step h3 {
  color: white;
  font-size: 24px;
}

.content-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(24, 211, 139, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(16, 24, 39, 0.72), rgba(5, 7, 13, 0.18));
}

.content-hero h1 {
  font-size: clamp(38px, 5.8vw, 72px);
  line-height: 1;
}

.content-hero p {
  max-width: 760px;
  color: #c8d7ea;
  font-size: 19px;
  line-height: 1.65;
}

.content-grid,
.resource-grid,
.download-grid,
.note-grid {
  display: grid;
  gap: 18px;
}

.content-grid {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: start;
}

.article-body {
  max-width: 860px;
}

.article-body h2,
.article-body h3 {
  margin-top: 34px;
}

.article-body h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.article-body h3 {
  font-size: 23px;
}

.article-body ul,
.article-body ol {
  padding-left: 22px;
}

.side-panel {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 18, 32, 0.88);
}

.side-panel a {
  color: var(--cyan);
  font-weight: 800;
}

.resource-grid,
.download-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.resource-card,
.download-card,
.faq-card,
.note-card {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.download-feature,
.process-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 28px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(57, 201, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(24, 211, 139, 0.14), rgba(57, 201, 255, 0.08)),
    rgba(11, 18, 32, 0.92);
  box-shadow: var(--shadow);
}

.download-feature h2,
.process-panel h2 {
  margin: 4px 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.download-feature p,
.process-panel p,
.install-panel li,
.process-panel li {
  color: #c8d7ea;
  line-height: 1.65;
}

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

.download-meta {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 13px;
}

code {
  color: #d7f7ff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.install-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 7, 13, 0.52);
}

.install-panel h3 {
  margin-top: 0;
  color: #fff;
  font-size: 24px;
}

.install-panel ol,
.process-panel ol {
  margin: 0;
  padding-left: 22px;
}

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

.screenshot-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid #243044;
  border-radius: 8px;
  background: #0f172a;
}

.screenshot-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid #243044;
}

.screenshot-grid figcaption {
  padding: 13px 16px 16px;
  color: #dbeafe;
  font-weight: 800;
}

.resource-card a,
.download-card a,
.note-card a {
  color: var(--cyan);
  font-weight: 850;
}

.download-card small,
.note-card small {
  color: var(--gold);
  font-weight: 850;
  text-transform: uppercase;
}

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

.faq-card h3 {
  margin-bottom: 6px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--cyan);
}

@media (max-width: 980px) {
  .content-grid,
  .resource-grid,
  .download-grid,
  .note-grid,
  .industry-grid,
  .stats-grid,
  .download-feature,
  .process-panel {
    grid-template-columns: 1fr 1fr;
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
  }

  .brand small {
    display: none;
  }

  .nav-cta {
    padding: 0 10px;
    font-size: 13px;
  }

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

  .hero-mark {
    right: -42px;
    top: 92px;
    width: 230px;
    max-width: none;
    opacity: 0.14;
  }

  h1 {
    font-size: 42px;
  }

  .service-grid,
  .app-grid,
  .timeline,
  .token-stats,
  .footer,
  .project-grid,
  .stats-grid,
  .industry-grid,
  .content-grid,
  .resource-grid,
  .download-grid,
  .note-grid,
  .download-feature,
  .process-panel,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .app-card.featured .app-visual,
  .app-visual {
    min-height: 180px;
  }

  .copyright {
    text-align: left;
  }
}

/* Review polish: accessible menu, pricing, policies, and footer */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(57, 201, 255, 0.72);
  outline-offset: 3px;
}

.button,
.nav-cta,
.plan-select-button {
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.button.primary:active,
.nav-cta:active {
  transform: translateY(1px);
}

.nav a.is-active {
  color: var(--text);
  background: rgba(24, 211, 139, 0.12);
  border-color: rgba(24, 211, 139, 0.34);
}

.menu-toggle {
  color: var(--text);
  transition: background 0.18s ease, border-color 0.18s ease;
}

.menu-toggle:hover {
  border-color: rgba(57, 201, 255, 0.42);
  background: rgba(57, 201, 255, 0.08);
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-toggle span {
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-open {
  overflow: hidden;
}

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

.cancel-note,
.checkout-disclosure {
  margin: 0;
  color: #c8d7ea !important;
  font-size: 14px;
  line-height: 1.55;
}

.checkout-disclosure a {
  color: var(--cyan);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.plan-select-button {
  min-height: 48px;
  padding: 10px 14px;
  white-space: normal;
  text-align: center;
}

.plan-select-button[disabled] {
  border: 1px solid rgba(148, 163, 184, 0.32);
  background: rgba(148, 163, 184, 0.16);
  color: #d6dfed;
  opacity: 1;
}

.policy-date,
.form-status {
  color: #c8d7ea;
  line-height: 1.65;
}

.product-disclaimer,
.trust-policy-section {
  border: 1px solid rgba(246, 194, 68, 0.34);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(246, 194, 68, 0.09), rgba(16, 24, 39, 0.92));
}

.product-disclaimer {
  margin-top: 24px;
  padding: 18px;
}

.product-disclaimer p:last-child {
  margin-bottom: 0;
}

.trust-policy-section {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
}

.trust-policy-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-policy-list li {
  min-height: 72px;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: #c8d7ea;
  font-weight: 800;
}

.footer {
  grid-template-columns: minmax(240px, 1.5fr) repeat(4, minmax(130px, 0.7fr));
}

.footer-payment,
.copyright {
  grid-column: 1 / -1;
  text-align: left;
}

.footer-links strong {
  margin-bottom: 4px;
}

.footer a[href^="mailto:"] {
  overflow-wrap: anywhere;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: minmax(220px, 1fr) auto auto;
  }

  .site-header .nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    display: grid;
    max-height: min(76vh, 620px);
    gap: 10px;
    overflow: auto;
    padding: 12px clamp(16px, 4vw, 56px) 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 7, 13, 0.98);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .site-header.menu-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header .nav a,
  .site-header .nav-trigger {
    justify-content: flex-start;
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(255, 255, 255, 0.035);
  }

  .site-header .nav-group {
    display: grid;
    gap: 8px;
  }

  .site-header .nav-menu {
    position: static;
    min-width: 0;
    padding: 0 0 0 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .trust-policy-list,
  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    gap: 10px;
    padding: 12px clamp(14px, 4vw, 18px);
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand small {
    max-width: 190px;
    font-size: 11px;
  }

  .section,
  .content-hero {
    padding-left: clamp(16px, 5vw, 20px);
    padding-right: clamp(16px, 5vw, 20px);
  }

  .pricing-card,
  .policy-card,
  .feature-card,
  .resource-card,
  .download-card,
  .faq-card,
  .note-card {
    padding: 18px;
  }

  .plan-card-top {
    display: grid;
  }

  .plan-badge {
    justify-self: start;
    white-space: normal;
  }

  .price {
    font-size: clamp(32px, 12vw, 44px);
    overflow-wrap: anywhere;
  }

  .plan-meta {
    grid-template-columns: 1fr;
  }

  .product-nav,
  .hero-actions,
  .product-actions,
  .policy-links {
    width: 100%;
  }

  .product-nav a,
  .hero-actions .button,
  .product-actions .button,
  .cta-panel .button {
    width: 100%;
  }

  .comparison-table {
    min-width: 560px;
  }

  .trust-policy-list,
  .footer {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

.form-card,
.contact-info-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(16, 24, 39, 0.96), rgba(7, 11, 22, 0.96));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.form-card {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

.form-row {
  display: grid;
  gap: 8px;
}

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

.form-card label {
  display: grid;
  gap: 8px;
  color: #dbeafe;
  font-size: 14px;
  font-weight: 800;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 8px;
  background: rgba(5, 7, 13, 0.72);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  padding: 12px 13px;
  outline: none;
}

.form-card textarea {
  resize: vertical;
  min-height: 170px;
  line-height: 1.55;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(24, 211, 139, 0.14);
}

.form-card ::placeholder {
  color: #7f91aa;
}

.form-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.hidden-field {
  display: none !important;
}

.contact-info-panel {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 14px;
  padding: 26px;
}

.contact-info-panel h2 {
  margin: 0;
  color: #fff;
  font-size: 26px;
  line-height: 1.12;
}

.contact-info-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-info-panel a {
  color: var(--cyan);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.contact-note {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-note strong {
  color: var(--gold);
}

.contact-note span {
  color: #c8d7ea;
}

.thank-you-hero {
  min-height: calc(100vh - 210px);
}

@media (max-width: 980px) {
  .contact-page-grid,
  .two-columns {
    grid-template-columns: 1fr;
  }

  .contact-info-panel {
    position: static;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }
}

/* Dropdown navigation and cleaner homepage overview */
.nav {
  position: relative;
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav-group {
  position: relative;
}

.nav-trigger {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
}

.nav-trigger::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 8px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.nav a:hover,
.nav-trigger:hover,
.nav-trigger:focus-visible,
.nav-group:focus-within .nav-trigger,
.nav-group:hover .nav-trigger {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 30;
  display: grid;
  min-width: 230px;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 11, 22, 0.98);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.nav-menu-right {
  right: 0;
  left: auto;
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu a {
  justify-content: flex-start;
  width: 100%;
  min-height: 38px;
  color: #c8d7ea;
  white-space: nowrap;
}

.clean-hero {
  min-height: min(720px, calc(100vh - 76px));
  align-items: center;
}

.overview-copy {
  color: #c8d7ea;
}

.overview-copy p:last-child {
  margin-bottom: 0;
}

.clean-timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.compact-industries .industry-card h3 {
  margin-top: 0;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .nav {
    grid-column: 1 / -1;
    display: flex;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: thin;
  }

  .nav-menu {
    position: fixed;
    top: 86px;
    left: 18px;
    right: 18px;
    min-width: 0;
  }

  .nav-menu-right {
    right: 18px;
    left: 18px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding-bottom: 12px;
  }

  .nav a,
  .nav-trigger {
    min-height: 36px;
    padding: 0 11px;
    font-size: 13px;
    white-space: nowrap;
  }

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

  .clean-timeline {
    grid-template-columns: 1fr;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(16, 24, 39, 0.96), rgba(7, 11, 22, 0.96));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.product-card > div:last-child {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 22px;
}

.product-card h3 {
  margin: 0;
  color: #fff;
  font-size: 24px;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.product-card a:not(.button) {
  color: var(--cyan);
  font-weight: 850;
}

.product-media {
  min-height: 190px;
  border-bottom: 1px solid var(--line);
  background: #08101d;
}

.product-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.featured-product .product-media {
  min-height: 260px;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

/* Pricing: weekly / monthly / yearly chooser */
.product-period-chooser {
  margin: 0 0 18px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(0, 240, 255, 0.22);
  background: rgba(0, 240, 255, 0.05);
}

.period-chooser-title {
  margin: 4px 0 12px;
  font-size: 1.05rem;
}

.plan-period-toggle {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.plan-period-toggle button {
  min-width: 96px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 240, 255, 0.28);
  background: rgba(5, 7, 13, 0.65);
  color: var(--muted, #8b93b8);
  font-weight: 600;
  cursor: pointer;
}

.plan-period-toggle button.is-active {
  color: #05070d;
  background: linear-gradient(135deg, #00f0ff, #8b5cff);
  border-color: transparent;
}

.plan-period-pill {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(0, 240, 255, 0.35);
  color: #00f0ff;
  vertical-align: middle;
}

.plan-period-line {
  margin: 0 0 10px;
  font-size: 0.9rem;
  color: var(--muted, #8b93b8);
}

.period-hint {
  margin: 0;
  font-size: 0.85rem;
}

/* FX Pro Mentor homepage promo */
.fxpro-home-promo {
  padding-top: 0;
}

.fxpro-promo-banner {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 24px;
  align-items: center;
  padding: 28px 30px;
  border-radius: 18px;
  border: 1px solid rgba(0, 240, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(255, 43, 214, 0.08)),
    rgba(10, 12, 26, 0.9);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 40px rgba(0, 240, 255, 0.08);
}

.fxpro-promo-banner h2 {
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}

.fxpro-promo-banner p {
  color: var(--muted, #8b93b8);
  margin: 0 0 16px;
  max-width: 58ch;
}

.fxpro-promo-badge {
  min-height: 180px;
  border-radius: 16px;
  border: 1px solid rgba(0, 240, 255, 0.35);
  background:
    radial-gradient(circle at 30% 30%, rgba(0, 240, 255, 0.22), transparent 55%),
    rgba(5, 7, 13, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
}

.fxpro-promo-badge strong {
  font-size: 1.8rem;
  letter-spacing: 0.16em;
  color: #00f0ff;
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.45);
}

.fxpro-promo-badge span {
  letter-spacing: 0.22em;
  font-size: 0.85rem;
  color: #ff2bd6;
}

.fxpro-promo-badge em {
  margin-top: 10px;
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b6ff3b;
  border: 1px solid rgba(182, 255, 59, 0.35);
  border-radius: 999px;
  padding: 4px 10px;
}

.fxpro-card-media {
  display: grid;
  place-items: center;
  min-height: 260px;
  height: 100%;
  background:
    linear-gradient(145deg, rgba(0, 240, 255, 0.16), rgba(255, 43, 214, 0.12)),
    #0a0c1a;
  color: #00f0ff;
  text-align: center;
}

.fxpro-card-media strong {
  display: block;
  font-size: 2rem;
  letter-spacing: 0.16em;
}

.fxpro-card-media span {
  display: block;
  margin-top: 6px;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: #ff2bd6;
}

@media (max-width: 900px) {
  .fxpro-promo-banner {
    grid-template-columns: 1fr;
  }
  .fxpro-promo-badge {
    min-height: 140px;
  }
}

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

/* Approval-ready site polish */
.site-header {
  grid-template-columns: minmax(220px, 1fr) auto auto auto;
  gap: clamp(12px, 2vw, 22px);
}

.nav-check {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
}

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

.nav .mobile-start {
  display: none;
}

.nav-cta:hover,
.button.primary:hover {
  background: #33e6a0;
}

.page-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero.clean-hero {
  min-height: min(760px, calc(100vh - 76px));
  align-items: center;
}

.hero.clean-hero h1 {
  max-width: 980px;
  font-size: clamp(40px, 5.6vw, 74px);
  line-height: 1;
}

.hero.clean-hero .hero-copy {
  max-width: 790px;
}

.trust-strip,
.feature-list,
.pricing-grid,
.policy-grid {
  display: grid;
  gap: 18px;
}

.trust-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.trust-strip div,
.feature-card,
.pricing-card,
.policy-card,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(16, 24, 39, 0.94), rgba(7, 11, 22, 0.96));
}

.trust-strip div,
.feature-card,
.pricing-card,
.policy-card {
  padding: 22px;
}

.trust-strip strong,
.feature-card strong,
.pricing-card strong {
  display: block;
  color: var(--text);
}

.trust-strip span,
.feature-card p,
.pricing-card p,
.pricing-card li,
.policy-card p,
.policy-card li,
.cta-panel p {
  color: var(--muted);
  line-height: 1.65;
}

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

.feature-card h3 {
  margin: 12px 0 8px;
  font-size: 23px;
}

.feature-card ul,
.pricing-card ul,
.policy-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.pricing-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.billing-toggle {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 11, 22, 0.9);
}

.billing-toggle button {
  min-width: 108px;
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.billing-toggle button.is-active {
  background: var(--green);
  color: #03100b;
}

.pricing-status {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.pricing-status.is-error {
  color: #ffb4c0;
}

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

.pricing-card.featured {
  border-color: rgba(24, 211, 139, 0.62);
  box-shadow: 0 22px 80px rgba(24, 211, 139, 0.12);
}

.price {
  margin: 0;
  color: var(--green);
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 900;
  line-height: 1;
}

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

.pricing-card button[disabled] {
  cursor: not-allowed;
  opacity: 0.6;
}

.pricing-hero .pricing-toolbar {
  justify-content: flex-start;
  margin: 28px 0 0;
}

.hero-billing-toolbar {
  align-items: stretch;
}

.product-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-nav a,
.inline-link,
.plan-details-link {
  color: var(--cyan);
  font-weight: 850;
}

.product-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.compact-section {
  padding-top: 22px;
  padding-bottom: 22px;
}

.pricing-product-section .section-heading p {
  max-width: 860px;
  color: #c8d7ea;
  line-height: 1.65;
}

.bundle-section {
  background:
    linear-gradient(135deg, rgba(246, 194, 68, 0.08), transparent 32%),
    rgba(255, 255, 255, 0.015);
}

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

.detailed-pricing-card {
  min-width: 0;
}

.plan-card-top {
  display: flex;
  gap: 14px;
  align-items: start;
  justify-content: space-between;
}

.plan-card-top h3 {
  margin: 6px 0 0;
  font-size: clamp(28px, 3vw, 38px);
}

.plan-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(246, 194, 68, 0.44);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(246, 194, 68, 0.12);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.plan-meta,
.modal-plan-summary {
  display: grid;
  gap: 10px;
  margin: 0;
}

.plan-meta div,
.modal-plan-summary div {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.plan-meta dt,
.modal-plan-summary dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.plan-meta dd,
.modal-plan-summary dd {
  margin: 0;
  color: #e8f2ff;
  line-height: 1.45;
}

.savings-note {
  margin: 0;
  color: #f9e7a5 !important;
  font-weight: 800;
}

.feature-checklist {
  display: grid;
  gap: 9px;
  max-height: 560px;
  overflow: auto;
  padding-right: 8px;
}

.plan-select-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.tax-note {
  margin: 0;
  font-size: 13px;
}

.comparison-wrap {
  margin-top: 28px;
}

.comparison-wrap h3 {
  margin: 0 0 14px;
  font-size: clamp(24px, 3vw, 34px);
}

.comparison-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 13, 24, 0.88);
}

.comparison-scroll:focus-visible,
.product-nav a:focus-visible,
.button:focus-visible,
.billing-toggle button:focus-visible,
.modal-close-button:focus-visible,
.plan-select-button:focus-visible {
  outline: 3px solid rgba(57, 201, 255, 0.55);
  outline-offset: 3px;
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  color: #c8d7ea;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
}

.comparison-table thead th {
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
}

.comparison-table tbody th {
  width: 24%;
  color: var(--gold);
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: 0;
}

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

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

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.policy-links a {
  color: var(--cyan);
  font-weight: 850;
}

.plan-modal[hidden] {
  display: none;
}

.plan-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(3, 5, 10, 0.78);
}

.plan-modal-panel {
  width: min(640px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid rgba(57, 201, 255, 0.26);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(16, 24, 39, 0.98), rgba(7, 11, 22, 0.98));
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.55);
}

.plan-modal-header {
  display: flex;
  gap: 16px;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.plan-modal-header h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
}

.modal-close-button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.plan-modal p {
  color: #c8d7ea;
  line-height: 1.65;
}

.plan-modal-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.modal-open {
  overflow: hidden;
}

.policy-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.policy-card h2,
.policy-card h3 {
  margin-top: 0;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
}

.cta-panel h2 {
  margin-bottom: 10px;
}

.footer {
  grid-template-columns: minmax(260px, 1.3fr) minmax(150px, 0.55fr) minmax(170px, 0.65fr) auto;
  align-items: start;
}

.footer-brand p {
  max-width: 520px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a,
.footer-brand a {
  color: var(--muted);
}

.footer-links a:hover,
.footer-brand a:hover {
  color: var(--text);
}

.content-hero {
  padding-top: clamp(54px, 8vw, 92px);
  padding-bottom: clamp(44px, 7vw, 82px);
}

.content-hero h1 {
  max-width: 960px;
  font-size: clamp(36px, 4.7vw, 62px);
  line-height: 1.04;
}

.product-card,
.resource-card,
.download-card,
.faq-card,
.note-card,
.industry-card,
.step {
  border-radius: 8px;
}

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

.product-media img,
.screenshot-grid img,
.project-image img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: minmax(220px, 1fr) auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    order: 2;
  }

  .nav-cta {
    order: 3;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    grid-column: 1 / -1;
    padding: 10px clamp(18px, 4vw, 56px) 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 7, 13, 0.97);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  }

  .nav-check:checked ~ .nav {
    display: grid;
    gap: 8px;
  }

  .nav a {
    justify-content: flex-start;
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    background: rgba(255, 255, 255, 0.03);
  }

  .trust-strip,
  .feature-list,
  .pricing-grid,
  .policy-grid,
  .plan-grid,
  .bundle-breakdown-grid,
  .pricing-faq-list,
  .footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

  .nav-cta {
    grid-column: 1 / -1;
    display: none;
  }

  .nav .mobile-start {
    display: inline-flex;
    background: var(--green) !important;
    color: #03100b !important;
    font-weight: 850;
  }

  .hero.clean-hero h1,
  .content-hero h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .hero-copy,
  .content-hero p {
    font-size: 17px;
  }

  .trust-strip,
  .feature-list,
  .pricing-grid,
  .policy-grid,
  .plan-grid,
  .bundle-breakdown-grid,
  .pricing-faq-list,
  .cta-panel,
  .footer {
    grid-template-columns: 1fr;
  }

  .billing-toggle {
    width: 100%;
  }

  .billing-toggle button {
    min-width: 0;
    flex: 1 1 0;
  }

  .feature-checklist {
    max-height: none;
  }

  .comparison-table {
    min-width: 620px;
  }

  .footer {
    gap: 18px;
  }
}

/* FJAM token and payment surfaces */
.token-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: 28px;
  align-items: center;
}

.token-brand-panel {
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.token-brand-panel img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 8px;
  background: #ffffff;
}

.token-brand-panel figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.token-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.6fr);
  gap: 22px;
}

.contract-address,
.payment-address {
  overflow-wrap: anywhere;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.26);
  color: #ffffff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  line-height: 1.5;
}

.token-actions,
.payment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.warning-note,
.crypto-warning {
  padding: 14px;
  border-left: 4px solid #f5c542;
  border-radius: 8px;
  background: rgba(245, 197, 66, 0.1);
  color: #ffe9a6;
}

.token-qr-card {
  text-align: center;
}

.token-qr {
  width: min(100%, 240px);
  aspect-ratio: 1;
  border-radius: 8px;
  background: #ffffff;
  padding: 10px;
}

.token-details-band .detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.token-details-band article {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.token-details-band span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.token-details-band strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
}

.token-side-panel code {
  display: block;
  overflow-wrap: anywhere;
  margin: 10px 0;
  color: #ffffff;
  font-size: 0.9rem;
}

.fjam-payment-section .section-heading {
  max-width: 880px;
}

.fjam-payment-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 22px;
  align-items: start;
}

.fjam-payment-form,
.fjam-invoice-panel {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.fjam-payment-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: #ffffff;
  font-weight: 700;
}

.fjam-payment-form select,
.fjam-payment-form input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.25);
  color: #ffffff;
  padding: 10px 12px;
  font: inherit;
}

.payment-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 700;
}

.payment-status[data-status="confirmed"] {
  background: rgba(47, 204, 113, 0.18);
  color: #9ff0c0;
}

.payment-status[data-status="underpaid"],
.payment-status[data-status="overpaid"],
.payment-status[data-status="expired"],
.payment-status[data-status="failed"] {
  background: rgba(255, 109, 94, 0.16);
  color: #ffb2a9;
}

.fjam-invoice-grid {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.fjam-invoice-grid div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 12px;
}

.fjam-invoice-grid dt {
  color: var(--muted);
}

.fjam-invoice-grid dd {
  margin: 0;
  color: #ffffff;
  overflow-wrap: anywhere;
}

.payment-qr {
  display: grid;
  place-items: center;
  width: 180px;
  aspect-ratio: 1;
  margin: 10px 0;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
  padding: 12px;
}

.payment-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
  padding: 8px;
  border-radius: 8px;
}

.fjam-help-text,
.fjam-status-text {
  color: var(--muted);
}

.auth-section {
  display: grid;
  place-items: start center;
}

.auth-form,
.account-panel {
  width: min(100%, 560px);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 18, 32, 0.88);
}

.auth-form {
  display: grid;
  gap: 16px;
}

.auth-form label,
.account-list div,
.account-row {
  display: grid;
  gap: 8px;
}

.auth-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 8px;
  padding: 0 12px;
  background: #05070d;
  color: var(--text);
  font: inherit;
}

.checkbox-line {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
}

.checkbox-line input {
  width: 18px;
  min-height: 18px;
}

.auth-links,
.account-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.auth-links a {
  color: var(--cyan);
  font-weight: 800;
}

.form-status {
  min-height: 24px;
  color: var(--muted);
}

.form-status[data-status="error"] {
  color: var(--red);
}

.form-status[data-status="ok"] {
  color: var(--green);
}

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

.account-wide {
  grid-column: 1 / -1;
  width: 100%;
}

.account-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.account-list dt,
.account-row span {
  color: var(--muted);
}

.account-list dd {
  margin: 0;
  font-weight: 800;
}

.account-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.account-row:first-of-type {
  border-top: 0;
}

@media (max-width: 860px) {
  .token-hero-layout,
  .token-summary-grid,
  .fjam-payment-panel {
    grid-template-columns: 1fr;
  }

  .token-details-band .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .token-details-band .detail-grid,
  .fjam-invoice-grid div,
  .account-grid,
  .account-row {
    grid-template-columns: 1fr;
  }
}
