/* Swarayu — Teal Night design system + dark mode */

:root {
  /* Teal Night accents */
  --mint: #5eead4;
  --teal: #2dd4bf;
  --teal-deep: #0d9488;
  --teal-night: #115e59;
  --surface-night: #0a2528;
  --text: #0c1c1e;
  --text-muted: #5a6f72;
  --border: #cfe8e4;
  --bg: #f4fbf9;
  --bg-elevated: #ffffff;
  --grid-line: rgba(13, 148, 136, 0.07);
  --font-head: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --radius-xl: 12px;
  --radius-2xl: 16px;
  --radius-3xl: 32px;
  --shadow-glow: 0 20px 60px rgba(13, 148, 136, 0.22);
  --shadow-glow-soft: 0 20px 50px rgba(45, 212, 191, 0.14);
  --shadow-glow-mint: 0 20px 55px rgba(94, 234, 212, 0.18);
  --shadow-glow-lg: 0 40px 70px rgba(13, 148, 136, 0.12);
  --header-bg: rgba(244, 251, 249, 0.82);
  --glass: rgba(255, 255, 255, 0.82);
  /* Legacy aliases for card variants */
  --yellow: var(--mint);
  --cyan: var(--teal);
  --purple: var(--teal-deep);
}

[data-theme="dark"] {
  --text: #ecfdf5;
  --text-muted: #99cbc4;
  --border: rgba(45, 212, 191, 0.18);
  --bg: #061a1d;
  --bg-elevated: #0c2c32;
  --grid-line: rgba(94, 234, 212, 0.05);
  --header-bg: rgba(6, 26, 29, 0.88);
  --glass: rgba(12, 44, 50, 0.72);
  --surface-night: #071f24;
  --shadow-glow: 0 24px 64px rgba(0, 0, 0, 0.45);
  --shadow-glow-soft: 0 20px 50px rgba(45, 212, 191, 0.12);
  --shadow-glow-mint: 0 22px 55px rgba(94, 234, 212, 0.1);
  --shadow-glow-lg: 0 40px 80px rgba(0, 0, 0, 0.4);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  background-image: linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 44px 44px;
  background-attachment: fixed;
  transition: background-color 0.25s ease, color 0.25s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-xl);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    border-color 0.2s ease, color 0.2s ease;
}

.btn--primary {
  background: var(--teal-night);
  color: #f0fdfa;
}

[data-theme="dark"] .btn--primary {
  background: var(--teal);
  color: #042f2e;
}

.btn--primary:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-soft);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--ghost:hover {
  transform: translateY(-4px);
  border-color: var(--teal-deep);
  box-shadow: 0 12px 40px rgba(13, 148, 136, 0.15);
}

.btn--secondary {
  background: var(--bg-elevated);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--secondary:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-mint);
}

.btn--icon svg {
  width: 1.125rem;
  height: 1.125rem;
}

/* Top bar */
.top-bar {
  text-align: center;
  font-size: 0.8125rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(90deg, rgba(13, 148, 136, 0.12), rgba(6, 26, 29, 0.06));
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s ease;
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.logo__mark {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-xl);
  background: var(--surface-night);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(45, 212, 191, 0.25);
}

[data-theme="dark"] .logo__mark {
  background: #0f3d42;
  border-color: rgba(94, 234, 212, 0.35);
}

.logo__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.logo__dot--y {
  background: var(--mint);
}
.logo__dot--c {
  background: var(--teal);
}
.logo__dot--p {
  background: var(--teal-deep);
}

.nav-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-main a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.nav-main a:hover,
.nav-main a[aria-current="page"] {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--glass);
  backdrop-filter: blur(12px);
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--text);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-soft);
}

.theme-toggle .icon-dark {
  display: none;
}

[data-theme="dark"] .theme-toggle .icon-light {
  display: none;
}
[data-theme="dark"] .theme-toggle .icon-dark {
  display: block;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  cursor: pointer;
  color: var(--text);
}

@media (max-width: 900px) {
  .site-header__inner {
    grid-template-columns: 1fr auto auto;
  }
  .nav-main {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1rem;
    background: var(--header-bg);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
  }
  .nav-main.is-open {
    display: flex;
  }
  .nav-toggle {
    display: grid;
    place-items: center;
  }
}

/* Hero */
.hero {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

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

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: var(--font-head);
  letter-spacing: -0.02em;
  background: rgba(13, 148, 136, 0.1);
  color: var(--text);
  border: 1px solid rgba(45, 212, 191, 0.35);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  margin: 0 0 1rem;
}

.hl-teal {
  color: var(--text);
  background: linear-gradient(transparent 62%, rgba(45, 212, 191, 0.42) 62%);
  padding: 0 0.08em;
}

.hero__lede {
  color: var(--text-muted);
  max-width: 34rem;
  margin: 0 0 1.75rem;
  font-weight: 400;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.mini-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

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

.mini-card {
  padding: 0.85rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--glass);
  backdrop-filter: blur(12px);
  font-size: 0.8125rem;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-soft);
}

.mini-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.trust-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-bar__avatars {
  display: flex;
}

.trust-bar__avatars span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -10px;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  box-shadow: 0 0 0 1px var(--border);
}

.trust-bar__avatars span:first-child {
  margin-left: 0;
}

.trust-bar p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Dashboard mockup */
.mock-wrap {
  position: relative;
  border-radius: var(--radius-3xl);
  padding: 0.5rem;
  background: linear-gradient(145deg, rgba(13, 148, 136, 0.18), rgba(6, 26, 29, 0.08));
  box-shadow: var(--shadow-glow-lg), 0 24px 80px rgba(12, 44, 50, 0.1);
}

[data-theme="dark"] .mock-wrap {
  box-shadow: var(--shadow-glow-lg), 0 24px 80px rgba(0, 0, 0, 0.45);
}

.mock {
  border-radius: calc(var(--radius-3xl) - 4px);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: background 0.25s ease;
}

.mock__head {
  padding: 1rem 1.25rem;
  background: #e6f7f4;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9375rem;
}

[data-theme="dark"] .mock__head {
  background: #0f3d42;
}

.mock__body {
  padding: 1.25rem;
}

.readiness {
  margin-bottom: 1.25rem;
}

.readiness__label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.readiness__bar {
  height: 10px;
  border-radius: 999px;
  background: var(--border);
  overflow: hidden;
}

.readiness__fill {
  height: 100%;
  width: 78%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal-deep), var(--mint));
  box-shadow: 0 0 22px rgba(45, 212, 191, 0.45);
}

.streak {
  margin-bottom: 1.25rem;
}

.streak__title {
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.streak__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.streak__day {
  aspect-ratio: 1;
  border-radius: 8px;
  background: var(--border);
}

.streak__day--on {
  background: rgba(94, 234, 212, 0.65);
}
.streak__day--on2 {
  background: rgba(13, 148, 136, 0.55);
}

.session-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.session-pill {
  padding: 0.65rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  text-align: center;
}

.session-pill strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8125rem;
  margin-bottom: 0.25rem;
}

.mock__cta {
  width: 100%;
  justify-content: center;
  padding: 0.85rem;
  font-weight: 600;
}

/* Section */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section--tight {
  padding-top: 0;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section__head h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.35rem;
}

.section__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal-deep);
  margin: 0 0 0.35rem;
}

[data-theme="dark"] .section__eyebrow {
  color: var(--mint);
}

.section__sub {
  margin: 0;
  color: var(--text-muted);
  max-width: 36rem;
}

.section__title {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Neon / bento cards */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

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

.neon-card {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.neon-card:hover {
  transform: translateY(-4px);
}

.neon-card--cyan::after {
  content: "";
  position: absolute;
  width: 128px;
  height: 128px;
  top: -40px;
  right: -40px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.15;
  filter: blur(40px);
  pointer-events: none;
}

.neon-card--cyan:hover {
  box-shadow: var(--shadow-glow-soft);
}

.neon-card--purple::after {
  content: "";
  position: absolute;
  width: 128px;
  height: 128px;
  bottom: -40px;
  left: -40px;
  border-radius: 50%;
  background: var(--purple);
  opacity: 0.15;
  filter: blur(40px);
  pointer-events: none;
}

.neon-card--purple:hover {
  box-shadow: var(--shadow-glow);
}

.neon-card--yellow::after {
  content: "";
  position: absolute;
  width: 128px;
  height: 128px;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.15;
  filter: blur(40px);
  pointer-events: none;
}

.neon-card--yellow:hover {
  box-shadow: var(--shadow-glow-mint);
}

.neon-card--wide {
  grid-column: span 2;
}

@media (max-width: 900px) {
  .neon-card--wide {
    grid-column: span 1;
  }
}

.neon-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-xl);
  background: var(--surface-night);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(45, 212, 191, 0.2);
}

[data-theme="dark"] .neon-card__icon {
  background: #134e4a;
  border-color: rgba(94, 234, 212, 0.25);
}

.neon-card__icon svg {
  width: 24px;
  height: 24px;
  color: #ecfdf5;
}

[data-theme="dark"] .neon-card__icon svg {
  color: #ecfdf5;
}

.neon-card h3 {
  font-size: 1.125rem;
  margin: 0 0 1rem;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 1rem;
  height: 1rem;
  background: var(--teal-deep);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E")
    center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

/* Stories */
.stories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

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

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0;
}

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

.stat-card {
  padding: 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--glass);
  backdrop-filter: blur(12px);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-soft);
}

.stat-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--teal-deep);
}

[data-theme="dark"] .stat-card strong {
  color: var(--mint);
}

.stat-card span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.quote-card {
  border-radius: var(--radius-2xl);
  padding: 2rem;
  background: var(--surface-night);
  color: #f0fdfa;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(45, 212, 191, 0.22);
}

.quote-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(13, 148, 136, 0.25), transparent 55%);
  pointer-events: none;
}

.quote-card svg {
  width: 40px;
  height: 40px;
  color: var(--mint);
  margin-bottom: 1rem;
  position: relative;
}

.quote-card p {
  position: relative;
  font-size: 1.0625rem;
  line-height: 1.55;
  margin: 0 0 1rem;
}

.quote-card .stars {
  color: var(--mint);
  font-family: var(--font-head);
  font-weight: 700;
  position: relative;
}

.stories__right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial {
  padding: 1.25rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-soft);
}

.testimonial p {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.testimonial footer {
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: var(--font-head);
}

.trust-box {
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  background: var(--surface-night);
  color: #ccfbf1;
  border: 1px solid rgba(45, 212, 191, 0.2);
}

[data-theme="dark"] .quote-card,
[data-theme="dark"] .trust-box {
  background: linear-gradient(155deg, #0c3a3f 0%, #061a1d 55%, #041216 100%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.trust-box h4 {
  margin: 0 0 1rem;
  font-size: 1rem;
}

.micro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.micro {
  padding: 0.75rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8125rem;
  line-height: 1.4;
}

.micro strong {
  display: block;
  color: var(--mint);
  margin-bottom: 0.25rem;
  font-family: var(--font-head);
  font-size: 0.8125rem;
}

.access-bar {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background: var(--glass);
  backdrop-filter: blur(12px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.access-bar p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 42rem;
}

.access-bar a {
  font-weight: 600;
  color: var(--teal-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

[data-theme="dark"] .access-bar a {
  color: var(--mint);
}

/* Footer */
.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.site-footer h4 {
  font-size: 0.875rem;
  margin: 0 0 1rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: var(--text-muted);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--teal-deep);
}

[data-theme="dark"] .site-footer a:hover {
  color: var(--mint);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
  margin-left: 1rem;
}

.footer-bottom a:hover {
  color: var(--text);
}

/* Inner pages */
.page-hero {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) 0 2rem;
  max-width: 42rem;
  margin-inline: auto;
}

.page-hero .hero-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal-deep);
  margin: 0 0 0.5rem;
}

[data-theme="dark"] .page-hero .hero-label {
  color: var(--mint);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 1rem;
}

.page-hero .lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

.page-content {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

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

.prose p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

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

.prose strong {
  color: var(--text);
}

.img-rounded {
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-glow-soft);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}

.philosophy-pill {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--glass);
  backdrop-filter: blur(12px);
  font-size: 0.9375rem;
  line-height: 1.45;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.philosophy-pill:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

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

.contact-card {
  padding: 1.5rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.contact-card h2 {
  font-size: 1.25rem;
  margin: 0 0 1rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.contact-list a {
  color: var(--teal-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

[data-theme="dark"] .contact-list a {
  color: var(--mint);
}

.form-stack label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.form-stack input,
.form-stack textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font: inherit;
  margin-bottom: 1rem;
}

.form-stack textarea {
  min-height: 120px;
  resize: vertical;
}

.form-stack input:focus,
.form-stack textarea:focus {
  outline: 2px solid rgba(13, 148, 136, 0.45);
  outline-offset: 2px;
}
