:root {
  --ink: #071b1a;
  --ink-soft: #25403d;
  --muted: #6a7c79;
  --green: #073d39;
  --green-soft: #e8f0ee;
  --gold: #b58a3b;
  --white: #ffffff;
  --canvas: #f6f8f7;
  --line: #e3e9e7;
  --line-strong: #d4ddda;
  --positive: #20765f;
  --radius-large: 36px;
  --radius-medium: 22px;
  --radius-small: 14px;
  --shadow-window: 0 30px 80px rgba(7, 27, 26, 0.1), 0 4px 16px rgba(7, 27, 26, 0.05);
  --shell: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI Variable", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "Concept preview";
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  padding: 8px 12px;
  border: 1px solid rgba(7, 27, 26, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(16px);
}

body.about-page::before,
body.privacy-page::before {
  display: none;
}

a {
  color: inherit;
}

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

img,
svg {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(240px, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  width: min(var(--shell), calc(100% - 28px));
  min-height: 72px;
  margin: 14px auto 0;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(212, 221, 218, 0.82);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 48px rgba(7, 27, 26, 0.07);
  backdrop-filter: blur(24px) saturate(150%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 13px;
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.site-header nav a {
  position: relative;
  padding: 12px 15px;
  color: #526461;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.site-header nav a.active {
  color: var(--ink);
}

.site-header nav a.active::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
}

.language-picker {
  position: relative;
  z-index: 2;
  justify-self: end;
}

.language-toggle {
  display: inline-flex;
  min-width: 78px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  transition: color 160ms ease, transform 160ms ease;
}

.language-toggle:hover,
.language-toggle[aria-expanded="true"] {
  color: var(--gold);
}

.language-toggle:hover {
  transform: translateY(-1px);
}

.language-toggle svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.language-toggle .language-chevron {
  width: 13px;
  height: 13px;
  color: var(--muted);
  transition: transform 160ms ease;
}

.language-toggle[aria-expanded="true"] .language-chevron {
  transform: rotate(180deg);
}

.language-toggle strong {
  font-size: 12px;
  letter-spacing: 0.05em;
}

.language-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 168px;
  overflow: hidden;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 55px rgba(7, 27, 26, 0.14);
  backdrop-filter: blur(18px);
}

.language-menu button {
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 11px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: start;
}

.language-menu button:hover,
.language-menu button[aria-current="true"] {
  background: var(--canvas);
}

.language-menu button span {
  font-size: 13px;
  font-weight: 720;
}

.language-menu button small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.header-action,
.closing > a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 19px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.header-action:hover,
.closing > a:hover {
  background: var(--green);
  transform: translateY(-1px);
}

.header-action svg,
.closing > a svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.menu-toggle {
  display: none;
}

.mobile-navigation {
  position: fixed;
  top: 94px;
  right: 14px;
  left: 14px;
  z-index: 29;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-window);
  backdrop-filter: blur(24px);
}

.mobile-navigation a {
  display: block;
  padding: 15px;
  border-radius: 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  display: flex;
  min-height: calc(100vh - 100px);
  align-items: center;
  padding: 118px 0 104px;
}

.hero-copy {
  width: 100%;
}

.hero h1 {
  margin: 0;
  max-width: 1140px;
  font-size: clamp(74px, 9.2vw, 136px);
  font-weight: 760;
  line-height: 0.91;
  letter-spacing: -0.07em;
}

.hero-support {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(560px, 1.2fr);
  gap: 92px;
  align-items: start;
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.hero-support > p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.origin-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin: 0;
  padding: 0;
}

.origin-facts div {
  padding: 0;
}

.origin-facts dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.origin-facts dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
}

.story,
.paths-shell {
  position: relative;
  padding-top: 138px;
  padding-bottom: 138px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.58fr);
  gap: 72px;
  align-items: end;
  margin-top: 0;
}

.section-heading h2,
.closing h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 740;
  line-height: 1;
  letter-spacing: -0.06em;
}

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

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.58fr);
  gap: 90px;
  align-items: start;
  margin-top: 100px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.story blockquote {
  margin: 0;
  color: var(--green);
  font-size: clamp(28px, 3.3vw, 47px);
  font-weight: 680;
  line-height: 1.22;
  letter-spacing: -0.04em;
}

.story-copy {
  display: grid;
  gap: 22px;
}

.story-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.paths-section {
  background: var(--canvas);
}

.trust-section {
  padding-top: 138px;
  padding-bottom: 138px;
}

.trust-list {
  margin-top: 92px;
  border-top: 1px solid var(--line-strong);
}

.trust-list article {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 70px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line-strong);
}

.trust-label {
  margin: 5px 0 0;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.trust-list h3 {
  margin: 0;
  font-size: clamp(23px, 2.25vw, 34px);
  font-weight: 720;
  letter-spacing: -0.04em;
}

.trust-list article > div > p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.trust-list article > div > a,
.policy-sections a,
.footer-links a {
  color: var(--green);
  font-weight: 750;
  text-underline-offset: 4px;
}

.trust-list article > div > a {
  display: inline-block;
  margin-top: 18px;
  font-size: 13px;
}

.early-collaboration {
  background: linear-gradient(90deg, transparent, rgba(232, 240, 238, 0.46), transparent);
}

.path-list {
  display: grid;
  margin-top: 92px;
  border-top: 1px solid var(--line-strong);
}

.path-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  min-height: 190px;
  border-bottom: 1px solid var(--line-strong);
}

.path-list h3 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.path-list p {
  max-width: 650px;
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.path-list svg {
  width: 28px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.closing {
  display: grid;
  justify-items: center;
  padding-top: 150px;
  padding-bottom: 150px;
  text-align: center;
}

.closing > img {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(7, 27, 26, 0.12);
}

.closing h2 {
  margin-top: 34px;
}

.closing > p {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.closing > a {
  margin-top: 38px;
  padding-inline: 24px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 112px;
  border-top: 1px solid var(--line);
}

.site-footer p,
.site-footer > span {
  color: var(--muted);
  font-size: 12px;
}

.site-footer p {
  justify-self: center;
}

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

.footer-links a {
  font-size: 11px;
  text-decoration: none;
}

.policy {
  padding-top: 126px;
  padding-bottom: 130px;
}

.policy-hero {
  max-width: 920px;
  padding-bottom: 76px;
}

.policy-hero h1 {
  margin: 0;
  font-size: clamp(62px, 9vw, 118px);
  font-weight: 760;
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.policy-hero p {
  max-width: 720px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.policy-hero small {
  display: block;
  margin-top: 22px;
  color: var(--muted);
  font-size: 12px;
}

.policy-sections {
  border-top: 1px solid var(--line-strong);
}

.policy-sections section {
  display: grid;
  grid-template-columns: minmax(240px, 0.54fr) minmax(0, 1fr);
  gap: 80px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line-strong);
}

.policy-sections h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.policy-sections p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

.policy-sections a {
  align-self: start;
  justify-self: start;
  margin-top: 14px;
}

html[dir="rtl"] .header-action svg,
html[dir="rtl"] .closing svg,
html[dir="rtl"] .path-list svg {
  transform: scaleX(-1);
}

html[dir="rtl"] .trust-label {
  letter-spacing: 0;
  text-transform: none;
}

html[dir="rtl"] .footer-links {
  justify-content: flex-start;
}

@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy {
  animation: enter 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (max-width: 1080px) {
  .site-header nav,
  .header-action {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    place-content: center;
    gap: 6px;
    border: 0;
    border-radius: 14px;
    background: var(--canvas);
  }

  .menu-toggle > span:not(.sr-only) {
    width: 19px;
    height: 1px;
    background: var(--ink);
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: none;
  }

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

  .section-heading,
  .story-layout,
  .policy-sections section {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .story-layout {
    margin-top: 68px;
  }

  .trust-list article {
    grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
    gap: 48px;
  }
}

@media (max-width: 720px) {
  body::before {
    right: 10px;
    bottom: 10px;
  }

  .shell {
    width: min(100% - 32px, var(--shell));
  }

  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    min-height: 64px;
    margin-top: 8px;
    padding: 8px 9px 8px 11px;
    border-radius: 20px;
  }

  .brand img {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .hero {
    padding: 68px 0 74px;
  }

  .hero h1 {
    font-size: 49px;
  }

  .hero-support > p {
    font-size: 16px;
  }

  .origin-facts {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .origin-facts div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 14px;
  }

  .origin-facts dd {
    margin: 0;
  }

  .story,
  .paths-shell,
  .trust-section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .section-heading h2,
  .closing h2 {
    font-size: 46px;
  }

  .section-heading p {
    font-size: 15px;
  }

  .story-layout {
    margin-top: 54px;
    padding-top: 30px;
  }

  .story blockquote {
    font-size: 30px;
  }

  .path-list {
    margin-top: 56px;
  }

  .path-list article {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    padding: 28px 0;
  }

  .path-list svg {
    display: none;
  }

  .path-list h3 {
    font-size: 23px;
  }

  .closing {
    padding-top: 104px;
    padding-bottom: 104px;
  }

  .trust-list {
    margin-top: 56px;
  }

  .trust-list article {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 30px 0;
  }

  .trust-label {
    margin: 0;
  }

  .policy {
    padding-top: 84px;
    padding-bottom: 90px;
  }

  .policy-hero {
    padding-bottom: 50px;
  }

  .policy-hero h1 {
    font-size: 54px;
  }

  .policy-hero p {
    font-size: 16px;
  }

  .policy-sections section {
    gap: 16px;
    padding: 30px 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: start;
    padding: 30px 0 46px;
  }

  .site-footer p {
    justify-self: start;
    margin: 0;
  }

  .footer-links,
  html[dir="rtl"] .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
