/* ============================================================
   STRAWLY MARKETING — style.css
   ============================================================ */

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

:root {
  --green:      #22c55e;
  --green-dark: #16a34a;
  --green-dim:  #dcfce7;
  --blue:       #3b82f6;
  --blue-dim:   #dbeafe;
  --purple:     #8b5cf6;
  --purple-dim: #ede9fe;
  --orange:     #f97316;
  --orange-dim: #ffedd5;
  --teal:       #14b8a6;
  --teal-dim:   #ccfbf1;
  --pink:       #ec4899;
  --pink-dim:   #fce7f3;
  --gray-50:    #f9fafb;
  --gray-100:   #f3f4f6;
  --gray-200:   #e5e7eb;
  --gray-300:   #d1d5db;
  --gray-400:   #9ca3af;
  --gray-500:   #6b7280;
  --gray-700:   #374151;
  --gray-800:   #1f2937;
  --gray-900:   #111827;
  --text:       #0f172a;
  --text-muted: #64748b;
  --border:     #e2e8f0;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:     0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.12);
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ---- LAYOUT ---- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

/* ---- TYPOGRAPHY ---- */
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: 1.125rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
h5 { font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 12px; }

p { color: var(--text-muted); }

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

.gradient-text {
  background: linear-gradient(135deg, var(--green), #16a34a, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  background: var(--green-dim);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.0625rem;
  max-width: 600px;
  margin: 12px 0 56px;
  color: var(--text-muted);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-sm { padding: 8px 18px; font-size: 0.875rem; }

.btn-primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(34,197,94,.35); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--gray-50); border-color: var(--gray-300); }

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green);
}
.btn-outline:hover { background: var(--green-dim); }

/* ---- NAV ---- */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
nav.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 64px;
}

.nav-links { margin-left: auto; }

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:not(.btn):hover { color: var(--text); background: var(--gray-50); }
.nav-links .btn { color: #fff; }
.nav-links .btn:hover { color: #fff; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- DISCLAIMER BANNER ---- */
.disclaimer-banner {
  background: #fffbeb;
  border-bottom: 1px solid #fde68a;
  padding: 12px 0;
}

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

.disclaimer-icon {
  color: #d97706;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.disclaimer-text {
  flex: 1;
  min-width: 200px;
  font-size: 0.9rem;
  color: #92400e;
  margin: 0;
}

.disclaimer-text strong {
  color: #78350f;
}

.btn-disclaimer {
  background: #f59e0b;
  color: #fff;
  border-color: #f59e0b;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-disclaimer:hover {
  background: #d97706;
  border-color: #d97706;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245,158,11,.35);
}

[data-theme="dark"] .disclaimer-banner {
  background: #1c1a0e;
  border-bottom-color: #854d0e;
}
[data-theme="dark"] .disclaimer-text { color: #fcd34d; }
[data-theme="dark"] .disclaimer-text strong { color: #fde68a; }
[data-theme="dark"] .disclaimer-icon { color: #fbbf24; }

/* ---- HERO ---- */
.hero {
  padding: 80px 0 64px;
  display: grid;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f0fdf4 0%, #fff 50%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(34,197,94,.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 680px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--green-dim);
  border: 1px solid #bbf7d0;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.badge::before { content: ''; width: 6px; height: 6px; background: var(--green); border-radius: 50%; display: inline-block; }

.hero h1 { margin-bottom: 20px; }

.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-footnote {
  font-size: 0.8125rem;
  color: var(--text-muted);
}


/* ---- TRUST BAR ---- */
.trust-bar {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--gray-50);
  text-align: center;
}
.trust-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.cloud-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.cloud-logo {
  height: 40px;
  width: auto;
}
.divider { color: var(--gray-300); font-size: 1.25rem; }

/* ---- WHY ---- */
.why { background: #fff; }
.why h2 { max-width: 580px; margin-bottom: 12px; }

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

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

.compare-card {
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
}
.compare-card.theirs { background: var(--gray-50); }
.compare-card.ours   { background: #f0fdf4; border-color: #bbf7d0; }

.compare-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.compare-icon { font-size: 1.25rem; }
.compare-header h3 { font-size: 1rem; font-weight: 700; }

.compare-card ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.compare-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9375rem; color: var(--text-muted); }
.x    { color: #ef4444; font-weight: 700; flex-shrink: 0; }
.check { color: var(--green-dark); font-weight: 700; flex-shrink: 0; }

/* ---- FEATURES ---- */
.features { background: var(--gray-50); }
.features h2 { max-width: 560px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-icon.green  { background: var(--green-dim);  color: var(--green-dark); }
.feature-icon.blue   { background: var(--blue-dim);   color: var(--blue); }
.feature-icon.purple { background: var(--purple-dim); color: var(--purple); }
.feature-icon.orange { background: var(--orange-dim); color: var(--orange); }
.feature-icon.teal   { background: var(--teal-dim);   color: var(--teal); }
.feature-icon.pink   { background: var(--pink-dim);   color: var(--pink); }

.feature-card h4 { margin-bottom: 8px; }
.feature-card p  { font-size: 0.9375rem; line-height: 1.6; }

/* ---- HOW IT WORKS ---- */
.how { background: #fff; }
.how h2 { max-width: 540px; }

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  max-width: 680px;
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-connector {
  width: 2px;
  height: 36px;
  background: var(--border);
  margin-left: 22px;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-dim);
  color: var(--green-dark);
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid #bbf7d0;
}

.step-body { padding-top: 10px; }
.step-body h4 { margin-bottom: 6px; }
.step-body p  { font-size: 0.9375rem; line-height: 1.65; }

/* ---- OSS CALLOUT ---- */
.oss-callout { background: var(--gray-900); }
.oss-callout .section-label { background: rgba(34,197,94,.15); color: #4ade80; }
.oss-callout h2 { color: #fff; }
.oss-callout p  { color: #94a3b8; margin-bottom: 12px; }

.oss-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 800px) {
  .oss-inner { grid-template-columns: 1fr; }
  .oss-visual { display: none; }
}

.license-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0 4px;
}

.license-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
}

.license-item h4 { color: #fff; margin-bottom: 8px; }
.license-item p  { font-size: 0.875rem; line-height: 1.6; margin-bottom: 16px; }
.license-item a.btn { margin-top: auto; }

.license-item.commercial {
  border-color: rgba(34,197,94,.5);
  background: rgba(34,197,94,.08);
}

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

.oss-actions { margin-top: 28px; }
.oss-callout .btn-outline {
  color: #4ade80;
  border-color: rgba(34,197,94,.4);
}
.oss-callout .btn-outline:hover { background: rgba(34,197,94,.1); }

.code-block {
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: var(--radius);
  padding: 24px 28px;
  font-family: 'Menlo', 'Cascadia Code', 'Fira Code', monospace;
  font-size: 0.8125rem;
  line-height: 2;
}
.code-line { white-space: nowrap; }
.c-comment { color: #475569; }
.c-cmd     { color: #4ade80; }
.c-success { color: #34d399; }
.code-block .code-line { color: #e2e8f0; }

/* ---- CTA ---- */
.cta {
  background: linear-gradient(160deg, #f0fdf4 0%, #fff 60%);
  text-align: center;
}
.cta-inner { max-width: 560px; margin: 0 auto; }
.cta h2 { margin-bottom: 12px; }
.cta p  { font-size: 1.0625rem; margin-bottom: 32px; }

.cta-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 16px;
}
.cta-form input[type="email"] {
  flex: 1;
  min-width: 240px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-size: 0.9375rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.cta-form input[type="email"]:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(34,197,94,.15);
}
.cta-footnote { font-size: 0.8125rem; color: var(--text-muted); }

/* ---- FOOTER ---- */
footer {
  background: var(--gray-900);
  color: #94a3b8;
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #1e293b;
}

@media (max-width: 800px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }

.footer-brand .logo { color: #fff; margin-bottom: 12px; display: inline-flex; }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; max-width: 240px; }

.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 0.9rem; color: #94a3b8; transition: color var(--transition); }
.footer-col a:hover { color: #e2e8f0; }

.footer-links { display: contents; }

.footer-bottom {
  padding: 24px 0;
  font-size: 0.8125rem;
  color: #475569;
}

/* ---- TOAST ---- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--gray-900);
  color: #fff;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), opacity 0.3s;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ---- THEME TOGGLE ---- */
.theme-toggle {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 7px;
  margin-left: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
  flex-shrink: 0;
}
.theme-toggle:hover { color: var(--text); background: var(--gray-50); }
.icon-sun, .icon-moon { display: block; width: 18px; height: 18px; flex-shrink: 0; overflow: visible; }
.icon-sun { display: none; }
[data-theme="dark"] .icon-sun  { display: block; }
[data-theme="dark"] .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle { border-color: #475569; color: #fff; }

/* ---- DARK MODE ---- */
[data-theme="dark"] {
  --text:       #f1f5f9;
  --text-muted: #94a3b8;
  --border:     #334155;
  --gray-50:    #1e293b;
  --gray-100:   #1e293b;
  --gray-200:   #334155;
  --gray-300:   #475569;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.3), 0 1px 2px rgba(0,0,0,.2);
  --shadow:     0 4px 16px rgba(0,0,0,.4);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.5);
  --green-dim:  rgba(34,197,94,.12);
  --blue-dim:   rgba(59,130,246,.12);
  --purple-dim: rgba(139,92,246,.12);
  --orange-dim: rgba(249,115,22,.12);
  --teal-dim:   rgba(20,184,166,.12);
  --pink-dim:   rgba(236,72,153,.12);
}

[data-theme="dark"] body { background: #0f172a; }

[data-theme="dark"] nav { background: rgba(15,23,42,.9); }

[data-theme="dark"] .hero {
  background: linear-gradient(160deg, #0d2118 0%, #0f172a 50%);
}

[data-theme="dark"] .trust-bar { background: #1e293b; }
[data-theme="dark"] #aws-logo path[fill="#252F3E"] { fill: #fff; }

[data-theme="dark"] .why     { background: #0f172a; }
[data-theme="dark"] .how     { background: #0f172a; }
[data-theme="dark"] .features { background: #1e293b; }

[data-theme="dark"] .feature-card { background: #0f172a; }

[data-theme="dark"] .compare-card.ours {
  background: rgba(34,197,94,.08);
  border-color: rgba(34,197,94,.3);
}

[data-theme="dark"] .cta {
  background: linear-gradient(160deg, #0d2118 0%, #0f172a 60%);
}
[data-theme="dark"] .cta-form input[type="email"] {
  background: #1e293b;
  color: var(--text);
  border-color: var(--border);
}
[data-theme="dark"] .cta-form input[type="email"]::placeholder { color: #475569; }

[data-theme="dark"] .badge { border-color: rgba(34,197,94,.3); }
[data-theme="dark"] { --nav-mobile-bg: rgba(15,23,42,.97); }

/* ---- RELEASES PAGE ---- */
.releases-header {
  padding: 64px 0 48px;
  background: linear-gradient(160deg, #f0fdf4 0%, #fff 50%);
  border-bottom: 1px solid var(--border);
}
.releases-header h1 { margin: 8px 0 12px; }
.releases-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 24px;
}
.rss-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #d97706;
  background: #fffbeb;
  border: 1px solid #fde68a;
  padding: 6px 14px;
  border-radius: 100px;
  transition: background var(--transition), border-color var(--transition);
}
.rss-link:hover { background: #fef3c7; border-color: #fcd34d; }

.releases-list { padding: 64px 0 96px; }
.releases-container {
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.release-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0;
}
.release-divider::before,
.release-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.release-divider-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  white-space: nowrap;
}

.release-entry {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
}

@media (max-width: 640px) {
  .release-entry { grid-template-columns: 1fr; gap: 12px; }
}

.release-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-top: 2px;
}

.release-date-col {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.release-module-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: 'Menlo', 'Cascadia Code', monospace;
  padding: 3px 10px;
  border-radius: 6px;
  border: 1px solid transparent;
}
.module-backend  { background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe; }
.module-frontend { background: #faf5ff; color: #7c3aed; border-color: #ddd6fe; }
.module-azure    { background: #eff6ff; color: #0369a1; border-color: #bae6fd; }

.release-version {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.release-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.release-tag.stable { background: var(--green-dim); color: var(--green-dark); }
.release-tag.wip    { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }

.release-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.release-intro {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.release-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.release-items li {
  display: flex;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.release-items li::before {
  content: '·';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.release-links {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

[data-theme="dark"] .releases-header {
  background: linear-gradient(160deg, #0d2118 0%, #0f172a 50%);
}
[data-theme="dark"] .rss-link {
  background: #1c1a0e;
  border-color: #854d0e;
  color: #fbbf24;
}
[data-theme="dark"] .rss-link:hover { background: #231f0e; }
[data-theme="dark"] .release-tag.wip {
  background: #1c1a0e;
  border-color: #854d0e;
  color: #fcd34d;
}
[data-theme="dark"] .releases-list { background: #0f172a; }
[data-theme="dark"] .module-backend  { background: #1e3a5f; color: #93c5fd; border-color: #1d4ed8; }
[data-theme="dark"] .module-frontend { background: #2e1065; color: #c4b5fd; border-color: #7c3aed; }
[data-theme="dark"] .module-azure    { background: #0c2a3d; color: #7dd3fc; border-color: #0369a1; }

/* ---- RESPONSIVE ---- */
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero { padding: 56px 0 40px; }
  .hero-actions { flex-direction: column; }
  .cta-form { flex-direction: column; align-items: stretch; }
  .cta-form input, .cta-form .btn { width: 100%; }

  .nav-hamburger { display: flex; margin-left: auto; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--nav-mobile-bg, rgba(255,255,255,.97));
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 12px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 12px 24px;
    border-radius: 0;
  }
  .nav-links .btn {
    margin: 8px 16px 0;
    border-radius: var(--radius-sm);
    text-align: center;
  }
}
