:root {
  color-scheme: light;
  --ivory: #FBF8F1;
  --ivory-soft: #FFFDF7;
  --deep-purple: #3E285F;
  --soft-purple: #A78BC7;
  --lavender-mist: #EDE4F5;
  --sage: #AFCFB4;
  --pale-mint: #EAF5EC;
  --soft-gold: #D8B76A;
  --charcoal: #2F2A35;
  --muted: #5D5666;
  --muted-strong: #514A5B;
  --purple-ink: #4C3965;
  --sage-ink: #3F6848;
  --white-glass: rgba(255, 255, 255, 0.72);
  --paper: rgba(255, 253, 247, 0.86);
  --paper-strong: rgba(255, 255, 255, 0.92);
  --border: rgba(62, 40, 95, 0.13);
  --border-sage: rgba(74, 116, 85, 0.18);
  --shadow-soft: 0 18px 56px rgba(62, 40, 95, 0.11);
  --shadow-card: 0 24px 70px rgba(47, 42, 53, 0.10);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 112px;
  background: var(--ivory);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--charcoal);
  background:
    radial-gradient(ellipse at 82% 8%, rgba(167, 139, 199, 0.25), transparent 33rem),
    radial-gradient(ellipse at 8% 32%, rgba(175, 207, 180, 0.28), transparent 31rem),
    linear-gradient(180deg, var(--ivory-soft) 0%, var(--ivory) 36%, #f7fbf5 100%);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: url("assets/img/matrix-pattern.svg?v=20260611-12");
  background-size: 160px 160px;
  content: "";
  opacity: 0.28;
  pointer-events: none;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(251, 248, 241, 0.82), rgba(255, 253, 247, 0.5)),
    radial-gradient(circle at 72% 46%, rgba(216, 183, 106, 0.08), transparent 23rem);
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
}

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

button,
select {
  min-width: 0;
  font: inherit;
}

a:focus,
button:focus,
select:focus,
:focus-visible {
  outline: 3px solid rgba(62, 40, 95, 0.34);
  outline-offset: 4px;
}

::selection {
  background: rgba(167, 139, 199, 0.32);
}

.skip-link {
  position: fixed;
  inset-block-start: 16px;
  inset-inline-start: 16px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--deep-purple);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 30;
  border-block-end: 1px solid rgba(62, 40, 95, 0.11);
  background: rgba(255, 253, 247, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(62, 40, 95, 0.055);
}

.nav-shell {
  width: calc(100% - 40px);
  max-width: var(--max);
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) auto minmax(250px, 0.9fr);
  align-items: center;
  gap: 22px;
}

.brand,
.footer-brand {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  justify-self: start;
}

.brand-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(62, 40, 95, 0.11);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(62, 40, 95, 0.08), 0 0 30px rgba(175, 207, 180, 0.38);
}

.brand-mark img {
  width: 38px;
  height: 38px;
}

.brand-copy {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.brand-name {
  color: var(--deep-purple);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
}

.brand-tagline {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a::after {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 4px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--soft-gold);
  content: "";
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--deep-purple);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
  justify-self: end;
}

.language-select-shell {
  position: relative;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
}

.language-select-code {
  position: absolute;
  inset-inline-start: 12px;
  min-width: 68px;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 2px 8px;
  border: 1px solid rgba(62, 40, 95, 0.14);
  border-radius: 999px;
  background: rgba(237, 228, 245, 0.78);
  color: var(--deep-purple);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  pointer-events: none;
}

.language-select-flag,
.language-flag {
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(62, 40, 95, 0.16);
  border-radius: 3px;
  background: #ffffff;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(62, 40, 95, 0.08);
}

.language-select-flag {
  width: 24px;
  height: 16px;
}

.language-select {
  min-height: 42px;
  max-width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: var(--charcoal);
  padding: 0 34px 0 92px;
  font-size: 14px;
  font-weight: 650;
}

html[dir="rtl"] .language-select {
  padding: 0 92px 0 34px;
}

.button {
  min-width: 0;
  min-height: 46px;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  overflow-wrap: anywhere;
}

.button-primary {
  background: linear-gradient(135deg, var(--deep-purple), #6e548e);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(62, 40, 95, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 20px 42px rgba(62, 40, 95, 0.28);
}

.button-secondary {
  border-color: rgba(62, 40, 95, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--deep-purple);
  box-shadow: 0 12px 28px rgba(62, 40, 95, 0.06);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(62, 40, 95, 0.30);
  background: #ffffff;
}

.button-small {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 14px;
}

.section {
  scroll-margin-top: 112px;
  padding: 94px 0;
}

.container {
  width: calc(100% - 40px);
  max-width: var(--max);
  margin: 0 auto;
}

.narrow {
  max-width: 930px;
}

h1,
h2,
h3,
p {
  margin-block-start: 0;
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  color: var(--deep-purple);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin-block-end: 16px;
  font-size: 68px;
}

h2 {
  margin-block-end: 18px;
  font-size: 38px;
}

h3 {
  margin-block-end: 12px;
  font-size: 23px;
}

.hero {
  position: relative;
  min-height: clamp(650px, calc(100svh - 82px), 820px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background-color: rgba(255, 253, 247, 0.98);
  background-image:
    url("assets/img/matrix-pattern.svg?v=20260611-12"),
    radial-gradient(circle at 78% 48%, rgba(237, 228, 245, 0.86), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(175, 207, 180, 0.34), transparent 18rem),
    linear-gradient(135deg, rgba(255, 253, 247, 0.98) 0%, rgba(251, 248, 241, 0.96) 54%, rgba(234, 245, 236, 0.70) 100%);
  background-position:
    right 9% top 18%,
    center,
    center,
    center;
  background-repeat:
    repeat,
    no-repeat,
    no-repeat,
    no-repeat;
  background-size:
    160px 160px,
    auto,
    auto,
    auto;
  padding-block: clamp(72px, 10vh, 112px) clamp(70px, 9vh, 104px);
}

.hero::before {
  position: absolute;
  inset: 12% 7% auto auto;
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  border: 1px solid rgba(167, 139, 199, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, rgba(255, 255, 255, 0.76), rgba(237, 228, 245, 0.34) 42%, rgba(175, 207, 180, 0.16) 70%, transparent 72%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(42px, 7vw, 86px);
  align-items: center;
}

.hero-copy {
  position: relative;
  max-width: 680px;
  min-width: 0;
  padding: 0;
}

.hero-tagline {
  margin-block-end: 22px;
  color: var(--purple-ink);
  font-size: 24px;
  font-weight: 750;
  line-height: 1.35;
}

.hero-lede,
.section-lede {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.hero-lede {
  max-width: 590px;
  margin-block-end: 30px;
  color: var(--muted-strong);
  font-weight: 500;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-note {
  margin-block: 18px 0;
  color: var(--sage-ink);
  font-weight: 800;
}

.trust-strip {
  position: relative;
  z-index: 1;
  padding: 22px 0;
  border-block: 1px solid rgba(62, 40, 95, 0.09);
  background:
    linear-gradient(90deg, rgba(237, 228, 245, 0.46), rgba(234, 245, 236, 0.46)),
    rgba(255, 253, 247, 0.82);
  box-shadow: 0 14px 36px rgba(62, 40, 95, 0.05);
}

.trust-row {
  max-width: 980px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 auto;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid rgba(62, 40, 95, 0.12);
  border-radius: 999px;
  background: rgba(237, 228, 245, 0.74);
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 10px 24px rgba(62, 40, 95, 0.04);
}

.trust-row span:nth-child(even) {
  border-color: rgba(74, 116, 85, 0.16);
  background: rgba(234, 245, 236, 0.78);
}

.trust-row span::before {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 3px rgba(175, 207, 180, 0.22);
  content: "";
}

.hero-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  position: absolute;
  inset: 8% 0 auto auto;
  width: min(84%, 480px);
  height: min(84%, 480px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234, 245, 236, 0.36), rgba(237, 228, 245, 0.28) 54%, transparent 72%);
  content: "";
  filter: blur(8px);
}

.hero-image-panel {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 1;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(62, 40, 95, 0.10);
  border-radius: 50%;
  background-color: rgba(234, 245, 236, 0.70);
  background-image:
    url("assets/img/matrix-pattern.svg?v=20260611-12"),
    radial-gradient(circle at center, rgba(234, 245, 236, 0.97) 0 21%, rgba(255, 253, 247, 0.92) 38%, rgba(237, 228, 245, 0.74) 62%, rgba(167, 139, 199, 0.20) 82%, rgba(255, 253, 247, 0.78) 100%);
  background-position:
    center,
    center;
  background-repeat:
    repeat,
    no-repeat;
  background-size:
    148px 148px,
    auto;
  box-shadow: 0 30px 70px rgba(62, 40, 95, 0.12);
  backdrop-filter: blur(10px);
}

.hero-symbol-panel::before,
.hero-symbol-panel::after {
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(167, 139, 199, 0.22);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-symbol-panel::after {
  inset: 25%;
  border-color: rgba(175, 207, 180, 0.32);
}

.image-glow {
  position: absolute;
  inset: 9%;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 183, 106, 0.20), rgba(234, 245, 236, 0.34) 32%, rgba(167, 139, 199, 0.20) 58%, transparent 76%);
  filter: blur(14px);
  pointer-events: none;
}

.hero-symbol {
  position: relative;
  z-index: 2;
  width: clamp(154px, 18vw, 220px);
  height: clamp(154px, 18vw, 220px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.84);
  box-shadow:
    0 22px 54px rgba(62, 40, 95, 0.16),
    0 0 64px rgba(175, 207, 180, 0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-symbol img {
  width: 76%;
  height: 76%;
}

.section-heading,
.story-intro {
  max-width: 720px;
  margin-block-end: 30px;
}

.section-heading p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.official-section {
  border-block: 1px solid rgba(62, 40, 95, 0.09);
  background-color: rgba(255, 253, 247, 0.56);
  background-image:
    url("assets/img/matrix-pattern.svg?v=20260611-12"),
    linear-gradient(180deg, rgba(237, 228, 245, 0.34), rgba(234, 245, 236, 0.42));
  background-repeat: repeat, no-repeat;
  background-size: 160px 160px, auto;
}

.official-section .narrow {
  max-width: 900px;
}

.official-section .section-heading {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.official-panel {
  position: relative;
  padding: clamp(30px, 5vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(167, 139, 199, 0.34);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 253, 247, 0.88)),
    var(--paper-strong);
  box-shadow: 0 28px 80px rgba(62, 40, 95, 0.12);
  backdrop-filter: blur(14px);
}

.official-panel::before {
  position: absolute;
  inset: 0;
  border-block-start: 5px solid rgba(175, 207, 180, 0.72);
  background:
    radial-gradient(circle at 12% 0%, rgba(237, 228, 245, 0.54), transparent 16rem),
    radial-gradient(circle at 90% 18%, rgba(234, 245, 236, 0.66), transparent 18rem);
  content: "";
  pointer-events: none;
}

.official-panel::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 20px;
  content: "";
  pointer-events: none;
}

.official-copy {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--charcoal);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.75;
  white-space: pre-wrap;
  overflow-wrap: break-word;
}

.official-bullet-line {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-inline-start: 30px;
}

.official-bullet-line::before {
  position: absolute;
  inset-block-start: 0.88em;
  inset-inline-start: 4px;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255, 253, 247, 0.96);
  border-radius: 50%;
  background: var(--soft-gold);
  box-shadow:
    0 0 0 4px rgba(237, 228, 245, 0.86),
    0 0 16px rgba(216, 183, 106, 0.34);
  content: "";
  transform: translateY(-50%);
}

.official-bullet-marker {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.story-section {
  background-color: rgba(255, 253, 247, 0.66);
  background-image: url("assets/img/matrix-pattern.svg?v=20260611-12");
  background-size: 160px 160px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.story-card {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(62, 40, 95, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
}

.story-card:hover {
  box-shadow: var(--shadow-card);
}

.story-card::before {
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background:
    linear-gradient(180deg, transparent, rgba(255, 253, 247, 0.92) 72%),
    radial-gradient(circle at 18% 74%, rgba(175, 207, 180, 0.22), transparent 10rem);
  content: "";
  pointer-events: none;
}

.visual-card-image {
  position: relative;
  margin: 0;
  aspect-ratio: 32 / 21;
  overflow: hidden;
  background:
    url("assets/img/matrix-pattern.svg?v=20260611-12"),
    radial-gradient(circle at 22% 24%, rgba(255, 253, 247, 0.90), transparent 7rem),
    linear-gradient(135deg, rgba(237, 228, 245, 0.70), rgba(234, 245, 236, 0.72));
  background-size: 150px 150px, auto, auto;
}

.visual-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-card-image::after {
  position: absolute;
  inset-block-start: 16px;
  inset-inline-end: 16px;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(62, 40, 95, 0.12);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(216, 183, 106, 0.16), rgba(255, 253, 247, 0.82) 44%, rgba(255, 253, 247, 0.58) 100%),
    url("assets/img/ennealuma-symbol.svg?v=20260611-12");
  background-position: center, center;
  background-repeat: no-repeat;
  background-size: auto, 76%;
  box-shadow: 0 14px 30px rgba(62, 40, 95, 0.10), 0 0 24px rgba(175, 207, 180, 0.22);
  content: "";
  opacity: 0.72;
  pointer-events: none;
}

.story-card-clarity .visual-card-image {
  background:
    url("assets/img/matrix-pattern.svg?v=20260611-12"),
    radial-gradient(circle at 18% 22%, rgba(255, 253, 247, 0.96), transparent 7rem),
    radial-gradient(circle at 78% 52%, rgba(175, 207, 180, 0.36), transparent 9rem),
    linear-gradient(135deg, rgba(255, 253, 247, 0.96), rgba(234, 245, 236, 0.86));
  background-size: 150px 150px, auto, auto, auto;
}

.story-card-development .visual-card-image {
  background:
    url("assets/img/matrix-pattern.svg?v=20260611-12"),
    radial-gradient(circle at 26% 28%, rgba(234, 245, 236, 0.94), transparent 7rem),
    radial-gradient(circle at 76% 30%, rgba(167, 139, 199, 0.36), transparent 9rem),
    linear-gradient(135deg, rgba(234, 245, 236, 0.88), rgba(237, 228, 245, 0.84));
  background-size: 150px 150px, auto, auto, auto;
}

.story-card-balance .visual-card-image {
  background:
    url("assets/img/matrix-pattern.svg?v=20260611-12"),
    radial-gradient(circle at 26% 30%, rgba(237, 228, 245, 0.92), transparent 7rem),
    radial-gradient(circle at 78% 56%, rgba(175, 207, 180, 0.34), transparent 8rem),
    linear-gradient(135deg, rgba(237, 228, 245, 0.86), rgba(234, 245, 236, 0.86));
  background-size: 150px 150px, auto, auto, auto;
}

.visual-card-content {
  position: relative;
  min-height: 150px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 24px;
}

.story-card h3 {
  position: relative;
  max-width: 260px;
  margin: 0;
}

.story-card p {
  position: relative;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.focus-section {
  border-block: 1px solid rgba(62, 40, 95, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.78), rgba(234, 245, 236, 0.54)),
    url("assets/img/matrix-pattern.svg?v=20260611-12");
  background-size: auto, 160px 160px;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.focus-card {
  min-width: 0;
  min-height: 280px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(62, 40, 95, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 253, 247, 0.70)),
    var(--paper);
  box-shadow: var(--shadow-soft);
}

.focus-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(62, 40, 95, 0.13);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(216, 183, 106, 0.22), transparent 34%),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 28px rgba(62, 40, 95, 0.08), 0 0 28px rgba(175, 207, 180, 0.20);
}

.focus-icon::before {
  width: 30px;
  height: 30px;
  content: "";
}

.focus-icon-matrix::before {
  background:
    radial-gradient(circle at 15% 15%, var(--deep-purple) 0 2px, transparent 3px),
    radial-gradient(circle at 50% 15%, var(--sage-ink) 0 2px, transparent 3px),
    radial-gradient(circle at 85% 15%, var(--deep-purple) 0 2px, transparent 3px),
    radial-gradient(circle at 15% 50%, var(--sage-ink) 0 2px, transparent 3px),
    radial-gradient(circle at 50% 50%, var(--soft-gold) 0 4px, transparent 5px),
    radial-gradient(circle at 85% 50%, var(--sage-ink) 0 2px, transparent 3px),
    radial-gradient(circle at 15% 85%, var(--deep-purple) 0 2px, transparent 3px),
    radial-gradient(circle at 50% 85%, var(--sage-ink) 0 2px, transparent 3px),
    radial-gradient(circle at 85% 85%, var(--deep-purple) 0 2px, transparent 3px);
}

.focus-icon-energy::before {
  border: 2px solid rgba(62, 40, 95, 0.70);
  border-inline-color: rgba(74, 116, 85, 0.74);
  border-radius: 50%;
  box-shadow: inset 0 0 0 8px rgba(234, 245, 236, 0.95), 0 0 0 5px rgba(237, 228, 245, 0.68);
}

.focus-icon-language::before {
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 46%, rgba(62, 40, 95, 0.60) 47% 53%, transparent 54%),
    linear-gradient(0deg, transparent 46%, rgba(62, 40, 95, 0.42) 47% 53%, transparent 54%),
    radial-gradient(circle, transparent 45%, rgba(74, 116, 85, 0.72) 46% 54%, transparent 55%);
}

.focus-card h3 {
  margin: 0;
}

.focus-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.action-section {
  border-block: 1px solid rgba(62, 40, 95, 0.08);
  background-color: rgba(255, 253, 247, 0.54);
  background-image:
    url("assets/img/matrix-pattern.svg?v=20260611-12"),
    linear-gradient(180deg, rgba(255, 253, 247, 0.54), rgba(234, 245, 236, 0.50));
  background-repeat: repeat, no-repeat;
  background-size: 160px 160px, auto;
}

.action-heading {
  max-width: 760px;
}

.action-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 18px;
  align-items: stretch;
}

.action-card {
  min-width: 0;
  min-height: 330px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(62, 40, 95, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.action-card img {
  width: 64px;
  height: 64px;
}

.action-card p {
  margin-block-end: 0;
  color: var(--muted);
  line-height: 1.72;
}

.action-card .button {
  width: fit-content;
  margin-block-start: 2px;
}

.action-card-primary {
  border-color: rgba(74, 116, 85, 0.19);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(234, 245, 236, 0.72)),
    var(--white-glass);
}

.action-card-secondary {
  border-color: rgba(62, 40, 95, 0.15);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(237, 228, 245, 0.68)),
    var(--white-glass);
}

.fallback-note {
  max-width: 680px;
  margin-block: 2px 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.paypal-wordmark {
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(0, 48, 135, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  color: #173f88;
  font-size: 30px;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(0, 48, 135, 0.06);
}

.language-section {
  background-color: rgba(255, 253, 247, 0.72);
  background-image: url("assets/img/matrix-pattern.svg?v=20260611-12");
  background-size: 160px 160px;
}

.language-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.78fr);
  gap: 56px;
  align-items: center;
}

.language-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.language-option {
  min-width: 0;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 12px;
  border: 1px solid rgba(62, 40, 95, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.70);
  color: var(--muted-strong);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(62, 40, 95, 0.04);
}

.language-option span {
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(237, 228, 245, 0.42);
  color: inherit;
  line-height: 1.1;
}

.language-flag {
  width: 30px;
  height: 20px;
}

.language-option.is-active .language-flag {
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
}

.language-option:hover {
  border-color: rgba(62, 40, 95, 0.26);
  background: rgba(255, 255, 255, 0.94);
}

.language-option.is-active {
  border-color: rgba(62, 40, 95, 0.24);
  background: var(--deep-purple);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(62, 40, 95, 0.16);
}

.language-option.is-active span {
  background: rgba(255, 255, 255, 0.16);
}

.faq-section {
  border-block-start: 1px solid rgba(62, 40, 95, 0.08);
  background:
    radial-gradient(circle at 12% 10%, rgba(175, 207, 180, 0.22), transparent 18rem),
    linear-gradient(180deg, rgba(255, 253, 247, 0.72), rgba(237, 228, 245, 0.34));
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 42px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(62, 40, 95, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 30px rgba(62, 40, 95, 0.055);
}

.faq-list summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  color: var(--deep-purple);
  font-weight: 850;
  line-height: 1.35;
  cursor: pointer;
}

.faq-list summary::marker {
  color: var(--sage-ink);
}

.faq-list details p {
  margin: 0;
  padding: 0 18px 20px;
  color: var(--muted);
  line-height: 1.72;
}

.contact-section {
  border-block-start: 1px solid rgba(62, 40, 95, 0.08);
  background-color: rgba(255, 253, 247, 0.72);
  background-image:
    url("assets/img/matrix-pattern.svg?v=20260611-12"),
    linear-gradient(180deg, rgba(237, 228, 245, 0.32), rgba(255, 253, 247, 0.72));
  background-repeat: repeat, no-repeat;
  background-size: 160px 160px, auto;
}

.contact-layout {
  align-items: start;
}

.contact-card {
  width: fit-content;
  max-width: 100%;
  display: inline-grid;
  gap: 3px;
  margin-block: 8px 24px;
  padding: 16px 18px;
  border: 1px solid rgba(62, 40, 95, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.contact-card .contact-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.contact-card a,
.contact-card .email-address {
  color: var(--deep-purple);
  font-size: 17px;
  font-weight: 850;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.disclaimer {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(62, 40, 95, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(237, 228, 245, 0.58)),
    var(--white-glass);
  box-shadow: var(--shadow-soft);
}

.notice-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-block-end: 14px;
  border: 1px solid rgba(62, 40, 95, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  color: var(--deep-purple);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
}

.disclaimer p {
  margin-block-end: 0;
  color: var(--muted-strong);
  line-height: 1.72;
}

.site-footer {
  padding: 34px 0;
  border-block-start: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 82% 0%, rgba(167, 139, 199, 0.20), transparent 19rem),
    linear-gradient(180deg, #302542 0%, #251d30 100%);
  color: rgba(255, 255, 255, 0.84);
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.85fr) minmax(260px, 0.9fr);
  gap: 28px;
  align-items: center;
}

.footer-brand-block {
  display: grid;
  gap: 8px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
}

.footer-layout p {
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-nav a,
.footer-contact a {
  color: #ffffff;
  font-weight: 750;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-contact a:hover {
  text-decoration: underline;
}

.footer-contact {
  display: grid;
  justify-items: end;
  gap: 8px;
  text-align: end;
}

[dir="rtl"] body {
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

.official-copy[dir="ltr"] {
  direction: ltr;
  text-align: left;
}

.official-copy[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .hero-actions,
[dir="rtl"] .section-actions,
[dir="rtl"] .trust-row,
[dir="rtl"] .footer-nav {
  direction: rtl;
}

[dir="rtl"] .footer-contact {
  justify-items: start;
  text-align: start;
}

.whatsapp-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: none;
  align-items: flex-end;
  justify-content: flex-end;
}

.whatsapp-menu {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: min(260px, calc(100vw - 48px));
  padding: 16px 18px;
  border: 1px solid rgba(37, 211, 102, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(47, 42, 53, 0.16);
  color: var(--charcoal);
  opacity: 0;
  pointer-events: none;
  transform: none;
}

.whatsapp-menu::after {
  position: absolute;
  right: 22px;
  bottom: -7px;
  width: 14px;
  height: 14px;
  border-right: 1px solid rgba(37, 211, 102, 0.26);
  border-bottom: 1px solid rgba(37, 211, 102, 0.26);
  background: rgba(255, 255, 255, 0.96);
  content: "";
  transform: rotate(45deg);
}

.whatsapp-menu strong,
.whatsapp-menu span {
  display: block;
}

.whatsapp-menu strong {
  margin-bottom: 4px;
  color: #183c25;
  font-size: 16px;
}

.whatsapp-menu span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.whatsapp-button {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(18, 140, 73, 0.30);
  cursor: pointer;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  background: #1ebe5d;
  box-shadow: 0 22px 44px rgba(18, 140, 73, 0.36);
}

.whatsapp-button:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.32);
  outline-offset: 4px;
}

.whatsapp-widget:hover .whatsapp-menu,
.whatsapp-widget:focus-within .whatsapp-menu {
  opacity: 1;
  pointer-events: auto;
}

.whatsapp-icon {
  width: 34px;
  height: 34px;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }

  .nav-links a::after {
    transition: transform 180ms ease;
  }

  .button {
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
  }

  .button:hover {
    transform: translateY(-2px);
  }

  .story-card {
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

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

  .language-option {
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
  }

  .language-option:hover {
    transform: translateY(-2px);
  }

  .whatsapp-menu {
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .whatsapp-button {
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
  }

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

  .whatsapp-widget:hover .whatsapp-menu,
  .whatsapp-widget:focus-within .whatsapp-menu {
    transform: translateY(0);
  }
}

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

  .button:hover,
  .story-card:hover,
  .language-option:hover,
  .whatsapp-button:hover,
  .whatsapp-button:focus-visible,
  .whatsapp-menu,
  .whatsapp-widget:hover .whatsapp-menu,
  .whatsapp-widget:focus-within .whatsapp-menu {
    transform: none;
  }
}

@media (max-width: 1120px) {
  html {
    scroll-padding-top: 190px;
  }

  .section {
    scroll-margin-top: 190px;
  }

  .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding-block: 14px;
  }

  .nav-links {
    grid-column: 1 / -1;
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-block-end: 2px;
  }

  [dir="rtl"] .nav-links {
    justify-content: flex-end;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero {
    min-height: 0;
  }

  .hero-visual {
    justify-self: center;
  }

  .hero-image-panel {
    width: min(100%, 480px);
  }
}

@media (max-width: 900px) {
  .section {
    padding: 76px 0;
  }

  .language-layout,
  .contact-layout,
  .action-grid,
  .focus-grid,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .story-card {
    min-height: 0;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-contact {
    justify-items: start;
    text-align: start;
  }
}

@media (max-width: 760px) {
  .container,
  .nav-shell {
    width: calc(100% - 28px);
  }

  .brand {
    min-width: 0;
  }

  .brand-tagline {
    display: none;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-self: stretch;
    flex-wrap: wrap;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 31px;
  }

  h3 {
    font-size: 22px;
  }

  .hero-tagline {
    font-size: 21px;
  }

  .hero-lede,
  .section-lede {
    font-size: 16px;
  }

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

@media (max-width: 560px) {
  html {
    scroll-padding-top: 272px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    position: sticky;
  }

  .nav-shell {
    gap: 14px;
    min-height: 0;
  }

  .brand-name {
    font-size: 20px;
  }

  .nav-links {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 12px;
    overflow-x: auto;
    font-size: 12px;
    scrollbar-width: thin;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 8px 0;
    text-align: start;
    line-height: 1.2;
    white-space: nowrap;
  }

  .nav-links a::after {
    inset-inline: 0;
  }

  .header-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .language-select-shell,
  .language-select,
  .header-actions .button {
    width: 100%;
  }

  .section {
    scroll-margin-top: 272px;
    padding: 64px 0;
  }

  .hero {
    padding-block-start: 58px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-actions .button,
  .section-actions .button,
  .action-card .button {
    width: 100%;
  }

  .trust-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
  }

  .trust-row span {
    width: min(100%, 320px);
    justify-content: center;
  }

  .hero {
    padding-block: 72px 86px;
  }

  .image-glow {
    background: radial-gradient(circle, rgba(216, 183, 106, 0.20), rgba(234, 245, 236, 0.32) 34%, rgba(167, 139, 199, 0.18) 62%, transparent 76%);
  }

  .hero-image-panel {
    width: min(100%, 360px);
  }

  .hero-symbol-panel {
    width: min(100%, 340px);
  }

  .hero-symbol {
    width: 142px;
    height: 142px;
  }

  .hero-symbol img {
    width: 106px;
    height: 106px;
  }

  .official-panel,
  .action-card,
  .disclaimer {
    padding: 22px;
  }

  .official-copy {
    font-size: 15px;
    line-height: 1.72;
  }

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

  .contact-card {
    width: 100%;
  }

  .whatsapp-widget {
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-button {
    width: 54px;
    height: 54px;
  }

  .whatsapp-menu {
    bottom: 68px;
  }
}
