﻿:root {
  --background: hsl(200 10% 5%);
  --foreground: hsl(190 15% 90%);
  --card: hsl(235 55% 10% / 0.72);
  --primary: hsl(47 93% 48%);
  --primary-foreground: hsl(200 10% 5%);
  --secondary: hsl(186 10% 15%);
  --muted: hsl(186 8% 30%);
  --muted-foreground: hsl(190 12% 65%);
  --accent: hsl(43 100% 38%);
  --border: hsl(186 10% 18%);
  --light-panel: hsl(48 100% 93%);
  --light-panel-foreground: hsl(200 10% 10%);
  --sky-panel: hsl(192 62% 94%);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: "Inter", sans-serif;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

a {
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1400px;
  padding-left: 32px;
  padding-right: 32px;
  margin: 0 auto;
}

.center {
  text-align: center;
}

.max-w {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.text-muted {
  color: var(--muted-foreground);
}

.text-primary {
  color: var(--primary);
}

.text-accent {
  color: var(--accent);
}

.text-light-muted {
  color: hsl(200 10% 10% / 0.78);
}

.text-light-soft {
  color: hsl(200 10% 10% / 0.65);
}

.text-dark-muted {
  color: hsl(200 10% 10% / 0.82);
}

.text-gradient-gold {
  background: linear-gradient(135deg, hsl(47 93% 48%), hsl(47 100% 68%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-pad-top {
  padding: 110px 0 78px;
}

.section-pad {
  padding: 84px 0;
}

.section-pad-sm {
  padding: 66px 0;
}

.section-pad-lg {
  padding: 100px 0;
}

.mt-md {
  margin-top: 24px;
}

.mt-lg {
  margin-top: 52px;
}

.tiny {
  font-size: 12px;
}

h1 {
  font-size: clamp(2.1rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
  max-width: 660px;
}

h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.25rem);
  font-weight: 800;
  line-height: 1.08;
}

h3 {
  font-size: 1.04rem;
  font-weight: 700;
}

.btn {
  display: inline-block;
  border-radius: 10px;
  border: 0;
  background: var(--primary);
  color: var(--primary-foreground);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.98rem;
  padding: 14px 28px;
  transition: filter 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 0 34px -10px hsl(47 93% 48% / 0.62);
}

.btn-sm {
  padding: 9px 16px;
  font-size: 0.78rem;
}

.pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

.sticky-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 60;
  transition: all 280ms ease;
}

.sticky-nav.scrolled {
  background: hsl(235 55% 10% / 0.95);
  box-shadow: 0 12px 34px hsl(200 30% 3% / 0.45);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}

.logo {
  width: auto;
  height: 80px;
}

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

.price {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary);
}

.price.big {
  font-size: 2.2rem;
  margin: 14px 0 16px;
}

.mini-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid hsl(47 93% 48% / 0.28);
  background: hsl(186 10% 15% / 0.58);
  color: var(--muted-foreground);
  font-size: 11px;
  font-weight: 500;
  padding: 5px 12px;
}

.mini-chip .lucide {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.clarity-chip {
  background: hsl(186 10% 15% / 0.5);
  border-color: hsl(186 10% 24% / 0.6);
  color: hsl(190 15% 90%);
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
}

.hero-bg,
.operator-bg,
.cover-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-bg img,
.operator-bg img,
.cover-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    hsl(200 10% 5% / 1) 0%,
    hsl(200 10% 5% / 0.9) 55%,
    hsl(200 10% 5% / 0.6) 100%
  );
}

.hero-grid {
  display: grid;
  gap: 42px;
  align-items: center;
  grid-template-columns: 1.1fr 0.9fr;
}

.hero-copy {
  margin: 20px 0 0;
  max-width: 620px;
}

.check-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0;
  font-size: 0.92rem;
}

.check-list li i {
  width: 20px;
  height: 20px;
  color: var(--primary);
  margin-top: 1px;
  flex-shrink: 0;
}

.hero-product-wrap {
  position: relative;
}

.hero-glow {
  position: absolute;
  inset: -26px;
  border-radius: 30px;
  background: radial-gradient(circle at center, hsl(47 93% 48% / 0.14), transparent 60%);
  filter: blur(10px);
}

.product-stack {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 24px 40px hsl(220 35% 2% / 0.56));
  animation: bob 4.2s ease-in-out infinite;
}

.final-stack {
  max-width: 220px;
  margin-bottom: 24px;
}

.meter-card {
  margin: 16px auto 0;
  max-width: 390px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: hsl(186 10% 15% / 0.82);
  backdrop-filter: blur(6px);
  padding: 14px;
}

.meter-top,
.meter-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
}

.meter-track {
  margin: 8px 0 7px;
  width: 100%;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: hsl(186 8% 30% / 0.45);
}

.meter-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, hsl(43 100% 38%), hsl(47 93% 48%));
  animation: grow-in 1s ease-out both;
}

.meter-score {
  color: var(--primary);
  font-weight: 700;
}

.panel-light {
  background: var(--light-panel);
  color: var(--light-panel-foreground);
}

.panel-charcoal {
  background: hsl(186 10% 15%);
}

.panel-gradient-dark {
  background: linear-gradient(180deg, hsl(200 10% 5%) 0%, hsl(235 55% 10%) 100%);
}

.panel-gradient-night {
  background: linear-gradient(180deg, hsl(235 55% 10%) 0%, hsl(210 95% 5%) 100%);
}

.panel-yellow {
  background: var(--primary);
  color: var(--primary-foreground);
}

.split-2 {
  display: grid;
  gap: 32px;
  align-items: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.cards-gap {
  gap: 18px;
}

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

.light-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid hsl(43 100% 38% / 0.2);
  background: hsl(48 100% 93% / 0.6);
  border-radius: 10px;
  padding: 12px 13px;
  font-size: 0.9rem;
  font-weight: 500;
}

.light-list-item .lucide {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.panel-light h2 {
  color: hsl(200 10% 10%);
}

.panel-light p {
  font-size: 1.125rem;
  line-height: 1.6;
}

.panel-light .plain-list li .lucide {
  color: var(--accent);
}

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

.compliance-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

.compliance-title {
  margin-top: 12px;
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: var(--light-panel-foreground);
}

.compliance-text {
  margin-top: 16px;
  color: hsl(200 10% 10% / 0.8);
  font-size: 1rem;
  line-height: 1.6;
}

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

.compliance-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.95rem;
  color: hsl(200 10% 10% / 0.9);
}

.compliance-item .lucide {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--accent);
  flex-shrink: 0;
}

.compliance-how {
  margin-top: 20px;
  font-size: 0.95rem;
  color: hsl(200 10% 10% / 0.7);
}

.compliance-note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: hsl(200 10% 10% / 0.5);
}

.compliance-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.eyebrow,
.eyebrow-light {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.73rem;
  font-weight: 700;
}

.eyebrow {
  color: var(--primary);
  text-align: center;
}

.eyebrow-light {
  color: var(--accent);
}

.card-dark,
.card-blur {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  transition: all 200ms ease;
}

.card-dark {
  background: hsl(186 10% 15% / 0.62);
}

.card-blur {
  background: var(--card);
  backdrop-filter: blur(6px);
}

.card-dark:hover,
.card-blur:hover {
  border-color: hsl(47 93% 48% / 0.45);
  box-shadow: 0 0 30px -8px hsl(47 93% 48% / 0.36);
  transform: translateY(-2px);
}

.card-dark h3,
.card-blur h3 {
  font-size: 0.98rem;
}

.card-icon {
  width: 32px;
  height: 32px;
  color: var(--primary);
  margin-bottom: 10px;
}

.module-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: hsl(47 93% 48% / 0.12);
}

.icon-chip .lucide {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.tag {
  display: inline-block;
  margin-top: 11px;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: hsl(47 93% 48% / 0.12);
}

.filter-row {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter {
  border: 1px solid var(--border);
  background: hsl(186 10% 15% / 0.4);
  color: var(--muted-foreground);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.filter.active {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: transparent;
  box-shadow: 0 0 30px -12px hsl(47 93% 48% / 0.7);
}

.filter:hover {
  border-color: hsl(47 93% 48% / 0.4);
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  justify-content: center;
}

.pill {
  display: inline-block;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.09em;
  background: hsl(186 10% 15%);
  color: var(--primary);
}

.module-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.module-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted-foreground);
  margin: 6px 0;
}

.module-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary);
  margin-top: 7px;
  flex-shrink: 0;
}

.operator {
  position: relative;
  overflow: hidden;
}

.operator-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, hsl(235 55% 10% / 0.95) 0%, hsl(210 95% 5% / 0.95) 100%);
}

.rel {
  position: relative;
  z-index: 2;
}

.stack-list {
  display: grid;
  gap: 12px;
}

.stack-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  border-radius: 11px;
  border: 1px solid var(--border);
  background: hsl(235 55% 10% / 0.58);
  padding: 14px;
  transition: border-color 180ms ease;
}

.stack-row:hover {
  border-color: hsl(47 93% 48% / 0.38);
}

.stack-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: hsl(47 93% 48% / 0.14);
  color: var(--primary);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.stack-row p,
.stack-row h3 {
  margin: 0;
}

.stack-row p {
  font-size: 0.82rem;
}

.operator-note {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid hsl(47 93% 48% / 0.2);
  background: hsl(47 93% 48% / 0.05);
  border-radius: 10px;
  padding: 16px;
  font-size: 0.9rem;
  font-style: italic;
  color: hsl(190 15% 90% / 0.8);
  margin-top: 16px;
}

.operator-note .lucide {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.tool-card {
  border-radius: 12px;
  border: 1px solid hsl(47 93% 48% / 0.2);
  background: hsl(235 55% 10% / 0.6);
  padding: 32px;
  max-width: 380px;
  width: 100%;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 58px -16px hsl(47 93% 48% / 0.45);
}

.tool-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.operator-grid {
  align-items: center;
}

.tool-card ul,
.plain-list {
  margin: 10px 0 0;
  padding-left: 18px;
}

.tool-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.tool-card li,
.plain-list li {
  margin: 6px 0;
}

.tool-card li {
  list-style: none;
  margin-left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tool-card li .lucide {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.node-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.node-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.node {
  border: 1px solid hsl(47 93% 48% / 0.35);
  border-radius: 10px;
  text-align: center;
  padding: 18px 12px;
  background: hsl(47 93% 48% / 0.12);
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  min-width: 170px;
}

.node-arrow {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.chip-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.chip-row.left {
  justify-content: flex-start;
}

.chip-light {
  border-radius: 999px;
  background: hsl(43 100% 38% / 0.1);
  border: 1px solid hsl(43 100% 38% / 0.2);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
}

.need-title .lucide {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.max-w-center {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.doc-preview {
  border: 2px dashed hsl(43 100% 38% / 0.3);
  background: hsl(48 100% 93%);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 12px 24px hsl(220 20% 10% / 0.12);
}

.line {
  height: 8px;
  border-radius: 10px;
  background: hsl(200 10% 10% / 0.1);
  margin: 9px 0;
}

.w75 { width: 75%; }
.w80 { width: 80%; }
.w66 { width: 66%; }
.w100 { width: 100%; }

.badge {
  display: inline-block;
  margin: 7px 0;
  border-radius: 8px;
  background: hsl(47 93% 48% / 0.2);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 10px;
}

.need-card {
  margin-top: 16px;
  border: 1px solid hsl(43 100% 38% / 0.2);
  background: hsl(48 100% 93%);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 6px 12px hsl(220 20% 10% / 0.08);
}

.need-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--light-panel-foreground);
  font-size: 0.9rem;
  font-weight: 700;
}

.need-card h3 {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--light-panel-foreground);
  font-size: 0.86rem;
  font-weight: 700;
}

.need-card h3 i {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.cover {
  position: relative;
  overflow: hidden;
  color: var(--foreground);
}

.cover-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    hsl(210 95% 5% / 0.55) 0%,
    hsl(210 95% 5% / 0.65) 100%
  );
}

.cover-desc {
  color: var(--muted-foreground);
  margin-top: 10px;
}

.cover-list {
  margin-top: 16px;
}

.cover-list li {
  color: hsl(190 15% 90% / 0.9);
}

.cover-list li .lucide {
  color: var(--accent);
}

.spec-card {
  border-radius: 12px;
  border: 1px solid hsl(43 100% 38% / 0.23);
  background: hsl(48 100% 93%);
  padding: 18px;
  color: var(--light-panel-foreground);
}

.spec-card h3 {
  display: flex;
  align-items: center;
  gap: 7px;
}

.spec-card h3 i {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.spec-grid {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.spec {
  border-radius: 8px;
  background: hsl(192 62% 94%);
  text-align: center;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 12px;
  color: var(--light-panel-foreground);
}

.prompt-card {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  border: 1px solid hsl(47 93% 48% / 0.2);
  background: hsl(235 55% 10% / 0.76);
  backdrop-filter: blur(8px);
  padding: 18px;
}

.prompt-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--primary);
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  border-radius: 7px;
  background: var(--secondary);
  color: var(--foreground);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 7px 10px;
  cursor: pointer;
}

.copy-btn i {
  width: 14px;
  height: 14px;
}

.copy-btn:hover {
  background: hsl(186 8% 30%);
}

.prompt-card pre {
  margin: 0;
  white-space: pre-wrap;
  font-family: Consolas, Monaco, monospace;
  font-size: 0.9rem;
  color: hsl(190 15% 84%);
  line-height: 1.62;
}

.hook-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.songcraft-grid {
  align-items: center;
}

.hook-head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hook-head .lucide {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.hook-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: hsl(186 10% 15% / 0.46);
  padding: 10px;
}

.hook-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: hsl(47 93% 48% / 0.14);
  color: var(--primary);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.hook-item p {
  margin: 0;
  font-size: 0.92rem;
}

.score-card {
  border: 1px solid hsl(47 93% 48% / 0.2);
  border-radius: 12px;
  background: hsl(235 55% 10% / 0.6);
  padding: 18px;
  box-shadow: 0 0 42px -12px hsl(47 93% 48% / 0.34);
  margin: 0;
  max-width: 680px;
}

.score-row {
  margin: 12px 0;
}

.score-row > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  margin-bottom: 5px;
}

.score-row b {
  color: var(--primary);
}

.bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: hsl(186 8% 30% / 0.4);
  overflow: hidden;
}

.bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(to right, hsl(43 100% 38%), hsl(47 93% 48%));
}

.num {
  display: inline-block;
  font-size: 3.2rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  color: hsl(47 93% 48% / 0.24);
}

.done {
  margin-top: 14px;
  display: inline-block;
  border-radius: 999px;
  background: hsl(47 93% 48% / 0.12);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 12px;
}

.check-card {
  border: 2px solid hsl(200 10% 5% / 0.2);
  border-radius: 12px;
  background: hsl(200 10% 5% / 0.1);
  padding: 16px;
}

.plain-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.plain-list li .lucide {
  width: 16px;
  height: 16px;
  color: currentColor;
  flex-shrink: 0;
  margin-top: 1px;
}

.radio-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.radio-head .lucide {
  width: 32px;
  height: 32px;
  color: currentColor;
}

.faq {
  max-width: 900px;
}

details {
  border-bottom: 1px solid hsl(43 100% 38% / 0.23);
  padding: 14px 0;
}

summary {
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

details p {
  margin: 8px 0 0;
  color: hsl(200 10% 10% / 0.75);
}

.footer {
  background: hsl(210 95% 5%);
  padding: 44px 0 62px;
}

.footer-logo {
  height: 62px;
  opacity: 0.62;
}

.footer-notes {
  margin: 16px auto 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted-foreground);
  font-size: 11px;
}

.footer-notes span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-notes .lucide {
  width: 14px;
  height: 14px;
  color: var(--muted-foreground);
}

.section-icon {
  width: 40px;
  height: 40px;
  color: var(--primary);
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  animation: fade-in-up 0.6s ease-out forwards;
}

svg.lucide {
  stroke-width: 2;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 18px -6px hsl(47 93% 48% / 0.35);
  }
  50% {
    box-shadow: 0 0 42px -8px hsl(47 93% 48% / 0.58);
  }
}

@keyframes grow-in {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1040px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .node-wrap {
    width: 100%;
    justify-content: center;
  }

  .node-arrow {
    display: none;
  }

  .logo {
    height: 58px;
  }

  .hide-sm {
    display: none;
  }

  .section-pad-top {
    padding-top: 92px;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 70;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    background: hsl(235 55% 10% / 0.96);
    backdrop-filter: blur(8px);
    padding: 10px 12px;
  }

  body {
    padding-bottom: 72px;
  }
}

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

@media (min-width: 768px) {
  .section-pad {
    padding: 112px 0;
  }
}
