/* Design tokens & base — Tracky marketing */
:root {
  --color-bg: #060b16;
  --color-surface: #0a0f1e;
  --color-card: #0f1929;
  --color-border: rgba(255, 255, 255, 0.07);

  --color-green: #059669;
  --color-green-bright: #10b981;
  --color-green-glow: rgba(5, 150, 105, 0.25);
  --color-green-tint: rgba(5, 150, 105, 0.1);

  --color-red: #ef4444;
  --color-red-tint: rgba(239, 68, 68, 0.12);

  --color-white: #ffffff;
  --color-text: #ffffff;
  --color-muted: #94a3b8;
  --color-faint: #475569;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

h1,
h2,
h3 {
  font-family: "Barlow Condensed", sans-serif;
}

h1 {
  font-size: clamp(52px, 12vw, 96px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(36px, 7vw, 58px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
}

h3 {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
}

a {
  color: inherit;
}

/* Reusable components */
.section-label {
  display: inline-block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-green-bright);
  background: var(--color-green-tint);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-green);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary:hover {
  background: var(--color-green-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--color-green-glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--color-white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 32px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: var(--color-green-bright);
  background: rgba(16, 185, 129, 0.07);
}

.badge-link {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.badge-link:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.badge-img {
  display: block;
  height: 52px;
  width: auto;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.pulse-dot--green {
  background: var(--color-green-bright);
}

.pulse-dot--red {
  background: var(--color-red);
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(1) {
  transition-delay: 0s;
}

.fade-up:nth-child(2) {
  transition-delay: 0.08s;
}

.fade-up:nth-child(3) {
  transition-delay: 0.16s;
}

.fade-up:nth-child(4) {
  transition-delay: 0.24s;
}

.fade-up:nth-child(5) {
  transition-delay: 0.32s;
}

.fade-up:nth-child(6) {
  transition-delay: 0.4s;
}

/* Header — structure unchanged; styling matches dark theme */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1em 0;
  background: rgba(6, 11, 22, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  padding: 0 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-desktop {
  display: none;
  gap: 1.5rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

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

.mobile-menu-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-border);
  color: white;
  padding: 0.5rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(16, 185, 129, 0.35);
}

.mobile-menu {
  display: none;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.mobile-menu.active {
  display: block;
}

.mobile-nav {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  color: var(--color-text);
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.mobile-nav-link:hover {
  color: var(--color-green-bright);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px 24px 60px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(5, 150, 105, 0.18) 0%, transparent 70%),
    var(--color-bg);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(5, 150, 105, 0.12);
  border: 1px solid rgba(5, 150, 105, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--color-green-bright);
  font-weight: 600;
  margin-bottom: 32px;
}

.hero-title {
  font-size: clamp(36px, 8.4vw, 67px);
  margin-bottom: 24px;
}

.hero-title-line {
  display: block;
}

.hero-title-line--accent {
  color: var(--color-green-bright);
}

.hero-sub {
  font-size: clamp(17px, 3vw, 20px);
  color: var(--color-muted);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-sub strong {
  color: var(--color-white);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 48px;
}

.proof-item {
  font-size: 13px;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 7px;
}

.proof-item svg {
  color: var(--color-green-bright);
  flex-shrink: 0;
}

.hero-showcase {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.phone-mockup {
  position: relative;
  width: 320px;
  height: auto;
  background: #000;
  border-radius: 1.2rem;
  border: 4px solid #1e293b;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px var(--color-border);
  overflow: hidden;
  padding: 10px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 0.8rem;
  background: #f8fafc;
}

.phone-gloss {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%, transparent 100%);
  border-radius: 0.8rem;
  pointer-events: none;
}

/* Problem */
.problem {
  padding: 80px 24px;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  z-index: 1;
}

.problem-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.problem h2 span {
  color: var(--color-green-bright);
}

.problem p {
  font-size: 17px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.problem p strong {
  color: var(--color-white);
}

/* Features */
.features {
  padding: 96px 24px;
  position: relative;
  z-index: 1;
}

.features-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 60px;
}

.features-header p {
  font-size: 17px;
  color: var(--color-muted);
  max-width: 500px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}

.feature-card {
  background: var(--color-card);
  padding: 32px 28px;
  transition: background 0.2s;
}

.feature-card:hover {
  background: #131f35;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(5, 150, 105, 0.12);
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 20px;
}

.feature-card h3 {
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.6;
}

.feature-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-green-bright);
  margin-top: 14px;
}

/* Live spotlight */
.live-spotlight {
  padding: 96px 24px;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  z-index: 1;
}

.live-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-red-tint);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  color: #f87171;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.live-inner h2 span {
  color: var(--color-green-bright);
}

.live-inner p {
  font-size: 18px;
  color: var(--color-muted);
  max-width: 560px;
  margin: 0 auto 16px;
  line-height: 1.7;
}

.live-inner p strong {
  color: var(--color-white);
}

.live-scenarios {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
}

.scenario {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 14px 20px;
  font-size: 14px;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.scenario span {
  font-size: 18px;
}

/* How it works — screenshots & tabs preserved */
.how-it-works {
  background: var(--color-bg);
  padding: 96px 24px 96px;
  position: relative;
  z-index: 1;
}

.how-it-works .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.how-it-works .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.how-it-works .section-badge {
  display: inline-block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-green-bright);
  background: var(--color-green-tint);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 4px 12px;
  border-radius: 2px;
}

.how-it-works .section-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(36px, 7vw, 58px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--color-text);
}

.how-it-works .section-description {
  color: var(--color-muted);
  font-size: 17px;
  max-width: 560px;
  line-height: 1.65;
}

.tabs-container {
  max-width: 1280px;
  margin: 0 auto;
}

.tabs-list {
  flex-wrap: wrap;
  display: flex;
  gap: 8px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 2rem;
}

.tab-trigger {
  min-width: 120px;
  background: transparent;
  border: 1px solid transparent;
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-muted);
  transition: all 0.2s;
  flex: 1 1 0;
}

.tab-trigger.active {
  background: var(--color-green);
  color: #fff;
  border-color: var(--color-green);
}

.tab-trigger:hover:not(.active) {
  color: var(--color-green-bright);
  background: rgba(16, 185, 129, 0.08);
}

.desktop-only {
  display: none;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

.tab-image {
  display: flex;
  justify-content: center;
}

.phone-mockup-small {
  position: relative;
  width: 320px;
  height: auto;
  background: #000;
  border-radius: 1.2rem;
  border: 4px solid #1e293b;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  padding: 10px;
}

.phone-mockup-small img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 0.8rem;
  background: #f8fafc;
}

.tab-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tab-text h3 {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

.tab-text p {
  color: var(--color-muted);
  font-size: 16px;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-muted);
  font-size: 15px;
}

.feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green-bright);
  flex-shrink: 0;
}

/* Audience */
.audience {
  padding: 96px 24px;
  position: relative;
  z-index: 1;
}

.audience-inner {
  max-width: 900px;
  margin: 0 auto;
}

.audience-header {
  text-align: center;
  margin-bottom: 56px;
}

.audience-header p {
  color: var(--color-muted);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
}

.audience-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.audience-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
}

.audience-card.primary {
  border-color: rgba(5, 150, 105, 0.35);
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.08) 0%, var(--color-card) 60%);
}

.audience-card.primary::before {
  content: "START HERE";
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  font-family: "Barlow Condensed", sans-serif;
  color: var(--color-green-bright);
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 3px 8px;
  border-radius: 2px;
}

.audience-role {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--color-text);
}

.audience-card > p {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.audience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.audience-list li {
  font-size: 14px;
  color: var(--color-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.audience-list li::before {
  content: "→";
  color: var(--color-green-bright);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Testimonials */
.proof-section {
  padding: 80px 24px;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  z-index: 1;
}

.proof-section-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.proof-section-inner h2 {
  margin-bottom: 48px;
  color: var(--color-text);
}

.quote-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-green);
  border-radius: 6px;
  padding: 28px 32px;
  text-align: left;
  margin-bottom: 16px;
}

.quote-text {
  font-size: 18px;
  line-height: 1.65;
  color: var(--color-white);
  margin-bottom: 16px;
  font-style: italic;
  font-family: "Barlow", sans-serif;
}

.quote-author {
  font-size: 13px;
  color: var(--color-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Final CTA */
.final-cta {
  padding: 100px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(5, 150, 105, 0.15) 0%, transparent 70%),
    var(--color-bg);
}

.final-cta h2 {
  margin-bottom: 20px;
  color: var(--color-text);
}

.final-cta h2 span {
  color: var(--color-green-bright);
}

.final-cta > p {
  font-size: 18px;
  color: var(--color-muted);
  max-width: 480px;
  margin: 0 auto 40px;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}


.final-note {
  font-size: 14px;
  color: var(--color-muted);
}

/* Footer */
.footer {
  border-top: 1px solid var(--color-border);
  padding: 1.5rem 0;
  background: var(--color-surface);
  position: relative;
  z-index: 1;
}

.footer .container,
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.footer-nav {
  display: flex;
  gap: 1rem;
}

.footer-link {
  font-size: 0.75rem;
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--color-green-bright);
  text-decoration: underline;
}

/* Responsive */
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .tab-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .desktop-only {
    display: block;
  }

  .footer-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(26px, 8vw, 32px);
  }
}

@media (max-width: 600px) {
  .desktop-only {
    display: block !important;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 20px 20px 48px;
  }

  .features,
  .live-spotlight,
  .audience,
  .how-it-works {
    padding: 64px 20px;
  }

  .problem {
    padding: 64px 20px;
  }

  .proof-section {
    padding: 64px 20px;
  }

  .final-cta {
    padding: 72px 20px;
  }

  .cta-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .badge-img {
    height: 44px;
  }

  .hero-proof {
    gap: 14px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .audience-cards {
    grid-template-columns: 1fr;
  }

  .store-badges {
    flex-direction: column;
    align-items: center;
  }

  .live-scenarios {
    flex-direction: column;
    align-items: center;
  }

  .scenario {
    width: 100%;
    max-width: 340px;
    justify-content: flex-start;
  }

  .quote-card {
    padding: 20px;
  }

  .quote-text {
    font-size: 16px;
  }

  .tabs-list {
    padding: 6px;
    gap: 6px;
  }

  .tab-trigger {
    font-size: 0.8rem;
    padding: 0.55rem 0.75rem;
    min-width: 0;
  }
}

/* Legal documents (privacy, terms) — matches marketing tokens & typography */
.legal-main {
  position: relative;
  z-index: 1;
  padding: 96px 24px 80px;
}

@media (max-width: 768px) {
  .legal-main {
    padding: 64px 20px 48px;
  }
}

.legal-container {
  max-width: 760px;
  margin: 0 auto;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 40px 32px 36px;
}

@media (max-width: 600px) {
  .legal-container {
    padding: 28px 20px 24px;
  }
}

.legal-container h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin: 0 0 1.25rem;
}

.legal-container h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.25;
  color: var(--color-green-bright);
  margin: 2.25rem 0 0.75rem;
}

.legal-container h2:first-of-type {
  margin-top: 1.5rem;
}

.legal-container h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: var(--color-text);
  margin: 1.5rem 0 0.5rem;
}

.legal-container p,
.legal-container li {
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.legal-container ul,
.legal-container ol {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

.legal-container li {
  margin-bottom: 0.5rem;
}

.legal-container strong {
  color: var(--color-text);
  font-weight: 600;
}

.legal-container a {
  color: var(--color-green-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}

.legal-container a:hover {
  color: var(--color-white);
}

.legal-container hr {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid var(--color-border);
}

.legal-contact {
  background: var(--color-green-tint);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
}

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

.legal-meta {
  margin-top: 2rem;
  font-size: 14px;
  color: var(--color-faint);
}

.legal-meta--lead {
  margin-top: 0;
  margin-bottom: 0;
}

/* Pageclip / legacy form blocks (other pages) */
.pageclip-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--color-card);
  padding: 2rem 2rem 1.5rem 2rem;
  border-radius: 1rem;
  border: 1px solid var(--color-border);
}

.pageclip-form label {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  color: var(--color-muted);
  gap: 0.5rem;
}

.pageclip-form input,
.pageclip-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  background: var(--color-bg);
  color: var(--color-text);
  resize: vertical;
  transition: border-color 0.2s;
}

.pageclip-form input:focus,
.pageclip-form textarea:focus {
  outline: none;
  border-color: var(--color-green);
}

.pageclip-form__submit,
.pageclip-form button[type="submit"] {
  background: var(--color-green);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.75rem;
  padding: 0.9rem 0;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}

.pageclip-form__submit:hover,
.pageclip-form button[type="submit"]:hover {
  background: var(--color-green-bright);
}

.contact-section {
  background: var(--color-surface);
  padding: 3rem 0 2rem 0;
}

.contact-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-green-bright);
  margin-bottom: 2rem;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}
