/* Design Tokens */
:root {
  --charcoal: #2C2D31;
  --neon-green: #7EB831;
  --silver: #EAEAEA;
  --clean-white: #F5F5F5;
  --border-dim: #4A4B50;
  --alert-red: #D64545;
  --text-muted: #424446;
  --network-green: #173C1D;
  --network-green-deep: #173C1D;
  --network-lime: #E2FB63;
  --network-mint: #dff7c4;
  --network-ink: #173C1D;
  --network-muted: #607369;
  --network-surface: #f4f7f3;
  background: #062e21;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Ubuntu', sans-serif;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--clean-white);
  color: var(--charcoal);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: min(94%, 1200px);
  margin: 0 auto;
}

header {
  top: 20px;
  z-index: 99;
  background: rgba(245, 245, 245, 0.374);
  border-bottom: 1px solid rgba(44, 45, 49, 0.08);
  backdrop-filter: blur(50px);
  border-radius: 50px;
  margin-right: 20px;
  margin-left: 20px;
  position: fixed;
  left: 0;
  right: 0;
}

.nav-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  position: relative;
}

.brand-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.logo img {
  max-height: 36px;
}

.nav-tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
  flex-wrap: wrap;
}

.primary-nav a {
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--neon-green);
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  font-size: 1.6rem;
  width: 3.4rem;
  height: 3.4rem;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
  align-items: center;
  justify-content: center;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 117, 64, 0.08);
  border-color: var(--neon-green);
  outline: none;
}

.btn-tertiary,
.btn-secondary,
.btn-primary {
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.btn-tertiary,
.btn-secondary {
  border: 1px solid var(--border-dim);
  background: transparent;
  color: var(--charcoal);
  padding: 1rem 1.6rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
}

.btn-tertiary:hover,
.btn-secondary:hover,
.btn-primary:hover {
  transform: translateY(-2px);
}

.login-btn {
  color: var(--charcoal);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.94);
}

.btn-primary {
  background: var(--neon-green);
  color: var(--clean-white);
  padding: 1rem 1.9rem;
  font-size: 0.95rem;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 31, 38, 0.319), rgba(28, 31, 38, 0.92));
}

.hero-layout {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-copy {
  color: var(--clean-white);
  padding: clamp(2rem, 6vw, 4rem);
  align-items: center;
  justify-content: center;
  display: grid;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--neon-green);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}

.hero-copy h1 {
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  justify-self: center;
  text-align: center;
}

.hero-copy p {
  font-size: 1.05rem;
  max-width: 700px;
  color: rgba(245, 245, 245, 0.88);
  margin-bottom: 2rem;
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.section-padding {
  padding: clamp(2rem, 7vw, 3rem) 0;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.section-intro {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.split-columns {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(280px, 1fr);
  gap: 4rem;
  align-items: start;
}

.column-primary{
  align-content: center;
  margin-top: auto;
  margin-bottom: auto;
}


.column-secondary p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.crisis-section .card-grid,
.workflow-grid,
.consequences-grid,
.roadmap-grid {
  display: grid;
  gap: 1.5rem;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(240px, 1fr));
}

.crisis-card,
.stage-card,
.consequence-block,
.timeline-step {
  background: var(--clean-white);
  border: 1px solid rgba(44, 45, 49, 0.09);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(44, 45, 49, 0.06);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.consequence-block {
  background: var(--clean-white);
  border: 1px solid rgba(44, 45, 49, 0.09);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(44, 45, 49, 0.06);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.consequence-block img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 6px;
}

.crisis-card:hover,
.stage-card:hover,
.consequence-block:hover,
.timeline-step:hover {
  transform: translateY(-8px);
  border-color: var(--neon-green);
  box-shadow: 0 26px 60px rgba(15, 117, 64, 0.16);
}

.crisis-card .card-index,
.stage-card .stage-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: var(--neon-green);
  color: var(--clean-white);
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.crisis-card h3,
.stage-card h3,
.timeline-step span {
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
  color: var(--charcoal);
}

.consequence-block h3{
  font-size: 1.5rem;
  margin-top: 0.9rem;
  color: var(--charcoal);
}

.stage-card p,
.consequence-block p,
.timeline-step p {
  color: var(--text-muted);
  line-height: 1.75;
}

.crisis-card p{
  color: var(--text-muted);
  line-height: 1.75;
  padding-bottom: 12px;
}

.crisis-card img{
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 6px;
}



.dark-panel {
  background: var(--charcoal);
  color: var(--clean-white);
}

.consequences-grid {
  grid-template-columns: repeat(3, minmax(240px, 1fr));
}

.consequence-block {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.consequence-block h3 {
  color: var(--clean-white);
}

.consequence-block p {
  color: rgba(245, 245, 245, 0.8);
}

.consequence-block:hover {
  border-color: var(--neon-green);
}

.workflow-grid {
  grid-template-columns: repeat(4, minmax(220px, 1fr));
}

.ops-framework {
  background: var(--clean-white);
  color: var(--charcoal);
}

.ops-grid {
  display: grid;
  gap: 1.75rem;
  width: 100%;
  max-width: 100%;
}

.ops-step {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr);
  grid-template-areas: "copy asset";
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.ops-step:hover {
  transform: translateY(-6px);
  border-color: var(--neon-green);
  box-shadow: 0 24px 50px rgba(15, 117, 64, 0.14);
}

.ops-step.reverse {
  grid-template-areas: "asset copy";
}

.ops-copy {
  grid-area: copy;
  width: 100%;
  max-width: 100%;
}

.ops-placeholder {
  display: grid;
  place-items: center;
}

.ops-placeholder img {
  max-height: 400px;
  max-width: 400px;
  aspect-ratio: 1/1;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: var(--neon-green);
  color: var(--clean-white);
  font-weight: 800;
  margin-bottom: 1rem;
}

.ops-copy h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.ops-copy p {
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 100%;
}

.stage-card .stage-label {
  background: linear-gradient(135deg, var(--neon-green), var(--neon-green));
}

.roadmap-section {
  background: rgba(14, 117, 63, 0.05);
}

.roadmap-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.roadmap-copy {
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  flex-direction: column;  /* Stack items vertically */
  justify-content: center; /* Center the stack vertically */
  align-items: center;     /* Center each item horizontally */
  text-align: center;      /* Center the text alignment inside paragraphs/headings */
  gap: 15px; 
}

.roadmap-copy p {
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 36rem;
}

.roadmap-copy img {
  aspect-ratio: 1/1;
  max-height: 600px;
  max-width: 600px;
  padding-top: 24px;
}

.timeline-panel {
  display: grid;
  gap: 1rem;
}

.timeline-step {
  border-left: 4px solid var(--neon-green);
  background: var(--clean-white);
}

.timeline-step span {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-weight: 800;
  color: var(--neon-green);
}

.cta-section {
  background: var(--neon-green);
  color: var(--clean-white);
}

.cta-layout {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 2rem;
  align-items: center;
}

.cta-copy h2 {
  margin-bottom: 0.75rem;
  max-width: 750px;
}

.cta-copy p {
  color: rgba(245, 245, 245, 0.88);
  max-width: 38rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-section .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--clean-white);
  border-color: rgba(255, 255, 255, 0.25);
}

.utility-footer {
  border-top: 1px solid rgba(44, 45, 49, 0.12);
  background: #161719;
  color: rgba(245, 245, 245, 0.7);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
}

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

.footer-links a {
  color: rgba(245, 245, 245, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .card-grid,
  .consequences-grid,
  .workflow-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .cta-layout {
    grid-template-columns: 1fr;
  }
  .primary-nav a {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
}


@media (max-width: 768px) {
  .nav-layout {
    flex-wrap: nowrap;
    align-items: center;
  }

  .btn-primary {
  background: var(--neon-green);
  color: var(--clean-white);
  padding: 0.8rem 1.5rem;
  font-size: 0.8rem;
  text-decoration: none;
    font-weight: 500;
}
}

/* Klinam Network hero */
.community-page {

}

.community-hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  color: #f7fbf8;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(135deg, var(--network-green-deep), var(--network-green));
  background-size: 52px 52px, 52px 52px, auto;
}

/* Community page sections */
.community-section {
  padding: clamp(5rem, 9vw, 8.5rem) 0;
}

.community-benefits,
.community-platforms {
  background: var(--network-surface);
  color: var(--network-ink);
}

.community-heading {
  max-width: 46rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.community-heading h2,
.community-cta h2 {
  margin: 0 0 1rem;
  color: var(--network-ink);
  font-size: clamp(2.25rem, 4.3vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.community-heading > p,
.community-cta p {
  max-width: 41rem;
  color: var(--network-muted);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.75;
}

.community-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: #4f7b28;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.community-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #d8e0d9;
  border-left: 1px solid #d8e0d9;
}

.community-benefit-card {
  position: relative;
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.5rem, 2.6vw, 2.25rem);
  border-right: 1px solid #d8e0d9;
  border-bottom: 1px solid #d8e0d9;
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
  transition: background-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.community-benefit-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--network-lime);
  transition: width 260ms ease;
}

.community-benefit-card:hover {
  z-index: 1;
  background: #fff;
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(11, 63, 45, 0.1);
}

.community-benefit-card:hover::after {
  width: 100%;
}

.community-benefit-card__number {
  align-self: flex-end;
  color: #9aaa9f;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.community-icon {
  width: 3.8rem;
  height: 3.8rem;
  display: grid;
  place-items: center;
  margin: 2rem 0 2.5rem;
  border-radius: 50%;
  background: #e7f2df;
  color: var(--neon-green);
}

.community-icon svg {
  width: 1.7rem;
  height: 1.7rem;
}

.community-benefit-card h3 {
  margin-bottom: 0.8rem;
  color: var(--network-ink);
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.community-benefit-card p {
  color: var(--network-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.community-journey {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--network-green-deep);
  background-size: 52px 52px;
  color: #fff;
}

.community-heading--light h2 {
  color: #fff;
}

.community-heading--light > p {
  color: rgba(255, 255, 255, 0.62);
}

.community-heading--light .community-kicker {
  color: var(--network-mint);
}

.community-roadmap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.community-roadmap::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, var(--neon-green), rgba(155, 212, 69, 0.22));
}

.community-roadmap li {
  position: relative;
  min-width: 0;
  padding-right: 1.25rem;
}


.community-roadmap__marker {
  position: relative;
  z-index: 1;
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  border: 1px solid var(--neon-green);
  border-radius: 50%;
  background: var(--network-green-deep);
  color: var(--network-lime);
  font-size: 0.75rem;
  font-weight: 900;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.community-roadmap li:hover .community-roadmap__marker {
  background: var(--network-lime);
  color: var(--network-green-deep);
  transform: scale(1.06);
}

.community-roadmap li div > span {
  display: block;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.community-roadmap h3 {
  max-width: 9rem;
  color: #fff;
  font-size: clamp(0.95rem, 1.5vw, 1.18rem);
  line-height: 1.35;
}

.community-platforms__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.community-platform-card {
  min-height: 24rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid #d6dfd7;
  border-radius: 0.35rem;
  background: #fff;
  box-shadow: 0 12px 32px rgba(11, 63, 45, 0.04);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.community-platform-card:hover {
  transform: translateY(-5px);
  border-color: #a5be91;
  box-shadow: 0 22px 45px rgba(11, 63, 45, 0.09);
}

.community-platform-card--active {
  border-top: 4px solid var(--network-lime);
}

.community-platform-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.community-platform-card__icon {
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  border-radius: 0.5rem;
  background: var(--network-green);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.community-status,
.community-coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  background: #edf1ed;
  color: #718078;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.community-status--active {
  background: #eaf5df;
  color: #3f6d26;
}

.community-status--active i {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #6aa92e;
  box-shadow: 0 0 0 4px rgba(106, 169, 46, 0.12);
}

.community-platform-card h3 {
  margin-bottom: 0.8rem;
  color: var(--network-ink);
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  letter-spacing: -0.035em;
}

.community-platform-card p {
  color: var(--network-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.community-platform-card > a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--network-lime);
  color: var(--network-green);
  font-size: 0.85rem;
  font-weight: 900;
  text-decoration: none;
  transition: gap 180ms ease;
}

.community-platform-card > a:hover {
  gap: 0.85rem;
}

.community-cta {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: var(--network-lime);
  color: var(--network-ink);
}

.community-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 3rem;
}

.community-cta .community-kicker {
  color: var(--network-ink);
}

.community-cta .community-kicker::before {
  background: var(--network-green);
}

.community-cta h2 {
  max-width: 16ch;
}

.community-cta p {
  color: var(--network-ink);
}

.community-cta .community-hero__button--primary {
  background: var(--network-green-deep);
  color: #fff;
  white-space: nowrap;
}

.community-cta .community-hero__button--primary:hover {
  background: #0d4934;
}

@media (max-width: 960px) {
  .community-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .community-benefit-card {
    min-height: 19rem;
  }

  .community-platforms__grid {
    grid-template-columns: 1fr;
  }

  .community-platform-card {
    min-height: 19rem;
  }

  .community-cta__inner {
    grid-template-columns: 1fr;
  }

  .community-cta__inner > a {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .community-roadmap {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 0.25rem;
  }

  .community-roadmap::before {
    top: 2rem;
    bottom: 2rem;
    left: 2.25rem;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(var(--network-lime), rgba(155, 212, 69, 0.18));
  }

  .community-roadmap li {
    display: grid;
    grid-template-columns: 4rem minmax(0, 1fr);
    align-items: center;
    gap: 1.25rem;
    min-height: 7.5rem;
    padding: 0;
  }

  .community-roadmap li:not(:last-child)::after {
    content: "↓";
    top: auto;
    right: auto;
    bottom: -0.2rem;
    left: 1.72rem;
  }

  .community-roadmap__marker {
    margin: 0;
  }

  .community-roadmap h3 {
    max-width: none;
    font-size: 1.15rem;
  }
}

@media (max-width: 560px) {
  .community-benefits__grid {
    grid-template-columns: 1fr;
  }

  .community-benefit-card {
    min-height: 17rem;
  }

  .community-icon {
    margin: 1.25rem 0 1.75rem;
  }

  .community-platform-card {
    min-height: 21rem;
  }

  .community-cta__inner > a {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .community-page *,
  .community-page *::before,
  .community-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.community-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8rem;
  z-index: -1;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.12));
}

.community-hero__glow {
  position: absolute;
  z-index: -1;
  width: 34rem;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(15px);
  pointer-events: none;
}

.community-hero__glow--one {
  top: -18rem;
  right: -8rem;
  background: radial-gradient(circle, rgba(155, 212, 69, 0.2), transparent 68%);
}

.community-hero__glow--two {
  bottom: -22rem;
  left: -12rem;
  background: radial-gradient(circle, rgba(20, 168, 92, 0.18), transparent 68%);
}

.community-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(28rem, 0.95fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.community-hero__content {
  max-width: 43rem;
}

.community-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  color: var(--network-mint);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.community-hero__eyebrow > span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--network-lime);
  box-shadow: 0 0 0 6px rgba(155, 212, 69, 0.12);
}

.community-hero h1 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 6vw, 5.75rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.community-hero h1 span {
  color: var(--network-lime);
}

.community-hero__content > p {
  max-width: 39rem;
  margin-bottom: 2.25rem;
  color: rgba(247, 251, 248, 0.74);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.75;
}

.community-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.community-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.5rem;
  padding: 0.9rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #f7fbf8;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.community-hero__button:hover,
.community-hero__button:focus-visible {
  transform: translateY(-3px);
}

.community-hero__button:focus-visible {
  outline: 3px solid rgba(155, 212, 69, 0.45);
  outline-offset: 3px;
}

.community-hero__button--primary {
  background: var(--network-lime);
  color: #15301f;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.community-hero__button--primary:hover {
  background: #aee35d;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

.community-hero__button--secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.community-hero__button--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.community-hero__visual {
  position: relative;
  width: min(100%, 32rem);
  aspect-ratio: 1;
  justify-self: end;
}

.community-hero__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(223, 247, 196, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.community-hero__orbit--outer {
  width: 92%;
  height: 92%;
}

.community-hero__orbit--inner {
  width: 61%;
  height: 61%;
  border-style: dashed;
}

.community-hero__hub {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12.5rem;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28), 0 0 0 12px rgba(155, 212, 69, 0.08);
  transform: translate(-50%, -50%);
  text-align: center;
}

.community-hero__hub img {
  width: 7.25rem;
  height: auto;
}

.community-hero__hub span {
  color: #315442;
  font-size: 0.72rem;
  font-weight: 700;
}

.community-hero__node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.9rem;
  background: rgba(7, 50, 35, 0.9);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.community-hero__node > span {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--network-lime);
  color: #173b28;
  font-size: 0.68rem;
  font-weight: 900;
}

.community-hero__node p {
  color: rgba(247, 251, 248, 0.62);
  font-size: 0.68rem;
  line-height: 1.35;
}

.community-hero__node strong {
  display: block;
  color: #f7fbf8;
  font-size: 0.78rem;
}

.community-hero__node--students {
  top: 3%;
  left: 4%;
}

.community-hero__node--professionals {
  top: 18%;
  right: -2%;
}

.community-hero__node--changemakers {
  left: -3%;
  bottom: 18%;
}

.community-hero__impact-card {
  position: absolute;
  right: 1%;
  bottom: 4%;
  width: min(15.5rem, 54%);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 1rem;
  background: var(--network-lime);
  color: #22422f;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.community-hero__impact-icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(6, 46, 33, 0.12);
  font-size: 1.1rem;
}

.community-hero__impact-card p {
  font-size: 0.7rem;
  line-height: 1.4;
}

.community-hero__impact-card strong {
  display: block;
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .community-hero__layout {
    grid-template-columns: 1fr;
  }

  .community-hero__content {
    max-width: 46rem;
  }

  .community-hero h1 {
    max-width: 12ch;
  }

  .community-hero__visual {
    width: min(100%, 31rem);
    justify-self: center;
  }
}

@media (max-width: 560px) {
  .community-hero {
    min-height: 100svh;
    padding: 4rem 0 3rem;
  }

  .community-hero__layout {
    gap: 3.5rem;
  }

  .community-hero h1 {
    font-size: clamp(2.75rem, 15vw, 4rem);
  }

  .community-hero__content > p {
    line-height: 1.65;
  }

  .community-hero__actions,
  .community-hero__button {
    width: 100%;
  }

  .community-hero__visual {
    width: 100%;
  }

  .community-hero__hub {
    width: 9.5rem;
    padding: 1.25rem;
  }

  .community-hero__hub img {
    width: 5.6rem;
  }

  .community-hero__node {
    padding: 0.55rem;
  }

  .community-hero__node > span {
    width: 2rem;
    height: 2rem;
  }

  .community-hero__node p {
    display: none;
  }

  .community-hero__node--professionals {
    right: 1%;
  }

  .community-hero__node--changemakers {
    left: 1%;
  }

  .community-hero__impact-card {
    right: 0;
    bottom: 1%;
    width: 55%;
    padding: 0.75rem;
  }

  .community-hero__impact-card p {
    font-size: 0.62rem;
  }
}

@media (max-width: 1000px) {
  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(245, 245, 245, 0.98);
    box-shadow: 0 18px 40px rgba(44, 45, 49, 0.12);
    flex-direction: column;
    padding: 1rem 0;
    border-top: 1px solid rgba(44, 45, 49, 0.08);
    width: 100%;
    border-radius: 30px;
  }
header {
  top: 0px;
  z-index: 99;
  background: rgba(245, 245, 245, 0.374);
  border-bottom: 1px solid rgba(44, 45, 49, 0.08);
  backdrop-filter: blur(50px);
  border-radius: 0px;
  margin-right: 0px;
  margin-left: 0px;
  position: fixed;
  left: 0;
  right: 0;
}

  .menu-toggle {
    display: inline-flex;
  }

  .logo img {
    max-height: 24px;
}

.nav-layout {
    padding: 0.5rem 0;
    gap: 0.5rem;
}

.nav-actions {
  gap: 0rem;
}

}

@media (max-width: 768px) {
.btn-secondary {
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.8rem;
}


  .primary-nav.mobile-active {
    display: flex;
  }

  .primary-nav a {
    padding: 0.95rem 1.5rem;
    width: 100%;
    font-size: 0.95rem;
    border-top: 1px solid rgba(44, 45, 49, 0.08);
  }

  .primary-nav a:first-child {
    border-top: none;
  }


  .hero {
    min-height: 100vh;
    padding: 2rem 0;
  }

  .hero-copy h1 {
    font-size: clamp(1.5rem, 8vw, 3rem);
  }

  .split-columns,
  .card-grid,
  .consequences-grid,
  .workflow-grid,
  .roadmap-grid,
  .ops-grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .consequences-grid,
  .workflow-grid,
  .ops-grid,
  .timeline-panel {
    gap: 1rem;
  }

  .ops-grid {
    position: relative;
    padding-left: 2.5rem;
  }

  .ops-grid::before {
    content: "";
    position: absolute;
    left: 1.35rem;
    top: 1rem;
    bottom: 1rem;
    width: 2px;
    background: rgba(44, 45, 49, 0.12);
  }

  .ops-step {
    position: relative;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy";
    padding: 1.5rem 0 1.5rem 1.5rem;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .ops-step:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
  }

  .ops-step.reverse {
    grid-template-areas:
      "copy";
  }

  .ops-step::before {
    content: "";
    position: absolute;
    left: 0.35rem;
    top: 1.25rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--neon-green);
    box-shadow: 0 0 0 6px rgba(15, 117, 64, 0.08);
  }

  .step-number {
    position: absolute;
    left: -1.25rem;
    top: 0.25rem;
    width: 2.4rem;
    height: 2.4rem;
    margin-bottom: 0;
    font-size: 0.95rem;
  }

  .ops-copy {
    width: 100%;
    max-width: 100%;
    padding-left: 0.5rem;
  }

  .ops-asset {
    display: none;
  }

  .cta-actions {
    width: 100%;
  }

  .footer-grid {
  padding: 1rem, 0;
  justify-content: center;
  }

  .footer-links {
  gap: 0.5rem;
}
}
