:root {
  color-scheme: dark;
  --bg: #04100d;
  --bg-2: #081713;
  --panel: #0b1b17;
  --panel-2: #10251e;
  --line: #1f4c3f;
  --line-strong: #2b755d;
  --text: #f4fff9;
  --muted: #9dc7b8;
  --soft: #d8fff0;
  --green: #00d47e;
  --green-2: #2dffb4;
  --cyan: #49e9ff;
  --amber: #ffcc66;
  --danger: #ff6f6f;
  --shadow: 0 24px 70px rgba(0, 16, 10, .48);
  --radius: 8px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(0, 212, 126, .08), transparent 340px),
    radial-gradient(circle at 15% 0%, rgba(73, 233, 255, .11), transparent 310px),
    linear-gradient(180deg, #06120f 0%, var(--bg) 48%, #020705 100%);
  color: var(--text);
  font-family: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(45, 255, 180, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 255, 180, .05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.86), transparent 88%);
}

body::after {
  content: "";
  position: fixed;
  inset: auto 0 0;
  height: 38vh;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(0, 212, 126, .07));
  pointer-events: none;
}

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

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

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

.skip-link {
  position: fixed;
  inset-inline-start: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-130%);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  padding: 10px 14px;
  transition: transform .2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(45, 255, 180, .14);
  background: rgba(4, 16, 13, .84);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-inline-start: auto;
}

.main-nav a {
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 700;
  padding: 9px 12px;
  transition: color .18s ease, background .18s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(45, 255, 180, .08);
  color: var(--soft);
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language {
  position: relative;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  border: 1px solid rgba(45, 255, 180, .22);
  border-radius: var(--radius);
  background: rgba(11, 27, 23, .92);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 0 12px;
  transition: border-color .18s ease, background .18s ease;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  border-color: rgba(45, 255, 180, .66);
  background: rgba(16, 37, 30, .98);
  outline: none;
}

.language-code {
  display: inline-grid;
  place-items: center;
  min-width: 32px;
  height: 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(0, 212, 126, .2), rgba(73, 233, 255, .14));
  color: var(--green-2);
  font-size: .78rem;
  text-transform: uppercase;
}

.language-caret {
  width: 9px;
  height: 9px;
  border-inline-end: 2px solid currentColor;
  border-block-end: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .8;
}

.language-panel {
  position: absolute;
  inset-inline-end: 0;
  top: calc(100% + 10px);
  width: min(520px, calc(100vw - 32px));
  max-height: 70vh;
  overflow: auto;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  border: 1px solid rgba(45, 255, 180, .18);
  border-radius: var(--radius);
  background: rgba(5, 14, 12, .98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.language.is-open .language-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--muted);
  padding: 8px 10px;
}

.language-option:hover,
.language-option:focus-visible,
.language-option[aria-current="true"] {
  border-color: rgba(45, 255, 180, .25);
  background: rgba(0, 212, 126, .08);
  color: var(--text);
  outline: none;
}

.language-option small {
  color: var(--green-2);
  font-weight: 900;
  text-transform: uppercase;
}

.primary-mini {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--green);
  color: #03110c;
  font-weight: 900;
  padding: 0 14px;
  box-shadow: 0 10px 28px rgba(0, 212, 126, .22);
}

.primary-mini:hover,
.primary-mini:focus-visible {
  background: var(--green-2);
  outline: none;
}

main {
  overflow: hidden;
}

.section,
.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 44px;
  padding: 54px 0 42px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-2);
  font-size: .78rem;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

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

h1 {
  max-width: 760px;
  margin-block-end: 20px;
  color: var(--text);
  font-size: 4.25rem;
  line-height: .98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h2 {
  margin-block-end: 14px;
  color: var(--text);
  font-size: 2.55rem;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h3 {
  margin-block-end: 8px;
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.lead {
  max-width: 650px;
  color: var(--soft);
  font-size: 1.16rem;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.mentor-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 620px;
  margin: 24px 0 28px;
  border: 1px solid rgba(45, 255, 180, .18);
  border-radius: var(--radius);
  background: rgba(11, 27, 23, .74);
  padding: 13px 15px;
  color: var(--muted);
}

.mentor-avatar {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green-2), var(--green));
  color: #06120e;
  font-weight: 1000;
}

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

.cta-card {
  position: relative;
  min-width: 0;
  min-height: 128px;
  display: grid;
  align-content: space-between;
  gap: 14px;
  border: 1px solid rgba(45, 255, 180, .2);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(17, 39, 32, .92), rgba(7, 18, 15, .94));
  padding: 16px;
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.cta-card::after {
  content: "";
  position: absolute;
  inset-inline: 16px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--amber));
  opacity: .8;
}

.cta-card:hover,
.cta-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(45, 255, 180, .55);
  background: linear-gradient(180deg, rgba(20, 50, 40, .96), rgba(7, 18, 15, .96));
  outline: none;
}

.cta-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text);
  font-weight: 950;
  line-height: 1.18;
  overflow-wrap: normal;
}

.cta-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(0, 212, 126, .12);
  color: var(--green-2);
}

.cta-icon svg {
  width: 19px;
  height: 19px;
}

.cta-card p {
  margin: 0;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.48;
  overflow-wrap: anywhere;
}

.micro-risk {
  margin: 18px 0 0;
  color: #80ad9d;
  font-size: .88rem;
}

.hero-art {
  position: relative;
  min-width: 0;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 7% 8% 10%;
  z-index: -1;
  border: 1px solid rgba(73, 233, 255, .13);
  transform: rotate(-2deg);
}

.hero-art img {
  width: 100%;
  filter: saturate(1.08);
}

.ticker {
  border-block: 1px solid rgba(45, 255, 180, .14);
  background: rgba(4, 16, 13, .72);
}

.ticker-track {
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 auto;
  overflow: auto;
  scrollbar-width: none;
}

.ticker-track::-webkit-scrollbar {
  display: none;
}

.ticker-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  border: 1px solid rgba(45, 255, 180, .16);
  border-radius: var(--radius);
  background: rgba(11, 27, 23, .72);
  color: var(--soft);
  padding: 0 12px;
  font-weight: 800;
}

.ticker-item span {
  color: var(--green-2);
}

.section {
  padding: 92px 0;
}

.section-head {
  max-width: 760px;
  margin-block-end: 34px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.06rem;
  overflow-wrap: anywhere;
}

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

.feature-card {
  min-height: 245px;
  border: 1px solid rgba(45, 255, 180, .16);
  border-radius: var(--radius);
  background: rgba(8, 23, 19, .78);
  padding: 22px;
}

.feature-card strong {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-block-end: 28px;
  border-radius: 8px;
  background: rgba(0, 212, 126, .12);
  color: var(--green-2);
  font-size: .94rem;
}

.feature-card p {
  color: var(--muted);
  margin: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: 42px;
  align-items: center;
}

.image-panel {
  border: 1px solid rgba(45, 255, 180, .16);
  border-radius: var(--radius);
  background: rgba(8, 23, 19, .56);
  overflow: hidden;
}

.checklist {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border: 1px solid rgba(45, 255, 180, .14);
  border-radius: var(--radius);
  background: rgba(8, 23, 19, .74);
  padding: 15px;
}

.checklist b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 212, 126, .22), rgba(73, 233, 255, .12));
  color: var(--green-2);
}

.checklist strong {
  display: block;
  margin-block-end: 4px;
  color: var(--text);
}

.checklist span {
  color: var(--muted);
}

.app-band {
  border-block: 1px solid rgba(45, 255, 180, .14);
  background:
    linear-gradient(90deg, rgba(0, 212, 126, .08), transparent 44%),
    rgba(4, 16, 13, .74);
}

.app-grid {
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr);
  gap: 42px;
  align-items: center;
  margin: 0 auto;
  padding: 72px 0;
}

.app-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.06rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-block-start: 24px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  border: 1px solid rgba(45, 255, 180, .2);
  padding: 0 18px;
  font-weight: 950;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

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

.button-primary {
  background: var(--green);
  color: #03110c;
  border-color: transparent;
  box-shadow: 0 14px 32px rgba(0, 212, 126, .2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-2);
}

.button-ghost {
  background: rgba(10, 28, 23, .82);
  color: var(--soft);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(73, 233, 255, .42);
  background: rgba(16, 37, 30, .92);
}

.seo-block {
  border: 1px solid rgba(45, 255, 180, .14);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(8, 23, 19, .82), rgba(5, 14, 12, .84));
  padding: 30px;
}

.seo-block p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.faq-item {
  border: 1px solid rgba(45, 255, 180, .14);
  border-radius: var(--radius);
  background: rgba(8, 23, 19, .76);
  padding: 22px;
}

.faq-item p {
  color: var(--muted);
  margin: 0;
}

.risk {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 40px;
  border: 1px solid rgba(255, 204, 102, .22);
  border-radius: var(--radius);
  background: rgba(40, 30, 12, .28);
  padding: 20px;
}

.risk strong {
  display: block;
  margin-block-end: 4px;
  color: var(--amber);
}

.risk p {
  margin: 0;
  color: #dfcfa9;
}

.blog-hero,
.article {
  width: calc(100% - 32px);
  max-width: 920px;
  min-width: 0;
  margin: 0 auto;
}

.blog-hero > *,
.article > * {
  max-width: 100%;
}

.blog-hero {
  padding: 86px 0 42px;
}

.blog-hero h1,
.article h1 {
  max-width: 920px;
  font-size: 3.35rem;
  line-height: 1.06;
  overflow-wrap: anywhere;
}

.blog-list {
  display: grid;
  gap: 14px;
}

.blog-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(45, 255, 180, .16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(8, 23, 19, .84), rgba(5, 14, 12, .86));
  padding: 22px;
}

.blog-card h2 {
  margin-block-end: 8px;
  font-size: 1.45rem;
  line-height: 1.2;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
}

.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-block: 20px 4px;
}

.category-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(45, 255, 180, .18);
  border-radius: var(--radius);
  background: rgba(8, 23, 19, .7);
  color: var(--soft);
  font-size: .9rem;
  font-weight: 850;
  padding: 0 11px;
}

.blog-meta {
  margin-block-end: 10px;
  color: var(--green-2);
  font-size: .86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-read {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(45, 255, 180, .22);
  border-radius: var(--radius);
  color: var(--soft);
  font-weight: 900;
  padding: 0 14px;
}

.blog-read:hover,
.blog-read:focus-visible {
  border-color: rgba(45, 255, 180, .7);
  background: rgba(0, 212, 126, .1);
  outline: none;
}

.article {
  padding: 70px 0 92px;
}

.article > section {
  margin-block-start: 36px;
}

.article h2 {
  margin-block-end: 10px;
  font-size: 1.75rem;
  overflow-wrap: anywhere;
}

.article p,
.article li {
  color: var(--soft);
  font-size: 1.07rem;
  overflow-wrap: anywhere;
}

.article-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-block-start: 24px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-block-end: 24px;
  color: var(--muted);
  font-size: .92rem;
}

.breadcrumbs a {
  color: var(--green-2);
  font-weight: 800;
}

.takeaways,
.article-next {
  border: 1px solid rgba(45, 255, 180, .16);
  border-radius: var(--radius);
  background: rgba(8, 23, 19, .78);
  padding: 24px;
}

.takeaways ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-inline-start: 22px;
}

.site-footer {
  border-top: 1px solid rgba(45, 255, 180, .14);
  background: #020705;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 28px 0;
  color: #7aa592;
  font-size: .92rem;
}

.footer-inner a {
  color: var(--green-2);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.scroll-top {
  position: fixed;
  inset-inline-end: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(45, 255, 180, .4);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(45, 255, 180, .24), rgba(73, 233, 255, .1)),
    rgba(5, 14, 12, .92);
  color: var(--green-2);
  box-shadow: 0 18px 46px rgba(0, 16, 10, .52), inset 0 1px 0 rgba(255, 255, 255, .12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease, border-color .2s ease, background .2s ease;
  backdrop-filter: blur(14px);
}

.scroll-top svg {
  width: 24px;
  height: 24px;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover,
.scroll-top:focus-visible {
  border-color: rgba(45, 255, 180, .9);
  background:
    linear-gradient(145deg, rgba(45, 255, 180, .36), rgba(73, 233, 255, .18)),
    rgba(7, 21, 17, .96);
  outline: none;
}

[dir="rtl"] .language-caret {
  transform: rotate(45deg) translateY(-2px);
}

[dir="rtl"] .hero-art::before {
  transform: rotate(2deg);
}

@media (max-width: 1040px) {
  .hero,
  .split-section,
  .app-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-art {
    max-width: 760px;
    margin: 0 auto;
  }

  .main-nav {
    display: none;
  }
}

@media (max-width: 820px) {
  h1 {
    font-size: 3rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 2.05rem;
  }

  .brand img {
    width: 96px;
  }

  .cta-grid,
  .feature-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 70px;
  }

  body {
    font-size: 15px;
  }

  .header-inner,
  .section,
  .hero,
  .ticker-track,
  .app-grid,
  .risk,
  .footer-inner {
    width: min(calc(100% - 24px), 1180px);
  }

  .header-actions {
    gap: 8px;
  }

  .primary-mini {
    display: none;
  }

  .language-toggle {
    padding: 0 9px;
  }

  .language-name {
    display: none;
  }

  .language-panel {
    grid-template-columns: 1fr;
    inset-inline-end: -4px;
  }

  .hero {
    padding: 34px 0 30px;
    gap: 28px;
  }

  h1 {
    font-size: 2rem;
    line-height: 1.12;
  }

  h2 {
    font-size: 1.72rem;
  }

  .lead {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-copy,
  .mentor-chip,
  .cta-grid,
  .cta-card {
    max-width: 100%;
  }

  .mentor-chip {
    align-items: flex-start;
  }

  .section {
    padding: 66px 0;
  }

  .app-grid {
    padding: 58px 0;
  }

  .seo-block {
    padding: 22px;
  }

  .footer-inner {
    flex-direction: column;
  }

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

  .blog-hero,
  .article {
    width: calc(100% - 24px);
    max-width: 920px;
  }

  .blog-hero > *,
  .article > * {
    max-width: calc(100vw - 24px);
  }

  .blog-hero {
    padding-top: 56px;
  }

  .blog-hero h1,
  .article h1 {
    font-size: 2.08rem;
  }

  .blog-card {
    grid-template-columns: 1fr;
  }

  .blog-read {
    width: 100%;
  }

  .scroll-top {
    inset-inline-end: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
