/* Community + FAQs + Insights + Scale */
.scale-band {
  padding: 6rem 0;
  background: #000;
  border-block: 1px solid var(--line);
}

.scale-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.scale-card {
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--line);
  background: #050505;
  min-height: 11rem;
  transition: border-color 0.3s, transform 0.35s var(--ease-out);
}

.scale-card:hover {
  border-color: rgba(245, 130, 32, 0.45);
  transform: translateY(-4px);
}

.scale-card .lvl {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.85rem;
}

.scale-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.55rem;
}

.scale-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.resource-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1.15rem;
}

.resource-card {
  display: block;
  padding: 1.75rem;
  border: 1px solid var(--line);
  background: #0a0a0a; border-left: 3px solid var(--orange);
  transition: border-color 0.3s, transform 0.35s var(--ease-out);
  min-height: 12rem;
}

.resource-card:hover {
  border-color: rgba(245, 130, 32, 0.4);
  transform: translateY(-4px);
}

.resource-card .kicker {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.85rem;
}

.resource-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.55rem;
}

.resource-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Insights hub */
.insight-feature {
  display: grid;
  grid-template-columns: minmax(10rem, 0.72fr) 1.28fr;
  border: 1px solid var(--line);
  background: #050505;
  color: inherit;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.35s var(--ease-out);
}

.insight-feature:hover {
  border-color: rgba(245, 130, 32, 0.45);
}

.insight-feature-art {
  position: relative;
  min-height: 16rem;
  background: var(--orange);
  overflow: hidden;
}

.insight-feature-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
}

.insight-feature-num {
  position: absolute;
  left: 1.25rem;
  bottom: 1rem;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: rgba(0, 0, 0, 0.28);
}

.insight-feature-mark {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.35);
  padding: 0.4rem 0.55rem;
  background: rgba(0, 0, 0, 0.08);
}

.insight-feature-body {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}

.insight-feature-body .kicker {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.insight-feature-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.insight-feature-body > p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 40rem;
}

.insight-bullets {
  margin: 0.25rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  display: grid;
  gap: 0.35rem;
}

.insight-bullets li::marker {
  color: var(--orange);
}

.insight-more {
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.insight-more i {
  color: var(--orange);
  display: inline-block;
  transition: transform 0.3s var(--ease-out);
}

.insight-feature:hover .insight-more i,
.insight-card:hover .insight-more i {
  transform: translateX(4px);
}

.insight-topics {
  background: #080808;
  border-block: 1px solid var(--line);
}

.insight-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.insight-topic {
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--line);
  background: #000;
  border-top: 3px solid var(--orange);
}

.insight-topic h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.55rem;
}

.insight-topic p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.insight-library {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.insight-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.75rem;
  border: 1px solid var(--line);
  background: #0a0a0a;
  color: inherit;
  min-height: 14rem;
  transition: border-color 0.3s, transform 0.35s var(--ease-out);
}

.insight-card:hover {
  border-color: rgba(245, 130, 32, 0.45);
  transform: translateY(-3px);
}

.insight-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.insight-card .kicker {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0;
}

.insight-card .meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.insight-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.insight-card > p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}

.insight-principles {
  border-top: 1px solid var(--line);
}

.insight-principle-list {
  display: grid;
  gap: 0;
}

.insight-principle-list article {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.insight-principle-list article span {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--orange);
  padding-top: 0.25rem;
}

.insight-principle-list h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.45rem;
}

.insight-principle-list p {
  color: var(--muted);
  max-width: 40rem;
  line-height: 1.65;
}

/* FAQ */
.faq-search {
  width: 100%;
  max-width: 32rem;
  margin: 1.5rem 0 2.5rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--line-strong);
  background: #050505;
  border-radius: 0.35rem;
  outline: none;
}

.faq-search:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-dim);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--line);
  background: #050505;
}

.faq-item[hidden] {
  display: none;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 1.35rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  color: var(--orange);
  font-size: 1.2rem;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item .answer {
  padding: 0 1.35rem 1.35rem;
  color: var(--muted);
  border-top: 1px solid transparent;
}

.faq-item[open] .answer {
  border-top-color: var(--line);
  padding-top: 1rem;
}

.faq-cat {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 2rem;
  margin-top: 2.5rem;
}

/* Article / Insights */
.article {
  max-width: 46rem;
}

.article h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  margin: 2.5rem 0 1rem;
}

.article h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 1.75rem 0 0.65rem;
  letter-spacing: -0.02em;
}

.article p,
.article li {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.article ul {
  margin: 0 0 1.25rem 1.1rem;
  list-style: disc;
}

.article .tldr {
  padding: 1.35rem 1.5rem;
  border-left: 4px solid var(--orange);
  background: #0a0a0a;
  margin: 1.5rem 0 2rem;
}

.article .tldr strong {
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.criteria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 1.5rem 0 2rem;
}

.criteria-grid article {
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: #050505;
}

.criteria-grid h3 {
  margin-top: 0;
  color: var(--white);
}

/* Community */
.community-shell {
  width: min(100% - 2rem, 52rem);
  margin-inline: auto;
  padding: 2rem 0 5rem;
}

.community-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.community-bar .who {
  color: var(--muted);
  font-size: 0.92rem;
}

.composer {
  display: none;
  gap: 0.85rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  background: #050505;
  margin-bottom: 2rem;
}

.composer.is-open {
  display: grid;
}

.composer input,
.composer textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-strong);
  background: #000;
  border-radius: 0.35rem;
  outline: none;
}

.composer textarea {
  min-height: 7rem;
  resize: vertical;
}

.composer input:focus,
.composer textarea:focus {
  border-color: var(--orange);
}

.post {
  border: 1px solid var(--line);
  background: #050505;
  padding: 1.35rem 1.4rem;
  margin-bottom: 1rem;
}

.post header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.65rem;
}

.post header strong {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.post header time {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted-2);
}

.post h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.post .body {
  color: rgba(255, 255, 255, 0.82);
  white-space: pre-wrap;
  margin-bottom: 1rem;
}

.replies {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.75rem;
}

.reply {
  padding: 0.9rem 1rem;
  background: #0a0a0a;
  border-left: 2px solid var(--orange);
}

.reply .role {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.25rem;
}

.reply-form {
  display: none;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.reply-form.is-open {
  display: grid;
}

.reply-form textarea {
  width: 100%;
  min-height: 4rem;
  padding: 0.75rem;
  border: 1px solid var(--line-strong);
  background: #000;
  border-radius: 0.35rem;
}

.auth-card {
  width: min(100%, 26rem);
  margin: calc(var(--nav-h) + 4rem) auto 4rem;
  padding: 2rem;
  border: 1px solid var(--line);
  background: #050505;
}

.auth-card h1 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}

.auth-card > p {
  color: var(--muted);
  margin-bottom: 1.35rem;
}

.auth-card .field {
  margin-bottom: 0.9rem;
}

.auth-card .field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 0.35rem;
}

.auth-card .field input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-strong);
  background: #000;
  border-radius: 0.35rem;
  outline: none;
}

.auth-card .field input:focus {
  border-color: var(--orange);
}

.auth-card .meta-link {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.auth-card .meta-link a {
  color: var(--orange);
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.idle-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.idle-overlay[hidden] {
  display: none !important;
}

.idle-panel {
  width: min(100%, 24rem);
  padding: 1.5rem;
  border: 1px solid var(--line-strong, #2a2a2a);
  background: #0a0a0a;
}

.idle-overlay .idle-kicker {
  margin: 0 0 0.55rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange, #f58220);
}

.idle-panel h3 {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
  color: #fff;
}

.idle-panel p {
  margin: 0 0 1.25rem;
  color: var(--muted, #9a9a9a);
  line-height: 1.55;
}

.idle-panel strong {
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.auth-card .btn-ghost {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--muted);
}

.auth-card .btn-ghost:hover {
  border-color: var(--orange);
  color: var(--white);
}

@media (max-width: 900px) {
  .scale-grid,
  .resource-rail,
  .criteria-grid,
  .insight-library,
  .insight-topic-grid {
    grid-template-columns: 1fr 1fr;
  }

  .insight-feature {
    grid-template-columns: 1fr;
  }

  .insight-feature-art {
    min-height: 11rem;
  }
}

@media (max-width: 620px) {
  .scale-grid,
  .resource-rail,
  .criteria-grid,
  .insight-library,
  .insight-topic-grid {
    grid-template-columns: 1fr;
  }

  .insight-principle-list article {
    grid-template-columns: 3rem 1fr;
    gap: 0.85rem;
  }
}

/* Newsletter popup */
.nl-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.nl-modal[hidden] {
  display: none !important;
}

.nl-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.nl-card {
  position: relative;
  z-index: 1;
  width: min(100%, 26rem);
  padding: 2rem 1.75rem 1.5rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(245, 130, 32, 0.28);
  background:
    linear-gradient(155deg, rgba(245, 130, 32, 0.14), transparent 42%),
    #111;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  animation: nl-rise 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes nl-rise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.nl-close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.nl-close:hover {
  color: #fff;
  background: rgba(245, 130, 32, 0.2);
}

.nl-eyebrow {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.75rem;
  color: #f58220;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.nl-card h2 {
  font-family: "Sora", sans-serif;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.55rem;
}

.nl-card h2 span {
  color: #f58220;
}

.nl-copy {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.nl-card input[type="email"] {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  margin-bottom: 0.75rem;
  outline: none;
}

.nl-card input[type="email"]:focus {
  border-color: #f58220;
  box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.14);
}

.nl-card .btn {
  width: 100%;
}

.nl-status {
  min-height: 1.2rem;
  margin-top: 0.65rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.nl-status.is-ok {
  color: #7dffa0;
}

.nl-status.is-err {
  color: #ff8f8f;
}

.nl-skip {
  display: block;
  width: 100%;
  margin-top: 0.85rem;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  cursor: pointer;
}

.nl-skip:hover {
  color: #f58220;
}

/* WhatsApp lead gate */
.wa-modal {
  position: fixed;
  inset: 0;
  z-index: 85;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) 1rem max(1rem, env(safe-area-inset-bottom));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.wa-modal[hidden] {
  display: none !important;
}

.wa-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(6px);
}

.wa-card {
  position: relative;
  z-index: 1;
  width: min(100%, 26.5rem);
  max-height: min(90dvh, 42rem);
  margin: auto;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 1.75rem 1.5rem 1.35rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(37, 211, 102, 0.28);
  background:
    linear-gradient(155deg, rgba(37, 211, 102, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(245, 130, 32, 0.08), transparent 50%),
    #111;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  animation: nl-rise 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.wa-close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  margin: -0.35rem -0.35rem 0.35rem 0.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.92);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  cursor: pointer;
}

body.wa-modal-open {
  overflow: hidden !important;
  touch-action: none;
}

body.wa-modal-open .float-actions {
  pointer-events: none;
}

.wa-eyebrow {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.75rem;
  color: #25d366;
  letter-spacing: 0.04em;
  margin-bottom: 0.45rem;
}

.wa-card h2 {
  font-family: "Sora", sans-serif;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.45rem;
}

.wa-copy {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  margin-bottom: 1.1rem;
}

.wa-card label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.35rem;
}

.wa-card label span {
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.7;
}

.wa-card input,
.wa-card select {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  margin-bottom: 0.85rem;
  outline: none;
}

.wa-card input:focus,
.wa-card select:focus {
  border-color: #f58220;
  box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.14);
}

.wa-card .btn {
  width: 100%;
  margin-top: 0.25rem;
}

.wa-status {
  min-height: 1.2rem;
  margin-top: 0.65rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.wa-status.is-ok {
  color: #7dffa0;
}

.wa-status.is-err {
  color: #ff8f8f;
}

button.float-btn.whatsapp {
  border: 0;
  cursor: pointer;
}

.wa-cats-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 0.15rem 0 0.35rem;
}

.wa-cats-label span {
  color: #f58220;
}

.wa-cats-hint {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  margin: 0 0 0.65rem;
}

.wa-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.wa-cat {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 !important;
  padding: 0.55rem 0.65rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.28);
  cursor: pointer;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 0.82rem !important;
  color: rgba(255, 255, 255, 0.82) !important;
  transition: border-color 0.2s, background 0.2s;
}

.wa-cat:has(input:checked) {
  border-color: rgba(245, 130, 32, 0.65);
  background: rgba(245, 130, 32, 0.12);
  color: #fff !important;
}

.wa-cat input {
  width: auto !important;
  margin: 0 !important;
  accent-color: #f58220;
}

.wa-cat span {
  line-height: 1.25;
}

@media (max-width: 520px) {
  .wa-categories {
    grid-template-columns: 1fr;
  }
}

/* Contact form — What do you need? */
.cats-label {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.cats-label span {
  color: #f58220;
}
.cats-hint {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.42);
}
.service-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}
.svc-cat {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.55rem 0.65rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
  cursor: pointer;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.82);
  transition: border-color 0.2s, background 0.2s;
}
.svc-cat:has(input:checked) {
  border-color: rgba(245, 130, 32, 0.65);
  background: rgba(245, 130, 32, 0.12);
  color: #fff;
}
.svc-cat input {
  width: auto;
  margin: 0;
  accent-color: #f58220;
}
.svc-cat span {
  line-height: 1.25;
}
@media (max-width: 520px) {
  .service-categories {
    grid-template-columns: 1fr;
  }
}

/* AI culture + designathons */
.culture-band {
  padding: 6rem 0;
  background: #050505;
  border-block: 1px solid var(--line);
}

.culture-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: start;
}

.culture-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  letter-spacing: -0.04em;
  margin: 0.6rem 0 1.1rem;
}

.culture-copy p {
  color: var(--muted);
  max-width: 36rem;
  margin-bottom: 1rem;
}

.culture-copy strong {
  color: #fff;
  font-weight: 600;
}

.culture-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.culture-points article {
  padding: 1.25rem 1.2rem;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
  transition: border-color 0.3s, transform 0.35s var(--ease-out);
}

.culture-points article:hover {
  border-color: rgba(245, 130, 32, 0.4);
  transform: translateY(-3px);
}

.culture-points h3 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.65rem;
}

.culture-points p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.designathon-band {
  padding: 6rem 0;
  background: #000;
}

.designathon-band .section-head p {
  max-width: 42rem;
}

.designathon-band .section-head strong {
  color: #fff;
  font-weight: 600;
}

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

.designathon-card {
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--line);
  background: #050505;
  min-height: 12rem;
  transition: border-color 0.3s, transform 0.35s var(--ease-out);
}

.designathon-card:hover {
  border-color: rgba(245, 130, 32, 0.45);
  transform: translateY(-4px);
}

.designathon-card .kicker {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.85rem;
}

.designathon-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.55rem;
}

.designathon-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

/* News desk */
.news-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1.75rem;
}

.news-meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.news-filter {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line);
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.news-filter:hover {
  border-color: rgba(245, 130, 32, 0.45);
  color: #fff;
}

.news-filter.is-active {
  border-color: rgba(245, 130, 32, 0.7);
  background: rgba(245, 130, 32, 0.14);
  color: #fff;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.news-carousel {
  position: relative;
}

.news-carousel-viewport {
  overflow: hidden;
  touch-action: pan-y;
  border: 1px solid transparent;
}

.news-carousel-track {
  display: flex;
  width: 100%;
  will-change: transform;
}

.news-carousel-page {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  box-sizing: border-box;
  padding-right: 1px;
}

.news-carousel-bar {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 0.85rem 1.1rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.news-carousel-btn {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  background: #050505;
  color: #fff;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, color 0.25s, transform 0.25s var(--ease-out);
}

.news-carousel-btn:hover:not(:disabled) {
  border-color: rgba(245, 130, 32, 0.55);
  background: rgba(245, 130, 32, 0.12);
  transform: translateY(-1px);
}

.news-carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.news-carousel-btn span {
  color: var(--orange);
}

.news-carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.news-carousel-dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  cursor: pointer;
  transition: width 0.35s var(--ease-out), background 0.25s, border-color 0.25s;
}

.news-carousel-dot.is-active {
  width: 1.65rem;
  background: var(--orange);
  border-color: var(--orange);
}

.news-carousel-dot:hover:not(.is-active) {
  border-color: var(--orange);
}

.news-carousel-status {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
  white-space: nowrap;
  justify-self: end;
}

.news-skeleton {
  min-height: 18rem;
  border: 1px solid var(--line);
  background: #0c0c0c;
  animation: news-pulse 1.4s ease-in-out infinite;
}

@keyframes news-pulse {
  0%,
  100% { opacity: 0.55; }
  50% { opacity: 1; }
}

.news-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: #050505;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.35s var(--ease-out);
}

.news-card:hover {
  border-color: rgba(245, 130, 32, 0.45);
  transform: translateY(-4px);
}

.news-card-media {
  aspect-ratio: 16 / 10;
  background: #0c0c0c;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.news-card:hover .news-card-media img {
  transform: scale(1.04);
}

.news-card-media.is-empty {
  background: #0a0a0a;
}

.news-card-body {
  padding: 1.2rem 1.15rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
}

.news-card-meta {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.news-card-meta time {
  color: var(--muted);
}

.news-card h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin: 0;
}

.news-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-more {
  margin-top: auto;
  padding-top: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.news-card-more span {
  color: var(--orange);
}

.news-empty {
  color: var(--muted);
  margin: 1.5rem 0 0;
}

.news-note {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 44rem;
}

@media (max-width: 960px) {
  .culture-grid,
  .designathon-grid {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .culture-points {
    grid-template-columns: 1fr 1fr;
  }

  .news-carousel-bar {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "prev next"
      "dots dots"
      "status status";
  }

  .news-carousel-bar #newsPrev { grid-area: prev; }
  .news-carousel-bar #newsNext { grid-area: next; justify-self: end; }
  .news-carousel-dots { grid-area: dots; }
  .news-carousel-status { grid-area: status; justify-self: center; }
}

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

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

@media (prefers-reduced-motion: reduce) {
  .news-carousel-track {
    transition: none !important;
  }
}

