:root {
  --green: #1f9d55;
  --green-dark: #13733c;
  --green-soft: #dff6e5;
  --mint: #8bdd9a;
  --ink: #16251d;
  --muted: #5e6d64;
  --line: #dfe8e1;
  --paper: #ffffff;
  --wash: #f5f8f4;
  --amber: #f5b82e;
  --rose: #f66f80;
  --blue: #2f83cc;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(31, 81, 48, 0.12);
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
}

html.font-up-1 { font-size: 106.25%; }
html.font-up-2 { font-size: 112.5%; }
html.font-up-3 { font-size: 118.75%; }
html.font-up-4 { font-size: 125%; }
html.font-down-1 { font-size: 93.75%; }
html.font-down-2 { font-size: 87.5%; }
html.font-down-3 { font-size: 81.25%; }
html.font-down-4 { font-size: 75%; }

body.theme-yellow {
  --paper: #fff83a;
  --wash: #fffca8;
  --ink: #111;
  --muted: #222;
  --line: #222;
  --green-soft: #fff83a;
}

body.theme-blue {
  --paper: #9fbbf0;
  --wash: #c5d5f6;
  --ink: #071425;
  --muted: #1e2d42;
  --line: #2a4f91;
  --green-soft: #d7e3fb;
}

body.theme-sepia {
  --paper: #e0a434;
  --wash: #f2cf88;
  --ink: #1d1204;
  --muted: #35250e;
  --line: #65450d;
  --green-soft: #f2cf88;
}

body.theme-dark {
  --paper: #111815;
  --wash: #1b2721;
  --ink: #f4fff8;
  --muted: #c5d6cc;
  --line: #395346;
  --green-soft: #203d2d;
  background: var(--paper);
}

body.theme-dark .site-header,
body.theme-dark .hero,
body.theme-dark .app-section,
body.theme-dark .risk,
body.theme-dark .orbit-card,
body.theme-dark .card,
body.theme-dark .download-card,
body.theme-dark .risk-box,
body.theme-dark .value-list li,
body.theme-dark .site-footer,
body.theme-dark .accessibility-panel,
body.theme-dark .accessibility-btn {
  background: #17211c;
  color: var(--ink);
}

body.theme-dark .green-band,
body.theme-dark .awards {
  background: #203d2d;
}

a {
  color: var(--green-dark);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid #173dff;
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 60;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #111;
  border: 2px solid var(--green-dark);
  box-shadow: 0 12px 30px rgba(18, 40, 26, 0.16);
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

.skip-link:focus,
.skip-link:focus-visible {
  clip: auto;
  clip-path: none;
  width: auto;
  height: auto;
  overflow: visible;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav,
.wrap {
  width: min(1360px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 78px;
  gap: 22px;
  position: relative;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
}

.brand img {
  width: 142px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 1;
  order: 2;
  justify-content: center;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  order: 3;
  margin-left: auto;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(19, 115, 60, 0.18);
  border-radius: 12px;
  background: #fff;
  color: var(--green-dark);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(19, 115, 60, 0.08);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle span + span {
  margin-top: 5px;
}

.site-header.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links a,
.nav-dropdown__toggle {
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
  padding: 9px 0;
  border-radius: var(--radius);
  white-space: nowrap;
  letter-spacing: 0;
}

.nav-links a.active,
.nav-links a:hover,
.nav-dropdown__toggle:hover {
  color: var(--green-dark);
  background: transparent;
  text-decoration: none;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-dropdown__toggle svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.18s ease;
}

.nav-dropdown:hover .nav-dropdown__toggle svg,
.nav-dropdown:focus-within .nav-dropdown__toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  min-width: 220px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown__menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(2px);
}

.nav-dropdown__menu a {
  display: block;
  padding: 9px 10px;
  color: var(--ink);
}

.nav-dropdown__menu a:hover {
  background: var(--green-soft);
}

.demat-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: var(--green-dark);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: 10px 15px;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.demat-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.18s ease;
}

.demat-button:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  text-decoration: none;
}

.demat-button:hover svg {
  transform: translateX(3px);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  border: 1px solid var(--green-dark);
  background: var(--green-dark);
  color: #fff;
  font-weight: 750;
  padding: 10px 16px;
  min-height: 42px;
  cursor: pointer;
}

.button:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
  text-decoration: none;
}

.button.secondary {
  background: #fff;
  color: var(--green-dark);
}

.section {
  padding: 72px 0;
}

.section.tight {
  padding: 44px 0;
}

.hero {
  min-height: 610px;
  padding: 90px 0 80px;
  background: #fff;
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: minmax(380px, 0.74fr) minmax(700px, 1.26fr);
  gap: 64px;
  align-items: center;
}

.eyebrow {
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 184px;
  height: 40px;
  margin-bottom: 22px;
  background: #e6f0e5;
  border-radius: 6px;
  color: #5ba363;
  letter-spacing: 1.8px;
}

h1,
h2,
h3,
h4 {
  line-height: 1.18;
  margin: 0 0 14px;
}

h1 {
  font-size: 2.85rem;
  max-width: 720px;
}

.hero h1 {
  margin-bottom: 18px;
  font-weight: 400;
  letter-spacing: 0;
}

.hero h1 span {
  color: #5aa461;
  font-weight: 600;
}

.hero-subheading {
  margin-bottom: 20px;
  font-size: 1.58rem;
  font-weight: 600;
  color: #030303;
}

h2 {
  font-size: 2.1rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 16px;
}

.lede {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 680px;
}

.hero .lede {
  max-width: 670px;
  color: #51536a;
  font-size: 1.03rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  background: var(--green-dark);
  color: #fff;
  min-height: 61px;
  padding: 0 0 0 22px;
  font-size: 1.05rem;
  font-weight: 500;
}

.hero-button span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  align-self: stretch;
  margin-left: 20px;
  border-left: 4px solid #fff;
  font-size: 2.4rem;
  line-height: 1;
}

.hero-button:hover {
  background: var(--green-dark);
  color: #fff;
  text-decoration: none;
}

.product-orbit {
  position: relative;
  min-height: 455px;
  width: 100%;
  max-width: 760px;
  margin-left: auto;
}

.orbit-card,
.card,
.download-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.orbit-card {
  position: absolute;
  width: 198px;
  min-height: 143px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
  padding: 26px 28px;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 9px 30px rgba(100, 176, 85, 0.18);
  transform-origin: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.orbit-card:hover,
.orbit-card:focus-within {
  z-index: 5;
  transform: scale(1.2);
  box-shadow: 0 18px 46px rgba(100, 176, 85, 0.28);
}

.orbit-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.orbit-card strong {
  color: #4b4c53;
  font-size: 1.02rem;
  font-weight: 700;
}

.orbit-equity { left: 0; top: 96px; }
.orbit-fno { left: 2%; top: 287px; }
.orbit-commodity { left: 37%; top: 0; }
.orbit-demat { left: 37%; top: 186px; }
.orbit-ipo { left: 37%; top: 373px; }
.orbit-currency { right: 0; top: 100px; }
.orbit-mutual { right: 0; top: 288px; }

.image-row {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 40px;
  align-items: center;
}

.image-row img {
  margin-inline: auto;
}

.about-section {
  padding: 86px 0 92px;
}

.about-grid {
  grid-template-columns: minmax(420px, 0.9fr) minmax(470px, 1fr);
  gap: 76px;
}

.about-grid > img {
  width: min(640px, 100%);
}

.about-grid h2 {
  margin-bottom: 22px;
  color: #27283b;
  font-size: 2.05rem;
  font-weight: 700;
}

.about-grid p {
  max-width: 620px;
  color: #4f5165;
  font-size: 1rem;
  line-height: 1.75;
}

.value-list {
  display: flex;
  gap: 28px 34px;
  flex-wrap: wrap;
  padding: 0;
  margin: 38px 0 0;
  list-style: none;
}

.value-list li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #101318;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0;
}

.value-icon {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.value-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-gold svg {
  fill: currentColor;
  stroke-width: 0;
}

.value-blue {
  background: #eef7ff;
  color: #69aeea;
}

.value-gold {
  background: #fff2cf;
  color: #f1c34b;
}

.value-red {
  background: #ffefef;
  color: #e77878;
}

.value-mint {
  background: #eafff3;
  color: #73d8a8;
}

.value-cream {
  background: #fff7e7;
  color: #dfbd79;
}

.about-button {
  min-height: 60px;
  margin-top: 2px;
}

.green-band {
  background: #c7edbe;
  color: #111;
}

.band-grid {
  display: grid;
  grid-template-columns: minmax(480px, 0.9fr) minmax(520px, 1fr);
  gap: 64px;
  align-items: center;
}

.green-band h2 {
  color: #111;
  margin-top: 38px;
  margin-bottom: 20px;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0;
}

.green-band .plain-list {
  color: #111;
  padding-left: 24px;
  margin-top: 0;
  max-width: 760px;
}

.green-band .plain-list li {
  margin-bottom: 10px;
  padding-left: 6px;
  font-size: 0.98rem;
  line-height: 1.55;
}

.green-band img {
  width: min(620px, 100%);
  margin-inline: auto;
}

.demat-title {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #111;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0;
}

.demat-title span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  background: #fff;
  color: #5aa461;
  font-size: 2rem;
  font-weight: 400;
}

.demat-cta {
  min-height: 64px;
  margin-top: 6px;
  background: var(--green-dark);
  color: #fff;
}

.demat-cta:hover {
  background: #2f7c3a;
}

.app-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 48%, rgba(91, 164, 97, 0.16), transparent 30%),
    linear-gradient(180deg, #f8fbf7 0%, #eef6ef 100%);
  padding: 72px 0 76px;
}

.app-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 157, 85, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 157, 85, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
  pointer-events: none;
}

.app-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(370px, 0.72fr) minmax(520px, 1.28fr);
  gap: 72px;
  align-items: center;
}

.app-copy .eyebrow {
  color: var(--green-dark);
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 1.4px;
}

.app-copy h2 {
  margin-top: 18px;
  margin-bottom: 18px;
  color: #111;
  font-size: 2.4rem;
  font-weight: 800;
}

.app-copy p:not(.eyebrow) {
  max-width: 520px;
  color: #222;
  font-size: 1.05rem;
  line-height: 1.75;
}

.store-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.store-badge {
  min-width: 166px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px;
  border-radius: var(--radius);
  color: #fff;
  background: #111;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.store-badge svg {
  width: 26px;
  height: 30px;
  fill: currentColor;
  flex: 0 0 auto;
}

.store-badge span {
  display: grid;
  line-height: 1.05;
  font-size: 1rem;
  font-weight: 700;
}

.store-badge small {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.play-badge {
  background: #a9d39a;
  color: #16251d;
}

.app-store-badge {
  background: #fff;
  color: #285d31;
  border: 1px solid rgba(79, 153, 88, 0.35);
}

.store-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
  text-decoration: none;
}

.play-badge:hover {
  background: #8fc47d;
  color: #16251d;
}

.app-store-badge:hover {
  background: #285d31;
  color: #fff;
}

.app-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.app-visual::before {
  content: "";
  position: absolute;
  width: 74%;
  height: 72%;
  border-radius: 50%;
  background: rgba(79, 153, 88, 0.12);
  filter: blur(28px);
}

.app-visual img {
  position: relative;
  width: min(900px, 108%);
  max-height: 700px;
  object-fit: contain;
  filter: drop-shadow(0 30px 34px rgba(30, 61, 38, 0.22));
  transform: rotate(-2deg);
}

.awards {
  color: #111;
  background: linear-gradient(120deg, #8fcf76, #d8ef89);
  text-align: center;
}

.award-grid,
.product-grid,
.footer-grid,
.contact-grid,
.details-grid {
  display: grid;
  gap: 18px;
}

.award-grid {
  grid-template-columns: repeat(5, 1fr);
  margin-top: 32px;
}

.award-grid div {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  padding: 16px;
  min-height: 116px;
}

.award-grid img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin: 0 auto 10px;
}

.product-feature-section {
  background: #fff;
  border-top: 1px solid rgba(79, 153, 88, 0.35);
  padding: 74px 0 86px;
}

.tabs {
  display: flex;
  gap: 0;
  width: fit-content;
  margin-bottom: 54px;
  padding: 5px;
  border: 1px solid rgba(79, 153, 88, 0.24);
  border-radius: 8px;
  background: #f4faf4;
  box-shadow: 0 12px 28px rgba(35, 87, 47, 0.06);
}

.tab-button {
  min-width: 132px;
  border: 1px solid transparent;
  background: transparent;
  color: #111;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 11px 20px;
  border-radius: 6px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.tab-button.active {
  color: #fff;
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 8px 18px rgba(79, 153, 88, 0.22);
}

.tab-button:not(.active):hover {
  color: #2f7c3a;
  background: #fff;
}

.tab-panel[hidden] {
  display: none;
}

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

.feature-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 128px;
  padding: 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #fff;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(79, 153, 88, 0.2);
  box-shadow: 0 18px 40px rgba(35, 87, 47, 0.1);
}

.feature-card h3 {
  margin: 4px 0 18px;
  color: #20232a;
  font-size: 1.08rem;
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  color: #595f66;
  font-size: 0.95rem;
  line-height: 1.7;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #4f9958;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-blue { background: #eaf3ff; color: #5f9dea; }
.feature-green { background: #e5f8f0; color: #61c19a; }
.feature-sky { background: #edfaff; color: #53abd3; }
.feature-pink { background: #fae3f4; color: #9d377f; }
.feature-lavender { background: #eef0ff; color: #6774dc; }
.feature-gold { background: #fff7df; color: #efbd3f; }
.feature-indigo { background: #eeeeff; color: #5c65df; }
.feature-leaf { background: #effce7; color: #69b93d; }
.feature-lime { background: #f0fde8; color: #82c23d; }
.feature-peach { background: #fff2ea; color: #f07f39; }

.testimonials-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 26%, rgba(79, 153, 88, 0.16), transparent 30%),
    linear-gradient(180deg, #eef8ee 0%, #dff1e0 100%);
  padding: 88px 0 96px;
}

.testimonial-heading {
  text-align: center;
  margin-bottom: 56px;
}

.motion-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 20px;
  padding: 10px 16px;
  border: 1px solid rgba(19, 115, 60, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--green-dark);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
}

.motion-toggle:hover {
  background: rgba(79, 153, 88, 0.12);
}

.testimonial-heading .eyebrow {
  margin-bottom: 14px;
  color: var(--green-dark);
  letter-spacing: 1.4px;
}

.testimonial-heading h2 {
  color: #292a3d;
  font-size: 2rem;
  font-weight: 700;
}

.testimonial-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.testimonial-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: testimonial-scroll 42s linear infinite;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-marquee[data-motion-state="paused"] .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  width: 330px;
  min-height: 270px;
  padding: 30px;
  border: 1px solid rgba(79, 153, 88, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 40px rgba(35, 87, 47, 0.1);
  backdrop-filter: blur(8px);
}

.testimonial-card img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 26px;
  border: 4px solid #fff;
  box-shadow: 0 8px 20px rgba(35, 87, 47, 0.18);
}

.testimonial-card p {
  min-height: 96px;
  margin-bottom: 24px;
  color: #20232a;
  font-size: 0.98rem;
  line-height: 1.75;
}

.testimonial-card h3 {
  margin: 0;
  color: #111;
  font-size: 0.98rem;
  font-weight: 700;
}

@keyframes testimonial-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.news-section {
  background: #fff;
  padding: 74px 0 86px;
}

.news-heading {
  text-align: center;
  margin-bottom: 34px;
}

.news-heading .eyebrow {
  color: var(--green-dark);
  letter-spacing: 1.4px;
}

.news-heading h2 {
  color: #292a3d;
  font-size: 2rem;
  font-weight: 700;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.news-card {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 10px solid #242424;
  border-radius: 8px;
  background: #111;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: #1c1c1c;
  box-shadow: 0 24px 42px rgba(35, 87, 47, 0.18);
}

.news-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.82);
}

.play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(218, 42, 33, 0.9);
  color: #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 24px rgba(218, 42, 33, 0.28);
}

.play-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.faq-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 240, 93, 0.24), transparent 26%),
    linear-gradient(180deg, #d9f5d5 0%, #cbedc5 100%);
  color: #111;
  padding: 84px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(480px, 0.92fr) minmax(500px, 1.08fr);
  gap: 64px;
  align-items: start;
}

.faq-content .eyebrow {
  color: #276f34;
  letter-spacing: 1.4px;
}

.faq-content h2 {
  margin-bottom: 36px;
  color: #202132;
  font-size: 2.25rem;
  font-weight: 700;
}

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

.faq-list details {
  border: 1px solid rgba(39, 111, 52, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 12px 26px rgba(35, 87, 47, 0.08);
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 16px 54px 16px 20px;
  color: #111;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e9f8e7;
  color: #276f34;
  font-size: 1.35rem;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: #111;
  font-size: 0.96rem;
  line-height: 1.75;
}

.faq-visual {
  align-self: start;
  top: 110px;
  position: sticky;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.faq-visual::before {
  content: "FAQ";
  position: absolute;
  left: 9%;
  bottom: 3%;
  color: rgba(39, 111, 52, 0.18);
  font-size: 12rem;
  font-weight: 800;
  line-height: 1;
}

.faq-visual img {
  position: relative;
  width: min(720px, 100%);
  filter: drop-shadow(0 24px 30px rgba(35, 87, 47, 0.14));
}


.product-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.card {
  padding: 22px;
}

.card ul,
.plain-list {
  margin: 12px 0 0;
  padding-left: 20px;
}

.disclosure-section {
  background:
    radial-gradient(circle at 8% 16%, rgba(79, 153, 88, 0.1), transparent 28%),
    linear-gradient(180deg, #f6f8f6 0%, #edf3ed 100%);
  border-top: 1px solid rgba(79, 153, 88, 0.16);
  color: #111;
}

.disclosure-intro {
  max-width: 1080px;
  margin-bottom: 44px;
}

.disclosure-intro .eyebrow {
  color: #202132;
  letter-spacing: 1.2px;
}

.disclosure-intro h2 {
  color: #4f9958;
  font-size: 1.35rem;
  font-weight: 700;
}

.disclosure-intro p:not(.eyebrow) {
  color: #222;
  font-size: 1rem;
  line-height: 1.85;
}

.risk-panel {
  padding: 34px;
  border: 1px solid rgba(79, 153, 88, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 54px rgba(35, 87, 47, 0.1);
}

.risk-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.risk-panel__head .eyebrow {
  color: #202132;
}

.risk-panel__head h2 {
  color: #111;
  font-size: 1.6rem;
  font-weight: 700;
}

.risk-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 13px;
  border-radius: 8px;
  background: #fff0f0;
  color: #9f2f3e;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

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

.risk-card {
  padding: 22px;
  border-radius: 8px;
  background: #f8fbf7;
  border: 1px solid rgba(79, 153, 88, 0.14);
}

.risk-card strong {
  display: block;
  margin-bottom: 12px;
  color: #4f9958;
  font-size: 1.7rem;
  font-weight: 800;
}

.risk-card p {
  margin: 0;
  color: #222;
  font-size: 0.94rem;
  line-height: 1.65;
}

.risk-source {
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(79, 153, 88, 0.18);
  color: #8a2d43;
  font-size: 0.95rem;
  line-height: 1.7;
}

.attention {
  background: #eef8ef;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 26px 0 0;
}

.attention-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.attention-title h2 {
  margin-bottom: 18px;
  color: #202132;
  font-size: 1.55rem;
  font-weight: 700;
}

.downloads-hero {
  padding-top: 84px;
  padding-bottom: 34px;
  text-align: center;
}

.downloads-hero__inner {
  max-width: 760px;
}

.downloads-hero h1 {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 2.6rem;
  text-transform: uppercase;
}

.downloads-hero p:not(.eyebrow) {
  color: var(--theme-text-body);
  max-width: 620px;
  margin-inline: auto;
}

.downloads-section {
  padding-top: 18px;
}

.downloads-anchor-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.downloads-anchor-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--theme-surface);
  border: 1px solid var(--line);
  color: var(--theme-text-strong);
  font-size: 0.92rem;
  font-weight: 600;
}

.downloads-group + .downloads-group {
  margin-top: 44px;
}

#download-files,
#download-softwares {
  scroll-margin-top: 110px;
}

.downloads-group h2 {
  margin-bottom: 22px;
  color: var(--theme-text-heading);
  font-size: 2rem;
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 26px;
}

.downloads-list {
  display: grid;
  gap: 10px;
}

.download-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 54px;
  padding: 11px 14px 11px 16px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--theme-surface) 92%, var(--wash));
  border: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  color: var(--theme-text-body);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.download-row:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 157, 85, 0.28);
  box-shadow: 0 14px 28px rgba(35, 87, 47, 0.08);
  text-decoration: none;
}

.download-row span:first-child {
  font-size: 0.96rem;
  line-height: 1.45;
}

.download-row__icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
}

.download-row__icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vernacular-section {
  background: linear-gradient(180deg, #1da352 0%, #21af58 100%);
  color: #fff;
}

.vernacular-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 28px;
}

.vernacular-intro h2 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.9rem;
}

.vernacular-intro p {
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

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

.vernacular-chip {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  padding: 8px 10px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #0f6f34;
  font-size: 0.92rem;
  font-weight: 600;
}

.vernacular-chip:hover {
  background: #fff;
  text-decoration: none;
}

.vernacular-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  line-height: 1.65;
}

.about-page-hero {
  padding-top: 82px;
  padding-bottom: 54px;
}

.about-hero-grid,
.about-story-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(420px, 1.05fr);
  gap: 30px;
  align-items: center;
}

.about-hero-copy h1 {
  margin-bottom: 20px;
  font-size: 2.6rem;
}

.about-hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--theme-text-body);
  font-size: 1rem;
  line-height: 1.8;
}

.about-hero-visual img,
.about-story-visual img {
  width: min(560px, 100%);
  margin-inline: auto;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.about-stat-card,
.leader-card {
  background: var(--theme-surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-stat-card {
  min-height: 168px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}

.about-stat-card img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 10px;
}

.about-stat-card strong {
  display: block;
  color: var(--theme-text-strong);
  font-size: 1.8rem;
  font-weight: 800;
}

.about-stat-card span {
  color: var(--theme-text-body);
  font-size: 0.98rem;
  font-weight: 600;
}

.about-story-section {
  padding: 8px 0;
}

.about-story-section--reverse .about-story-grid {
  grid-template-columns: minmax(420px, 1.05fr) minmax(420px, 0.95fr);
}

.about-story-grid {
  padding: 12px 0;
}

.about-story-section--soft .about-story-grid {
  background: transparent;
}

.about-story-section--plain .about-story-grid {
  background: transparent;
}

.about-story-section--soft {
  background:
    radial-gradient(circle at 12% 18%, rgba(79, 153, 88, 0.1), transparent 28%),
    linear-gradient(180deg, color-mix(in srgb, var(--wash) 72%, white) 0%, color-mix(in srgb, var(--wash) 92%, white) 100%);
}

.about-story-section--plain {
  background: #fff;
}

.about-story-copy h2,
.leaders-heading h2 {
  margin-bottom: 16px;
  color: var(--theme-text-heading);
  font-size: 2rem;
}

.about-story-copy p {
  color: var(--theme-text-body);
  font-size: 1rem;
  line-height: 1.72;
  margin-bottom: 12px;
}

.leaders-section {
  padding-top: 34px;
}

.leaders-heading {
  text-align: center;
  margin-bottom: 34px;
}

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

.leader-card {
  padding: 14px 14px 18px;
  text-align: center;
}

.leader-card img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 14px;
}

.leader-card h3 {
  margin: 0 0 6px;
  color: var(--theme-text-strong);
  font-size: 1rem;
}

.leader-card p {
  margin: 0;
  color: var(--theme-text-body);
  font-size: 0.9rem;
}

.ticker {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scroll 48s linear infinite;
  padding: 14px 0;
  white-space: nowrap;
}

.ticker span {
  font-weight: 650;
}

.ticker[data-motion-state="paused"] {
  animation-play-state: paused;
}

.motion-toggle--attention {
  margin-top: 0;
  background: rgba(255, 255, 255, 0.9);
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.page-hero {
  background: var(--green-soft);
  padding: 58px 0;
  border-bottom: 1px solid var(--line);
}

.download-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.download-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  color: var(--ink);
  min-height: 74px;
}

.file-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 42px;
  border: 2px solid var(--green);
  border-radius: 4px;
  position: relative;
  background: #fff;
}

.file-icon::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -2px;
  border-top: 12px solid var(--green-soft);
  border-left: 12px solid transparent;
  width: 0;
  height: 0;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  background: var(--green-soft);
}

.contact-grid {
  grid-template-columns: minmax(420px, 0.9fr) minmax(560px, 1.1fr);
  gap: 56px;
}

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

.contact-block {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.site-footer {
  background:
    radial-gradient(circle at 8% 10%, rgba(79, 153, 88, 0.16), transparent 28%),
    linear-gradient(180deg, #e9f9e4 0%, #d8f2d1 100%);
  border-top: 1px solid rgba(79, 153, 88, 0.2);
  padding: 62px 0 24px;
}

.footer-grid {
  grid-template-columns: 1.25fr 0.9fr 1.15fr 1.15fr 1.1fr;
  gap: 28px;
}

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

.footer-list li {
  margin-bottom: 9px;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #111;
  font-size: 1rem;
  font-weight: 700;
}

.site-footer h3:not(:first-child) {
  margin-top: 24px;
}

.site-footer p,
.site-footer a {
  color: #1d2a20;
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-brand img {
  width: 154px;
  margin-bottom: 18px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #327c3d;
  box-shadow: 0 8px 20px rgba(35, 87, 47, 0.1);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social a:first-child svg,
.footer-social a:nth-child(3) svg,
.footer-social a:nth-child(4) svg {
  fill: currentColor;
  stroke-width: 0;
}

.external-list {
  columns: 2;
  column-gap: 24px;
}

.external-list li {
  break-inside: avoid;
}

.footer-apps {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.footer-apps .store-badge {
  min-width: 0;
  width: 100%;
  min-height: 50px;
  padding: 8px 12px;
}

.footer-apps .store-badge svg {
  width: 22px;
  height: 26px;
}

.footer-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #285d31;
}

.footer-map {
  display: block;
  overflow: hidden;
  border: 3px solid #fff;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(35, 87, 47, 0.14);
  background: #fff;
}

.footer-map-frame {
  width: 100%;
  height: 150px;
  border: 0;
  display: block;
}

body.theme-dark .footer-apps .play-badge,
body.theme-dark .footer-apps .app-store-badge {
  background: #17211c;
  color: var(--ink);
  border-color: #395346;
}

body.theme-dark .footer-map {
  border-color: #395346;
  background: #17211c;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(31, 157, 85, 0.22);
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.map-box {
  min-height: 180px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(45deg, rgba(47, 131, 204, 0.16) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(31, 157, 85, 0.14) 25%, transparent 25%),
    #fff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
}

.contact-page-hero {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.34), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.22), transparent 22%),
    linear-gradient(135deg, #e5f7dd 0%, #d7f0cf 52%, #c7eabe 100%);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(320px, 0.8fr);
  gap: 46px;
  align-items: end;
}

.contact-hero__copy h1 {
  margin-bottom: 14px;
}

.contact-hero__copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--theme-text-body);
  font-size: 1.02rem;
}

.contact-card {
  background: var(--theme-surface);
  border: 1px solid rgba(79, 153, 88, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(35, 87, 47, 0.07);
}

.contact-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-hero__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(79, 153, 88, 0.14);
  color: var(--theme-text-body);
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-hero__aside {
  display: grid;
  gap: 10px;
  align-content: start;
  justify-items: start;
  padding: 28px 30px;
  border-left: 3px solid rgba(79, 153, 88, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.2) 100%);
}

.contact-hero__eyebrow {
  margin: 0 0 6px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.contact-hero__aside a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--theme-text-strong);
  font-size: 1.18rem;
  font-weight: 700;
}

.contact-hero__aside-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.66);
  color: #13733c;
  box-shadow: inset 0 0 0 1px rgba(19, 115, 60, 0.08);
}

.contact-hero__aside-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-page-section {
  padding-top: 78px;
  padding-bottom: 88px;
  background: #fff;
  border-top: 1px solid rgba(79, 153, 88, 0.14);
}

.contact-sidebar,
.contact-main {
  display: grid;
  gap: 28px;
  align-content: start;
}

.contact-card {
  padding: 24px;
}

.contact-intro-block {
  padding: 0 0 28px;
  border-bottom: 1px solid rgba(19, 115, 60, 0.18);
}

.contact-intro-block h2,
.contact-form-card h2 {
  margin-bottom: 12px;
  color: var(--theme-text-heading);
}

.contact-intro-block p,
.contact-intro-block a {
  color: var(--theme-text-body);
}

.contact-map-block h3,
.contact-note-card h3 {
  margin-bottom: 10px;
  color: var(--theme-text-strong);
}

.contact-details-list {
  display: grid;
  gap: 0;
}

.contact-detail-line {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(19, 115, 60, 0.12);
}

.contact-detail-line__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--theme-text-strong);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.contact-detail-line__icon,
.contact-map-block__icon,
.contact-note-card__icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
  color: #13733c;
  box-shadow: inset 0 0 0 1px rgba(19, 115, 60, 0.08);
}

.contact-detail-line__icon svg,
.contact-map-block__icon svg,
.contact-note-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail-line p {
  margin: 0 0 8px;
  color: #234232;
  font-size: 1rem;
}

.contact-map-block {
  padding-top: 28px;
}

.map-box--embed {
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  border: 1px solid rgba(19, 115, 60, 0.12);
}

.contact-map-frame {
  width: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}

.contact-form-intro {
  color: var(--theme-text-body);
  margin-bottom: 20px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
}

.contact-form-grid label {
  display: grid;
  gap: 8px;
  color: var(--theme-text-strong);
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-form-grid input,
.contact-form-grid select,
.contact-form-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: color-mix(in srgb, var(--theme-surface) 78%, var(--wash));
  color: var(--theme-text-body);
  padding: 13px 14px;
  font: inherit;
}

.contact-form-grid input:focus,
.contact-form-grid select:focus,
.contact-form-grid textarea:focus {
  outline: 0;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(31, 157, 85, 0.12);
}

.form-error {
  min-height: 1.2rem;
  color: #a22121;
  font-size: 0.82rem;
  font-weight: 600;
}

.form-status {
  min-height: 1.3rem;
  color: var(--theme-text-body);
  font-size: 0.88rem;
  font-weight: 600;
}

.form-status.is-success {
  color: var(--green-dark);
}

.input-error {
  border-color: #c43232 !important;
  box-shadow: 0 0 0 3px rgba(196, 50, 50, 0.12) !important;
}

.contact-form-grid__full {
  grid-column: 1 / -1;
}

.contact-checkbox {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500 !important;
}

.contact-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  padding: 0;
}

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

.contact-form-card {
  padding: 40px 38px 36px;
  background:
    radial-gradient(circle at 92% 10%, rgba(79, 153, 88, 0.08), transparent 24%),
    var(--theme-surface);
  border: 1px solid rgba(79, 153, 88, 0.14);
  box-shadow: 0 28px 60px rgba(25, 79, 39, 0.12);
}

.contact-main {
  gap: 18px;
}

.contact-note-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 28px 24px;
  border: 1px solid rgba(79, 153, 88, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: none;
}

.contact-note-card p {
  color: var(--theme-text-body);
}

.contact-note-card h3 {
  margin-bottom: 6px;
}

.contact-map-block h3 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.legal-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(79, 153, 88, 0.16), transparent 28%),
    linear-gradient(180deg, #eef8ef 0%, #ffffff 100%);
  padding: 82px 0 64px;
}

.legal-hero__inner {
  max-width: 860px;
}

.legal-hero h1 {
  margin-bottom: 16px;
  color: var(--theme-text-heading);
}

.legal-hero p:not(.eyebrow) {
  color: var(--theme-text-body);
  font-size: 1.08rem;
}

.legal-section {
  background: var(--theme-surface);
  padding-top: 62px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(79, 153, 88, 0.16);
  border-radius: 18px;
  background: color-mix(in srgb, var(--theme-panel) 86%, var(--theme-surface));
}

.legal-sidebar h2 {
  margin-bottom: 8px;
  color: var(--theme-text-heading);
  font-size: 1rem;
}

.legal-sidebar a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--theme-text-body);
  font-weight: 600;
}

.legal-sidebar a.active,
.legal-sidebar a:hover {
  background: var(--green-dark);
  color: #fff;
  text-decoration: none;
}

.legal-content {
  padding: 40px;
  border: 1px solid rgba(79, 153, 88, 0.14);
  border-radius: 22px;
  background: var(--theme-surface);
  box-shadow: 0 24px 52px rgba(25, 79, 39, 0.08);
}

.legal-company {
  margin-bottom: 24px;
  color: var(--theme-text-heading);
  font-size: 1.3rem;
  font-weight: 800;
}

.legal-content p:not(.legal-company) {
  margin-bottom: 20px;
  color: var(--theme-text-body);
  line-height: 1.82;
}

body.theme-dark .contact-hero__aside {
  background: linear-gradient(180deg, rgba(23, 33, 28, 0.64) 0%, rgba(23, 33, 28, 0.18) 100%);
}

body.theme-dark .contact-hero__meta span {
  background: rgba(23, 33, 28, 0.7);
  border-color: rgba(79, 153, 88, 0.18);
}

body.theme-dark .contact-hero__aside-icon {
  background: rgba(23, 33, 28, 0.68);
  color: #8bdd9a;
}

body.theme-dark .contact-page-section {
  background: #111815;
}

body.theme-dark .contact-detail-line p {
  color: #d7e6dc;
}

body.theme-dark .contact-detail-line__icon,
body.theme-dark .contact-map-block__icon,
body.theme-dark .contact-note-card__icon,
body.theme-dark .map-box--embed,
body.theme-dark .contact-note-card {
  background: rgba(23, 33, 28, 0.72);
  color: #8bdd9a;
}

.accessibility-widget {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 40;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 40;
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.35);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.whatsapp-float:hover {
  background: #19b956;
  color: #fff;
  text-decoration: none;
}

.accessibility-panel {
  display: none;
  width: 42px;
  padding: 10px 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
}

.accessibility-panel.open {
  display: grid;
  gap: 7px;
  justify-items: center;
}

.accessibility-btn {
  width: 29px;
  height: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  display: inline-grid;
  place-items: center;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
  padding: 0;
}

.accessibility-btn:hover,
.accessibility-btn.active {
  border-color: #3543d0;
  color: #3543d0;
  text-decoration: none;
}

.accessibility-divider {
  width: 25px;
  height: 1px;
  background: var(--line);
  margin: 1px 0;
}

.accessibility-color {
  border-radius: 50%;
}

.accessibility-normal {
  color: #3543d0;
}

.accessibility-yellow {
  background: #fff83a;
  border-color: #111;
}

.accessibility-blue {
  background: #9fbbf0;
  border-color: #111;
}

.accessibility-sepia {
  background: #e0a434;
  border-color: #111;
}

.accessibility-dark {
  background: #111815;
  border-color: #111;
}

.accessibility-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #3543d0;
  color: #fff;
  box-shadow: 0 16px 40px rgba(53, 67, 208, 0.35);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.accessibility-toggle svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.speech-enabled section,
body.speech-enabled footer,
body.speech-enabled header {
  cursor: pointer;
}

body.speech-enabled .tts-target {
  outline: 3px solid #3543d0;
  outline-offset: 4px;
}

.accessibility-toast {
  position: absolute;
  right: 54px;
  bottom: 8px;
  width: 210px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: #17211c;
  color: #fff;
  font-size: 0.86rem;
  line-height: 1.35;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.accessibility-toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .nav {
    min-height: 72px;
    gap: 16px;
    padding: 10px 0;
  }

  .brand {
    flex: 0 1 auto;
  }

  .brand img {
    width: 124px;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    order: 3;
    flex: 1 0 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 8px;
    padding: 14px;
    background: var(--theme-surface);
    border: 1px solid rgba(79, 153, 88, 0.14);
    border-radius: 18px;
    box-shadow: 0 22px 42px rgba(25, 79, 39, 0.12);
    overflow: visible;
  }

  .site-header.menu-open .nav-links {
    display: flex;
  }

  .nav-links a,
  .nav-dropdown__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 0.95rem;
    background: rgba(79, 153, 88, 0.06);
  }

  .nav-links a.active,
  .nav-links a:hover,
  .nav-dropdown__toggle:hover {
    background: rgba(79, 153, 88, 0.12);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown__toggle {
    justify-content: space-between;
  }

  .nav-dropdown__menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    padding: 8px;
    border-radius: 14px;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    display: none;
  }

  .nav-dropdown__menu::before {
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    display: block;
  }

  .nav-dropdown:hover .nav-dropdown__menu,
  .nav-dropdown:focus-within .nav-dropdown__menu {
    transform: none;
  }

  .demat-button {
    padding: 10px 14px;
    min-height: 46px;
  }

  h1 {
    font-size: 2.5rem;
  }

  .hero-grid,
  .split,
  .app-grid,
  .image-row,
  .band-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .download-grid,
  .footer-grid,
  .award-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .product-orbit {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    min-height: auto;
  }

  .orbit-card {
    position: static;
    width: auto;
    min-height: 132px;
  }

  .app-section {
    padding: 72px 0;
  }

  .app-visual {
    min-height: 360px;
  }
}

@media (min-width: 921px) and (max-width: 1320px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .product-orbit {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    min-height: auto;
    max-width: none;
  }

  .orbit-card {
    position: static;
    width: auto;
    min-height: 132px;
  }
}

@media (max-width: 620px) {
  .nav,
  .wrap {
    width: min(100% - 22px, 1360px);
  }

  .nav-actions {
    gap: 10px;
  }

  .demat-button {
    padding: 10px 12px;
    font-size: 0.84rem;
  }

  .demat-button svg {
    width: 16px;
    height: 16px;
  }

  .motion-toggle {
    width: 100%;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .section {
    padding: 48px 0;
  }

  .product-orbit,
  .product-grid,
  .download-grid,
  .footer-grid,
  .award-grid,
  .feature-grid,
  .risk-grid,
  .details-grid {
    grid-template-columns: 1fr;
  }

  .risk-panel {
    padding: 22px;
  }

  .risk-panel__head {
    display: grid;
  }

  .store-badge {
    width: 100%;
    justify-content: center;
  }

  .app-copy h2 {
    font-size: 1.9rem;
  }

  .app-visual {
    min-height: 280px;
  }

  .testimonial-heading h2 {
    font-size: 1.55rem;
  }

  .testimonial-card {
    width: 290px;
  }

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

  .faq-visual {
    min-height: 320px;
  }

  .faq-visual::before {
    font-size: 7rem;
  }

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

  .accessibility-toggle {
    width: 42px;
    height: 42px;
  }

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

@media (max-width: 460px) {
  .brand img {
    width: 116px;
  }

  .nav-actions {
    width: auto;
  }

  .demat-button {
    max-width: 212px;
    padding: 10px 10px;
    font-size: 0.79rem;
    gap: 6px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 980px) {
  .contact-hero,
  .contact-form-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
  }

  .contact-hero {
    gap: 24px;
  }

  .contact-hero__aside {
    padding: 20px 0 0;
    border-left: 0;
    border-top: 2px solid rgba(79, 153, 88, 0.16);
    background: transparent;
  }

  .contact-detail-line {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .downloads-grid,
  .vernacular-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-grid,
  .about-story-grid,
  .about-story-section--reverse .about-story-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-stat-grid {
    grid-template-columns: 1fr;
  }

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

  .attention-title {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .contact-card {
    padding: 18px;
  }

  .contact-form-card {
    padding: 28px 20px;
  }

  .legal-hero {
    padding-top: 54px;
  }

  .legal-content {
    padding: 26px 20px;
  }

  .downloads-hero {
    padding-top: 54px;
  }

  .downloads-hero h1 {
    font-size: 2rem;
  }

  .about-page-hero {
    padding-top: 50px;
  }

  .about-hero-copy h1 {
    font-size: 2rem;
  }

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

  .whatsapp-float {
    left: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-track,
  .ticker {
    animation: none;
  }
}

/* Theme overrides for accessibility color modes */
:root {
  --theme-header-bg: rgba(255, 255, 255, 0.96);
  --theme-surface: #ffffff;
  --theme-surface-soft: rgba(255, 255, 255, 0.84);
  --theme-surface-muted: rgba(255, 255, 255, 0.56);
  --theme-surface-alt: #f8fbf7;
  --theme-panel: #f4faf4;
  --theme-hero: #ffffff;
  --theme-strong-section: #c7edbe;
  --theme-app-bg:
    radial-gradient(circle at 78% 48%, rgba(91, 164, 97, 0.16), transparent 30%),
    linear-gradient(180deg, #f8fbf7 0%, #eef6ef 100%);
  --theme-awards-bg: linear-gradient(120deg, #8fcf76, #d8ef89);
  --theme-testimonials-bg:
    radial-gradient(circle at 18% 26%, rgba(79, 153, 88, 0.16), transparent 30%),
    linear-gradient(180deg, #eef8ee 0%, #dff1e0 100%);
  --theme-faq-bg:
    radial-gradient(circle at 78% 24%, rgba(255, 240, 93, 0.24), transparent 26%),
    linear-gradient(180deg, #d9f5d5 0%, #cbedc5 100%);
  --theme-disclosure-bg:
    radial-gradient(circle at 8% 16%, rgba(79, 153, 88, 0.1), transparent 28%),
    linear-gradient(180deg, #f6f8f6 0%, #edf3ed 100%);
  --theme-footer-bg:
    radial-gradient(circle at 8% 10%, rgba(79, 153, 88, 0.16), transparent 28%),
    linear-gradient(180deg, #e9f9e4 0%, #d8f2d1 100%);
  --theme-attention-bg: #eef8ef;
  --theme-text-strong: #111111;
  --theme-text-heading: #202132;
  --theme-text-heading-alt: #292a3d;
  --theme-text-body: #222222;
}

body.theme-yellow,
body.theme-blue,
body.theme-sepia,
body.theme-dark {
  --theme-header-bg: var(--paper);
  --theme-surface: var(--wash);
  --theme-surface-soft: color-mix(in srgb, var(--wash) 88%, transparent);
  --theme-surface-muted: color-mix(in srgb, var(--wash) 74%, transparent);
  --theme-surface-alt: color-mix(in srgb, var(--wash) 82%, var(--paper));
  --theme-panel: color-mix(in srgb, var(--wash) 86%, var(--paper));
  --theme-hero: var(--paper);
  --theme-strong-section: color-mix(in srgb, var(--green-soft) 72%, var(--paper));
  --theme-app-bg: linear-gradient(180deg, var(--paper) 0%, var(--wash) 100%);
  --theme-awards-bg: linear-gradient(120deg, color-mix(in srgb, var(--green) 60%, var(--paper)), color-mix(in srgb, var(--green-soft) 70%, var(--paper)));
  --theme-testimonials-bg: linear-gradient(180deg, var(--wash) 0%, var(--paper) 100%);
  --theme-faq-bg: linear-gradient(180deg, var(--wash) 0%, var(--paper) 100%);
  --theme-disclosure-bg: linear-gradient(180deg, var(--wash) 0%, var(--paper) 100%);
  --theme-footer-bg: linear-gradient(180deg, var(--wash) 0%, var(--paper) 100%);
  --theme-attention-bg: var(--wash);
  --theme-text-strong: var(--ink);
  --theme-text-heading: var(--ink);
  --theme-text-heading-alt: var(--ink);
  --theme-text-body: var(--muted);
}

body.theme-dark {
  --theme-header-bg: rgba(17, 24, 21, 0.96);
  --theme-surface: #17211c;
  --theme-surface-soft: rgba(23, 33, 28, 0.9);
  --theme-surface-muted: rgba(23, 33, 28, 0.82);
  --theme-surface-alt: #203129;
  --theme-panel: #1b2a23;
  --theme-hero: #111815;
  --theme-strong-section: #203d2d;
  --theme-app-bg:
    radial-gradient(circle at 78% 48%, rgba(91, 164, 97, 0.1), transparent 30%),
    linear-gradient(180deg, #111815 0%, #18231d 100%);
  --theme-awards-bg: linear-gradient(120deg, #1a5831, #355d28);
  --theme-testimonials-bg:
    radial-gradient(circle at 18% 26%, rgba(79, 153, 88, 0.12), transparent 30%),
    linear-gradient(180deg, #18231d 0%, #1c2a22 100%);
  --theme-faq-bg:
    radial-gradient(circle at 78% 24%, rgba(79, 153, 88, 0.12), transparent 26%),
    linear-gradient(180deg, #18231d 0%, #1f3126 100%);
  --theme-disclosure-bg:
    radial-gradient(circle at 8% 16%, rgba(79, 153, 88, 0.1), transparent 28%),
    linear-gradient(180deg, #151e19 0%, #1b2821 100%);
  --theme-footer-bg:
    radial-gradient(circle at 8% 10%, rgba(79, 153, 88, 0.08), transparent 28%),
    linear-gradient(180deg, #15201a 0%, #132019 100%);
  --theme-attention-bg: #18231d;
  --theme-text-strong: #f4fff8;
  --theme-text-heading: #f4fff8;
  --theme-text-heading-alt: #eefaf2;
  --theme-text-body: #d7e6dc;
}

.site-header { background: var(--theme-header-bg); }
.nav-dropdown__menu,
.demat-button,
.button.secondary,
.orbit-card,
.card,
.download-card,
.product-feature-section,
.feature-card,
.news-section,
.table-wrap,
.footer-social a,
.footer-map,
.accessibility-panel,
.accessibility-btn,
.map-box {
  background: var(--theme-surface);
}

.hero { background: var(--theme-hero); }
.green-band { background: var(--theme-strong-section); color: var(--theme-text-strong); }
.app-section { background: var(--theme-app-bg); }
.awards { background: var(--theme-awards-bg); }
.award-grid div,
.testimonial-card,
.risk-panel { background: var(--theme-surface-soft); }
.tabs { background: var(--theme-panel); }
.tab-button:not(.active):hover { background: var(--theme-surface); }
.testimonials-section { background: var(--theme-testimonials-bg); }
.faq-section { background: var(--theme-faq-bg); color: var(--theme-text-strong); }
.faq-list details { background: var(--theme-surface-muted); }
.disclosure-section { background: var(--theme-disclosure-bg); color: var(--theme-text-strong); }
.risk-card { background: var(--theme-surface-alt); }
.attention { background: var(--theme-attention-bg); }
.site-footer { background: var(--theme-footer-bg); }

.hero-subheading,
.value-list li,
.green-band h2,
.demat-title,
.app-copy h2,
.tab-button,
.testimonial-card h3,
.faq-list summary,
.risk-panel__head h2,
.attention-title h2,
.site-footer h3 {
  color: var(--theme-text-strong);
}

.about-grid h2,
.feature-card h3,
.testimonial-heading h2,
.news-heading h2,
.faq-content h2,
.disclosure-intro .eyebrow,
.risk-panel__head .eyebrow {
  color: var(--theme-text-heading);
}

.hero .lede,
.about-grid p,
.green-band .plain-list,
.app-copy p:not(.eyebrow),
.feature-card p,
.testimonial-card p,
.faq-list details p,
.disclosure-intro p:not(.eyebrow),
.risk-card p,
.site-footer p,
.site-footer a {
  color: var(--theme-text-body);
}

.testimonial-card img { border-color: var(--theme-surface); }
.footer-map { border-color: var(--theme-surface); }

body.theme-dark .nav-links a,
body.theme-dark .nav-dropdown__toggle,
body.theme-dark .brand,
body.theme-dark .news-card,
body.theme-dark .file-icon,
body.theme-dark .app-store-badge,
body.theme-dark .footer-apps .play-badge,
body.theme-dark .footer-apps .app-store-badge {
  color: var(--theme-text-strong);
}

body.theme-dark .nav-links a.active,
body.theme-dark .nav-links a:hover,
body.theme-dark .nav-dropdown__toggle:hover,
body.theme-dark .footer-map-link {
  color: #8bdd9a;
}

body.theme-dark .skip-link,
body.theme-dark .motion-toggle,
body.theme-dark .motion-toggle--attention {
  background: rgba(23, 33, 28, 0.92);
  color: #f4fff8;
}

body.theme-dark .app-store-badge,
body.theme-dark .footer-apps .play-badge,
body.theme-dark .footer-apps .app-store-badge,
body.theme-dark .demat-button,
body.theme-dark .nav-toggle {
  border-color: var(--line);
}

.accessibility-btn.accessibility-normal {
  background: var(--theme-surface);
  color: #3543d0;
}

.accessibility-btn.accessibility-yellow {
  background: #fff83a;
  border-color: #111;
  color: #111;
}

.accessibility-btn.accessibility-blue {
  background: #9fbbf0;
  border-color: #111;
  color: #111;
}

.accessibility-btn.accessibility-sepia {
  background: #e0a434;
  border-color: #111;
  color: #111;
}

.accessibility-btn.accessibility-dark {
  background: #111815;
  border-color: #111;
  color: #f4fff8;
}
