@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  color-scheme: light;
  --coral: #e8644a;
  --amber: #e8960a;
  --gold: #f2c94c;
  --blue: #3a8fc4;
  --teal: #4a8c6f;
  --sand: #d4952a;
  --charcoal: #1c1c1e;
  --white: #fafaf8;
  --cream: #fff7ed;
  --line: rgba(28, 28, 30, 0.1);
  --line-strong: rgba(28, 28, 30, 0.18);
  --shadow-soft: 0 12px 36px rgba(57, 41, 12, 0.08);
  --shadow-warm: 0 20px 54px rgba(232, 100, 74, 0.18);
  --text-muted: rgba(28, 28, 30, 0.6);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  color: var(--charcoal);
  background:
    radial-gradient(circle at top left, rgba(242, 201, 76, 0.32), transparent 26%),
    linear-gradient(180deg, #fff9ef 0%, #faf4ea 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
}

.desktop-nav a:hover {
  color: var(--blue);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  margin: 0 1.5rem;
}

.lang-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  opacity: 0.6;
}

.lang-btn:hover {
  color: var(--blue);
  opacity: 1;
}

.lang-btn.active {
  color: var(--charcoal);
  opacity: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-coral {
  background: var(--coral);
  color: #fff;
  box-shadow: var(--shadow-warm);
}

.button-outline {
  border-color: var(--line-strong);
  background: rgba(250, 250, 248, 0.78);
}

.button-dark {
  background: var(--charcoal);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(250, 250, 248, 0.82);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5rem;
}

.brand-logo {
  width: min(320px, 48vw);
  min-width: 180px;
}

.desktop-nav,
.desktop-cta {
  display: none;
}

.nav-link {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  color: rgba(28, 28, 30, 0.78);
}

.nav-link:hover {
  background: rgba(28, 28, 30, 0.06);
  color: var(--charcoal);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border: 0;
  border-radius: 0.95rem;
  background: rgba(28, 28, 30, 0.05);
  color: var(--charcoal);
  cursor: pointer;
}

.mobile-nav-shell {
  display: none;
  border-top: 1px solid var(--line);
}

.mobile-nav-shell[data-open="true"] {
  display: block;
}

.mobile-nav {
  display: grid;
  gap: 0.55rem;
  padding: 1rem 0 1.15rem;
}

.mobile-nav-link {
  padding: 0.9rem 0.95rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.52);
}

.mobile-cta {
  margin-top: 0.35rem;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 6rem;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.42;
}

.hero-orb-coral {
  width: 32rem;
  height: 32rem;
  top: -8rem;
  right: -10rem;
  background: rgba(232, 100, 74, 0.36);
}

.hero-orb-blue {
  width: 28rem;
  height: 28rem;
  left: -10rem;
  bottom: -10rem;
  background: rgba(58, 143, 196, 0.28);
}

.hero-grid {
  display: grid;
  gap: 2.6rem;
}

.hero-copy h1,
.section-header h2,
.story-panel h2,
.sandy-panel h2,
.contact-section h2,
.cta-panel h2,
.trust-panel h2 {
  margin: 0;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.hero-copy h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  max-width: 10.5ch;
}

.hero-text,
.section-description,
.service-card p,
.pillar-card p,
.story-panel p,
.sandy-panel p,
.trust-copy p,
.info-card p,
.roadmap-card p,
.footer-grid p {
  color: rgba(28, 28, 30, 0.74);
  line-height: 1.68;
}

.hero-text {
  max-width: 38rem;
  margin: 1.35rem 0 0;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.9rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 27rem;
  margin-top: 2rem;
}

.hero-stats dt {
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 700;
}

.hero-stats dd {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
  color: rgba(28, 28, 30, 0.56);
}

.hero-card {
  position: relative;
  max-width: 33rem;
  margin: 0 auto;
}

.hero-card-inner {
  border-radius: 2.5rem;
  padding: 1.2rem;
  background: linear-gradient(145deg, rgba(232, 100, 74, 0.88), rgba(242, 201, 76, 0.92), rgba(58, 143, 196, 0.84));
  box-shadow: var(--shadow-warm);
}

.hero-sandy {
  width: 100%;
  border-radius: 1.9rem;
  background: rgba(250, 250, 248, 0.92);
}

.floating-note {
  position: absolute;
  max-width: 13rem;
  padding: 0.9rem 1rem;
  border-radius: 1.2rem;
  background: rgba(250, 250, 248, 0.9);
  border: 1px solid rgba(28, 28, 30, 0.08);
  box-shadow: var(--shadow-soft);
}

.floating-note small {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.72rem;
  color: rgba(28, 28, 30, 0.55);
}

.floating-note strong {
  font-size: 0.86rem;
  line-height: 1.35;
}

.floating-note-left {
  left: -1rem;
  top: 1.4rem;
}

.floating-note-right {
  right: -1rem;
  bottom: 2.4rem;
}

.content-section,
.trust-section,
.cta-section {
  padding: 6.5rem 0;
}

.section-header {
  max-width: 48rem;
  margin-bottom: 3.5rem;
}

.section-header h2,
.story-panel h2,
.sandy-panel h2,
.contact-section h2,
.cta-panel h2,
.trust-panel h2 {
  font-size: clamp(2rem, 5vw, 3.45rem);
}

.section-description {
  margin: 1rem 0 0;
  font-size: 1.06rem;
}

.service-grid,
.pillar-grid,
.contact-cards,
.roadmap-grid,
.resource-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

.service-card,
.pillar-card,
.info-card,
.roadmap-card,
.resource-card,
.consultation-card {
  padding: 1.55rem;
  border-radius: 1.55rem;
  background: rgba(250, 250, 248, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-icon-coral {
  background: rgba(232, 100, 74, 0.14);
  color: var(--coral);
}

.service-icon-amber {
  background: rgba(232, 150, 10, 0.14);
  color: var(--amber);
}

.service-icon-blue {
  background: rgba(58, 143, 196, 0.14);
  color: var(--blue);
}

.service-icon-teal {
  background: rgba(74, 140, 111, 0.14);
  color: var(--teal);
}

.service-icon-sand {
  background: rgba(212, 149, 42, 0.18);
  color: #9c6a11;
}

.service-card h3,
.pillar-card h3,
.info-card h3,
.roadmap-card h3,
.resource-card h3,
.consultation-card h3,
.footer-grid h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.2;
}

.service-card p,
.pillar-card p,
.info-card p,
.roadmap-card p,
.resource-card p,
.consultation-card p {
  margin: 0.75rem 0 0;
}

.service-card p a {
  color: var(--blue);
  text-decoration: underline;
  font-weight: 600;
}

.service-card p a:hover {
  color: var(--coral);
}

.service-card small {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  color: rgba(28, 28, 30, 0.56);
}

.trust-panel {
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 2rem;
  background: rgba(250, 250, 248, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.trust-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: rgba(28, 28, 30, 0.74);
}

.trust-list li+li {
  margin-top: 0.55rem;
}

.pillar-grid {
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

.story-panel {
  margin-top: 2rem;
  padding: 2rem;
  border-radius: 2rem;
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.story-panel::after {
  content: "";
  position: absolute;
  width: 20rem;
  height: 20rem;
  left: -6rem;
  bottom: -8rem;
  border-radius: 999px;
  background: rgba(58, 143, 196, 0.25);
  filter: blur(38px);
}

.story-panel .eyebrow,
.story-panel p {
  position: relative;
  z-index: 1;
}

.story-panel .eyebrow {
  color: var(--gold);
}

.story-panel h2 {
  position: relative;
  z-index: 1;
  margin-top: 0.25rem;
  max-width: 17ch;
}

.story-panel p {
  margin: 1rem 0 0;
  max-width: 42rem;
  color: rgba(250, 250, 248, 0.8);
}

.sandy-panel {
  display: grid;
  gap: 1.6rem;
  align-items: center;
  padding: 2rem;
  border-radius: 2rem;
  background: radial-gradient(circle at top, rgba(242, 201, 76, 0.26), transparent 34%), rgba(255, 247, 237, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.sandy-image-wrap {
  max-width: 22rem;
  margin: 0 auto;
}

.sandy-image {
  border-radius: 1.7rem;
}

.roadmap-stage {
  display: inline-block;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--coral);
}

.roadmap-note {
  margin-top: 1.4rem;
  padding: 1.3rem 1.5rem;
  border-radius: 1.3rem;
  background: rgba(255, 247, 237, 0.9);
  border: 1px solid var(--line);
}

.roadmap-note p {
  margin: 0;
  color: rgba(28, 28, 30, 0.74);
  line-height: 1.65;
}

.consultation-panel {
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(255, 247, 237, 0.96), rgba(250, 250, 248, 0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.consultation-details {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.resource-type {
  display: inline-block;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal);
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.contact-cards {
  margin-top: 0;
}

.cta-panel {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(255, 247, 237, 0.94), rgba(250, 250, 248, 0.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.cta-panel p {
  margin: 0;
  max-width: 42rem;
  color: rgba(28, 28, 30, 0.72);
}

.site-footer {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  background: rgba(250, 250, 248, 0.86);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3.5rem 2rem;
  padding: 4.5rem 0 3.5rem;
}

.footer-logo {
  width: min(290px, 60vw);
}

.footer-grid p {
  margin: 1rem 0 0;
  max-width: 19rem;
}

.footer-grid ul {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
}

.footer-grid li+li {
  margin-top: 0.7rem;
}

.footer-grid a,
.footer-grid li {
  color: rgba(28, 28, 30, 0.7);
}

.footer-grid a:hover {
  color: var(--charcoal);
}

.footer-follow {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.social-text-link {
  color: var(--blue) !important;
  font-weight: 600;
  margin-left: 0.35rem;
  text-decoration: underline;
  text-decoration-color: rgba(58, 143, 196, 0.3);
  text-underline-offset: 3px;
  transition: all 0.2s ease;
}

.social-text-link:hover {
  color: var(--coral) !important;
  text-decoration-color: var(--coral);
}

.footer-email {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--blue) !important;
}

.footer-email:hover {
  color: var(--coral) !important;
}

.footer-bottom {
  border-top: 1px solid var(--line);
}

.footer-bottom-row {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.5rem 0 2rem;
  font-size: 0.85rem;
  color: rgba(28, 28, 30, 0.56);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.footer-legal-links a {
  color: inherit;
  text-decoration: underline transparent;
  transition: all 0.2s ease;
}

.footer-legal-links a:hover {
  color: var(--blue);
  text-decoration-color: currentColor;
}

@media (min-width: 760px) {
  .footer-bottom-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-legal-links {
    margin-top: 0;
  }
}

/* New Sections: Bulletin, Quick Briefs, Ideas */
.bulletin-section {
  padding: 7rem 0;
  background: rgba(232, 100, 74, 0.03);
}

.bulletin-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
}

.bulletin-card {
  position: relative;
  padding: 2rem;
  border-radius: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bulletin-card:hover {
  transform: scale(1.02);
}

.bulletin-card.highlight {
  border-color: var(--coral);
  background: linear-gradient(145deg, var(--white), rgba(232, 100, 74, 0.05));
}

.tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.bulletin-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  font-weight: 600;
  color: var(--coral);
}

.link-arrow::after {
  content: "→";
  transition: transform 0.2s ease;
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

/* Quick Briefs Feed */
.tldr-section {
  padding: 8rem 0;
  background: var(--charcoal);
  color: var(--white);
}

.tldr-grid {
  display: grid;
  gap: 4rem;
}

.tldr-copy {
  max-width: 32rem;
}

.tldr-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tldr-footer p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.2rem;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  transition: all 0.3s ease;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.tldr-feed {
  display: grid;
  gap: 1.5rem;
}

.tldr-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tldr-item summary {
  padding: 1.2rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
}

.tldr-item summary::-webkit-details-marker {
  display: none;
}

.tldr-item summary::after {
  content: "+";
  font-size: 1.4rem;
}

.tldr-item[open] summary::after {
  content: "−";
}

.tldr-content {
  padding: 0 1.2rem 1.2rem;
  color: rgba(255, 255, 255, 0.7);
}

.tldr-content p {
  margin-bottom: 1rem;
}

.tldr-content a {
  color: var(--gold);
  text-decoration: underline;
  font-weight: 600;
}

/* Idea Board */
.ideas-section {
  padding: 8rem 0;
  background: radial-gradient(circle at bottom right, rgba(74, 140, 111, 0.08), transparent 40%);
}

.ideas-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 4rem;
}

.ideas-board {
  max-width: 55rem;
  margin: 0 auto;
}

.ideas-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.idea-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.5rem;
}

.vote-control {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-right: 2rem;
  border-right: 1px solid var(--line);
}

.vote-up {
  background: none;
  border: none;
  color: var(--line-strong);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s, transform 0.2s;
}

.vote-up:hover {
  color: var(--coral);
  transform: translateY(-2px);
}

.vote-up.voted {
  color: var(--coral);
}

.vote-count {
  font-weight: 700;
  font-size: 1.2rem;
}

.idea-content {
  position: relative;
}

.idea-content p {
  font-size: 1.2rem;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.5;
}

.idea-content small {
  display: block;
  margin-top: 1rem;
  color: rgba(28, 28, 30, 0.4);
  font-weight: 500;
}

.rating-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
  padding: 0.25rem 0.6rem;
  background: rgba(232, 100, 74, 0.08);
  color: var(--coral);
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.rating-stars {
  color: var(--charcoal);
  letter-spacing: 0.1em;
}

.idea-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.state-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.state-investigating {
  background: var(--blue);
  color: white;
}

@media (min-width: 760px) {
  .tldr-grid {
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding-top: 6rem;
    padding-bottom: 5.2rem;
  }

  .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
  }

  .service-grid,
  .roadmap-grid,
  .resource-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sandy-panel {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .contact-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }

  .desktop-nav {
    display: flex;
    gap: 0.5rem;
  }

  .desktop-cta {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(4, 1fr);
  }
}

/* Event Spotlight */
.event-spotlight {
  padding: 6rem 0;
  background: var(--white);
}

.spotlight-card {
  background: rgba(250, 250, 248, 0.92);
  border-radius: 2.5rem;
  padding: 4rem;
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 4rem;
  align-items: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

/* Removed old before orb */

.spotlight-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-right: 4rem;
  border-right: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

.spotlight-date .month {
  font-weight: 700;
  text-transform: uppercase;
  color: var(--coral);
  letter-spacing: 0.15em;
  font-size: 1rem;
}

.spotlight-date .day {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  margin: 0.5rem 0;
  color: var(--charcoal);
}

.spotlight-date .time {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
}

.spotlight-content {
  position: relative;
  z-index: 1;
}

.spotlight-content .tag {
  background: var(--teal);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.spotlight-content h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.spotlight-content p {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 42rem;
}

.spotlight-action {
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .spotlight-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 3rem;
    gap: 3rem;
  }

  .spotlight-date {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 3rem;
  }

  .spotlight-content p {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Spotlight Section */
.spotlight-section {
  background: var(--white);
  padding: 8rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.spotlight-item {
  padding: 2.5rem;
  background: var(--cream);
  border-radius: 2rem;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}

.spotlight-item:hover {
  transform: translateY(-5px);
  border-color: var(--coral);
  box-shadow: var(--shadow-soft);
}

.spotlight-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.spotlight-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.spotlight-item p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Resource Hub Enhancements */
.resource-hub-section {
  background: linear-gradient(180deg, rgba(212, 149, 42, 0.05) 0%, rgba(212, 149, 42, 0.08) 100%);
  padding: 10rem 0;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.resource-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 2rem;
  border: 1px solid var(--line-light);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-warm);
  border-color: var(--blue);
}

.resource-card .tag {
  background: rgba(58, 143, 196, 0.1);
  color: var(--blue);
  align-self: flex-start;
}

.resource-card h3 {
  font-size: 1.6rem;
  margin: 1.5rem 0 1rem;
}

.resource-card p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* Contact Form Styles (shadcn/ui inspired) */
.contact-form {
  display: grid;
  gap: 1.25rem;
  padding: 2.5rem;
  background: var(--white);
  border-radius: 1.5rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border-radius: 0.5rem;
  border: 1px solid var(--line-strong);
  background: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(58, 143, 196, 0.15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 8rem;
}

.button-submit {
  background: var(--blue);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background-color 0.2s ease, transform 0.1s ease;
  margin-top: 0.5rem;
}

.button-submit:hover {
  background: var(--coral);
}

.button-submit:active {
  transform: scale(0.98);
}

.button-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.button-submit[data-loading="true"] .spinner {
  display: block;
}

.success-message {
  display: none;
  padding: 1.5rem;
  background: rgba(74, 140, 111, 0.1);
  border: 1px solid var(--teal);
  border-radius: 1rem;
  color: var(--teal);
  text-align: center;
  margin-top: 1rem;
}

.success-message.visible {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Honeypot */
.hidden-hp {
  display: none !important;
}

/* Idea Submission Form */
.idea-submission-wrapper {
  margin-bottom: 2rem;
}

#show-idea-form {
  cursor: pointer;
  transition: all 0.2s ease;
}

.idea-form {
  display: none;
  background: var(--charcoal);
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1.5rem;
  animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  gap: 1.5rem;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.idea-form .form-group label {
  color: #FAFAF8;
  opacity: 0.9;
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

.idea-form textarea,
.idea-form select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  width: 100%;
  font-family: inherit;
  transition: all 0.2s ease;
}

.idea-form select option {
  color: var(--charcoal);
  background: var(--white);
}

.idea-form textarea:focus,
.idea-form select:focus {
  outline: none;
  border-color: var(--nordic-blue);
  background: rgba(255, 255, 255, 0.12);
}

.idea-form-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: end;
}

@media (min-width: 640px) {
  .idea-form-footer {
    grid-template-columns: 1fr 1fr auto;
  }
}

#idea-submit-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-width: 180px;
  height: 48px;
}

#idea-submit-btn .spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

#idea-submit-btn[data-loading="true"] .spinner {
  display: block;
}

#idea-submit-btn[data-loading="true"] span {
  content: "Sending...";
}

.success-message {
  display: none;
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(58, 143, 196, 0.1);
  border: 1px solid var(--nordic-blue);
  color: var(--white);
  border-radius: 0.75rem;
  text-align: center;
  font-weight: 500;
}

.success-message.visible {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* Team Section */
.team-section {
  margin-top: 6rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 2rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  align-items: flex-start;
}

@media (max-width: 640px) {
  .team-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .team-image-wrap {
    margin: 0 auto;
  }
}

.team-image-wrap {
  width: 120px;
  height: 120px;
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  background: linear-gradient(135deg, var(--cream), rgba(58, 143, 196, 0.1));
}

.team-info h3 {
  margin: 0.5rem 0 0.5rem;
  font-size: 1.5rem;
}

.team-info p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.fun-fact {
  font-size: 0.9rem !important;
  padding: 0.8rem 1rem;
  background: rgba(58, 143, 196, 0.05);
  border-radius: 0.8rem;
  color: var(--charcoal) !important;
  border-left: 3px solid var(--blue);
}

/* --- Archive Page Styles --- */

.active-nav-link {
  color: var(--coral) !important;
  font-weight: 700;
}

.desktop-nav a.active-nav-link:hover {
  color: var(--coral);
}

.mobile-nav a.active-nav-link {
  background: rgba(232, 100, 74, 0.08) !important;
  color: var(--coral) !important;
  border-left: 4px solid var(--coral);
}

.archive-hero {
  padding: 6rem 0 5rem;
}

.archive-sandy-card {
  position: relative;
  max-width: 26rem;
  margin: 0 auto;
}

.archive-content-section {
  padding: 2rem 0 6rem;
}

.archive-filter-bar {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  margin-top: 1rem;
}

.filter-btn {
  background: rgba(250, 250, 248, 0.92);
  border: 1px solid var(--line);
  color: var(--charcoal);
  padding: 0.65rem 1.45rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.filter-btn:hover {
  background: rgba(28, 28, 30, 0.06);
  transform: translateY(-1px);
}

.filter-btn.active {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
  box-shadow: var(--shadow-warm);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (max-width: 480px) {
  .media-grid {
    grid-template-columns: 1fr;
  }
}

.media-card {
  padding: 2.2rem;
  border-radius: 2rem;
  background: rgba(250, 250, 248, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(57, 41, 12, 0.12);
}

.media-card h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

.media-card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.62;
  flex-grow: 1;
}

.media-badge {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}

.audio-badge {
  background: rgba(232, 150, 10, 0.14);
  color: var(--amber);
}

.video-badge {
  background: rgba(58, 143, 196, 0.14);
  color: var(--blue);
}

.article-badge {
  background: rgba(74, 140, 111, 0.14);
  color: var(--teal);
}

/* Custom Audio Player */
.custom-audio-player {
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: 1.35rem;
  padding: 1.2rem;
  margin-top: 0.5rem;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.player-btn {
  background: var(--coral);
  color: #fff;
  border: none;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-warm);
  flex-shrink: 0;
}

.player-btn:hover {
  transform: scale(1.06);
  background: #d44d34;
}

.player-btn svg {
  display: block;
}

.player-progress-wrap {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.player-progress-bar {
  background: rgba(28, 28, 30, 0.08);
  height: 6px;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
}

.player-progress-filled {
  background: var(--coral);
  width: 0%;
  height: 100%;
  border-radius: 999px;
  position: absolute;
  top: 0;
  left: 0;
}

.player-time {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  user-select: none;
}

/* Rewind & Download — secondary player controls */
.rewind-btn,
.download-btn {
  background: rgba(28, 28, 30, 0.07);
  color: var(--charcoal);
  box-shadow: none;
  width: 2.35rem;
  height: 2.35rem;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
}

.rewind-btn:hover,
.download-btn:hover {
  background: rgba(28, 28, 30, 0.14);
  color: var(--charcoal);
  transform: scale(1.06);
}

.coming-soon-banner {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.media-card.anchor-highlight {
  outline: 3px solid var(--coral);
  outline-offset: 6px;
  animation: highlightPulse 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes highlightPulse {
  0% {
    box-shadow: 0 0 0 16px rgba(232, 100, 74, 0.45);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(232, 100, 74, 0);
  }
}

.copy-anchor-btn:hover {
  background-color: rgba(28, 28, 30, 0.05);
  color: var(--coral) !important;
}
