:root {
  --bg: #eff7ff;
  --bg-strong: #d9edff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --text: #172033;
  --muted: #5d6a82;
  --line: rgba(31, 74, 145, 0.12);
  --primary: #1f7dd8;
  --primary-soft: #d8ecff;
  --secondary: #2f8f59;
  --secondary-soft: #dff5e7;
  --accent: #5b6cff;
  --shadow-lg: 0 28px 80px rgba(44, 93, 162, 0.16);
  --shadow-md: 0 16px 40px rgba(44, 93, 162, 0.12);
  --shadow-sm: 0 10px 24px rgba(44, 93, 162, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(73, 198, 169, 0.18), transparent 24%),
    radial-gradient(circle at left 10% top 20%, rgba(91, 108, 255, 0.13), transparent 26%),
    linear-gradient(180deg, #e9f5ff 0%, #f8fbff 34%, #eef7ff 100%);
  min-height: 100vh;
}

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

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

button,
.button {
  font: inherit;
}

.dasana-logo {
  /* Font styling */
  font-size: 2rem; /* Adjust as needed */
  font-weight: 800; /* Extra bold */
  text-transform: uppercase;
  letter-spacing: -0.025em; /* Tight tracking */
  font-family:  "Plus Jakarta Sans", sans-serif;

  /* Gradient effect */
  background: linear-gradient(
    to right,
    #1f7dd8,  /* Blue */
    #22d3ee,  /* Cyan */
    #4ade80   /* Green */
  );

  /* Make gradient apply to text */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Optional: smooth rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 50%;
  filter: blur(10px);
  z-index: -1;
}

.page-shell::before {
  width: 32rem;
  height: 32rem;
  top: 10rem;
  right: -12rem;
  background: rgba(93, 214, 176, 0.15);
}

.page-shell::after {
  width: 24rem;
  height: 24rem;
  top: 26rem;
  left: -8rem;
  background: rgba(91, 108, 255, 0.11);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(240, 248, 255, 0.72);
  border-bottom: 1px solid rgba(31, 74, 145, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand__mark {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.95rem;
  background: linear-gradient(135deg, #2f8f59, #1f7dd8 70%, #5b6cff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-sm);
  color: var(--primary);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.site-nav__links a,
.language-switch a {
  color: var(--muted);
  padding: 0.85rem 1.05rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav__links a:hover,
.site-nav__links a:focus-visible,
.language-switch a:hover,
.language-switch a:focus-visible,
.site-nav__links a[aria-current="page"],
.language-switch a[aria-current="true"] {
  background: rgba(216, 236, 255, 0.84);
  color: var(--text);
}

.language-switch {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10.5rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #2f8f59, #2ba369);
  box-shadow: 0 16px 32px rgba(47, 143, 89, 0.18);
}

.hero {
  padding: 4.5rem 0 2.5rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 2.2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.mini-hero h1 {
  margin: 1rem 0 1rem;
  font-family: "Outfit", sans-serif;
  font-size: clamp(3rem, 5vw, 5.25rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero h1 span,
.page-hero h1 span,
.mini-hero h1 span {
  color: var(--primary);
}

.lead {
  max-width: 42rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
}

.hero__actions,
.stacked-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.4rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button[role="button"] {
  cursor: pointer;
  user-select: none;
}

.button[role="button"].is-disabled,
.button[role="button"][aria-disabled="true"] {
  opacity: 0.65;
  pointer-events: none;
  transform: none;
}

.button--primary {
  color: white;
  background: linear-gradient(135deg, #2f8f59, #2ba369);
  box-shadow: 0 16px 32px rgba(47, 143, 89, 0.18);
}

.button--secondary {
  border-color: rgba(31, 125, 216, 0.18);
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
}

.chip-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
}

.chip--blue {
  background: var(--primary-soft);
  color: var(--primary);
}

.chip--green {
  background: var(--secondary-soft);
  color: var(--secondary);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.stat strong {
  display: block;
  font-size: 1.8rem;
  font-family: "Outfit", sans-serif;
}

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

.orbit-card {
  position: relative;
  min-height: 36rem;
  border-radius: 40px;
  background:
    radial-gradient(circle at 72% 56%, rgba(80, 211, 183, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(238, 246, 255, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.orbit-card--plain,
.hero .orbit-card:empty {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(238, 246, 255, 0.72));
}

.orbit-card--plain::before,
.orbit-card--plain::after,
.hero .orbit-card:empty::before,
.hero .orbit-card:empty::after {
  content: none;
  display: none;
}

.orbit-card--plain .orbit-ring,
.orbit-card--plain .orbit-ring--inner,
.orbit-card--plain .orbit-center,
.orbit-card--plain .orbit-badge,
.orbit-card--plain .math-symbol,
.hero .orbit-card:empty .orbit-ring,
.hero .orbit-card:empty .orbit-ring--inner,
.hero .orbit-card:empty .orbit-center,
.hero .orbit-card:empty .orbit-badge,
.hero .orbit-card:empty .math-symbol {
  display: none;
}

/* .orbit-card::before,
.orbit-card::after,
.orbit-ring,
.orbit-ring--inner {
  position: absolute;
  inset: auto;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
} */

.orbit-card::before {
  content: "";
  width: 28rem;
  height: 28rem;
  top: 2.8rem;
  left: 50%;
  transform: translateX(-50%);
}

/* .orbit-card::after {
  content: "";
  width: 20rem;
  height: 20rem;
  top: 7rem;
  left: 50%;
  transform: translateX(-50%);
} */

.orbit-ring {
  width: 32rem;
  height: 32rem;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
}

.orbit-ring--inner {
  width: 14rem;
  height: 14rem;
  top: 10rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
}

.orbit-center {
  position: absolute;
  top: 10.4rem;
  left: 50%;
  width: 11.5rem;
  height: 11.5rem;
  transform: translateX(-50%);
  border-radius: 50%;
  background: center / cover no-repeat url("/assets/images/mathy.png");
  border: 4px solid rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 50px rgba(18, 31, 55, 0.22);
}

.orbit-center::before {
  content: none;
}

.orbit-badge,
.math-symbol {
  position: absolute;
  display: grid;
  place-items: center;
}

.orbit-badge {
  width: 4.7rem;
  height: 4.7rem;
  border-radius: 50%;
  font-size: 1.8rem;
  color: white;
  border: 3px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
}

.orbit-badge--violet { top: 3.8rem; left: 6rem; background: linear-gradient(135deg, #9b6fff, #b15cff); }
.orbit-badge--blue { top: 7.4rem; right: 5rem; background: linear-gradient(135deg, #42b3ff, #2d76eb); }
.orbit-badge--pink { top: 18rem; left: 4rem; background: linear-gradient(135deg, #ff5ccd, #b244ff); }
.orbit-badge--green { top: 9rem; left: 50%; transform: translateX(2rem); background: linear-gradient(135deg, #28c38f, #5dcf7e); }
.orbit-badge--navy { top: 26rem; right: 8rem; background: linear-gradient(135deg, #2d76eb, #1686d9); }

.math-symbol {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: #5175ff;
  text-shadow: 0 10px 18px rgba(81, 117, 255, 0.28);
}

.math-symbol--plus { top: 10rem; left: 8rem; font-size: 7rem; transform: rotate(12deg); }
.math-symbol--eq { top: 17rem; right: 5.6rem; font-size: 6rem; transform: rotate(-12deg); }
.math-symbol--div { top: 26rem; left: 9rem; font-size: 6rem; transform: rotate(-32deg); }
.math-symbol--sum { top: 3.5rem; right: 10rem; font-size: 5rem; transform: rotate(16deg); }

.orbit-copy {
  position: absolute;
  inset: auto 2rem 2rem;
  display: grid;
  gap: 0.9rem;
  justify-items: center;
  text-align: center;
}

.orbit-copy strong {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.section {
  padding: 2.5rem 0 5rem;
}

.section-heading {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.section-heading h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  max-width: 48rem;
  color: var(--muted);
  line-height: 1.75;
}

.card-grid,
.feature-grid,
.audience-grid,
.job-grid,
.value-grid,
.detail-grid,
.cta-grid,
.story-grid,
.contact-grid {
  display: grid;
  gap: 1.2rem;
}

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

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

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

.card,
.job-card,
.feature,
.story-panel,
.contact-panel,
.cta-panel,
.detail-panel,
.value-panel {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.feature,
.value-panel,
.detail-panel {
  min-height: 100%;
}

.job-card {
  display: grid;
  gap: 1rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.job-card:hover,
.job-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(47, 143, 89, 0.34);
  box-shadow: 0 22px 48px rgba(44, 93, 162, 0.14);
}

.pill {
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--secondary-soft);
  color: var(--secondary);
  font-size: 0.84rem;
  font-weight: 700;
}

.job-card h3,
.feature h3,
.value-panel h3,
.story-panel h3,
.detail-panel h2,
.detail-panel h3,
.contact-panel h3,
.cta-panel h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.2;
}

.job-card p,
.feature p,
.value-panel p,
.story-panel p,
.detail-panel p,
.contact-panel p,
.cta-panel p,
.page-hero p,
.mini-hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.meta-list,
.detail-list,
.footer-links,
.legal-links,
.crumbs,
.contact-list {
  display: flex;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
}

.meta-list li,
.detail-list li,
.contact-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
}

.job-card__link,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  color: var(--secondary);
  font-weight: 700;
}

.spotlight {
  padding: 2rem;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(18, 35, 62, 0.96), rgba(31, 125, 216, 0.88));
  color: white;
  box-shadow: var(--shadow-lg);
}

/* ── Accent contact panel ─────────────────────────────── */
.contact-panel--accent {
  background: linear-gradient(145deg, #0f2952 0%, #1b4ea8 52%, #1f7dd8 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 64px rgba(15, 41, 82, 0.36);
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.contact-panel--accent .pill {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-panel--accent h3 {
  color: white;
  font-size: 1.6rem;
}

.contact-panel--accent p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-panel--accent .contact-panel__location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 600;
}

.contact-panel__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  background: white;
  color: #0f2952;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  width: fit-content;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-panel__btn:hover,
.contact-panel__btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.contact-panel__btn svg {
  flex-shrink: 0;
}

.spotlight p,
.spotlight li {
  color: rgba(255, 255, 255, 0.82);
}

.spotlight .card h3 {
  color: var(--text);
}

.spotlight .card p {
  color: var(--muted);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: start;
}

.spotlight-list,
.detail-checklist,
.seo-list {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.spotlight-list li,
.detail-checklist li,
.seo-list li {
  padding-left: 1.4rem;
  position: relative;
}

.spotlight-list li::before,
.detail-checklist li::before,
.seo-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #66e0b4, #7db3ff);
}

.mini-hero,
.page-hero {
  padding: 4rem 0 1rem;
}

.mini-hero__panel,
.page-hero__panel {
  padding: 2rem;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-lg);
}

.crumbs {
  margin-bottom: 1rem;
}

.crumbs a,
.crumbs span {
  color: var(--muted);
  font-weight: 600;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.28fr);
  gap: 1.2rem;
  align-items: start;
}

.sidebar-card {
  position: sticky;
  top: 6.75rem;
  padding: 1.5rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
}

.sidebar-card h3 {
  margin-top: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: 1.2rem;
  align-items: start;
}

.contact-sidebar {
  display: grid;
  gap: 1.2rem;
}

.contact-card {
  padding: 1.5rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.contact-card--form {
  background:
    radial-gradient(circle at top right, rgba(93, 214, 176, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 250, 255, 0.88));
}

.contact-card--accent {
  background: linear-gradient(135deg, rgba(18, 35, 62, 0.96), rgba(31, 125, 216, 0.88));
  color: white;
}

.contact-card--accent p,
.contact-card--accent li {
  color: rgba(255, 255, 255, 0.82);
}

.contact-card--accent .pill {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.contact-card--accent .detail-checklist li::before {
  background: linear-gradient(135deg, #9bf0cf, #b4ccff);
}

.contact-card h3 {
  margin: 0.8rem 0 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.contact-card p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-card--accent p {
  color: rgba(255, 255, 255, 0.92);
}

.contact-form {
  display: grid;
  gap: 1.15rem;
}

.contact-form__cluster {
  display: grid;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(31, 74, 145, 0.18);
  box-shadow: 0 14px 30px rgba(44, 93, 162, 0.08);
}

.contact-form__cluster--message {
  background: rgba(255, 255, 255, 0.92);
}

.contact-field {
  display: grid;
  gap: 0.5rem;
}

.contact-field--stacked {
  padding: 0.95rem 1rem 1rem;
}

.contact-form__cluster > .contact-field--stacked + .contact-field--stacked {
  border-top: 1px solid rgba(31, 74, 145, 0.14);
}

.contact-field__label {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(23, 32, 51, 0.9);
}

.contact-field__hint {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-field__control {
  width: 100%;
  min-height: 2rem;
  padding: 0.05rem 0 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 1.1rem;
  line-height: 1.4;
  transition: color 180ms ease;
}

.contact-field__control::placeholder {
  color: rgba(93, 106, 130, 0.78);
}

.contact-field__control:focus-visible {
  outline: none;
  color: var(--primary);
}

.contact-field__control--textarea {
  min-height: 12rem;
  resize: vertical;
  padding-top: 0.35rem;
}

.contact-form__footer {
  display: grid;
  gap: 1rem;
  padding-top: 0.25rem;
}

.contact-form__actions {
  display: grid;
  gap: 0.85rem;
}

.contact-form__submit,
.contact-form__secondary {
  width: 100%;
}

.contact-form__submit {
  min-height: 3.8rem;
}

.contact-form__secondary {
  background: rgba(255, 255, 255, 0.78);
}

.contact-form__meta,
.contact-form__status {
  margin: 0;
}

.contact-form__meta {
  color: var(--muted);
  line-height: 1.7;
}

.contact-form__status {
  margin-top: 0.45rem;
  min-height: 1.5rem;
  font-weight: 700;
}

.contact-form__status[data-state="success"] {
  color: var(--secondary);
}

.contact-form__status[data-state="error"] {
  color: #b64d5a;
}

.site-footer {
  margin-top: 2rem;
  padding: 3rem 0;
  background: linear-gradient(180deg, rgba(12, 52, 92, 0.05), rgba(12, 52, 92, 0.02));
  border-top: 1px solid rgba(31, 74, 145, 0.08);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.footer-links,
.legal-links {
  justify-content: flex-start;
}

.footer-note,
.footer-copy {
  color: var(--muted);
  line-height: 1.7;
}

.language-choice {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 0;
}

.language-choice__panel {
  width: min(calc(100% - 2rem), 980px);
  padding: 2rem;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.82);
}

.language-choice__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.language-card {
  padding: 1.75rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(231, 243, 255, 0.82), rgba(255, 255, 255, 0.88));
  border: 1px solid rgba(31, 125, 216, 0.12);
}

.language-card h2 {
  margin-top: 0;
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 0;
}

.error-page__panel {
  width: min(calc(100% - 2rem), 760px);
  padding: 2rem;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1040px) {
  .hero__grid,
  .spotlight-grid,
  .detail-layout,
  .contact-layout,
  .site-footer__inner,
  .story-grid,
  .contact-grid,
  .cta-grid,
  .feature-grid,
  .value-grid,
  .detail-grid,
  .audience-grid,
  .job-grid,
  .language-choice__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 1.4rem;
  }

  .detail-layout {
    gap: 1rem;
  }

  .contact-form__footer {
    grid-template-columns: 1fr;
    display: grid;
    align-items: stretch;
  }

  .sidebar-card {
    position: static;
  }
}

@media (max-width: 900px) {
  .site-header__inner {
    min-height: 76px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    inset: 76px 1rem auto;
    display: none;
    padding: 1rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(31, 74, 145, 0.08);
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__links,
  .language-switch {
    flex-direction: column;
    border-radius: 24px;
  }

  .site-nav__links a,
  .language-switch a,
  .header-cta {
    width: 100%;
    justify-content: center;
  }

  .orbit-card {
    min-height: 34rem;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 2rem;
  }

  .hero h1,
  .page-hero h1,
  .mini-hero h1 {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

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

  .orbit-card {
    min-height: 33rem;
  }

  .orbit-card::before {
    width: 22rem;
    height: 22rem;
    top: 2.5rem;
  }

  /* .orbit-card::after {
    width: 15.8rem;
    height: 15.8rem;
    top: 6rem;
  } */

  .orbit-center {
    top: 9rem;
    width: 8.8rem;
    height: 8.8rem;
  }

  .orbit-center::before {
    width: 6.8rem;
    height: 6.8rem;
  }

  .orbit-badge {
    width: 3.9rem;
    height: 3.9rem;
    font-size: 1.45rem;
  }

  .orbit-badge--violet { left: 2rem; }
  .orbit-badge--blue { right: 1.2rem; }
  .orbit-badge--pink { left: 1rem; }
  .orbit-badge--green { transform: translateX(0.2rem); }
  .orbit-badge--navy { right: 3rem; }
  .math-symbol--plus { left: 3.4rem; font-size: 5.3rem; }
  .math-symbol--eq { right: 1.8rem; font-size: 4.8rem; }
  .math-symbol--div { left: 4rem; font-size: 4.6rem; }
  .math-symbol--sum { right: 5rem; font-size: 3.9rem; }

  .orbit-copy {
    inset: auto 1rem 1rem;

  }

  .site-footer {
    padding-bottom: 5rem;
  }

  .contact-card,
  .contact-card--form {
    padding: 1.2rem;
  }

  .contact-field--stacked {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }
}