:root {
  /* Palette */
  --bg: #FAFAF7;
  --bg-soft: #F2F1EC;
  --ink: #0E0E10;
  --ink-soft: #2A2A2E;
  --muted: #6B6B70;
  --line: rgba(14, 14, 16, 0.10);
  --line-soft: rgba(14, 14, 16, 0.06);

  --accent: #E2BA14;
  --accent-hover: #C9A40F;
  --accent-soft: rgba(226, 186, 20, 0.12);

  /* Surfaces */
  --card: #FFFFFF;
  --dark: #0E0E10;
  --dark-fg: #F4F3EF;
  --dark-muted: rgba(244, 243, 239, 0.62);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(14, 14, 16, 0.04), 0 4px 14px rgba(14, 14, 16, 0.05);
  --shadow-md: 0 8px 24px rgba(14, 14, 16, 0.08), 0 18px 50px rgba(14, 14, 16, 0.07);
  --shadow-lg: 0 16px 40px rgba(14, 14, 16, 0.12), 0 40px 90px rgba(14, 14, 16, 0.12);

  /* Shape & motion */
  --radius: 16px;
  --radius-lg: 26px;
  --radius-pill: 999px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --nav-h: 64px;

  /* Type */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea { font: inherit; }
::selection { background: var(--accent); color: var(--ink); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

.skip {
  position: absolute; left: -9999px; top: 8px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px;
  border-radius: 10px; font-size: 14px; font-weight: 500;
}
.skip:focus { left: 12px; }

/* ---------- Layout ---------- */
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; width: 100%; }
.wrap-narrow { max-width: 820px; }
.centered { text-align: center; max-width: 720px; margin-inline: auto; }
.centered .prose-lead { margin-inline: auto; }

.section { padding: clamp(72px, 10vw, 132px) 0; position: relative; }
.section-light { background: var(--bg-soft); }
.section-dark { background: var(--dark); color: var(--dark-fg); }

.section-head { margin-bottom: clamp(40px, 6vw, 64px); }
.section-head.centered { margin-inline: auto; }

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; }

.eyebrow {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.eyebrow.muted { color: var(--muted); }
.eyebrow-light { color: rgba(255, 255, 255, 0.78); }

.prose-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.7; color: var(--ink-soft); max-width: 60ch; margin-top: 18px;
}
.muted-text { color: var(--muted); }

.text-link {
  color: var(--accent); font-weight: 500; padding: 0;
}
.text-link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.97rem; letter-spacing: -0.01em;
  cursor: pointer; white-space: nowrap;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
              box-shadow 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

.btn-primary { background: var(--accent); color: var(--ink); box-shadow: 0 6px 20px var(--accent-soft); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(226, 186, 20, 0.32); }

.btn-secondary { background: var(--ink); color: var(--bg); }
.btn-secondary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.10); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32); backdrop-filter: blur(8px);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.20); transform: translateY(-2px); }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--accent); z-index: 120;
  transition: width 0.1s linear; border-radius: 0 3px 3px 0;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(250, 250, 247, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line-soft); box-shadow: 0 4px 24px rgba(14, 14, 16, 0.05); }
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
  letter-spacing: -0.03em; display: inline-flex; gap: 1px;
}
.logo span { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative; padding: 8px 14px; border-radius: var(--radius-pill);
  font-size: 0.92rem; font-weight: 500; color: var(--ink-soft);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-links a:hover { color: var(--ink); background: rgba(14, 14, 16, 0.05); }
.nav-links a.active { color: var(--accent); }

.nav-cta {
  padding: 9px 20px; border-radius: var(--radius-pill);
  background: var(--ink); color: var(--bg); font-weight: 600; font-size: 0.92rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }

.nav-burger { display: none; width: 44px; height: 44px; position: relative; }
.nav-burger span {
  position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-burger span:nth-child(1) { top: 16px; }
.nav-burger span:nth-child(2) { top: 21px; }
.nav-burger span:nth-child(3) { top: 26px; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  color: #fff; overflow: hidden; isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,14,16,0.55) 0%, rgba(14,14,16,0.35) 40%, rgba(14,14,16,0.78) 100%),
    radial-gradient(120% 80% at 20% 30%, rgba(14,14,16,0.25), transparent 70%);
}
.hero-inner {
  max-width: 1140px; margin: 0 auto; padding: 120px 24px 100px; width: 100%;
}
.hero .eyebrow { animation: rise 0.7s var(--ease) both; }
.hero .display { margin-top: 6px; animation: rise 0.8s var(--ease) 0.05s both; }
.hero-sub {
  margin-top: 22px; font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  font-weight: 500; color: rgba(255, 255, 255, 0.9);
  animation: rise 0.8s var(--ease) 0.12s both;
}
.hero-pills {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px;
  animation: rise 0.8s var(--ease) 0.18s both;
}
.hero-pills li {
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-size: 0.86rem; font-weight: 500;
  background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}
.cta-row {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px;
  animation: rise 0.8s var(--ease) 0.24s both;
}

.scroll-indicator {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-pill); display: grid; place-items: start center;
  padding-top: 8px;
}
.scroll-indicator span {
  width: 4px; height: 8px; border-radius: 4px; background: #fff;
  animation: scrolldot 1.6s var(--ease) infinite;
}
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(12px); } 100% { opacity: 0; } }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.feature {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line); }
.feature-icon {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent); margin-bottom: 20px;
  transition: transform 0.3s var(--ease);
}
.feature:hover .feature-icon { transform: scale(1.08) rotate(-4deg); }
.feature-icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.18rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Process ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.process-step {
  position: relative; padding-top: 28px; border-top: 2px solid var(--line);
  transition: border-color 0.3s var(--ease);
}
.process-step:hover { border-top-color: var(--accent); }
.step-n {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  color: var(--accent); letter-spacing: 0.04em;
}
.process-step h3 { font-size: 1.2rem; margin: 14px 0 8px; }
.process-step p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.stat-n {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 4.4rem); line-height: 1; letter-spacing: -0.03em;
}
.stat-l { margin-top: 12px; color: var(--dark-muted); font-size: 0.95rem; font-weight: 500; }

/* ---------- CTA panel ---------- */
.cta-panel {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px); text-align: center; box-shadow: var(--shadow-md);
  max-width: 820px; margin-inline: auto;
}
.cta-panel .btn { margin-top: 30px; }
.cta-microcopy { margin-top: 18px; color: var(--muted); font-size: 0.9rem; }

/* ---------- Two column (volontär) ---------- */
.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.two-col .btn { margin-top: 28px; }
.role-list { display: grid; gap: 12px; }
.role-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px; background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--radius); font-weight: 500; box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.role-list li::before {
  content: "→"; color: var(--accent); font-weight: 700;
  transition: transform 0.25s var(--ease);
}
.role-list li:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.role-list li:hover::before { transform: translateX(4px); }

/* ---------- Community band ---------- */
.community-band {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  background: var(--dark); color: var(--dark-fg); border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 60px);
}
.community-band .eyebrow.muted { color: var(--dark-muted); }
.community-band .prose-lead { color: var(--dark-muted); }
.community-band .btn-secondary { background: var(--accent); color: var(--ink); }
.community-band .btn-secondary:hover { background: var(--accent-hover); }

/* ---------- FAQ ---------- */
.faq-search-wrap { position: relative; max-width: 460px; margin: 0 auto 18px; }
.faq-search-icon {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; color: var(--muted);
}
.faq-search {
  width: 100%; padding: 13px 16px 13px 44px; border-radius: var(--radius-pill);
  border: 1px solid var(--line); background: var(--card); color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.faq-search:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }

.faq-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.faq-tab {
  padding: 8px 18px; border-radius: var(--radius-pill); font-size: 0.9rem; font-weight: 500;
  border: 1px solid var(--line); color: var(--ink-soft);
  transition: all 0.2s var(--ease);
}
.faq-tab:hover { border-color: var(--ink); }
.faq-tab.is-active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.faq { display: grid; gap: 12px; }
.faq-item {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius);
  overflow: hidden; transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.faq-item.hide { display: none; }
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.open { border-color: var(--line); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  text-align: left; padding: 20px 22px; font-weight: 600; font-size: 1.02rem;
}
.faq-icon { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--accent); border-radius: 2px;
  transition: transform 0.3s var(--ease);
}
.faq-icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-icon::after { top: 0; left: 7px; width: 2px; height: 16px; }
.faq-item.open .faq-icon::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a-inner { padding: 0 22px 22px; color: var(--muted); line-height: 1.65; }
.faq-a-inner a { color: var(--accent); }
.faq-empty { text-align: center; margin-top: 24px; color: var(--muted); }

/* ---------- Dual CTA ---------- */
.dual-cta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.dual-card {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 48px); box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.dual-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.dual-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.dual-card p { color: var(--muted); margin-bottom: 26px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.contact-card {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.contact-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.contact-value { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; margin: 8px 0 6px; }
.contact-card p { color: var(--muted); font-size: 0.92rem; }

.contact-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  max-width: 760px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-sm);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }
.field input, .field textarea {
  padding: 13px 16px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--bg); color: var(--ink); resize: vertical;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.field input.invalid, .field textarea.invalid { border-color: #d92d20; box-shadow: 0 0 0 4px rgba(217, 45, 32, 0.08); }
.form-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-status { font-size: 0.9rem; font-weight: 500; }
.form-status.error { color: #d92d20; }
.form-status.success { color: #027a48; }

.team-blurb { text-align: center; max-width: 680px; margin: 56px auto 0; }
.team-blurb .prose-lead { margin-inline: auto; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: var(--dark-fg); padding: 48px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer .logo { color: var(--dark-fg); }
.footer p { color: var(--dark-muted); font-size: 0.9rem; }
.footer-ig { font-weight: 500; transition: color 0.2s var(--ease); }
.footer-ig:hover { color: var(--accent); }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ink); color: var(--bg); font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.25s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--accent); transform: translateY(-3px); }

@media (max-width: 980px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .nav-cta { display: none; }
  .nav-burger { display: block; }
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(250, 250, 247, 0.96); backdrop-filter: blur(20px);
    padding: 16px 20px 24px; border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
    max-height: calc(100svh - var(--nav-h)); overflow-y: auto;
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 14px 16px; font-size: 1rem; border-radius: 12px; }

  .two-col { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 40px; }
  .dual-cta { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .community-band { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .hero-inner { padding-top: 110px; }
  .btn { width: 100%; }
  .cta-row, .hero-pills { width: 100%; }
}
body {
  background-image:
    radial-gradient(60% 50% at 12% 0%, rgba(226, 186, 20, 0.06), transparent 60%),
    radial-gradient(55% 45% at 100% 8%, rgba(14, 14, 16, 0.04), transparent 60%);
  background-attachment: fixed;
}

/* Eyebrow med accentprick */
.eyebrow:not(.eyebrow-light)::before {
  content: ""; display: inline-block; vertical-align: middle;
  width: 6px; height: 6px; margin-right: 9px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft);
}

/* Hero: mjuk animerad ljusglöd bakom texten */
.hero-inner { position: relative; }
.hero-inner::before {
  content: ""; position: absolute; z-index: -1;
  top: 32%; left: 0; width: min(560px, 70%); aspect-ratio: 1;
  background: radial-gradient(circle, rgba(226, 186, 20, 0.32), transparent 68%);
  filter: blur(20px); opacity: 0.7;
  animation: heroGlow 8s var(--ease) infinite alternate;
  pointer-events: none;
}
@keyframes heroGlow {
  from { transform: translate(-6%, 0) scale(1); opacity: 0.45; }
  to   { transform: translate(8%, -6%) scale(1.15); opacity: 0.8; }
}

/* Knappar: subtil sheen-svep vid hover */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.28) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform 0.6s var(--ease);
}
.btn:hover::after { transform: translateX(120%); }
.btn-primary {
  background: linear-gradient(135deg, #F0CC2E, var(--accent));
  background-size: 140% 140%;
}

/* Kort: glödande gradientkant vid hover */
.feature, .contact-card, .dual-card, .role-list li {
  position: relative; isolation: isolate;
}
.feature::before, .contact-card::before, .dual-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  padding: 1px; background: linear-gradient(135deg, var(--accent), transparent 55%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.feature:hover::before, .contact-card:hover::before, .dual-card:hover::before { opacity: 1; }

/* Sektionsrubriker: lite mer djup */
.h1 { background: linear-gradient(180deg, var(--ink), #41414a); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-dark .h1, .community-band .h1, .hero .display { background: none; -webkit-background-clip: border-box; background-clip: border-box; color: inherit; }

/* Mörk sektion: accentglöd */
.section-dark { overflow: hidden; isolation: isolate; }
.section-dark::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(60% 120% at 50% 0%, rgba(226, 186, 20, 0.20), transparent 60%);
}

/* Reveal: mjukare med lätt skala */
.reveal { transform: translateY(34px) scale(0.985); }
.reveal.in { transform: none; }

/* Process: numrering med accentbakgrund */
.step-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--accent-soft); margin-bottom: 4px; font-size: 0.95rem;
}

/* Hero-pills: hover-lyft */
.hero-pills li { transition: background 0.25s var(--ease), transform 0.25s var(--ease); }
.hero-pills li:hover { background: rgba(255, 255, 255, 0.22); transform: translateY(-2px); }

/* Community-band: accentglöd */
.community-band { position: relative; overflow: hidden; isolation: isolate; }
.community-band::before {
  content: ""; position: absolute; z-index: -1; inset: auto -10% -60% auto;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 186, 20, 0.38), transparent 65%);
}

/* Nav-länk: mjuk underline-accent */
.nav-links a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--accent); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav-links a.active::after { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
  .hero-inner::before { animation: none; }
  .btn::after { display: none; }
}
