/* ======================================================================
   main.css — The Magic Lizard Website Theme
   Fonts: Barlow Condensed (headings) + Inter (body)
   ====================================================================== */

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

:root {
  --navy: #07091a;
  --navy2: #0d1128;
  --navy3: #131730;
  --card: #0f1322;
  --yellow: #f5c800;
  --yellow2: #e6b800;
  --yellow3: #fdd83a;
  --offwhite: #f0efe9;
  --muted: #7a7f96;
  --border: rgba(245, 200, 0, 0.15);
  --border2: rgba(245, 200, 0, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--navy);
  color: var(--offwhite);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 64px;
  background: rgba(7, 9, 26, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 34px;
  height: 34px;
}

.nav-wordmark {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--offwhite);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-wordmark span {
  color: var(--yellow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--yellow);
  color: var(--navy) !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600 !important;
  font-size: 0.875rem;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--yellow3) !important;
  color: var(--navy) !important;
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(240, 239, 233, 0.15);
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
  z-index: 110;
  transition: border-color 0.2s;
}

.nav-hamburger:hover {
  border-color: rgba(240, 239, 233, 0.35);
}

.hamburger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--offwhite);
  border-radius: 1px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.nav-open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── NAV OVERLAY ── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 9, 26, 0.7);
  backdrop-filter: blur(4px);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-open .nav-overlay {
  display: block;
  opacity: 1;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 5% 60px;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      ellipse 60% 60% at 80% 40%,
      rgba(245, 200, 0, 0.04) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 40% at 10% 80%,
      rgba(245, 200, 0, 0.025) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.hero-eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3rem, 5vw, 5.25rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--offwhite);
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  color: var(--yellow);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-sub strong {
  color: var(--offwhite);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: var(--yellow);
  color: var(--navy);
  padding: 13px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--yellow3);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--offwhite);
  padding: 13px 28px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid rgba(240, 239, 233, 0.2);
  transition:
    border-color 0.2s,
    transform 0.15s;
}

.btn-ghost:hover {
  border-color: rgba(240, 239, 233, 0.45);
  transform: translateY(-1px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(245, 200, 0, 0.1);
  border: 1px solid rgba(245, 200, 0, 0.2);
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}

.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

/* ── LIZARD SVG ── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.lizard-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* ── TRUSTED BAR ── */
.trust-bar {
  padding: 28px 5%;
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.trust-pills {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-pill {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: rgba(240, 239, 233, 0.4);
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(240, 239, 233, 0.08);
  border-radius: 3px;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.trust-pill:hover {
  color: var(--offwhite);
  border-color: rgba(240, 239, 233, 0.2);
}

/* ── SOCIAL PROOF BAR ── */
.social-proof-bar {
  padding: 14px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--border2);
  background: rgba(245, 200, 0, 0.025);
}

.social-proof-text {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240, 239, 233, 0.5);
}

/* ── SECTIONS ── */
section {
  padding: 88px 5%;
}

.section-eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--offwhite);
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* ── HOW IT WORKS ── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border2);
  border: 1px solid var(--border2);
  border-radius: 8px;
  overflow: hidden;
}

.how-step {
  background: var(--card);
  padding: 2rem 1.75rem;
  position: relative;
  transition: background 0.2s;
}

.how-step:hover {
  background: #141829;
}

.how-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(245, 200, 0, 0.12);
  line-height: 1;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.how-step:hover .how-num {
  color: rgba(245, 200, 0, 0.22);
}

.how-icon {
  width: 38px;
  height: 38px;
  background: rgba(245, 200, 0, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.how-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--yellow);
}

.how-step h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--offwhite);
  margin-bottom: 0.5rem;
}

.how-step p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

.how-connector {
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40%;
  background: linear-gradient(transparent, rgba(245, 200, 0, 0.3), transparent);
}

/* ── FEATURE CARDS ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.feat-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 1.75rem;
  transition:
    border-color 0.2s,
    transform 0.2s;
}

.feat-card:hover {
  border-color: rgba(245, 200, 0, 0.25);
  transform: translateY(-3px);
}

.feat-icon {
  width: 44px;
  height: 44px;
  background: rgba(245, 200, 0, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.feat-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--yellow);
}

.feat-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--offwhite);
  margin-bottom: 0.5rem;
}

.feat-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

.feat-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(245, 200, 0, 0.1);
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 0.85rem;
}

/* ── ARCHITECTURE ── */
.arch-section {
  background: var(--navy2);
}

.arch-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.arch-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.arch-layer {
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border2);
  position: relative;
  transition: border-color 0.2s;
}

.arch-layer:first-child {
  border-radius: 8px 8px 0 0;
}

.arch-layer:last-child {
  border-radius: 0 0 8px 8px;
}

.arch-layer:not(:last-child) {
  border-bottom: none;
}

.arch-layer:hover {
  border-color: rgba(245, 200, 0, 0.3);
  z-index: 1;
}

.arch-layer-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.3rem;
}

.arch-layer h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--offwhite);
  margin-bottom: 0.35rem;
}

.arch-layer p {
  font-size: 0.8rem;
  color: var(--muted);
}

.arch-layer-badge {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(240, 239, 233, 0.25);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.arch-detail {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.arch-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.arch-detail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  margin-top: 7px;
  flex-shrink: 0;
}

.arch-detail-item h5 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--offwhite);
  margin-bottom: 0.2rem;
}

.arch-detail-item p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── PROTOCOLS ── */
.protocols-section {
  background: var(--navy);
}

.protocols-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.proto-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition:
    border-color 0.2s,
    transform 0.2s;
}

.proto-card:hover {
  border-color: rgba(245, 200, 0, 0.3);
  transform: translateY(-2px);
}

.proto-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--yellow);
  display: block;
  margin-bottom: 0.3rem;
}

.proto-desc {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── LOOP DIAGRAM ── */
.loop-section {
  background: var(--navy3);
}

.loop-container {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 3rem 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.loop-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.loop-steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 1px;
  background: linear-gradient(
    to right,
    var(--yellow),
    rgba(245, 200, 0, 0.2),
    var(--yellow),
    rgba(245, 200, 0, 0.2)
  );
}

.loop-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0.5rem;
  text-align: center;
}

.loop-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(245, 200, 0, 0.1);
  border: 1px solid rgba(245, 200, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.loop-circle svg {
  width: 26px;
  height: 26px;
  fill: var(--yellow);
}

.loop-step-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--offwhite);
  margin-bottom: 0.4rem;
}

.loop-step-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.loop-outcome {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border2);
}

.outcome-card {
  flex: 1;
  padding: 1.25rem;
  border-radius: 6px;
  border: 1px solid var(--border2);
}

.outcome-card.pass {
  background: rgba(22, 163, 74, 0.06);
  border-color: rgba(22, 163, 74, 0.2);
}

.outcome-card.fail {
  background: rgba(245, 200, 0, 0.04);
  border-color: rgba(245, 200, 0, 0.15);
}

.outcome-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.outcome-card.pass .outcome-label {
  color: #4ade80;
}

.outcome-card.fail .outcome-label {
  color: var(--yellow);
}

.outcome-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── COMPARISON ── */
.compare-section {
  background: var(--navy);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}

.compare-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 1.75rem;
  transition:
    border-color 0.2s,
    transform 0.2s;
}

.compare-card:hover {
  border-color: rgba(245, 200, 0, 0.2);
  transform: translateY(-2px);
}

.compare-card-hero {
  border-color: rgba(245, 200, 0, 0.25);
  background: rgba(245, 200, 0, 0.03);
}

.compare-card-hero:hover {
  border-color: rgba(245, 200, 0, 0.45);
}

.compare-card-header {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border2);
}

.compare-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 0.6rem;
}

.tag-java {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

.tag-enterprise {
  background: rgba(59, 130, 246, 0.12);
  color: #3b82f6;
}

.tag-lizard {
  background: rgba(245, 200, 0, 0.15);
  color: var(--yellow);
}

.compare-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--offwhite);
  margin-bottom: 0.2rem;
}

.compare-subtitle {
  font-size: 0.8rem;
  color: var(--muted);
}

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.compare-list li {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.compare-check {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.75rem;
  margin-top: 1px;
}

.compare-check.tick {
  color: #4ade80;
}

.compare-check.cross {
  color: rgba(240, 239, 233, 0.25);
}

/* ── FIT / IS THIS FOR ME? ── */
.fit-section {
  background: var(--navy);
}

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

.fit-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 1.75rem;
  transition:
    border-color 0.2s,
    transform 0.2s;
  display: flex;
  flex-direction: column;
}

.fit-card:hover {
  border-color: rgba(245, 200, 0, 0.25);
  transform: translateY(-2px);
}

.fit-icon {
  width: 40px;
  height: 40px;
  background: rgba(245, 200, 0, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.fit-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--yellow);
}

.fit-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--offwhite);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.fit-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.fit-verdict {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
  display: inline-block;
  align-self: flex-start;
}

.fit-verdict.yes {
  background: rgba(74, 222, 128, 0.1);
  color: #4ade80;
}

/* ── STATS ── */
.stats-section {
  background: var(--navy2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--border2);
  border-radius: 8px;
  overflow: hidden;
}

.stat-cell {
  background: var(--card);
  padding: 2rem 1.75rem;
}

.stat-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── CTA ── */
.cta-section {
  background: var(--navy);
  text-align: center;
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(245, 200, 0, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-section .section-title {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  margin-bottom: 1.25rem;
}

.cta-section .section-sub {
  margin: 0 auto 2.5rem;
  text-align: center;
}

.cta-section .hero-actions {
  justify-content: center;
}

/* ── CONTACT ── */
.contact-section {
  background: var(--navy2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
}

input,
textarea,
select {
  background: var(--card);
  border: 1px solid rgba(240, 239, 233, 0.1);
  border-radius: 4px;
  color: var(--offwhite);
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  padding: 10px 14px;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

input::placeholder,
textarea::placeholder {
  color: var(--muted);
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(245, 200, 0, 0.4);
}

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

select option {
  background: var(--card);
}

/* ── HONEYPOT (anti-spam) ── */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--offwhite);
  margin-bottom: 0.4rem;
}

.contact-info-item p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.contact-info-item a {
  color: var(--yellow);
  text-decoration: none;
}

.contact-info-item a:hover {
  text-decoration: underline;
}

.innershell-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--yellow);
  text-decoration: none;
  border: 1px solid rgba(245, 200, 0, 0.25);
  padding: 8px 16px;
  border-radius: 4px;
  transition: background 0.2s;
}

.innershell-link:hover {
  background: rgba(245, 200, 0, 0.08);
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid var(--border2);
  padding: 2rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--offwhite);
  letter-spacing: 0.04em;
}

.footer-brand span {
  color: var(--yellow);
}

footer p {
  font-size: 0.8rem;
  color: var(--muted);
}

footer a {
  color: var(--yellow);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 100px;
  }

  .hero-visual {
    display: none;
  }

  .arch-layout {
    grid-template-columns: 1fr;
  }

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

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

  .loop-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .loop-steps::before {
    display: none;
  }

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

  /* ── MOBILE NAV ── */
  .nav-hamburger {
    display: flex;
  }

  nav .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    max-width: 80vw;
    background: var(--navy2);
    border-left: 1px solid var(--border2);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 80px 2rem 2rem;
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  .nav-open .nav-links {
    transform: translateX(0);
  }

  nav .nav-links li {
    border-bottom: 1px solid var(--border2);
  }

  nav .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
    color: var(--offwhite);
  }

  nav .nav-links a.nav-cta {
    margin-top: 1rem;
    text-align: center;
    display: block;
  }
}

@media (max-width: 600px) {
  .loop-steps {
    grid-template-columns: 1fr;
  }

  .loop-outcome {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lizard-wrap {
    animation: none;
  }

  .hero-badge::before {
    animation: none;
  }
}
