
@font-face{
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/PlusJakartaSans-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/PlusJakartaSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/PlusJakartaSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/PlusJakartaSans-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face{
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/PlusJakartaSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/PlusJakartaSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/PlusJakartaSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/PlusJakartaSans-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root{
  --xmr-orange: #f26822;
  --xmr-graphite: #4c4c4c;

  --bg: #f7f6f4;
  --panel: #ffffff;
  --ink: #121314;

  --muted: rgba(18, 19, 20, 0.72);
  --muted2: rgba(18, 19, 20, 0.58);

  --line: rgba(18, 19, 20, 0.12);
  --line2: rgba(18, 19, 20, 0.16);

  --shadow2: 0 10px 26px rgba(18, 19, 20, 0.10);

  --r-btn: 4px;
  --r-ui: 6px;
  --r-card: 10px;

  --container: 1160px;

  --font: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  --font-display: "Space Grotesk", "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;

  --pos: #16a34a;
  --neg: #dc2626;

  --header-h: 78px;
  --header-offset: calc(var(--header-h) + 12px);
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a{ color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible{
  outline: 2px solid rgba(255, 102, 0, 0.70);
  outline-offset: 2px;
  border-radius: var(--r-btn);
}

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

.container{
  width: min(var(--container), calc(100% - 2 * clamp(16px, 4vw, 28px)));
  margin-inline: auto;
}

h1, h2, h3, .brand-name{
  font-family: var(--font-display);
}

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

.skip-link{
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--panel);
  border: 1px solid var(--line2);
  padding: 10px 12px;
  border-radius: var(--r-ui);
  box-shadow: var(--shadow2);
  z-index: 9999;
}
.skip-link:focus{ left: 12px; }

section[id], .docs-section, .policy-section{
  scroll-margin-top: var(--header-offset);
}


.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: var(--r-btn);
  border: 1px solid transparent;
  font-weight: 550;
  letter-spacing: 0.15px;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  user-select: none;
  white-space: nowrap;
}
.btn:active{ transform: translateY(0px); }

.btn-primary{
  color: #fff;
  background: var(--xmr-orange);
  box-shadow: 0 14px 34px rgba(255, 102, 0, 0.10);
}
.btn-primary:hover{
  background: #e85d00;
  box-shadow: 0 18px 42px rgba(255, 102, 0, 0.24);
}

.btn-secondary{
  background: rgba(255,255,255,0.74);
  box-shadow: var(--shadow2);
}
.btn-secondary:hover{ background: rgba(255,255,255,0.88); }

.btn-xl{
  padding: 18px 26px;
  font-size: 18px;
}


.hero{
  position: relative;
  overflow: clip;
  background: var(--bg);
  min-height: 520px;
  padding-top: clamp(30px, 4vw, 70px);
  padding-bottom: clamp(46px, 7vw, 92px);
}

.hero-media{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("/assets/hero-bg2.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  filter: saturate(1.05) contrast(1.03);
}


.hero-grid{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  padding-top: calc(var(--header-h) + clamp(18px, 3vw, 24px));
}

.hero-copy{
  max-width: 1040px;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.eyebrow{
  margin: 0 0 25px 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(18, 19, 20, 0.72);
  font-size: 15px;
  font-weight: 650;
}

.eyebrow-accent{
  width: 26px;
  height: 2px;
  background: var(--xmr-orange);
  border-radius: 2px;
  transform: translateY(1px);
}

.eyebrow-strong{
  color: rgba(18, 19, 20, 0.62);
  font-weight: 650;
}

.eyebrow-muted{
  color: rgba(18, 19, 20, 0.62);
  font-weight: 650;
}

.eyebrow-sep{
  color: rgba(18, 19, 20, 0.38);
  font-weight: 800;
}


h1{
  margin: 0;
  font-size: clamp(52px, 7vw, 86px);
  letter-spacing: -0.06em;
  line-height: 0.82;
  color: rgba(18, 19, 20, 0.92);
}
.accent{ color: var(--xmr-orange); }

.lead{
  margin: 28px 0 0 0;
  font-size: clamp(20px, 2.0vw, 26px);
  font-weight: 400;
  color: rgba(18, 19, 20, 0.74);
  max-width: 74ch;
  line-height: 1.3;
}

.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 25px;
  justify-content: center;
}

.microcopy{
  margin-top: 18px;
  font-size: 14px;
  font-weight: 650;
  color: rgba(18, 19, 20, 0.58);
  max-width: 86ch;
}
.microcopy__label{
  font-weight: 800;
  color: rgba(18, 19, 20, 0.70);
}


.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled{
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(18, 19, 20, 0.10);
}

.header-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 14px;
  padding-block: 10px;
}

.header-left{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  flex-wrap: wrap;
}

.header-right{
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

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

.brand-icon{
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: var(--r-ui);
}

.brand-text{ display: grid; line-height: 1.0; }

.price-ticker{
  display: inline-flex;
  align-items: baseline;
  flex-shrink: 0;
  gap: 5px;
  backdrop-filter: blur(10px);
  padding: 9px 10px;
  border-radius: var(--r-ui);
  background: rgba(255,255,255,0.44);
  border: 1px solid rgba(18, 19, 20, 0.09);
  box-shadow: 0 5px 18px rgba(18, 19, 20, 0.04);
  white-space: nowrap;
  font-size: 17px;
}

.price-ticker__label{ font-weight: 700; letter-spacing: 0.2px; }
.price-ticker__value{ font-weight: 700; color: rgba(18, 19, 20, 0.86); }
.price-ticker__change{
  font-weight: 800;
  font-size: 13px;
  color: rgba(18, 19, 20, 0.55);
}
.price-ticker__change.is-up{ color: var(--pos); }
.price-ticker__change.is-down{ color: var(--neg); }


.site-nav{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 0px;
  padding: 4.7px 4.7px;
  border-radius: var(--r-ui);

  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: background .14s ease, border-color .14s ease, box-shadow .14s ease;
}

.site-header.scrolled .site-nav{
  background: rgba(255,255,255,0.74);
  border-color: rgba(18, 19, 20, 0.08);
  box-shadow: 0 5px 22px rgba(18, 19, 20, 0.04);
}

.site-nav a{
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: rgba(18, 19, 20, 0.78);
  padding: 10px 24px;
  border-radius: var(--r-btn);
  transition: background .12s ease, color .12s ease;
  white-space: nowrap; 
}


.site-nav a + a::before{
  content:"";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: rgba(18, 19, 20, 0.14);
  opacity: 0.55;
  pointer-events: none;
  transition: opacity .14s ease;
}


.site-header.scrolled .site-nav a + a::before{
  opacity: 0.9;
}

.site-nav a:hover{
  background: rgba(18, 19, 20, 0.06);
  color: rgba(18, 19, 20, 0.92);
}


.nav-toggle{
  display: none;
  border: 1px solid var(--line2);
  background: rgba(255,255,255,0.72);
  border-radius: var(--r-btn);
  padding: 10px 12px;
  box-shadow: var(--shadow2);
}
.nav-toggle__icon{
  width: 18px;
  height: 12px;
  display: inline-block;
  position: relative;
  background: rgba(18, 19, 20, 0.82);
  border-radius: 999px;
}
.nav-toggle__icon::before,
.nav-toggle__icon::after{
  content:"";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(18, 19, 20, 0.82);
  border-radius: 999px;
}
.nav-toggle__icon::before{ top: 0; }
.nav-toggle__icon::after{ bottom: 0; }


.features{
  padding: clamp(56px, 6vw, 96px) 0;
  background: var(--bg);
}

.features-head{
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.features-head h2{
  margin: 0;
  font-size: clamp(34px, 4.2vw, 48px);
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: rgba(18, 19, 20, 0.92);
}

.features-sub{
  margin: 14px auto 0;
  max-width: 72ch;
  font-size: 18px;
  line-height: 1.45;
  color: rgba(18, 19, 20, 0.68);
}

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

.feature-card{
  position: relative;
  padding: 18px 18px 18px 18px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(18, 19, 20, 0.08);
  border-radius: var(--r-card);
  box-shadow: 0 12px 28px rgba(18, 19, 20, 0.08);
  overflow: hidden;
}


.feature-card::before{
  content:"";
  position: absolute;
  left: -38px;
  top: -38px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  border: 2px solid rgba(255, 102, 0, 0.16);
}

.feature-card::after{
  content:"";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  border: 2px solid rgba(18, 19, 20, 0.06);
}

.feature-kicker{
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(18, 19, 20, 0.58);
}

.feature-title{
  margin: 10px 0 0 0;
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: rgba(18, 19, 20, 0.90);
}

.feature-text{
  margin: 10px 0 0 0;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(18, 19, 20, 0.66);
}


.placeholder-section{ height: 1px; }


@media (max-width: 1180px){
  :root{ --header-h: 84px; }

  .header-inner{
    position: static;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "left right"
      "nav nav";
    align-items: center;
    gap: 10px 14px;
  }

  .header-left{ grid-area: left; }
  .header-right{ grid-area: right; }

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

  .site-nav{
    position: static;
    transform: none;
    grid-area: nav;
    justify-self: stretch;

    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line2);
    background: rgba(255,255,255,0.88);
    border-radius: var(--r-card);
    box-shadow: var(--shadow2);
    max-height: 0;
    overflow: hidden;
    transition: max-height .18s ease;
    backdrop-filter: blur(10px);
  }

  .site-nav a{ width: 100%; padding: 12px 10px; }
  .site-nav a + a::before{ display: none; }
  .site-nav.is-open{ max-height: 280px; }

  .feature-grid{
    grid-template-columns: 1fr;
    width: min(820px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .eyebrow{
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 8px;
  }
}

@media (max-width: 520px){
  .btn-xl{ width: 100%; }
  .hero-actions{ width: 100%; }
}


.privacy{
  padding: clamp(50px, 7vw, 42px) 0;
  background: var(--bg);
}


.sec-head{
  text-align: left;
  max-width: 980px;
}

.sec-kicker{
  margin: 0 0 10px 0;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(18, 19, 20, 0.58);
}

.sec-title{
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 52px);
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: rgba(18, 19, 20, 0.92);
}

.sec-lead{
  margin: 14px 0 0 0;
  max-width: 78ch;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(18, 19, 20, 0.68);
}


.accent-mark{
  display: inline;
  padding: 0 0.06em;
  background: linear-gradient(180deg, transparent 62%, rgba(255, 102, 0, 0.18) 0);
  border-radius: 4px;
}


.privacy-split{
  margin-top: clamp(18px, 2.5vw, 28px);
  display: grid;
  grid-template-columns: minmax(360px, 1.0fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 36px);
  align-items: stretch;
}


.privacy-media{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
}

.privacy-img{
  width: min(840px, 100%);
  height: auto;
  transform: scale(1.05);
  border-radius: var(--r-card);
}


.privacy-body{ padding-top: 2px; }

.privacy-mini{
  font-weight: 850;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(18, 19, 20, 0.56);
  position: relative;
  padding-left: 14px;
  margin: 6px 0 12px;
}

.privacy-mini::before{
  content:"";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 102, 0, 0.85);
}

.privacy-list{
  
}

.privacy-item{
  padding: 18px 0;
  border-bottom: 1px solid rgba(18, 19, 20, 0.10);
}

.privacy-h{
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: rgba(18, 19, 20, 0.92);
}

.privacy-p{
  margin: 8px 0 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(18, 19, 20, 0.62);
  max-width: 72ch;
}


.privacy-g{
  margin: 12px 0 0 0;
  padding: 10px 12px;
  border-left: 2px solid rgba(255, 102, 0, 0.70);
  background: rgba(255,255,255,0.55);
  border-radius: 0 var(--r-ui) var(--r-ui) 0;

  font-size: 15px;
  line-height: 1.55;
  color: rgba(18, 19, 20, 0.80);
}


.privacy-foot{
  margin-top: 10px;
  padding-top: 14px;
}

.privacy-trust{
  font-weight: 850;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: rgba(18, 19, 20, 0.72);
}

.privacy-note{
  margin-top: 6px;
  font-size: 13px;
  color: rgba(18, 19, 20, 0.56);
}


@media (max-width: 980px){
  .privacy-split{
    grid-template-columns: 1fr;
  }
  .privacy-media{
    min-height: 260px;
  }
  .privacy-img{
    width: min(560px, 100%);
  }
}


.sec-title{
  font-size: clamp(44px, 4.0vw, 57px);
  line-height: 1.00;
  letter-spacing: -0.05em;
}

.sec-lead{
  font-size: 20px;
  line-height: 1.55;
  max-width: 82ch;
}


.privacy-mini{
  font-size: 13.5px;
  letter-spacing: 0.16em;
  margin: 10px 0 0px;
}


.privacy-item{
  padding: 22px 0;
}

.privacy-h{
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.privacy-p{
  font-size: 18px;
  line-height: 1.6;
  margin-top: 10px;
  max-width: 76ch;
}


.privacy-g{
  font-size: 17px;
  line-height: 1.6;
  padding: 12px 14px;
  margin-top: 14px;
  border-left-width: 3px;
}


.privacy-trust{
  font-size: 15px;
}

.privacy-note{
  font-size: 14px;
}


.privacy-foot{
  margin-top: 10px;
  padding-top: 18px;
}


.control-editorial{
  padding: 50px 0 20px;
  background: var(--bg);
}


.control-editorial__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(18, 19, 20, 0.10);
  border-bottom: 1px solid rgba(18, 19, 20, 0.10);
}

.ce{
  padding: 22px 18px 22px;
  min-height: 260px;
}


@media (min-width: 1181px){
  .control-editorial__grid > .ce{ border-left: 1px solid rgba(18, 19, 20, 0.10); }
  .control-editorial__grid > .ce:first-child{ border-left: 0; }
}


.ce__tag{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(18, 19, 20, 0.56);
}

.ce__tag::before{
  content:"";
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 102, 0, 0.85);
  transform: translateY(1px);
}


.ce__title{
  margin: 14px 0 0 0;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: rgba(18, 19, 20, 0.92);
}


.ce__text{
  margin: 14px 0 0 0;
  font-size: 16px;
  line-height: 1.68;
  color: rgba(18, 19, 20, 0.70);
}


.ce__sub{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(18, 19, 20, 0.10);
}

.ce__subk{
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(18, 19, 20, 0.56);
}

.ce__modes{
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: -0.01em;
  color: rgba(18, 19, 20, 0.84);
}

.ce__sep{
  color: rgba(18, 19, 20, 0.34);
  padding: 0 6px;
}

.ce__note{
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(18, 19, 20, 0.58);
}


.ce-claim{
  padding-top: 18px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: rgba(18, 19, 20, 0.76);
  text-align: left;
}


@media (max-width: 1180px){
  .control-editorial__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .control-editorial__grid > .ce{
    border-left: 1px solid rgba(18, 19, 20, 0.10);
    border-top: 1px solid rgba(18, 19, 20, 0.10);
  }
  .control-editorial__grid > .ce:nth-child(odd){ border-left: 0; }
  .control-editorial__grid > .ce:nth-child(-n+2){ border-top: 0; }
}


@media (max-width: 640px){
  .control-editorial__grid{
    grid-template-columns: 1fr;
  }
  .control-editorial__grid > .ce{
    border-left: 0;
    border-top: 1px solid rgba(18, 19, 20, 0.10);
    min-height: auto;
  }
  .control-editorial__grid > .ce:first-child{ border-top: 0; }
}


.control-editorial__grid{
  
  border-top: 1px solid rgba(18, 19, 20, 0.12);
  border-bottom: 1px solid rgba(18, 19, 20, 0.12);
}

.ce{
  padding: 28px 22px 30px;
  min-height: 300px;
}


@media (min-width: 1181px){
  .control-editorial__grid > .ce{ border-left-color: rgba(18, 19, 20, 0.12); }
}

.ce__tag{
  font-size: 13px;
  letter-spacing: 0.17em;
}

.ce__tag::before{
  width: 18px;
  height: 2px;
}


.ce__title{
  font-size: 32px;
  letter-spacing: -0.035em;
  margin-top: 16px;
}


.ce__text{
  font-size: 17px;
  line-height: 1.72;
  margin-top: 16px;
}


.ce__sub{
  margin-top: 18px;
  padding-top: 16px;
  border-top-color: rgba(18, 19, 20, 0.12);
}

.ce__subk{
  font-size: 13px;
  letter-spacing: 0.17em;
}

.ce__modes{
  font-size: 17px;
  margin-top: 12px;
}

.ce__note{
  font-size: 15px;
  line-height: 1.65;
  margin-top: 12px;
}


.ce-claim{
  font-size: 16px;
  padding-top: 20px;
}


@media (max-width: 1180px){
  .ce{ padding: 26px 20px 28px; min-height: 280px; }
}
@media (max-width: 640px){
  .ce{ padding: 24px 18px 26px; min-height: auto; }
}


.downloads-v3{
  --dl-orange: #f26822; 
  position: relative;
  padding: clamp(64px, 6vw, 96px) 0; 
  overflow: clip;
  background: var(--dl-orange);
}

.downloads-v3 .container{
  position: relative;
  z-index: 1;
}


.downloads-v3__head{
  text-align: left;
  max-width: 980px;
}

.downloads-v3__title{
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 4.6vw, 56px);
  letter-spacing: -0.055em;
  line-height: 1.00;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 18px 42px rgba(18,19,20,0.14);
}

.downloads-v3__sub{
  margin: 10px 0 0 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
}


.downloads-v3__grid{
  margin-top: clamp(16px, 2.2vw, 22px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px; 
}


.os-card{
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;

  padding: 20px 20px 18px; 
  min-height: 190px;

  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.34);
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(10px);

  box-shadow:
    0 20px 52px rgba(18,19,20,0.16),
    0 1px 0 rgba(255,255,255,0.70) inset;

  transition: transform .14s ease, box-shadow .14s ease, background .14s ease, border-color .14s ease;
  overflow: hidden;
}

.os-card > *{ position: relative; z-index: 1; }


.os-card__icon{
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 16px;

  border: 1px solid rgba(18, 19, 20, 0.10);
  background: rgba(255,255,255,0.76);
  box-shadow: 0 14px 30px rgba(18,19,20,0.09);
}

.os-card__icon img{
  width: 38px;
  height: 38px;
  object-fit: contain;
  opacity: 0.92;
}


.os-card__name{
  font-family: var(--font-display);
  font-size: clamp(30px, 2.8vw, 40px);
  letter-spacing: -0.05em;
  line-height: 1.02;
  color: rgba(18, 19, 20, 0.92);
}


.os-card__name::after{
  content:"";
  display: block;
  width: 32px;
  height: 2px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(255, 102, 0, 0.90);
  opacity: 0.85;
}


.os-card__meta{
  margin-top: -6px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(18, 19, 20, 0.56);
}


.os-card:hover{
  background: rgba(255,255,255,0.94);
  border-color: rgba(255,255,255,0.46);
  box-shadow:
    0 26px 66px rgba(18,19,20,0.18),
    0 1px 0 rgba(255,255,255,0.74) inset;
}

.os-card:active{ transform: translateY(0px); }

.os-card:focus-visible{
  outline: 2px solid rgba(255, 255, 255, 0.70);
  outline-offset: 3px;
  border-radius: 16px;
}


.os-card--win::before{
  content:"";
  position: absolute;
  right: -64px;
  top: -64px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  border: 2px solid rgba(255, 102, 0, 0.18);
  pointer-events: none;
}
.os-card--win::after{
  content:"";
  position: absolute;
  left: -88px;
  bottom: -88px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  border: 2px solid rgba(18, 19, 20, 0.06);
  pointer-events: none;
}


.os-card--mac::before{
  content:"";
  position: absolute;
  left: -74px;
  top: -74px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  border: 2px solid rgba(18, 19, 20, 0.06);
  pointer-events: none;
}
.os-card--mac::after{
  content:"";
  position: absolute;
  right: -86px;
  bottom: -86px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  border: 2px solid rgba(255, 102, 0, 0.14);
  pointer-events: none;
}


.os-card--lin::before{
  content:"";
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  border-radius: 999px;
  border: 2px solid rgba(18, 19, 20, 0.05);
  pointer-events: none;
}
.os-card--lin::after{
  content:"";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 200px;
  height: 200px;
  border-radius: 999px;
  border: 2px solid rgba(255, 102, 0, 0.16);
  pointer-events: none;
}


@media (max-width: 980px){
  .downloads-v3__grid{
    grid-template-columns: 1fr;
  }
  .os-card{
    min-height: 170px;
  }
}


.downloads-v3{
  padding: clamp(56px, 5.2vw, 84px) 0;
}


.downloads-v3__grid{
  gap: 12px;
}


.os-card{
  padding: 18px 18px 16px;
  min-height: 168px;
  gap: 12px;

  
  box-shadow:
    0 18px 42px rgba(18,19,20,0.14),
    0 1px 0 rgba(255,255,255,0.70) inset,
    0 -1px 0 rgba(18,19,20,0.06) inset;

  cursor: pointer; 
}


.os-card:hover{
  border-color: rgba(18, 19, 20, 0.14);
  box-shadow:
    0 22px 56px rgba(18,19,20,0.16),
    0 1px 0 rgba(255,255,255,0.74) inset,
    0 -1px 0 rgba(18,19,20,0.08) inset;
}


.os-card:active{
  transform: translateY(0px);
  box-shadow:
    0 14px 34px rgba(18,19,20,0.14),
    0 1px 0 rgba(255,255,255,0.70) inset,
    0 0 0 rgba(18,19,20,0.00);
}


.os-card__hint{
  margin-top: auto;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: rgba(255, 102, 0, 0.0);
  transition: background .14s ease, opacity .14s ease;
  opacity: 0.0;
}

.os-card:hover .os-card__hint,
.os-card:focus-visible .os-card__hint{
  background: rgba(255, 102, 0, 0.85);
  opacity: 1;
}


.os-card__name{
  font-size: clamp(28px, 2.5vw, 36px);
}

.os-card__meta{
  font-size: 11.5px;
  letter-spacing: 0.16em;
}


.os-card__name::after{
  width: 28px;
  margin-top: 9px;
}


@media (max-width: 980px){
  .os-card{
    min-height: 152px;
  }
}


.downloads-v3__top{
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 14px;
  align-items: end;
  margin-bottom: 8px;
}


.dl-note--top{
  justify-self: end;
  align-self: end;

  display: grid;
  gap: 8px;

  padding: 14px 14px 13px;
  border-radius: 12px;

  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.26);
  box-shadow: 0 18px 44px rgba(18,19,20,0.10);
  backdrop-filter: blur(10px);
}

.dl-note__label{
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}

.dl-note__text{
  font-weight: 650;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.80);
}


@media (max-width: 980px){
  .downloads-v3__top{
    grid-template-columns: 1fr;
    align-items: start;
    margin-bottom: 14px;
  }
  .dl-note--top{
    justify-self: start;
    width: 100%;
    max-width: 720px;
  }
}


.faq-split{
  position: relative;
  padding: 70px 0 70px;
  background: var(--bg);
  overflow: clip;
}


.faq-split__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("/assets/faq-bg.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  filter: saturate(1.05) contrast(1.03);
  pointer-events: none;
}


.faq-split .container{
  position: relative;
  z-index: 2;
}


.faq-split__head{ max-width: 980px; }

.faq-split__title{
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 4.8vw, 60px);
  letter-spacing: -0.055em;
  line-height: 1.0;
  color: rgba(18, 19, 20, 0.92);
}

.faq-split__lead{
  margin: 14px 0 0 0;
  max-width: 82ch;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(18, 19, 20, 0.68);
}


.faq-split__panel{
  margin-top: clamp(18px, 2.5vw, 28px);
  border-radius: var(--r-card);
  border: 1px solid rgba(18, 19, 20, 0.10);

  
  background: rgba(255,255,255,0.70);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 44px rgba(18, 19, 20, 0.08);
  position: relative;
  overflow: hidden;

  
  --faq-panel-max: min(78vh, 720px);
  display: grid;
  grid-template-rows: 1fr auto;
  max-height: var(--faq-panel-max);
}


.faq-split__panel::before{
  content:"";
  position: absolute;
  top: 18px;
  bottom: 58px;
  left: 50%;
  width: 1px;
  background: rgba(18, 19, 20, 0.10);
  transform: translateX(-0.5px);
  pointer-events: none;
}


.faq-split__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  overflow-y: auto;
  min-height: 0;
}

.faq-col{ padding: 0px 0; }


.faq-entry{
  border-top: 1px solid rgba(18, 19, 20, 0.10);
}
.faq-col .faq-entry:first-child{ border-top: 0; }

.faq-entry__q{
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;

  display: grid;
  grid-template-columns: 108px 1fr 10px;
  gap: 14px;
  align-items: center;

  padding: 25px 18px;
  transition: background .12s ease;
}

.faq-entry__q:hover{
  background: rgba(18, 19, 20, 0.04);
}

.faq-entry__q:focus-visible{
  outline: 2px solid rgba(255, 102, 0, 0.70);
  outline-offset: -2px;
}


.faq-entry__tag{
  justify-self: start;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  padding: 8px 10px;
  border-radius: 999px;

  border: 1px solid rgba(18, 19, 20, 0.10);
  background: rgba(255,255,255,0.60);
  color: rgba(18, 19, 20, 0.62);
}


.faq-entry__title{
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: rgba(18, 19, 20, 0.92);
}


.faq-entry__dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(18, 19, 20, 0.18);
  opacity: 0.55;
}


.faq-entry__a{
  padding: 0 18px 16px 18px;
  margin-left: calc(18px + 108px + 14px);
  border-left: 1px solid rgba(18, 19, 20, 0.10);
  padding-left: 14px;

  font-size: 16px;
  line-height: 1.7;
  color: rgba(18, 19, 20, 0.70);
  max-width: 86ch;
}


.faq-entry.is-open .faq-entry__q{
  background: rgba(255,255,255,0.76);
}

.faq-entry.is-open .faq-entry__dot{
  background: rgba(255, 102, 0, 0.88);
  border-color: rgba(255, 102, 0, 0.60);
  opacity: 1;
}


.faq-links{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;

  border-top: 1px solid rgba(18, 19, 20, 0.10);
  background: rgba(255,255,255,0.62);
}

.faq-link{
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: rgba(18, 19, 20, 0.78);
  padding: 6px 8px;
  border-radius: var(--r-btn);
  transition: background .12s ease, color .12s ease;
}

.faq-link:hover{
  background: rgba(18, 19, 20, 0.06);
  color: rgba(18, 19, 20, 0.92);
}

.faq-links__sep{
  width: 1px;
  height: 14px;
  background: rgba(18, 19, 20, 0.16);
  opacity: 0.7;
}


@media (max-width: 980px){
  .faq-split__panel::before{ display: none; }

  .faq-split__panel{
    max-height: none;
    display: block;
  }
  .faq-split__grid{
    overflow: visible;
    padding-right: 0;
  }

  .faq-split__grid{
    grid-template-columns: 1fr;
  }

  .faq-entry__q{
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: baseline;
  }

  .faq-entry__dot{ display: none; }

  .faq-entry__a{
    margin-left: 18px;
    border-left: 0;
    padding-left: 0;
  }

  .faq-links__sep{ display: none; }
}


.control-editorial{
  padding: 5px 0 40px;
  background: var(--bg);
}

.control-editorial__panel{
  border-radius: 10px;
  border: 1px solid rgba(18, 19, 20, 0.10);
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 44px rgba(18, 19, 20, 0.03);
  overflow: hidden;
  position: relative;
}


.control-editorial__panel::before{
  content:"";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  pointer-events: none;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.70) inset,
    0 -1px 0 rgba(18,19,20,0.06) inset;
}

.control-editorial__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}


.ce{
  padding: 32px 24px 56px; 
  min-height: 340px;
  position: relative;
  background: transparent;
  transition: background .14s ease;
}


.control-editorial__grid > .ce{
  border-left: 1px solid rgba(18, 19, 20, 0.10);
}
.control-editorial__grid > .ce:first-child{
  border-left: 0;
}


.ce:hover{ background: transparent; }


.ce__tag{
  display: inline-block;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(18, 19, 20, 0.58);
  padding-bottom: 10px;
  position: relative;
}

.ce__tag::after{
  content:"";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: rgba(242, 104, 34, 0.82);
}


.ce__title{
  margin: 16px 0 0 0;
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: rgba(18, 19, 20, 0.92);
}

.ce__title-mark{
  display: inline-block;
  padding: 0.10em 0.24em 0.12em;
  border-radius: 10px;
  background: rgba(242, 104, 34, 0.10);
  box-shadow: 0 1px 0 rgba(255,255,255,0.55) inset;
}


.ce__text{
  margin: 16px 0 0 0;
  font-size: 17.5px;
  line-height: 1.72;
  color: rgba(18, 19, 20, 0.70);
  max-width: 56ch;
}


.ce__sub{
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(18, 19, 20, 0.10);
}

.ce__subk{
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(18, 19, 20, 0.56);
}

.ce__modes{
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.ce__mode{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 999px;

  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;

  color: rgba(18, 19, 20, 0.78);
  background: rgba(255,255,255,0.64);
  border: 1px solid rgba(18, 19, 20, 0.10);
  box-shadow: 0 1px 0 rgba(255,255,255,0.60) inset;
}

.ce__note{
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(18, 19, 20, 0.58);
  max-width: 58ch;
}


.ce__link{
  position: absolute;
  left: 18px;
  bottom: 16px;

  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;

  color: rgba(70, 140, 255, 0.78); 
}

.ce__arrow{
  width: 32px;
  height: 32px;
  display: block;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;

  opacity: 0.8;
  transform: translate(0, 0);
  transition: transform .14s ease, opacity .14s ease;
}

.ce__link:hover .ce__arrow,
.ce__link:focus-visible .ce__arrow{
  transform: translate(1px, -1px);
  opacity: 1;
}


.ce:has(.ce__link:hover),
.ce:has(.ce__link:focus-visible){
  background: rgba(18, 19, 20, 0.025);
}

.ce__link:focus-visible{
  outline: 2px solid rgba(70, 140, 255, 0.40);
  outline-offset: 3px;
  border-radius: 10px;
}


@supports not selector(:has(*)){
  
}


@media (max-width: 1180px){
  .control-editorial__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .control-editorial__grid > .ce{
    border-left: 1px solid rgba(18, 19, 20, 0.10);
    border-top: 1px solid rgba(18, 19, 20, 0.10);
    min-height: 320px;
  }
  .control-editorial__grid > .ce:nth-child(odd){ border-left: 0; }
  .control-editorial__grid > .ce:nth-child(-n+2){ border-top: 0; }
}

@media (max-width: 640px){
  .control-editorial__grid{ grid-template-columns: 1fr; }

  .control-editorial__grid > .ce{
    border-left: 0;
    border-top: 1px solid rgba(18, 19, 20, 0.10);
    min-height: auto;
    padding: 28px 20px 56px;
  }
  .control-editorial__grid > .ce:first-child{ border-top: 0; }

  .ce__title{ font-size: 34px; }
}


.site-footer{
  --f-bg: #0b0d10;
  --f-line: rgba(255,255,255,0.10);
  --f-ink: rgba(255,255,255,0.92);
  --f-muted: rgba(255,255,255,0.70);
  --f-dim: rgba(255,255,255,0.56);
  --f-blue: rgba(70, 140, 255, 0.90);

  background: var(--f-bg);
  color: var(--f-ink);
  padding: clamp(34px, 1.2vw, 10px) 0 30px;
  position: relative;
  overflow: clip;
}


.site-footer::before{
  content:"";
  position: absolute;
  left: -240px;
  top: -260px;
  width: 600px;
  height: 600px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.06);
  pointer-events: none;
}
.site-footer::after{
  content:"";
  position: absolute;
  right: -300px;
  bottom: -360px;
  width: 780px;
  height: 780px;
  border-radius: 999px;
  border: 2px solid rgba(242,104,34,0.12);
  pointer-events: none;
}

.site-footer .container{ position: relative; z-index: 1; }


.footer-head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 15px;
}


.footer-head--center{
  justify-content: center;
  align-items: center;
}


.footer-brand--img{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background .12s ease, border-color .12s ease, transform .12s ease;
}

.footer-brand--img:hover{
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
}

.footer-brand__img{
  height: 34px;          
  width: auto;
  display: block;
  opacity: 0.92;
}


.footer-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 52px);
  padding: 34px 0 30px;
  text-align: left;
}

.footer-col{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-col__title{
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 14px;
}

.footer-col__title::after{
  content:"";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 2px;
  border-radius: 999px;
  background: rgba(242,104,34,0.70);
  opacity: 0.9;
}


.footer-link{
  display: block;
  width: fit-content;
  padding: 12px 0;
  font-size: 17px;
  line-height: 1.35;
  color: rgba(255,255,255,0.76);
  transition: color .12s ease, transform .12s ease;
}

.footer-link:hover{
  color: rgba(255,255,255,0.96);
}

.footer-link:focus-visible{
  outline: 2px solid rgba(242,104,34,0.55);
  outline-offset: 3px;
  border-radius: 10px;
}


.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.footer-bottom__left{
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 16px;
  color: rgba(255,255,255,0.62);
}

.footer-muted{ color: rgba(255,255,255,0.56); }

.footer-sep{
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.18);
  opacity: 0.9;
}


.footer-top{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);

  font-weight: 850;
  font-size: 12.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);

  transition: background .12s ease, border-color .12s ease, transform .12s ease;
}

.footer-top:hover{
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.20);
  transform: translateY(-1px);
}

.footer-top__ico{
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--f-blue);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


@media (max-width: 980px){
  .footer-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 26px;
  }
}

@media (max-width: 520px){
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom__right{
    margin-left: 0;
  }
  .footer-brand__img{ height: 30px; }
}

.footer-bottom{
  justify-content: space-between;
}

.footer-bottom__left{
  justify-content: flex-start;
  text-align: left;
}

.footer-bottom__right{
  display: flex;
  align-items: center;
  margin-left: auto;
}

.footer-bottom__link{
  padding: 12px 10px;
  margin: 0;
  color: rgba(255,255,255,0.78);
}


.footer-grid{
  padding: 40px 0 34px;
  gap: clamp(28px, 4.4vw, 64px);
}


.footer-link{
  width: fit-content;
  padding: 12px 10px;             
  margin: 6px -10px;              
  border-radius: 10px;

  font-size: 18.5px;              
  line-height: 1.35;
  color: rgba(255,255,255,0.78);

  transition: background .12s ease, color .12s ease, transform .12s ease;
}


.footer-link:hover{
  background: rgba(255,255,255,0.12);   
  color: rgba(255,255,255,0.96);
}


.footer-link:focus-visible{
  outline: 2px solid rgba(242,104,34,0.55);
  outline-offset: 3px;
  border-radius: 10px;
}


.monero-sign--dark{
  background: #121419; 
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: clamp(28px, 3.6vw, 44px) 0;
}

.monero-sign__inner{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 30px);
}

.monero-sign__icon{
  width: clamp(56px, 5.8vw, 110px);
  height: auto;
  display: block;
  opacity: 0.95;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.45));
}

.monero-sign__word{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(54px, 7.2vw, 108px);
  letter-spacing: -0.07em;
  line-height: 0.90;
  color: rgba(255,255,255,0.32);
  text-shadow: 0 22px 56px rgba(0,0,0,0.32);
}


@media (max-width: 520px){
  .monero-sign__inner{ gap: 14px; }
  .monero-sign__word{
    font-size: clamp(44px, 10vw, 70px);
    letter-spacing: -0.06em;
  }
}


.policy-hero{
  position: relative;
  overflow: clip;
  background: var(--bg);
  padding: calc(var(--header-h) + clamp(28px, 5vw, 56px)) 0 clamp(56px, 7vw, 92px);
}

.policy-hero__bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(242, 104, 34, 0.12), transparent 30%),
    radial-gradient(circle at 74% 12%, rgba(18, 19, 20, 0.08), transparent 36%),
    linear-gradient(165deg, rgba(255,255,255,0.94), rgba(247,246,244,0.96));
  opacity: 0.96;
  pointer-events: none;
}

.policy-hero__grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(24px, 4.6vw, 42px);
  align-items: start;
}

.policy-hero__copy{
  display: grid;
  gap: 14px;
}

.policy-kicker{
  margin: 0;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(18, 19, 20, 0.60);
}

.policy-title{
  margin: 0;
  font-size: clamp(50px, 6.2vw, 82px);
  letter-spacing: -0.06em;
  line-height: 0.98;
  color: rgba(18, 19, 20, 0.94);
}

.policy-lead{
  margin: 0;
  font-size: clamp(21px, 2.2vw, 26px);
  line-height: 1.55;
  color: rgba(18, 19, 20, 0.70);
  max-width: 80ch;
}

.policy-meta{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 14px;
  border-radius: var(--r-ui);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(18, 19, 20, 0.08);
  box-shadow: var(--shadow2);
  font-weight: 700;
  font-size: 14px;
  color: rgba(18, 19, 20, 0.68);
}

.policy-meta__sep{
  width: 1px;
  height: 14px;
  background: rgba(18, 19, 20, 0.16);
}
.policy-quick-wrap{
  display: grid;
  gap: 12px;
  align-self: center;
}

.policy-quick{
  padding: clamp(18px, 2.4vw, 24px);
  border-radius: var(--r-card);
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(18, 19, 20, 0.10);
  box-shadow: 0 12px 30px rgba(18, 19, 20, 0.08);
}

.policy-quick__title{
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  color: rgba(18, 19, 20, 0.88);
  margin: 0 0 12px 0;
}

.policy-quick__list{
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(18, 19, 20, 0.70);
}

.policy-quick__list li{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.policy-dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(242,104,34,0.9);
  box-shadow: 0 0 0 6px rgba(242,104,34,0.12);
  flex-shrink: 0;
}

.policy-divider{
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, rgba(18,19,20,0.0), rgba(18,19,20,0.12), rgba(18,19,20,0.0));
  margin: clamp(20px, 3vw, 32px) 0;
}

.policy-section{
  padding: clamp(42px, 6vw, 78px) 0;
  background: var(--bg);
}

.policy-section__head{
  max-width: 980px;
}

.policy-section__kicker{
  margin: 0 0 12px 0;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(18, 19, 20, 0.60);
}

.policy-section__title{
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.4vw, 56px);
  letter-spacing: -0.05em;
  line-height: 1.02;
  color: rgba(18, 19, 20, 0.92);
}

.policy-section__lead{
  margin: 14px 0 0 0;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(18, 19, 20, 0.70);
  max-width: 82ch;
}

.policy-principles{
  margin-top: clamp(18px, 2.6vw, 28px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.policy-principle{
  padding: clamp(14px, 1.8vw, 18px);
  border-radius: var(--r-card);
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(18, 19, 20, 0.08);
  box-shadow: 0 10px 24px rgba(18, 19, 20, 0.06);
}

.policy-principle__tag{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 102, 0, 0.08);
  color: rgba(18, 19, 20, 0.80);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.policy-principle__text{
  margin: 10px 0 0 0;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(18, 19, 20, 0.72);
}

.policy-grid{
  margin-top: clamp(18px, 2.6vw, 26px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.policy-card{
  padding: clamp(18px, 2.4vw, 24px);
  border-radius: var(--r-card);
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(18, 19, 20, 0.10);
  box-shadow: 0 14px 32px rgba(18, 19, 20, 0.08);
  display: grid;
  gap: 10px;
}

.policy-card__title{
  margin: 0;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.03em;
  color: rgba(18, 19, 20, 0.92);
}

.policy-card__text{
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(18, 19, 20, 0.72);
}

.policy-rows{
  margin-top: clamp(16px, 2.2vw, 22px);
  border: 1px solid rgba(18, 19, 20, 0.10);
  border-radius: var(--r-card);
  overflow: hidden;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 12px 28px rgba(18, 19, 20, 0.06);
}

.policy-rows--compact .policy-row{
  padding-block: 14px;
}

.policy-row{
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  padding: 18px 18px;
  border-top: 1px solid rgba(18, 19, 20, 0.08);
}
.policy-row:first-child{ border-top: 0; }

.policy-row__label{
  font-weight: 850;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(18, 19, 20, 0.62);
}

.policy-row__body p{
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(18, 19, 20, 0.72);
}

.policy-steps{
  margin-top: clamp(18px, 2.6vw, 26px);
  display: grid;
  gap: 12px;
}

.policy-step{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 16px 14px;
  border-radius: var(--r-card);
  border: 1px solid rgba(18, 19, 20, 0.08);
  background: rgba(255,255,255,0.82);
  box-shadow: 0 12px 24px rgba(18, 19, 20, 0.06);
  align-items: start;
}

.policy-step__dot{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(242,104,34,0.9);
  box-shadow: 0 0 0 7px rgba(242,104,34,0.12);
  transform: translateY(6px);
}

.policy-step__title{
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  color: rgba(18, 19, 20, 0.90);
}

.policy-step__text{
  margin: 6px 0 0 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(18, 19, 20, 0.70);
}

.policy-columns{
  margin-top: clamp(18px, 2.6vw, 24px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.policy-column{
  padding: clamp(16px, 2.2vw, 22px);
  border-radius: var(--r-card);
  border: 1px solid rgba(18, 19, 20, 0.10);
  background: rgba(255,255,255,0.85);
  box-shadow: 0 10px 26px rgba(18, 19, 20, 0.06);
}

.policy-column__title{
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.02em;
  color: rgba(18, 19, 20, 0.92);
}

.policy-column__text{
  margin: 10px 0 0 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(18, 19, 20, 0.70);
}

@media (max-width: 1180px){
  .policy-hero__grid{
    grid-template-columns: 1fr;
    align-items: start;
  }
  .policy-principles{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .policy-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .policy-columns{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .policy-row{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px){
  .policy-principles,
  .policy-grid,
  .policy-columns{
    grid-template-columns: 1fr;
  }
}


.docs-hero{
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,246,244,0.98));
  padding: calc(var(--header-h) + clamp(26px, 4vw, 44px)) 0 clamp(40px, 6vw, 70px);
}

.docs-hero__grid{
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(22px, 4vw, 40px);
  align-items: center;
}

.docs-hero__copy{
  display: grid;
  gap: 12px;
}

.docs-kicker{
  margin: 0;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(18, 19, 20, 0.60);
}

.docs-title{
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(44px, 5.6vw, 68px);
  letter-spacing: -0.055em;
  line-height: 0.98;
  color: rgba(18, 19, 20, 0.94);
}

.docs-lead{
  margin: 0;
  font-size: 21px;
  line-height: 1.55;
  color: rgba(18, 19, 20, 0.70);
  max-width: 78ch;
}

.docs-hero__meta{
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border-radius: var(--r-card);
  border: 1px solid rgba(18, 19, 20, 0.10);
  background: rgba(255,255,255,0.86);
  box-shadow: 0 12px 28px rgba(18, 19, 20, 0.06);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(18, 19, 20, 0.72);
}

.docs-meta__line strong{
  color: rgba(18, 19, 20, 0.82);
}

.docs-divider{
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, rgba(18,19,20,0.0), rgba(18,19,20,0.12), rgba(18,19,20,0.0));
  margin: clamp(18px, 3vw, 30px) 0;
}

.docs-section{
  padding: clamp(32px, 5vw, 60px) 0;
  background: var(--bg);
}

.docs-body{
  display: grid;
  gap: 14px;
  font-size: 18px;
  line-height: 1.68;
  color: rgba(18, 19, 20, 0.72);
  max-width: 900px;
}

.docs-h2{
  margin: 0 0 4px 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.2vw, 46px);
  letter-spacing: -0.045em;
  line-height: 1.04;
  color: rgba(18, 19, 20, 0.92);
}

@media (max-width: 980px){
  .docs-hero__grid{
    grid-template-columns: 1fr;
    align-items: start;
  }
}


.verify-hero{
  background: linear-gradient(180deg, rgba(247,246,244,0.98), rgba(240,239,236,0.98));
  padding: calc(var(--header-h) + clamp(24px, 4vw, 42px)) 0 clamp(36px, 5.6vw, 64px);
}

.verify-hero__grid{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(22px, 4vw, 38px);
  align-items: center;
}

.verify-hero__copy{
  display: grid;
  gap: 12px;
}

.verify-kicker{
  margin: 0;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(18, 19, 20, 0.60);
}

.verify-title{
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 5.2vw, 64px);
  letter-spacing: -0.055em;
  line-height: 0.98;
  color: rgba(18, 19, 20, 0.94);
}

.verify-lead{
  margin: 0;
  font-size: 21px;
  line-height: 1.55;
  color: rgba(18, 19, 20, 0.70);
  max-width: 78ch;
}

.verify-hero__meta{
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border-radius: var(--r-card);
  border: 1px solid rgba(18, 19, 20, 0.10);
  background: rgba(255,255,255,0.88);
  box-shadow: 0 12px 28px rgba(18, 19, 20, 0.06);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(18, 19, 20, 0.72);
}

.verify-meta__line strong{
  color: rgba(18, 19, 20, 0.82);
}

@media (max-width: 980px){
  .verify-hero__grid{
    grid-template-columns: 1fr;
    align-items: start;
  }
}


.mp-hero{
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,246,244,0.98));
  padding: calc(var(--header-h) + clamp(24px, 4vw, 42px)) 0 clamp(36px, 5.6vw, 64px);
}

.mp-hero__grid{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(22px, 4vw, 38px);
  align-items: center;
}

.mp-hero__copy{
  display: grid;
  gap: 12px;
}

.mp-kicker{
  margin: 0;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(18, 19, 20, 0.60);
}

.mp-title{
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 5.2vw, 64px);
  letter-spacing: -0.055em;
  line-height: 0.98;
  color: rgba(18, 19, 20, 0.94);
}

.mp-lead{
  margin: 0;
  font-size: 21px;
  line-height: 1.55;
  color: rgba(18, 19, 20, 0.70);
  max-width: 78ch;
}

.mp-hero__meta{
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border-radius: var(--r-card);
  border: 1px solid rgba(18, 19, 20, 0.10);
  background: rgba(255,255,255,0.88);
  box-shadow: 0 12px 28px rgba(18, 19, 20, 0.06);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(18, 19, 20, 0.72);
}

.mp-meta__line strong{
  color: rgba(18, 19, 20, 0.82);
}

@media (max-width: 980px){
  .mp-hero__grid{
    grid-template-columns: 1fr;
    align-items: start;
  }
}
