:root {
  --ink: #14201e;
  --ink-soft: #53615e;
  --night: #101819;
  --night-2: #162322;
  --ivory: #f7f2e7;
  --paper: #fffcf5;
  --mist: #e8eee8;
  --line: rgba(20, 32, 30, 0.13);
  --line-dark: rgba(247, 242, 231, 0.16);
  --gold: #c5944f;
  --copper: #9e6b4c;
  --sage: #6f8c7c;
  --teal: #1f5c5a;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(23, 34, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--ivory);
  background: rgba(16, 24, 25, 0.74);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
}

.brand {
  font-family: Literata, Georgia, serif;
  font-size: 1.24rem;
  font-weight: 600;
  letter-spacing: 0;
}

.header-nav {
  display: none;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(247, 242, 231, 0.24);
  border-radius: 999px;
  color: var(--ivory);
  font-size: 0.9rem;
}

.section-shell {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 78px 0;
  scroll-margin-top: 86px;
}

.dark-section {
  color: var(--ivory);
  background:
    radial-gradient(circle at 75% 12%, rgba(197, 148, 79, 0.18), transparent 32%),
    linear-gradient(135deg, var(--night), var(--night-2));
}

.light-section {
  background: var(--paper);
}

.muted-section {
  background: linear-gradient(180deg, #edf1ea, #f8f5ee);
}

.hero {
  --hero-parallax-y: 0px;
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 112px 0 72px;
  overflow: hidden;
  isolation: isolate;
  background:
    var(--night) url("../img/hero-observer-landscape.jpg") center center / cover no-repeat;
  background-position: center calc(50% + var(--hero-parallax-y));
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: -1;
  inset: 5% -8% auto auto;
  width: min(67vw, 920px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.065;
  background: repeating-conic-gradient(
    from 3deg,
    rgba(247, 242, 231, 0.9) 0 0.22deg,
    transparent 0.22deg 3.333deg
  );
  -webkit-mask: radial-gradient(circle, transparent 78.8%, #000 79.2% 79.75%, transparent 80.15%);
  mask: radial-gradient(circle, transparent 78.8%, #000 79.2% 79.75%, transparent 80.15%);
}

.hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 17, 17, 0.96) 0%, rgba(10, 17, 17, 0.88) 27%, rgba(10, 17, 17, 0.48) 51%, rgba(10, 17, 17, 0.12) 76%),
    linear-gradient(180deg, rgba(8, 14, 15, 0.24) 0%, transparent 44%, rgba(8, 14, 15, 0.66) 100%);
}

.hero-shell {
  position: relative;
  z-index: 1;
}

.hero-shell::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: clamp(-90px, -8vh, -40px);
  left: 62%;
  width: 22px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(17, 29, 30, 0.88) 0 52%, transparent 54%),
    radial-gradient(circle at 38% 32%, #fffdf5 0, #d9d8cc 48%, #8e9994 76%, #53615f 100%);
  box-shadow: 3px 4px 13px rgba(247, 242, 231, 0.14);
  opacity: 0.78;
  transform: rotate(-8deg);
}

.hero-scroll-cue {
  position: absolute;
  z-index: 2;
  top: calc(100svh - 72px);
  left: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  aspect-ratio: 1;
  color: rgba(247, 242, 231, 0.84);
  border: 1px solid rgba(247, 242, 231, 0.28);
  border-radius: 50%;
  background: rgba(16, 24, 25, 0.34);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(8px);
  transform: translateX(-50%);
  transition:
    color 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.hero-scroll-cue span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1;
}

.hero-scroll-cue:hover {
  color: var(--ivory);
  border-color: rgba(197, 148, 79, 0.72);
  background: rgba(16, 24, 25, 0.54);
  transform: translate(-50%, 2px);
}

.hero-scroll-cue:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.jyotish-intro {
  padding: clamp(34px, 6vw, 72px) 0 clamp(26px, 5vw, 56px);
  background: var(--paper);
}

.jyotish-intro-shell {
  position: relative;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  overflow: hidden;
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid rgba(31, 92, 90, 0.1);
  border-radius: calc(var(--radius) + 4px);
  background:
    radial-gradient(circle at 92% 8%, rgba(197, 148, 79, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(232, 238, 232, 0.78), rgba(255, 252, 245, 0.94));
  box-shadow: 0 24px 70px rgba(20, 32, 30, 0.08);
}

.jyotish-intro-shell::before {
  content: "ॐ";
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  bottom: clamp(-72px, -5vw, -34px);
  color: rgba(31, 92, 90, 0.045);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(15rem, 27vw, 25rem);
  font-weight: 400;
  line-height: 0.8;
  pointer-events: none;
  transform: rotate(-5deg);
}

.jyotish-intro-shell::after {
  content: "";
  position: absolute;
  right: -74px;
  bottom: -106px;
  width: 250px;
  aspect-ratio: 1;
  border: 1px solid rgba(31, 92, 90, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(31, 92, 90, 0.018);
  pointer-events: none;
}

.jyotish-intro-shell > * {
  position: relative;
  z-index: 1;
}

.brand-easter-egg {
  position: absolute;
  z-index: 0;
  display: block;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.brand-easter-egg--constellation {
  top: -56px;
  right: -34px;
  width: clamp(330px, 38vw, 570px);
  aspect-ratio: 1;
  opacity: 0.038;
  background-image: url("../brand/ganesha-constellation.svg");
  transform: rotate(7deg);
}

.jyotish-intro-tag {
  width: fit-content;
  margin: 0 0 22px;
  padding: 5px 10px;
  border: 1px solid rgba(31, 92, 90, 0.18);
  border-radius: 999px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.jyotish-intro h2 {
  margin-bottom: 0;
  max-width: 600px;
  font-size: clamp(2rem, 4.25vw, 3.35rem);
  line-height: 1.04;
}

.jyotish-intro h2 span {
  display: block;
  white-space: nowrap;
}

.jyotish-intro-copy {
  max-width: 620px;
}

.jyotish-intro-copy p {
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.72;
}

.button.jyotish-intro-action {
  min-height: 42px;
  padding: 0 20px;
  border-color: rgba(31, 92, 90, 0.24);
  border-radius: 30px;
  color: var(--teal);
  background: rgba(255, 252, 245, 0.52);
}

@media (max-width: 679px) {
  .hero {
    min-height: 100svh;
    align-items: flex-start;
    background-position: 72% 190px;
    background-size: auto 844px;
  }

  .hero::before {
    top: 29%;
    right: -56%;
    width: 170vw;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(9, 16, 16, 0.92) 0%, rgba(9, 16, 16, 0.77) 38%, rgba(9, 16, 16, 0.22) 66%, rgba(8, 14, 15, 0.6) 100%),
      linear-gradient(90deg, rgba(9, 16, 16, 0.76), rgba(9, 16, 16, 0.16));
  }

  .hero-shell::after {
    top: 365px;
    right: 5%;
    left: auto;
    width: 18px;
    opacity: 0.82;
  }
}

.eyebrow,
.card-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Literata, Georgia, serif;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 9vw, 4.55rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 9vw, 4.4rem);
}

.map-title {
  font-size: clamp(1.5rem, 6.3vw, 3.08rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.24;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(247, 242, 231, 0.78);
  font-size: clamp(1.1rem, 4.6vw, 1.45rem);
  line-height: 1.45;
}

.hero-lead span {
  display: block;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.service-card:hover,
.observation-feature:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #17211e;
  background: var(--gold);
}

.button-secondary {
  color: var(--ivory);
  border-color: rgba(247, 242, 231, 0.26);
  background: rgba(247, 242, 231, 0.06);
}

.large-sutra {
  color: rgba(247, 242, 231, 0.72);
  font-family: Literata, Georgia, serif;
  font-size: 1.2rem;
}

.hero-sutra {
  width: fit-content;
  max-width: 100%;
  margin: clamp(40px, 4vw, 52px) 0 0;
  color: rgba(247, 242, 231, 0.78);
  font-family: Literata, Georgia, serif;
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  font-weight: 500;
  line-height: 1.4;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.dark-section .section-heading p:not(.eyebrow) {
  color: rgba(247, 242, 231, 0.72);
}

.card-grid {
  display: grid;
  gap: 14px;
}

.event-card,
.info-card,
.community-card,
.compact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 252, 245, 0.72);
  box-shadow: var(--shadow);
}

.event-card,
.info-card,
.community-card {
  padding: 24px;
}

.event-card p,
.info-card p,
.community-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.events-system {
  display: grid;
  gap: clamp(42px, 7vw, 76px);
}

#events {
  position: relative;
  overflow: hidden;
}

#events > .section-shell {
  position: relative;
  z-index: 1;
}

.brand-easter-egg--events-constellation {
  top: 36px;
  right: -150px;
  width: clamp(420px, 44vw, 680px);
  aspect-ratio: 1;
  opacity: 0.025;
  background-image: url("../brand/ganesha-constellation.svg");
  transform: rotate(-9deg);
}

.brand-easter-egg--events-ornament {
  left: -230px;
  bottom: 4%;
  width: clamp(520px, 55vw, 820px);
  aspect-ratio: 2 / 1;
  opacity: 0.018;
  background-image: url("../brand/vedascope-ornament.svg");
  transform: rotate(8deg);
}

.event-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 4px 11px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.event-tag--conference {
  color: #e1b66f;
  background: rgba(197, 148, 79, 0.12);
}

.event-tag--seminar {
  color: #637b70;
  background: rgba(111, 140, 124, 0.1);
}

.event-tag--practice {
  color: #1f5c5a;
  background: rgba(31, 92, 90, 0.08);
}

.event-tag--retreat {
  color: #9a7149;
  background: rgba(190, 151, 104, 0.12);
}

.event-tag--tour {
  color: #8c6334;
  background: rgba(197, 148, 79, 0.12);
}

.event-tag--online {
  color: #496f85;
  background: rgba(73, 111, 133, 0.09);
}

.event-tag--offline {
  color: #9a684c;
  background: rgba(158, 107, 76, 0.1);
}

.event-tag--hybrid {
  color: #506c78;
  background: linear-gradient(90deg, rgba(73, 111, 133, 0.1), rgba(158, 107, 76, 0.1));
}

.events-featured {
  position: relative;
  display: grid;
  gap: 42px;
  overflow: hidden;
  min-height: 540px;
  padding: clamp(30px, 6vw, 68px);
  border: 1px solid rgba(247, 242, 231, 0.16);
  border-radius: calc(var(--radius) + 2px);
  color: var(--ivory);
  background:
    radial-gradient(circle at 87% 12%, rgba(197, 148, 79, 0.32), transparent 32%),
    linear-gradient(135deg, #101819 0%, #172522 62%, #26362f 100%);
  box-shadow: 0 34px 90px rgba(20, 32, 30, 0.2);
}

.events-featured-background,
.events-featured-background-layer {
  position: absolute;
  inset: 0;
}

.events-featured-background {
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.events-featured-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 18, 18, 0.94) 0%, rgba(9, 18, 18, 0.78) 48%, rgba(9, 18, 18, 0.48) 100%),
    linear-gradient(180deg, rgba(8, 16, 16, 0.18), rgba(8, 16, 16, 0.62));
}

.events-featured-background-layer {
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
  transition: opacity 700ms ease;
}

.events-featured-background-layer.is-active {
  opacity: 1;
}

.events-featured-empty {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 40px;
  border: 1px solid rgba(31, 92, 90, 0.12);
  border-radius: calc(var(--radius) + 2px);
  color: var(--ink-soft);
  background:
    radial-gradient(circle at 82% 18%, rgba(197, 148, 79, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(232, 238, 232, 0.72), rgba(255, 252, 245, 0.94));
  font-family: Literata, Georgia, serif;
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  text-align: center;
}

.events-featured::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -170px;
  width: 420px;
  aspect-ratio: 1;
  border: 1px solid rgba(197, 148, 79, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 44px rgba(197, 148, 79, 0.025),
    0 0 0 88px rgba(197, 148, 79, 0.018);
  pointer-events: none;
}

.events-featured-main,
.events-guest {
  position: relative;
  z-index: 2;
}

.events-featured .event-tag {
  margin-bottom: clamp(34px, 6vw, 64px);
}

.events-featured-meta {
  margin-bottom: 17px;
  color: rgba(247, 242, 231, 0.74);
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 600;
}

.events-featured h3 {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: Literata, Georgia, serif;
  font-size: clamp(2.05rem, 4.2vw, 3.55rem);
  font-weight: 600;
  line-height: 1.03;
  text-wrap: balance;
}

.event-title-opening {
  white-space: nowrap;
}

.events-featured-description {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(247, 242, 231, 0.7);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.events-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.events-calendar-button {
  color: var(--ivory);
  border-color: rgba(247, 242, 231, 0.3);
  background: rgba(247, 242, 231, 0.06);
}

.events-guest {
  align-self: end;
  padding-top: 28px;
  border-top: 1px solid rgba(247, 242, 231, 0.16);
}

.events-guest .card-kicker {
  display: block;
}

.events-guest p {
  margin-bottom: 0;
  color: rgba(247, 242, 231, 0.62);
}

.events-guest .events-guest-name {
  max-width: 320px;
  margin-bottom: 6px;
  color: var(--ivory);
  font-family: Literata, Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.25;
}

.events-guest a {
  display: inline-flex;
  margin-top: 22px;
  color: #e1b66f;
  font-size: 0.9rem;
  font-weight: 700;
}

.events-year {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.events-year-heading .eyebrow {
  margin-bottom: 10px;
}

.events-year-heading h3 {
  margin-bottom: 10px;
  font-family: Literata, Georgia, serif;
  font-size: clamp(1.65rem, 4vw, 2.6rem);
  font-weight: 600;
}

.events-year-heading > p:last-child {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.events-timeline-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
}

.events-timeline-carousel::before,
.events-timeline-carousel::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 8px;
  width: 32px;
  pointer-events: none;
}

.events-timeline-carousel::before {
  left: 42px;
  background: linear-gradient(90deg, var(--paper), transparent);
}

.events-timeline-carousel::after {
  right: 42px;
  background: linear-gradient(270deg, var(--paper), transparent);
}

.events-timeline-arrow {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 32px;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgba(31, 92, 90, 0.2);
  border-radius: 50%;
  color: var(--teal);
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.events-timeline-arrow:hover:not(:disabled) {
  border-color: var(--teal);
}

.events-timeline-arrow:disabled {
  opacity: 0.22;
  cursor: default;
}

.events-timeline-scroll {
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  padding: 5px 2px 12px;
  scroll-padding-inline: 12px;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.events-timeline-scroll::-webkit-scrollbar {
  display: none;
}

.events-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(108px, 1fr));
  min-width: 1296px;
}

.events-timeline::before {
  content: "";
  position: absolute;
  top: 75px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
}

.events-month {
  position: relative;
  display: grid;
  justify-items: center;
  grid-template-rows: auto auto 18px;
  gap: 4px;
  min-height: 100px;
  padding: 8px 6px 4px;
  border: 0;
  border-radius: 0;
  color: rgba(83, 97, 94, 0.58);
  background: transparent;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
  scroll-snap-align: center;
}

.events-month:hover:not(:disabled) {
  color: var(--teal);
  transform: translateY(-2px);
}

.events-month:focus-visible,
.events-filter:focus-visible,
.events-timeline-arrow:focus-visible,
.events-revolver-controls button:focus-visible,
.events-revolver-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.events-month:disabled {
  color: rgba(83, 97, 94, 0.28);
  cursor: default;
}

.events-month-name {
  font-size: 0.82rem;
}

.events-month-count {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.events-month-marker {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 12px;
  aspect-ratio: 1;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: #cdd5d0;
  box-shadow: 0 0 0 1px var(--line);
  color: var(--ivory);
  font-size: 0.62rem;
  letter-spacing: 0;
  align-self: end;
}

.events-month.has-events {
  color: var(--ink);
}

.events-month.has-events .events-month-marker {
  width: 18px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(197, 148, 79, 0.12);
}

.events-month.is-active {
  color: var(--teal);
}

.events-month.is-active .events-month-name {
  position: relative;
}

.events-month.is-active .events-month-name::after {
  content: "";
  position: absolute;
  right: 18%;
  bottom: -7px;
  left: 18%;
  height: 1px;
  background: var(--gold);
}

.events-month.is-active .events-month-marker {
  width: 20px;
  background: var(--teal);
  box-shadow:
    0 0 0 3px var(--paper),
    0 0 0 4px rgba(31, 92, 90, 0.48);
}

.events-month.is-active .events-month-marker::after {
  content: "";
  position: absolute;
  top: -8px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
}

.events-month.is-context .events-month-marker {
  background: var(--teal);
  box-shadow:
    0 0 0 2px var(--paper),
    0 0 0 3px rgba(31, 92, 90, 0.28);
}

.events-month.is-active::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  transform: translateX(-50%);
}

.events-browser {
  display: grid;
  gap: 16px;
  padding-top: 4px;
}

.events-browser-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.events-browser-heading .eyebrow {
  margin-bottom: 9px;
}

.events-browser-heading h3 {
  margin-bottom: 0;
  font-family: Literata, Georgia, serif;
  font-size: clamp(1.65rem, 4vw, 2.6rem);
  font-weight: 600;
}

.events-revolver-controls {
  display: flex;
  gap: 8px;
}

.events-revolver-controls button {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--teal);
  background: rgba(255, 252, 245, 0.8);
  font: inherit;
  cursor: pointer;
}

.events-revolver-controls button:disabled {
  opacity: 0.3;
  cursor: default;
}

.events-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-top: 2px;
  padding-bottom: 4px;
}

.events-filter {
  min-height: 28px;
  padding: 2px 1px;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  color: var(--ink-soft);
  background: transparent;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.events-filter span {
  margin-left: 3px;
  color: rgba(83, 97, 94, 0.42);
  font-size: 0.68rem;
}

.events-filter:hover,
.events-filter.is-active {
  color: var(--teal);
  border-color: var(--teal);
  background: transparent;
}

.events-filter:hover span,
.events-filter.is-active span {
  color: rgba(31, 92, 90, 0.58);
}

.events-revolver {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(min(86vw, 360px), 720px);
  gap: 16px;
  overflow-x: auto;
  padding: 2px 3px 10px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 3px;
  scrollbar-color: rgba(31, 92, 90, 0.3) transparent;
}

.events-revolver-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: clamp(24px, 4vw, 36px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  scroll-snap-align: start;
  background: rgba(255, 252, 245, 0.84);
  box-shadow: 0 20px 55px rgba(20, 32, 30, 0.08);
  cursor: pointer;
  animation: events-card-in 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes events-card-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}

.events-revolver-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
}

.events-revolver-card--conference {
  background: linear-gradient(145deg, rgba(197, 148, 79, 0.13), rgba(255, 252, 245, 0.9));
}

.events-revolver-card--conference::before {
  background: var(--gold);
}

.events-revolver-card--seminar {
  background: linear-gradient(145deg, rgba(111, 140, 124, 0.14), rgba(255, 252, 245, 0.9));
}

.events-revolver-card--seminar::before {
  background: var(--sage);
}

.events-revolver-card--practice {
  background: linear-gradient(145deg, rgba(31, 92, 90, 0.13), rgba(255, 252, 245, 0.9));
}

.events-revolver-card--practice::before {
  background: var(--teal);
}

.events-revolver-card--retreat {
  background: linear-gradient(145deg, rgba(190, 151, 104, 0.16), rgba(255, 252, 245, 0.9));
}

.events-revolver-card--retreat::before {
  background: #b58a5a;
}

.events-revolver-card--tour {
  background: linear-gradient(145deg, rgba(197, 148, 79, 0.17), rgba(255, 252, 245, 0.92));
}

.events-revolver-card--tour::before {
  background: var(--gold);
}

.events-revolver-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 28px;
}

.events-revolver-date {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
}

.events-revolver-meta {
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 600;
}

.events-revolver-card h4 {
  margin: 0 0 14px;
  font-family: Literata, Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.15;
}

.events-revolver-description {
  margin-bottom: 24px;
  color: var(--ink-soft);
}

.events-revolver-guest {
  display: grid;
  gap: 2px;
  margin: -8px 0 16px;
  color: var(--ink);
  font-family: Literata, Georgia, serif;
  font-weight: 600;
}

.events-revolver-guest span,
.events-revolver-venue {
  color: var(--ink-soft);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.84rem;
  font-weight: 400;
}

.events-revolver-venue {
  margin: -8px 0 20px;
}

.events-revolver-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.events-revolver-actions .button {
  min-height: 42px;
  padding: 0 17px;
  font-size: 0.88rem;
}

.events-details-button {
  color: var(--ivory);
  background: var(--teal);
}

.events-add-button {
  color: var(--teal);
  border-color: rgba(31, 92, 90, 0.25);
  background: rgba(255, 252, 245, 0.58);
}

.events-empty {
  margin: 0;
  padding: 36px;
  border: 1px dashed rgba(31, 92, 90, 0.22);
  border-radius: var(--radius);
  color: var(--ink-soft);
  background: rgba(232, 238, 232, 0.42);
  text-align: center;
}

.split-section {
  display: grid;
  gap: 30px;
}

.dark-section .community-card,
.timeline-grid article {
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(180deg, rgba(247, 242, 231, 0.08), rgba(247, 242, 231, 0.04));
  box-shadow: none;
}

.dark-section .community-card p {
  color: rgba(247, 242, 231, 0.68);
}

.timeline-grid {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.timeline-grid article {
  min-height: 154px;
  padding: 24px;
  border-radius: var(--radius);
}

.timeline-grid h3 {
  margin-bottom: 14px;
  color: var(--ivory);
  font-size: 1.24rem;
}

.timeline-grid p {
  margin: 0;
  color: rgba(247, 242, 231, 0.66);
  font-size: 0.98rem;
  line-height: 1.55;
}

.large-sutra {
  max-width: 760px;
  margin: 46px 0 0;
  font-size: clamp(1.65rem, 6vw, 3.6rem);
  line-height: 1.08;
}

.knowledge-section {
  position: relative;
  overflow: hidden;
}

.knowledge-section::before {
  content: "";
  position: absolute;
  width: min(52vw, 720px);
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.045;
  pointer-events: none;
}

.knowledge-section--map::before {
  top: -28%;
  right: -18%;
  color: var(--teal);
  box-shadow: 0 0 0 64px currentColor, 0 0 0 128px currentColor;
}

.knowledge-section--time::before {
  right: -16%;
  bottom: -34%;
  color: var(--gold);
  box-shadow: 0 0 0 72px currentColor, 0 0 0 144px currentColor;
}

.knowledge-heading {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  margin-bottom: clamp(38px, 6vw, 68px);
}

.knowledge-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  text-wrap: balance;
}

.knowledge-heading > p {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.7;
}

.knowledge-section--time .knowledge-heading > p {
  color: rgba(247, 242, 231, 0.7);
}

.knowledge-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.knowledge-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 210px;
  overflow: hidden;
  padding: clamp(24px, 3.5vw, 36px);
  border: 1px solid rgba(20, 32, 30, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 252, 245, 0.68);
  box-shadow: 0 18px 46px rgba(23, 34, 31, 0.07);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.knowledge-card:hover {
  z-index: 2;
  border-color: rgba(31, 92, 90, 0.22);
  box-shadow: 0 28px 62px rgba(23, 34, 31, 0.13);
  transform: translateY(-4px);
}

.knowledge-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-family: Literata, Georgia, serif;
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  font-weight: 600;
}

.knowledge-card > p {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}

.knowledge-index {
  position: absolute;
  top: 24px;
  right: 26px;
  color: rgba(31, 92, 90, 0.38);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.knowledge-index::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + 9px);
  width: 24px;
  height: 1px;
  background: currentColor;
}

.knowledge-kaleidoscope {
  position: relative;
  z-index: 1;
}

.knowledge-principles {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(14px, 2vw, 20px);
}

.knowledge-principle {
  position: relative;
  min-height: clamp(270px, 32vw, 360px);
  overflow: hidden;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(31, 92, 90, 0.13);
  border-radius: calc(var(--radius) + 4px);
  background:
    radial-gradient(circle at 82% 18%, rgba(197, 148, 79, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 252, 245, 0.92), rgba(232, 238, 232, 0.72));
  box-shadow: 0 22px 58px rgba(20, 32, 30, 0.075);
  isolation: isolate;
  transition: transform 360ms ease, border-color 360ms ease, box-shadow 360ms ease;
}

.knowledge-principle:hover {
  border-color: rgba(197, 148, 79, 0.3);
  box-shadow: 0 30px 76px rgba(20, 32, 30, 0.12);
  transform: translateY(-4px);
}

.knowledge-principle::before,
.knowledge-principle::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.knowledge-principle::before {
  top: clamp(22px, 4vw, 38px);
  right: clamp(22px, 4vw, 42px);
  width: clamp(128px, 24vw, 230px);
  aspect-ratio: 1;
  opacity: 0.55;
  transition: opacity 360ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.knowledge-principle:hover::before {
  opacity: 0.82;
  transform: translateY(-4px);
}

.knowledge-principle::after {
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 148, 79, 0.36), transparent);
  opacity: 0;
  transition: opacity 360ms ease;
}

.knowledge-principle:hover::after {
  opacity: 1;
}

.knowledge-principle-mark {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 13px;
  margin-bottom: clamp(72px, 11vw, 116px);
  color: var(--gold);
}

.knowledge-principle-mark strong {
  font-family: Literata, Georgia, serif;
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.73;
}

.knowledge-principle-mark span {
  padding-bottom: 3px;
  color: rgba(31, 92, 90, 0.7);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.knowledge-principle-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.knowledge-principle h3 {
  margin: 0 0 12px;
  font-family: Literata, Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  font-weight: 600;
  line-height: 1.08;
}

.knowledge-principle p {
  max-width: 570px;
  margin: 0;
  color: rgba(20, 32, 30, 0.68);
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  line-height: 1.65;
}

.knowledge-principle--grahas::before {
  border: 1px solid rgba(31, 92, 90, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(197, 148, 79, 0.38) 0 3%, transparent 3.6%),
    radial-gradient(circle at 70% 30%, rgba(31, 92, 90, 0.3) 0 2%, transparent 2.6%),
    radial-gradient(circle at 29% 68%, rgba(31, 92, 90, 0.24) 0 1.8%, transparent 2.5%),
    repeating-conic-gradient(from 18deg, rgba(31, 92, 90, 0.18) 0 1deg, transparent 1deg 40deg);
  box-shadow: inset 0 0 0 34px rgba(255, 252, 245, 0.18);
}

.knowledge-principle--houses::before {
  border: 1px solid rgba(31, 92, 90, 0.22);
  background:
    linear-gradient(90deg, transparent 24.5%, rgba(31, 92, 90, 0.18) 25%, transparent 25.5% 49.5%, rgba(31, 92, 90, 0.18) 50%, transparent 50.5% 74.5%, rgba(31, 92, 90, 0.18) 75%, transparent 75.5%),
    linear-gradient(0deg, transparent 24.5%, rgba(31, 92, 90, 0.18) 25%, transparent 25.5% 49.5%, rgba(31, 92, 90, 0.18) 50%, transparent 50.5% 74.5%, rgba(31, 92, 90, 0.18) 75%, transparent 75.5%),
    linear-gradient(rgba(255, 252, 245, 0.72), rgba(232, 238, 232, 0.42));
}

.knowledge-principle--houses::after {
  right: clamp(22px, 4vw, 42px);
  bottom: auto;
  top: clamp(22px, 4vw, 38px);
  left: auto;
  width: clamp(64px, 12vw, 116px);
  height: clamp(64px, 12vw, 116px);
  border: 1px solid rgba(197, 148, 79, 0.14);
  background: transparent;
  opacity: 1;
  transform: translate(34%, 34%);
}

.knowledge-principle--nakshatras::before {
  border: 1px solid rgba(197, 148, 79, 0.24);
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg, rgba(31, 92, 90, 0.2) 0 1deg, transparent 1deg 13.333deg),
    radial-gradient(circle, transparent 0 54%, rgba(197, 148, 79, 0.16) 55% 56%, transparent 57%);
  mask: radial-gradient(circle, transparent 0 43%, #000 44%);
}

.knowledge-principle--padas::before {
  border: 1px solid rgba(31, 92, 90, 0.2);
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg, rgba(31, 92, 90, 0.16) 0 0.65deg, transparent 0.65deg 3.333deg),
    radial-gradient(circle, transparent 0 27%, rgba(197, 148, 79, 0.14) 28% 29%, transparent 30% 49%, rgba(31, 92, 90, 0.12) 50% 51%, transparent 52%);
}

.knowledge-unique {
  position: relative;
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  margin-top: clamp(50px, 8vw, 92px);
  overflow: hidden;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid rgba(31, 92, 90, 0.16);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(circle at 84% 12%, rgba(197, 148, 79, 0.13), transparent 32%),
    linear-gradient(135deg, rgba(255, 252, 245, 0.93), rgba(232, 238, 232, 0.76));
  box-shadow: 0 26px 78px rgba(20, 32, 30, 0.085);
}

.knowledge-unique-copy {
  position: relative;
  z-index: 1;
  max-width: 610px;
}

.knowledge-unique h3 {
  margin: 0 0 18px;
  font-family: Literata, Georgia, serif;
  font-size: clamp(2rem, 4.3vw, 3.7rem);
  font-weight: 600;
  line-height: 1.02;
  text-wrap: balance;
}

.knowledge-unique-copy > p:last-child {
  margin: 0;
  color: rgba(20, 32, 30, 0.68);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.72;
}

.knowledge-pattern {
  position: relative;
  z-index: 1;
  min-height: clamp(220px, 28vw, 310px);
  border: 1px solid rgba(31, 92, 90, 0.12);
  border-radius: calc(var(--radius) - 2px);
  background:
    linear-gradient(90deg, rgba(31, 92, 90, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 92, 90, 0.05) 1px, transparent 1px),
    rgba(255, 252, 245, 0.35);
  background-size: 44px 44px;
}

.knowledge-pattern svg {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.knowledge-pattern-layer path,
.knowledge-pattern-layer polygon {
  vector-effect: non-scaling-stroke;
}

.knowledge-pattern-layer--slow {
  stroke: rgba(31, 92, 90, 0.42);
  stroke-width: 1.1;
  fill: rgba(31, 92, 90, 0.035);
  animation: pattern-shift-a 28s ease-in-out infinite alternate;
}

.knowledge-pattern-layer--soft {
  stroke: rgba(197, 148, 79, 0.38);
  stroke-width: 0.9;
  animation: pattern-shift-b 34s ease-in-out infinite alternate;
}

.knowledge-pattern-points {
  fill: var(--gold);
  stroke: rgba(255, 252, 245, 0.86);
  stroke-width: 1.4;
  animation: pattern-pulse 22s ease-in-out infinite alternate;
}

@keyframes pattern-shift-a {
  0% { transform: translate3d(0, 0, 0) skewX(0deg); opacity: 0.78; }
  50% { transform: translate3d(10px, -6px, 0) skewX(-1deg); opacity: 0.94; }
  100% { transform: translate3d(-8px, 8px, 0) skewX(1.2deg); opacity: 0.86; }
}

@keyframes pattern-shift-b {
  0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.54; }
  50% { transform: translate3d(-8px, 6px, 0) scale(1.015); opacity: 0.8; }
  100% { transform: translate3d(9px, -4px, 0) scale(0.99); opacity: 0.62; }
}

@keyframes pattern-pulse {
  0% { transform: translate3d(0, 0, 0); opacity: 0.72; }
  100% { transform: translate3d(4px, -3px, 0); opacity: 1; }
}

.knowledge-card--accent {
  justify-content: space-between;
  min-height: 300px;
  color: var(--ivory);
  border-color: rgba(247, 242, 231, 0.12);
  background: linear-gradient(135deg, #173332, #1f5c5a);
  box-shadow: 0 26px 64px rgba(20, 50, 48, 0.2);
}

.knowledge-card--accent:hover {
  border-color: rgba(197, 148, 79, 0.42);
  box-shadow: 0 34px 76px rgba(20, 50, 48, 0.26);
}

.knowledge-card--accent h3 {
  color: var(--ivory);
}

.knowledge-card--accent > p {
  color: rgba(247, 242, 231, 0.72);
}

.knowledge-number {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 44px;
  color: var(--gold);
}

.knowledge-number strong {
  font-family: Literata, Georgia, serif;
  font-size: clamp(4.4rem, 10vw, 7.2rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.72;
}

.knowledge-number span {
  max-width: 180px;
  padding-bottom: 2px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.knowledge-number--wide span {
  max-width: 150px;
}

.knowledge-card--houses::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 34px;
  width: 150px;
  aspect-ratio: 1;
  border: 1px solid rgba(247, 242, 231, 0.16);
  background:
    linear-gradient(45deg, transparent 49.6%, rgba(247, 242, 231, 0.14) 50%, transparent 50.4%),
    linear-gradient(-45deg, transparent 49.6%, rgba(247, 242, 231, 0.14) 50%, transparent 50.4%);
  transform: rotate(45deg);
}

.knowledge-card--nakshatras {
  background: linear-gradient(135deg, #1b3437, #162725);
}

.knowledge-card--nakshatras::after,
.knowledge-card--dashas::after {
  content: "";
  position: absolute;
  top: -54px;
  right: -32px;
  width: 230px;
  aspect-ratio: 1;
  border: 1px solid rgba(197, 148, 79, 0.24);
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, rgba(197, 148, 79, 0.2) 0 1deg, transparent 1deg 13.333deg);
  mask: radial-gradient(circle, transparent 0 56%, #000 57%);
  opacity: 0.68;
}

.knowledge-card--padas {
  background: linear-gradient(135deg, #213634, #102523);
}

.knowledge-card--padas::after {
  content: "";
  position: absolute;
  top: 32px;
  right: 34px;
  width: 154px;
  aspect-ratio: 1;
  border: 1px solid rgba(197, 148, 79, 0.24);
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg, rgba(247, 242, 231, 0.15) 0 0.7deg, transparent 0.7deg 10deg),
    radial-gradient(circle, transparent 0 44%, rgba(197, 148, 79, 0.14) 44.5% 45%, transparent 45.5%);
  opacity: 0.72;
}

.knowledge-card--summary {
  display: grid;
  grid-template-columns: 52px minmax(170px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(20px, 4vw, 52px);
  min-height: 176px;
  border-color: rgba(31, 92, 90, 0.18);
  background: linear-gradient(120deg, rgba(232, 238, 232, 0.9), rgba(255, 252, 245, 0.8));
}

.knowledge-card--summary h3,
.knowledge-card--summary .eyebrow {
  margin-bottom: 0;
}

.knowledge-card--summary > p {
  padding-left: clamp(20px, 4vw, 48px);
  border-left: 1px solid rgba(31, 92, 90, 0.2);
  font-family: Literata, Georgia, serif;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.55;
}

.knowledge-summary-mark {
  position: relative;
  width: 38px;
  aspect-ratio: 1;
  border: 1px solid rgba(31, 92, 90, 0.34);
  transform: rotate(45deg);
}

.knowledge-summary-mark::before,
.knowledge-summary-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(197, 148, 79, 0.54);
}

.knowledge-summary-mark::after {
  inset: 15px;
  background: var(--teal);
}

.knowledge-consultation {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.knowledge-consultation .button {
  min-height: 48px;
  padding-inline: 24px;
}

.knowledge-consultation--centered {
  justify-content: center;
}

.knowledge-consultation span {
  color: rgba(83, 97, 94, 0.72);
  font-size: 0.8rem;
}

.knowledge-consultation--dark .button {
  color: var(--night);
  background: var(--gold);
}

.knowledge-section--time .knowledge-card:not(.knowledge-card--accent) {
  color: var(--ivory);
  border-color: rgba(247, 242, 231, 0.14);
  background: linear-gradient(155deg, rgba(247, 242, 231, 0.08), rgba(247, 242, 231, 0.035));
  box-shadow: none;
}

.knowledge-section--time .knowledge-card:not(.knowledge-card--accent):hover {
  border-color: rgba(197, 148, 79, 0.38);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.18);
}

.knowledge-section--time .knowledge-card > p {
  color: rgba(247, 242, 231, 0.66);
}

.knowledge-section--time .knowledge-index {
  color: rgba(197, 148, 79, 0.58);
}

.knowledge-card--dashas {
  background:
    radial-gradient(circle at 82% 20%, rgba(197, 148, 79, 0.16), transparent 32%),
    linear-gradient(135deg, #172d2c, #1d4946);
}

.knowledge-card--dashas::after {
  top: -70px;
  right: -10px;
  width: 280px;
  background: repeating-conic-gradient(from 0deg, rgba(197, 148, 79, 0.22) 0 1deg, transparent 1deg 40deg);
}

.knowledge-section--time .knowledge-card--summary {
  background:
    linear-gradient(90deg, rgba(197, 148, 79, 0.08), transparent 42%),
    rgba(247, 242, 231, 0.055);
}

.knowledge-section--time .knowledge-card--summary > p {
  border-color: rgba(197, 148, 79, 0.28);
}

.knowledge-summary-mark--time {
  border-radius: 50%;
  border-color: rgba(197, 148, 79, 0.5);
  transform: none;
}

.knowledge-summary-mark--time::before {
  inset: 7px;
  border-radius: 50%;
  border-color: rgba(247, 242, 231, 0.24);
}

.knowledge-summary-mark--time::after {
  inset: 17px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
}

.services-section { position: relative; overflow: hidden; isolation: isolate; background: radial-gradient(circle at 12% 20%, rgba(111, 140, 124, 0.1), transparent 28%), linear-gradient(180deg, #fffcf5, #f7f5ed); }
.services-shell { position: relative; z-index: 1; }
.services-heading { max-width: 700px; }
.services-heading p:last-child { max-width: 590px; margin-bottom: 0; }
.services-backdrop { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.services-backdrop svg { position: absolute; fill: none; stroke: rgba(31, 92, 90, 0.1); stroke-width: 1; }
.services-backdrop-time { top: 170px; right: -80px; width: min(52vw, 680px); }
.services-backdrop-chart { left: -105px; top: 44%; width: 300px; opacity: 0.56; transform: rotate(8deg); }
.services-backdrop-stars { right: 2%; bottom: 5%; width: 280px; opacity: 0.65; }

.service-feature,
.service-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink); }

.service-feature {
  min-height: clamp(480px, 48vw, 570px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(28px, 3.5vw, 48px);
  padding: clamp(28px, 5vw, 58px);
  background: radial-gradient(circle at 82% 24%, rgba(197, 148, 79, 0.17), transparent 28%), linear-gradient(135deg, rgba(232, 238, 232, 0.82), rgba(255, 252, 245, 0.96));
  box-shadow: 0 26px 72px rgba(20, 32, 30, 0.1);
  transition: transform 360ms ease, border-color 360ms ease, box-shadow 360ms ease;
}

.service-feature::before { content: ""; position: absolute; width: 360px; aspect-ratio: 1; right: -130px; bottom: -190px; border: 1px solid rgba(31, 92, 90, 0.1); border-radius: 50%; box-shadow: 0 0 0 34px rgba(31, 92, 90, 0.035), 0 0 0 70px rgba(31, 92, 90, 0.025); }
.service-feature-copy { position: relative; z-index: 1; display: grid; max-width: 560px; gap: 12px; }
.service-kicker, .service-number { color: var(--teal); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.service-feature-copy h3 { margin: 4px 0 8px; font-family: Literata, Georgia, serif; font-size: clamp(2.25rem, 5vw, 4.5rem); font-weight: 500; line-height: 1; }
.service-feature-copy p { max-width: 540px; margin: 0; color: var(--ink-soft); font-size: clamp(1rem, 1.7vw, 1.12rem); line-height: 1.65; }
.service-symbol svg { display: block; width: 100%; fill: none; stroke: currentColor; stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.service-feature-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.service-feature-actions .button { min-height: 48px; padding-inline: 22px; }
.service-try-button { color: var(--teal); border: 1px solid rgba(31, 92, 90, 0.28); background: rgba(255, 252, 245, 0.52); }

.service-chart-previews { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; perspective: 900px; }
.service-chart-preview { min-width: 0; padding: 18px; border: 1px solid rgba(31, 92, 90, 0.3); border-radius: 10px; background: linear-gradient(155deg, #fffdf7, #e8eee8); box-shadow: 0 22px 48px rgba(20, 32, 30, 0.14); transition: transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1), border-color 320ms ease, box-shadow 320ms ease; }
.service-chart-preview:first-child { transform: rotate(-2deg) translateY(12px); }
.service-chart-preview:last-child { transform: rotate(2deg) translateY(-12px); }
.service-chart-preview > span { display: block; margin-bottom: 12px; color: var(--teal); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.service-chart-preview svg { display: block; width: 100%; fill: none; stroke: #174f4d; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-chart-preview-north svg { stroke-width: 0.95; }
.service-chart-preview .service-chart-dots { fill: var(--gold); stroke: none; }
.service-chart-preview .service-chart-labels { fill: var(--ink-soft); stroke: none; font-family: Inter, sans-serif; font-size: 8px; font-weight: 600; }
.service-chart-preview .service-chart-center { fill: var(--gold); stroke: #174f4d; stroke-width: 1; }

.service-tools-grid { display: grid; gap: 14px; margin-top: clamp(54px, 8vw, 88px); }

.service-card {
  min-height: 230px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 72px auto 1fr;
  gap: 12px 24px;
  padding: clamp(22px, 3vw, 30px);
  background: rgba(255, 252, 245, 0.76);
  box-shadow: 0 16px 42px rgba(20, 32, 30, 0.06);
  backdrop-filter: blur(3px);
  transition: transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease, background 320ms ease;
}

.service-card::after { content: ""; position: absolute; right: -36px; bottom: -52px; width: 126px; aspect-ratio: 1; border: 1px solid rgba(197, 148, 79, 0.12); transform: rotate(45deg); transition: transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1), border-color 320ms ease; }
.service-symbol { grid-column: 2; grid-row: 1; width: 54px; color: rgba(31, 92, 90, 0.52); transition: color 320ms ease, transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1); }
.service-card h4 { grid-column: 1 / -1; grid-row: 2; align-self: start; margin: 0; font-family: Literata, Georgia, serif; font-size: 1.25rem; font-weight: 500; }
.service-card p { grid-column: 1 / -1; position: relative; z-index: 1; margin: 0; color: var(--ink-soft); font-size: 0.92rem; line-height: 1.5; }
.service-card-login { position: absolute; right: clamp(22px, 3vw, 30px); bottom: clamp(20px, 2.6vw, 28px); z-index: 2; display: inline-flex; align-items: center; gap: 8px; color: var(--teal); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; transition: color 320ms ease, transform 320ms ease; }
.service-card-primary { min-height: 270px; border-color: rgba(31, 92, 90, 0.26); background: radial-gradient(circle at 86% 16%, rgba(197, 148, 79, 0.16), transparent 34%), linear-gradient(145deg, rgba(232, 238, 232, 0.96), rgba(255, 252, 245, 0.94)); box-shadow: 0 22px 56px rgba(20, 32, 30, 0.1); }
.service-card-primary .service-symbol { width: 66px; color: var(--teal); }

@media (hover: hover) {
  .service-feature:hover { transform: translateY(-5px); border-color: rgba(31, 92, 90, 0.3); box-shadow: 0 34px 88px rgba(20, 32, 30, 0.14); }
  .service-feature:hover .service-chart-preview { border-color: rgba(197, 148, 79, 0.5); box-shadow: 0 28px 64px rgba(20, 32, 30, 0.16), 0 0 36px rgba(197, 148, 79, 0.1); }
  .service-feature:hover .service-chart-preview:first-child { transform: rotate(-1deg) translateY(4px) scale(1.015); }
  .service-feature:hover .service-chart-preview:last-child { transform: rotate(1deg) translateY(-4px) scale(1.015); }
  .service-try-button:hover { color: var(--paper); border-color: var(--teal); background: var(--teal); }
  .service-card:hover { transform: translateY(-5px); border-color: rgba(31, 92, 90, 0.28); background: rgba(255, 252, 245, 0.96); box-shadow: 0 26px 62px rgba(20, 32, 30, 0.11); }
  .service-card:hover .service-symbol { color: var(--gold); transform: translateY(-3px) rotate(4deg); }
  .service-card:hover::after { border-color: rgba(197, 148, 79, 0.28); transform: rotate(52deg) scale(1.08); }
  .service-card-primary:hover .service-card-login { color: var(--gold-dark); transform: translateX(3px); }
}

@media (max-width: 679px) {
  .knowledge-principle {
    min-height: 250px;
  }

  .knowledge-principle-mark {
    margin-bottom: 72px;
  }

  .knowledge-principle::before {
    right: -24px;
    width: 142px;
  }

  .knowledge-unique {
    padding: 28px 22px 22px;
  }

  .knowledge-pattern {
    min-height: 210px;
  }

  .services-backdrop-time { width: 620px; opacity: 0.56; }
  .service-feature { min-height: 0; grid-template-columns: 1fr; }
  .service-feature-copy { max-width: none; }
  .service-feature-actions { display: grid; }
  .service-feature-actions .button { width: 100%; }
  .service-chart-previews { margin-top: 16px; gap: 8px; }
  .service-chart-preview { padding: 10px; }
  .service-chart-preview > span { font-size: 0.58rem; }
}

@media (min-width: 680px) {
  .service-tools-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card-primary { grid-column: span 2; }
}

@media (min-width: 680px) and (max-width: 959px) {
  .service-feature { grid-template-columns: 1fr; }
  .service-chart-previews { max-width: 620px; }
}

@media (min-width: 960px) {
  .service-tools-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-card-primary { grid-column: span 2; }
}

.sutra-section {
  padding: 50px 0;
  scroll-margin-top: 86px;
  color: var(--ivory);
  background:
    linear-gradient(rgba(16, 24, 25, 0.76), rgba(16, 24, 25, 0.82)),
    radial-gradient(circle at 50% 0%, rgba(197, 148, 79, 0.2), transparent 45%),
    var(--night);
  text-align: center;
}

.sutra-shell > p {
  max-width: 820px;
  margin: 0 auto clamp(32px, 3vw, 44px);
  font-family: Literata, Georgia, serif;
  font-size: clamp(1.9rem, 7vw, 3.9rem);
  line-height: 1.02;
}

.sutra-meaning {
  max-width: 680px;
  margin: 22px auto 0;
  color: rgba(247, 242, 231, 0.74);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.sutra-meaning.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready .scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-ready .scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.academy-section { position: relative; overflow: hidden; isolation: isolate; background: linear-gradient(180deg, #edf1ea, #f8f5ee); }
.academy-shell { position: relative; z-index: 1; }
.academy-heading { max-width: 850px; }
.academy-heading p:last-child { max-width: 760px; }
.academy-backdrop { position: absolute; z-index: -1; right: -90px; top: 110px; width: 360px; color: rgba(31, 92, 90, 0.075); transform: rotate(7deg); pointer-events: none; }
.academy-backdrop svg { display: block; width: 100%; fill: none; stroke: currentColor; stroke-width: 1; }

.observation-feature {
  position: relative;
  display: grid;
  min-height: clamp(330px, 38vw, 430px);
  align-content: space-between;
  gap: 28px;
  margin-bottom: clamp(44px, 7vw, 76px);
  padding: clamp(28px, 5vw, 56px);
  overflow: hidden;
  color: var(--ivory);
  border: 1px solid rgba(247, 242, 231, 0.12);
  border-radius: var(--radius);
  background: radial-gradient(circle at 84% 20%, rgba(197, 148, 79, 0.26), transparent 34%), linear-gradient(135deg, var(--teal), var(--night-2));
  box-shadow: 0 30px 76px rgba(20, 32, 30, 0.18);
  transition: transform 360ms ease, box-shadow 360ms ease, border-color 360ms ease;
}

.observation-feature-index { position: relative; z-index: 1; color: rgba(247, 242, 231, 0.58); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.observation-feature-copy { position: relative; z-index: 1; display: grid; max-width: 690px; gap: 16px; }
.observation-feature-copy strong { font-family: Literata, Georgia, serif; font-size: clamp(2.15rem, 5vw, 4.35rem); font-weight: 500; line-height: 1.04; }
.observation-feature-copy small { max-width: 590px; color: rgba(247, 242, 231, 0.72); font-size: clamp(0.98rem, 1.6vw, 1.1rem); line-height: 1.65; }
.observation-feature-action { display: inline-flex; align-items: center; gap: 10px; width: fit-content; margin-top: 8px; color: var(--ivory); font-size: 0.88rem; font-weight: 700; }
.observation-feature-action > span { display: grid; place-items: center; width: 34px; aspect-ratio: 1; border: 1px solid rgba(247, 242, 231, 0.25); border-radius: 50%; transition: color 280ms ease, background 280ms ease, transform 280ms ease; }
.observation-feature > svg { position: absolute; right: clamp(-32px, 2vw, 28px); top: 50%; width: clamp(220px, 31vw, 370px); fill: none; stroke: rgba(247, 242, 231, 0.15); stroke-width: 1; transform: translateY(-50%); transition: stroke 360ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1); }

.academy-catalog { display: grid; gap: 14px; }
.academy-card {
  position: relative;
  min-height: 250px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 64px auto 1fr auto;
  gap: 10px 22px;
  padding: clamp(22px, 3vw, 30px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 252, 245, 0.68);
  box-shadow: 0 16px 42px rgba(20, 32, 30, 0.055);
  backdrop-filter: blur(3px);
  transition: transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease, background 320ms ease;
}
.academy-card::before { content: ""; position: absolute; right: -54px; bottom: -76px; width: 156px; aspect-ratio: 0.72; border: 1px solid rgba(197, 148, 79, 0.12); box-shadow: -10px -10px 0 rgba(197, 148, 79, 0.025), -20px -20px 0 rgba(197, 148, 79, 0.018); transform: rotate(8deg); transition: transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1), border-color 320ms ease; }
.academy-card-number { color: var(--teal); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; }
.academy-card-symbol { grid-column: 2; grid-row: 1; width: 48px; color: rgba(31, 92, 90, 0.48); transition: color 320ms ease, transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1); }
.academy-card-symbol svg { display: block; width: 100%; fill: none; stroke: currentColor; stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.academy-card h3 { grid-column: 1 / -1; margin: 0; font-family: Literata, Georgia, serif; font-size: clamp(1.25rem, 2vw, 1.55rem); font-weight: 500; }
.academy-card p { grid-column: 1 / -1; position: relative; z-index: 1; margin: 0; color: var(--ink-soft); font-size: 0.94rem; line-height: 1.55; }
.academy-card-arrow { grid-column: 1 / -1; position: relative; z-index: 1; justify-self: end; display: grid; place-items: center; width: 34px; aspect-ratio: 1; color: transparent; border: 1px solid transparent; border-radius: 50%; transition: color 280ms ease, border-color 280ms ease, transform 280ms ease; }

@media (hover: hover) {
  .observation-feature:hover { transform: translateY(-5px); border-color: rgba(197, 148, 79, 0.35); box-shadow: 0 38px 88px rgba(20, 32, 30, 0.24); }
  .observation-feature:hover > svg { stroke: rgba(247, 242, 231, 0.25); transform: translateY(-50%) rotate(3deg) scale(1.03); }
  .observation-feature:hover .observation-feature-action > span { color: var(--night); background: var(--gold); transform: translate(2px, -2px); }
  .academy-card:hover { transform: translateY(-5px); border-color: rgba(197, 148, 79, 0.42); background: rgba(255, 252, 245, 0.94); box-shadow: 0 26px 62px rgba(20, 32, 30, 0.1); }
  .academy-card:hover::before { border-color: rgba(197, 148, 79, 0.3); transform: rotate(4deg) translate(-5px, -5px); }
  .academy-card:hover .academy-card-symbol { color: var(--gold); transform: translateY(-3px); }
  .academy-card:hover .academy-card-arrow { color: var(--gold); border-color: rgba(197, 148, 79, 0.38); transform: translate(2px, -2px); }
}

@media (min-width: 680px) {
  .academy-catalog { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 960px) {
  .academy-catalog { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .academy-card { grid-column: span 4; }
  .academy-card:nth-child(1), .academy-card:nth-child(4), .academy-card:nth-child(5) { grid-column: span 5; }
  .academy-card:nth-child(2), .academy-card:nth-child(3), .academy-card:nth-child(6) { grid-column: span 7; }
  .academy-card:nth-child(7), .academy-card:nth-child(8) { grid-column: span 6; }
}

@media (max-width: 679px) {
  .observation-feature { min-height: 430px; }
  .observation-feature-copy { align-self: end; }
  .observation-feature > svg { top: 32px; right: -54px; width: 220px; transform: none; }
  .academy-catalog { grid-template-columns: minmax(0, 1fr); }
  .academy-card { min-height: 230px; }
}

.community-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 8%, rgba(197, 148, 79, 0.2), transparent 29%),
    radial-gradient(circle at 8% 96%, rgba(31, 92, 90, 0.24), transparent 34%),
    linear-gradient(145deg, #0b1415, #172322 58%, #111817);
}

.community-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -220px;
  bottom: -260px;
  border: 1px solid rgba(197, 148, 79, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.community-heading {
  max-width: 820px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.community-heading h2 {
  margin-bottom: 14px;
}

.community-heading p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
}

.community-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(16px, 2vw, 22px);
}

.community-section .community-card {
  position: relative;
  display: grid;
  grid-template-rows: 58% 42%;
  min-width: 0;
  height: clamp(380px, 108vw, 440px);
  padding: 0;
  overflow: hidden;
  border-color: rgba(247, 242, 231, 0.14);
  background: rgba(247, 242, 231, 0.045);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.18);
  transition: transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}

.community-card-visual {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 0;
  padding: clamp(20px, 3vw, 30px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 18%, rgba(197, 148, 79, 0.15), transparent 34%),
    linear-gradient(145deg, #142322, #0c1718);
}

.community-card-visual::before,
.community-card-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.community-card-visual::before {
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(247, 242, 231, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 242, 231, 0.09) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(135deg, #000, transparent 76%);
}

.community-card-visual::after {
  width: 190px;
  aspect-ratio: 1;
  right: -74px;
  bottom: -118px;
  border: 1px solid rgba(197, 148, 79, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 26px rgba(197, 148, 79, 0.035), 0 0 0 52px rgba(197, 148, 79, 0.022);
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.community-card-index {
  color: rgba(247, 242, 231, 0.5);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.community-card-type {
  position: relative;
  z-index: 1;
  align-self: end;
  color: rgba(247, 242, 231, 0.92);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(5.2rem, 15vw, 9.4rem);
  font-weight: 620;
  letter-spacing: -0.09em;
  line-height: 0.72;
  transition: color 320ms ease, transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.community-card-type-play {
  display: flex;
  align-items: center;
  font-size: clamp(3.3rem, 9vw, 5.8rem);
  letter-spacing: -0.07em;
}

.community-card-type-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-right: 0.16em;
  border-top: 0.28em solid transparent;
  border-bottom: 0.28em solid transparent;
  border-left: 0.44em solid var(--gold);
}

.community-card-visual > svg {
  position: absolute;
  inset: auto 18px 12px;
  width: calc(100% - 36px);
  height: calc(100% - 26px);
  fill: none;
  stroke: rgba(224, 184, 119, 0.3);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 320ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.community-card-visual-telegram {
  background: radial-gradient(circle at 84% 14%, rgba(91, 132, 128, 0.26), transparent 38%), linear-gradient(145deg, #142625, #0b1718);
}

.community-card-visual-vk {
  background: radial-gradient(circle at 18% 82%, rgba(111, 140, 124, 0.2), transparent 44%), linear-gradient(150deg, #172120, #101819);
}

.community-card-visual-youtube {
  background: radial-gradient(circle at 72% 28%, rgba(158, 107, 76, 0.2), transparent 38%), linear-gradient(145deg, #211d19, #101819 70%);
}

.community-card-visual-events {
  background: radial-gradient(circle at 78% 22%, rgba(197, 148, 79, 0.2), transparent 38%), linear-gradient(145deg, #1d2722, #101819);
}

.community-card-copy {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(22px, 3vw, 30px);
}

.community-card-copy > span:first-child {
  display: grid;
  gap: 8px;
}

.community-card-copy strong {
  color: var(--ivory);
  font-family: Literata, Georgia, serif;
  font-size: clamp(1.55rem, 2.7vw, 2.25rem);
  font-weight: 500;
  line-height: 1.08;
}

.community-card-copy small {
  max-width: 390px;
  color: rgba(247, 242, 231, 0.68);
  font-size: 0.96rem;
  line-height: 1.55;
}

.community-card-arrow {
  flex: 0 0 auto;
  align-self: flex-end;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(197, 148, 79, 0.46);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.05rem;
  transition: color 260ms ease, background 260ms ease, transform 260ms ease;
}

@media (hover: hover) {
  .community-section .community-card:hover {
    transform: translateY(-6px);
    border-color: rgba(197, 148, 79, 0.38);
    box-shadow: 0 30px 72px rgba(0, 0, 0, 0.28), 0 0 34px rgba(197, 148, 79, 0.08);
  }

  .community-card:hover .community-card-type {
    color: #fffaf0;
    transform: translateY(-4px);
  }

  .community-card:hover .community-card-visual > svg {
    stroke: rgba(224, 184, 119, 0.52);
    transform: scale(1.025);
  }

  .community-card:hover .community-card-visual::after {
    transform: translate(-8px, -8px) scale(1.08);
  }

  .community-card:hover .community-card-arrow {
    color: var(--night);
    background: var(--gold);
    transform: translate(2px, -2px);
  }
}

@media (min-width: 680px) {
  .community-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
  }

  .community-section .community-card {
    height: clamp(410px, 34vw, 460px);
  }
}

.about-shell {
  display: grid;
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(247, 242, 231, 0.42));
}

.about-copy {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.site-footer {
  padding: 34px 0;
  color: var(--ivory);
  background: var(--night);
}

.footer-shell {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  color: rgba(247, 242, 231, 0.68);
  font-size: 0.94rem;
}

@media (max-width: 679px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-header {
    min-height: 60px;
    height: 60px;
    padding: 10px 18px;
  }

  .site-header .site-logo {
    width: auto;
    height: 32px;
    max-width: 140px;
    object-fit: contain;
  }

  .header-action {
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 100svh;
    padding: 96px 0 88px;
    background-position: 72% 150px;
    background-size: auto min(790px, 94svh);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3rem, 15vw, 4.6rem);
    line-height: 0.92;
  }

  .hero-title-line {
    white-space: normal;
  }

  .hero-lead {
    max-width: 92vw;
    font-size: clamp(1.15rem, 4vw, 1.25rem);
    line-height: 1.45;
  }

  .hero-lead span {
    display: inline;
    white-space: normal;
  }

  .hero-lead span + span::before {
    content: " ";
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-actions .button {
    width: min(100%, 260px);
    min-height: 44px;
    padding: 0 18px;
    font-size: 1rem;
  }

  .hero-sutra {
    margin-top: 30px;
    font-size: 0.96rem;
  }

  .hero-shell::after {
    top: 365px;
  }

  .hero-scroll-cue {
    top: calc(100svh - 64px);
    width: 44px;
  }

  .jyotish-intro {
    padding: 28px 0 24px;
  }

  .jyotish-intro-shell {
    gap: 24px;
    padding: 28px 24px 30px;
  }

  .jyotish-intro-shell::before {
    right: -28px;
    bottom: -38px;
    left: auto;
    font-size: 13rem;
  }

  .jyotish-intro h2 {
    max-width: 330px;
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .jyotish-intro h2 span {
    display: inline;
    white-space: normal;
  }

  .jyotish-intro-copy p {
    margin-bottom: 22px;
    font-size: 1rem;
    line-height: 1.62;
  }

  .jyotish-intro-tag {
    margin-bottom: 16px;
  }

  .button.jyotish-intro-action {
    min-height: 40px;
    padding: 0 18px;
    font-size: 0.92rem;
  }

  .events-timeline-carousel {
    display: block;
  }

  .events-timeline-carousel::before {
    left: 0;
  }

  .events-timeline-carousel::after {
    right: 0;
  }

  .events-timeline-arrow {
    display: none;
  }

  .events-timeline {
    grid-template-columns: repeat(12, minmax(82px, 1fr));
    min-width: 984px;
  }

  .events-filters {
    gap: 4px 10px;
  }

  .events-featured h3 {
    font-size: clamp(1.75rem, 7.4vw, 2rem);
    line-height: 1.08;
    text-wrap: pretty;
  }

  .knowledge-card {
    min-height: 190px;
  }

  .knowledge-card--accent {
    min-height: 280px;
  }

  .knowledge-card--houses::after {
    top: 30px;
    right: -20px;
    width: 126px;
  }

  .knowledge-card--nakshatras::after,
  .knowledge-card--padas::after,
  .knowledge-card--dashas::after {
    right: -72px;
    width: 200px;
  }

  .knowledge-card--summary {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 18px;
  }

  .knowledge-card--summary > p {
    grid-column: 1 / -1;
    padding: 20px 0 0;
    border-top: 1px solid rgba(31, 92, 90, 0.2);
    border-left: 0;
  }

  .knowledge-section--time .knowledge-card--summary > p {
    border-top-color: rgba(197, 148, 79, 0.28);
  }

  .knowledge-summary-mark {
    width: 30px;
  }

  .knowledge-consultation {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
  }

  .knowledge-consultation .button {
    width: auto;
    min-height: 44px;
    padding-inline: 18px;
    font-size: 0.9rem;
  }

  .knowledge-consultation--centered {
    align-items: center;
  }
}

@media (min-width: 680px) {
  .section-shell {
    width: min(1120px, calc(100% - 56px));
  }

  .header-nav {
    display: flex;
    gap: 24px;
    color: rgba(247, 242, 231, 0.72);
    font-size: 0.93rem;
  }

  .events-featured {
    grid-template-columns: minmax(0, 1.65fr) minmax(240px, 0.65fr);
  }

  .events-featured--single {
    grid-template-columns: minmax(0, 1fr);
  }

  .events-revolver {
    grid-auto-columns: minmax(420px, 720px);
  }

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

  .knowledge-card--accent,
  .knowledge-card--summary {
    grid-column: span 2;
  }

  .knowledge-principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .three,
  .four,
  .two,
  .timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-shell {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 960px) {
  .section {
    padding: 104px 0;
  }

  #events .section-heading {
    max-width: none;
  }

  #events .section-heading h2 {
    white-space: nowrap;
  }

  .hero-shell {
    display: grid;
    grid-template-columns: minmax(560px, 640px) minmax(0, 1.1fr);
  }

  .hero-copy {
    width: 100%;
    max-width: 640px;
    min-width: 0;
  }

  .hero-copy h1 {
    width: 100%;
    max-width: 640px;
  }

  .hero-title-line {
    display: block;
    white-space: nowrap;
  }

  .hero-lead {
    width: 100%;
    max-width: 640px !important;
    min-width: 0;
    font-size: clamp(1.08rem, 1.35vw, 1.35rem);
  }

  .hero-lead span {
    white-space: normal !important;
  }

  .knowledge-heading {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
    align-items: end;
  }

  .knowledge-heading > p {
    padding: 0 0 6px 34px;
    border-left: 1px solid currentColor;
  }

  .knowledge-section--map .knowledge-heading > p {
    border-color: rgba(31, 92, 90, 0.2);
  }

  .knowledge-section--time .knowledge-heading > p {
    border-color: rgba(197, 148, 79, 0.24);
  }

  .knowledge-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .knowledge-grid--map {
    display: block;
  }

  .knowledge-unique {
    grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
    align-items: center;
  }

  .knowledge-grid--time .knowledge-card--dashas {
    grid-column: span 8;
  }

  .knowledge-grid--time .knowledge-card--transits {
    grid-column: span 4;
  }

  .knowledge-grid--time .knowledge-card--panchanga,
  .knowledge-grid--time .knowledge-card--muhurta,
  .knowledge-grid--time .knowledge-card--varshaphala {
    grid-column: span 4;
  }

  .knowledge-grid--time .knowledge-card--summary {
    grid-column: span 12;
  }

  .jyotish-intro-shell {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .split-section,
  .about-shell {
    grid-template-columns: 0.78fr 1.22fr;
  }

  .sticky-heading {
    position: sticky;
    top: 104px;
  }

  .three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

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

  .reveal-ready .scroll-reveal,
  .sutra-meaning {
    opacity: 1 !important;
    transform: none !important;
  }

  .events-month.is-active .events-month-marker,
  .events-revolver-card,
  .knowledge-pattern-layer--slow,
  .knowledge-pattern-layer--soft,
  .knowledge-pattern-points {
    animation: none !important;
  }
}
.site-logo {
  height: 44px;
  width: auto;
  display: block;
}

.brand {
  display: flex;
  align-items: center;
}
