:root {
  --bg: #05070d;
  --bg-deep: #020407;
  --surface: #0a0e16;
  --surface-strong: #0d121c;
  --text: #f7f7f5;
  --muted: #a9adb7;
  --muted-strong: #c9ccd3;
  --gold: #f4c84a;
  --gold-bright: #ffd600;
  --gold-deep: #b77906;
  --line: rgba(244, 200, 74, 0.2);
  --line-soft: rgba(255, 255, 255, 0.1);
  --whatsapp: #35d46f;
  --telegram: #35a9e8;
  --container: 1360px;
  --header-height: 78px;
  --radius: 18px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 76% 8%, rgba(244, 200, 74, 0.055), transparent 26%),
    var(--bg);
  color: var(--text);
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--gold);
  color: var(--bg);
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

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

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

.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: fixed;
  z-index: 1000;
  top: 14px;
  left: 14px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 800;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(5, 7, 13, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  height: 100%;
}

.brand {
  display: inline-flex;
  width: 208px;
  overflow: hidden;
  border-radius: 10px;
  text-decoration: none;
}

.brand img {
  width: 208px;
  height: 60px;
  object-fit: contain;
}

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

.site-nav a {
  position: relative;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -11px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

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

.header-login {
  justify-self: end;
  min-width: 116px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.menu-toggle svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform 180ms var(--ease), border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button:focus-visible,
.site-nav a:focus-visible,
.policy-row:focus-visible,
.contact-action:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.button-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #090a0d;
  box-shadow: 0 12px 32px rgba(244, 200, 74, 0.13);
}

.button-primary:hover {
  box-shadow: 0 15px 38px rgba(244, 200, 74, 0.22);
}

.button-secondary {
  border-color: rgba(244, 200, 74, 0.6);
  background: transparent;
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--gold);
  background: rgba(244, 200, 74, 0.06);
}

.integration-core img {
  position: absolute;
  top: 50%;
  left: -14%;
  width: auto;
  max-width: none;
  height: 127%;
  transform: translateY(-50%);
}

.step-icon,
.policy-icon,
.output-icon {
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 200, 74, 0.7);
  background: rgba(10, 12, 16, 0.9);
  color: var(--gold);
}

.step-icon svg,
.policy-icon svg,
.output-icon svg,
.prep-icon svg,
.contact-icon svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 50% 53%, rgba(244, 200, 74, 0.12), transparent 28%),
    linear-gradient(180deg, #030509 0%, #05070d 62%, #070a10 100%);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, transparent 49.93%, rgba(244, 200, 74, 0.035) 50%, transparent 50.07%),
    linear-gradient(0deg, transparent 49.93%, rgba(244, 200, 74, 0.025) 50%, transparent 50.07%);
  background-size: 92px 92px;
  content: "";
  mask-image: radial-gradient(circle at 50% 48%, black, transparent 62%);
  pointer-events: none;
}

.hero-orbits {
  position: absolute;
  z-index: -1;
  top: 42px;
  left: 50%;
  width: min(1100px, 100vw);
  height: 1100px;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  top: 48%;
  left: 50%;
  aspect-ratio: 1;
  border: 1px dashed rgba(244, 200, 74, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one { width: 600px; animation: orbit-turn 44s linear infinite; }
.orbit-two { width: 800px; animation: orbit-turn 68s linear infinite reverse; }
.orbit-three { width: 1000px; animation: orbit-turn 96s linear infinite; }

.orbit-particle {
  position: absolute;
  top: 48%;
  left: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 214, 0, 0.85);
  border-radius: 50%;
  background: #15140d;
  box-shadow: 0 0 18px rgba(255, 214, 0, 0.75);
}

.particle-one { animation: particle-orbit-one 30s linear infinite; }
.particle-two { animation: particle-orbit-two 50s linear infinite reverse; }
.particle-three { animation: particle-orbit-three 76s linear infinite; }

.hero-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(76px, 7vw, 112px);
  text-align: center;
}

.hero-badge {
  position: relative;
  display: inline-grid;
  overflow: hidden;
  padding: 1px;
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 13px;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 12px 35px rgba(0, 0, 0, 0.28);
}

.hero-badge::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160%;
  aspect-ratio: 1;
  background: conic-gradient(from 0deg, transparent 0 300deg, var(--gold) 345deg, white 360deg);
  content: "";
  animation: badge-spin 4.5s linear infinite;
  transform: translate(-50%, -50%);
}

.hero-badge-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 12px 6px 7px;
  border-radius: inherit;
  background: rgba(14, 16, 20, 0.96);
}

.hero-badge-tag {
  padding: 3px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #090a0d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-badge svg {
  width: 14px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 180ms var(--ease);
}

.hero-badge:hover svg { transform: translateX(3px); }

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  max-width: 1080px;
  margin: 34px auto 0;
  font-size: clamp(58px, 6.25vw, 94px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 strong {
  display: inline;
  color: var(--gold);
  font-weight: 800;
}

.hero-copy > p {
  max-width: 740px;
  margin: 30px auto 0;
  color: var(--muted-strong);
  font-size: 17px;
  line-height: 1.75;
}

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

.hero-actions .button {
  min-width: 174px;
  border-radius: 12px;
}

.hero-actions .button svg {
  width: 17px;
  margin-left: 9px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 180ms var(--ease);
}

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

.hero-showcase {
  position: relative;
  width: min(1120px, 100%);
  margin-top: 76px;
  padding: 9px;
  border: 1px solid rgba(244, 200, 74, 0.28);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(16px);
  isolation: isolate;
}

.showcase-glow {
  position: absolute;
  z-index: -2;
  top: -80px;
  left: 50%;
  width: 72%;
  height: 230px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(183, 121, 6, 0.15), rgba(255, 214, 0, 0.52), rgba(183, 121, 6, 0.12));
  filter: blur(90px);
  opacity: 0.72;
  transform: translateX(-50%);
  animation: showcase-glow 5s ease-in-out infinite alternate;
}

.showcase-window {
  overflow: hidden;
  min-height: 570px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 21px;
  background:
    radial-gradient(circle at 50% 110%, rgba(244, 200, 74, 0.1), transparent 45%),
    #090c12;
  text-align: left;
}

.showcase-topbar {
  display: grid;
  min-height: 72px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 10px 22px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(5, 7, 11, 0.84);
}

.showcase-topbar img {
  width: 172px;
  height: 50px;
  object-fit: contain;
}

.showcase-label {
  color: #777d88;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.showcase-status {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 7px;
  color: #aeb3bc;
  font-size: 11px;
}

.showcase-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 13px rgba(244, 200, 74, 0.72);
}

.showcase-body {
  padding: 54px 48px 58px;
}

.showcase-heading { max-width: 660px; }

.showcase-heading > span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.showcase-heading h2 {
  margin: 13px 0 0;
  color: var(--text);
  font-size: clamp(32px, 3.1vw, 46px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.showcase-heading p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.workflow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 47px;
}

.workflow-line {
  position: absolute;
  top: 50%;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 200, 74, 0.7) 16%, rgba(244, 200, 74, 0.7) 84%, transparent);
  box-shadow: 0 0 12px rgba(244, 200, 74, 0.24);
}

.workflow-card {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 182px;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(15, 19, 28, 0.97), rgba(8, 10, 15, 0.97));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.workflow-number {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(244, 200, 74, 0.38);
  font-size: 11px;
  font-weight: 800;
}

.workflow-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(244, 200, 74, 0.5);
  border-radius: 12px;
  background: rgba(244, 200, 74, 0.06);
  color: var(--gold);
}

.workflow-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.workflow-card strong {
  margin-top: 24px;
  color: var(--text);
  font-size: 14px;
}

.workflow-card small {
  margin-top: 5px;
  color: #777d88;
  font-size: 11px;
}

.hero-fade {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  height: 16%;
  background: linear-gradient(0deg, #070a10, transparent);
  pointer-events: none;
}

@keyframes orbit-turn {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes particle-orbit-one {
  from { transform: translate(-50%, -50%) rotate(0deg) translateX(300px) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg) translateX(300px) rotate(-360deg); }
}

@keyframes particle-orbit-two {
  from { transform: translate(-50%, -50%) rotate(105deg) translateX(400px) rotate(-105deg); }
  to { transform: translate(-50%, -50%) rotate(465deg) translateX(400px) rotate(-465deg); }
}

@keyframes particle-orbit-three {
  from { transform: translate(-50%, -50%) rotate(210deg) translateX(500px) rotate(-210deg); }
  to { transform: translate(-50%, -50%) rotate(570deg) translateX(500px) rotate(-570deg); }
}

@keyframes badge-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes showcase-glow {
  to { opacity: 1; transform: translateX(-50%) scale(1.06); }
}

.section-shell {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  padding-block: clamp(100px, 9vw, 154px);
}

.section-intro {
  position: relative;
  z-index: 2;
}

.section-rule {
  display: block;
  width: 32px;
  height: 2px;
  margin-bottom: 26px;
  background: var(--gold-bright);
}

.section-intro h2 {
  max-width: 700px;
  margin: 0;
  color: var(--text);
  font-size: clamp(40px, 4.3vw, 68px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.section-intro h2 strong {
  color: var(--gold);
  font-weight: 800;
  margin-left: 0.1em;
}

.section-lead {
  margin: 26px 0 0;
  color: var(--muted-strong);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.7;
}

.about {
  background:
    radial-gradient(circle at 20% 70%, rgba(244, 200, 74, 0.04), transparent 25%),
    linear-gradient(180deg, #070a10, var(--bg));
}

.about::after {
  position: absolute;
  bottom: -280px;
  left: -100px;
  width: 680px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, rgba(244, 200, 74, 0.11) 0 1px, transparent 1px 44px);
  content: "";
  mask-image: radial-gradient(circle, black, transparent 68%);
  opacity: 0.4;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  align-items: center;
  gap: clamp(50px, 7vw, 120px);
}

.about-intro h2 {
  font-size: clamp(34px, 3.2vw, 52px);
}

.about-intro .section-lead {
  max-width: 520px;
  color: var(--text);
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.45;
}

.about-intro > p:last-child {
  max-width: 480px;
  margin: 22px 0 0;
  color: var(--muted);
}

.access-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.access-steps::before {
  position: absolute;
  z-index: -1;
  top: 83px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, rgba(244, 200, 74, 0.2), var(--gold), rgba(244, 200, 74, 0.2));
  content: "";
}

.access-steps li {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number {
  color: transparent;
  font-size: 43px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(244, 200, 74, 0.48);
}

.step-icon {
  width: 78px;
  height: 78px;
  margin: 12px 0 24px;
  border-radius: 50%;
  box-shadow: 0 0 0 9px var(--bg);
}

.access-steps h3 {
  margin: 0;
  color: var(--gold-bright);
  font-size: 16px;
  font-weight: 800;
}

.access-steps p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.policies {
  background: var(--bg-deep);
}

.policies::before {
  position: absolute;
  top: -170px;
  right: 3%;
  width: 650px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, rgba(244, 200, 74, 0.1) 0 1px, transparent 1px 42px);
  content: "";
  opacity: 0.42;
}

.policy-watermark {
  position: absolute;
  top: 90px;
  right: 3%;
  color: transparent;
  font-size: clamp(130px, 15vw, 260px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
  opacity: 0.17;
  -webkit-text-stroke: 1px var(--gold-deep);
}

.policy-intro {
  max-width: 560px;
  margin-bottom: 70px;
}

.policy-intro .section-lead {
  font-size: 19px;
}

.policy-list {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
}

.policy-row {
  display: grid;
  min-height: 144px;
  grid-template-columns: 120px 84px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background 200ms ease, padding 200ms var(--ease);
}

.policy-row:hover {
  padding-inline: 20px;
  background: rgba(244, 200, 74, 0.035);
}

.policy-number {
  color: transparent;
  font-size: 45px;
  font-weight: 700;
  letter-spacing: -0.05em;
  -webkit-text-stroke: 1px rgba(244, 200, 74, 0.55);
}

.policy-icon {
  width: 58px;
  height: 68px;
  border: 0;
  background: transparent;
}

.policy-icon svg {
  width: 52px;
  stroke-width: 1.4;
}

.policy-copy {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.policy-copy strong {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.policy-copy > span {
  max-width: 780px;
  color: var(--muted-strong);
  font-size: 16px;
}

.row-arrow {
  width: 28px;
  fill: none;
  stroke: var(--gold-bright);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 200ms var(--ease);
}

.policy-row:hover .row-arrow,
.contact-action:hover .row-arrow {
  transform: translateX(6px);
}

.integrations {
  background:
    radial-gradient(circle at 67% 46%, rgba(244, 200, 74, 0.04), transparent 29%),
    var(--bg);
}

.integrations-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.75fr) minmax(700px, 1.25fr);
  align-items: center;
  gap: clamp(50px, 7vw, 110px);
}

.integrations-intro .section-lead {
  max-width: 500px;
  font-size: 18px;
}

.integration-map {
  position: relative;
  display: grid;
  min-height: 490px;
  grid-template-columns: 295px 1fr 150px 1fr 240px;
  align-items: center;
}

.integration-map::before {
  position: absolute;
  top: 50%;
  left: 62%;
  width: 430px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, rgba(244, 200, 74, 0.16) 0 1px, transparent 1px 35px);
  content: "";
  mask-image: radial-gradient(circle, black 20%, transparent 68%);
  opacity: 0.55;
  transform: translate(-50%, -50%);
}

.integration-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 35px;
}

.integration-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 18px;
}

.integration-logo {
  display: grid;
  width: 82px;
  height: 72px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(244, 200, 74, 0.58);
  border-radius: 14px;
  background: #f8f8fa;
}

.integration-logo img {
  width: 72px;
  height: 48px;
  object-fit: contain;
}

.integration-logo.telegram-logo {
  background: rgba(53, 169, 232, 0.08);
  color: var(--telegram);
}

.telegram-logo svg {
  width: 42px;
  fill: rgba(53, 169, 232, 0.2);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.integration-item > span:last-child,
.access-output > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.integration-item strong,
.access-output strong {
  color: var(--text);
  font-size: 17px;
  font-weight: 750;
}

.integration-item small,
.access-output small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.integration-connector {
  position: relative;
  z-index: 1;
  align-self: stretch;
}

.connector-line,
.connector-spine,
.connector-out {
  position: absolute;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(244, 200, 74, 0.3);
}

.connector-line {
  right: 0;
  width: 100%;
}

.line-one { top: 24%; }
.line-two { top: 50%; }
.line-three { top: 76%; }

.connector-spine {
  top: 24%;
  right: 0;
  width: 1px;
  height: 52%;
}

.connector-out {
  top: 50%;
  right: -100%;
  width: 100%;
}

.connector-dot {
  position: absolute;
  z-index: 2;
  right: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(244, 200, 74, 0.7);
  transform: translateY(-50%);
}

.dot-one { top: 24%; }
.dot-two { top: 50%; }
.dot-three { top: 76%; }

.integration-core {
  position: relative;
  z-index: 3;
  display: grid;
  width: 150px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: radial-gradient(circle, #25200f 0%, #0e0f12 56%, #06080b 100%);
  box-shadow: 0 0 0 18px rgba(244, 200, 74, 0.04), 0 0 60px rgba(244, 200, 74, 0.13);
  overflow: hidden;
}

.access-output {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(244, 200, 74, 0.55);
  border-radius: 14px;
  background: rgba(9, 12, 17, 0.92);
}

.output-icon {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 12px;
  background: rgba(244, 200, 74, 0.07);
}

.support {
  background: var(--bg-deep);
}

.support::before {
  position: absolute;
  top: 50%;
  right: -160px;
  width: 760px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, rgba(244, 200, 74, 0.11) 0 1px, transparent 1px 45px);
  content: "";
  mask-image: radial-gradient(circle, black, transparent 70%);
  opacity: 0.5;
  transform: translateY(-50%);
}

.support-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(600px, 1.2fr);
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
}

.support-intro .section-lead {
  max-width: 510px;
  font-size: 19px;
}

.support-prep {
  display: grid;
  max-width: 520px;
  grid-template-columns: 58px 1px 1fr;
  align-items: center;
  gap: 22px;
  margin-top: 58px;
}

.support-prep::before {
  width: 1px;
  height: 62px;
  background: var(--line);
  content: "";
  grid-column: 2;
}

.prep-icon {
  display: grid;
  width: 58px;
  height: 64px;
  place-items: center;
  color: var(--gold);
  grid-column: 1;
  grid-row: 1;
}

.prep-icon svg {
  width: 50px;
  stroke-width: 1.3;
}

.support-prep p {
  margin: 0;
  color: var(--muted-strong);
  grid-column: 3;
  grid-row: 1;
}

.contact-rail {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 14px;
}

.contact-action {
  display: grid;
  min-height: 112px;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(10, 14, 22, 0.82);
  padding: 22px;
  text-decoration: none;
  transition: border-color 200ms ease, background 200ms ease, transform 200ms var(--ease);
}

.contact-action:hover {
  border-color: rgba(244, 200, 74, 0.55);
  background: rgba(13, 18, 28, 0.95);
  transform: translateY(-3px);
}

.contact-action > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.contact-action strong {
  font-size: 16px;
  font-weight: 750;
}

.contact-action small {
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.contact-icon svg {
  width: 30px;
}

.contact-whatsapp {
  min-height: 134px;
  grid-column: 1 / -1;
  grid-template-columns: 68px minmax(0, 1fr) 32px;
  border-color: rgba(53, 212, 111, 0.45);
}

.contact-whatsapp .contact-icon { color: var(--whatsapp); }
.contact-phone .contact-icon { color: var(--gold); }
.contact-telegram .contact-icon { color: var(--telegram); }

.site-footer {
  padding-block: 46px;
  background: #030407;
}

.footer-inner {
  display: grid;
  grid-template-columns: 220px minmax(260px, 1fr) auto;
  align-items: center;
  gap: 38px;
}

.footer-brand {
  width: 196px;
}

.footer-brand img {
  width: 196px;
  height: 56px;
}

.footer-inner p {
  margin: 0;
  color: #777d88;
  font-size: 12px;
}

.footer-inner nav {
  display: flex;
  gap: 0;
}

.footer-inner nav a {
  padding-inline: 18px;
  border-right: 1px solid var(--line);
  color: #8f949f;
  font-size: 12px;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-inner nav a:first-child { padding-left: 0; }
.footer-inner nav a:last-child { padding-right: 0; border-right: 0; }
.footer-inner nav a:hover { color: var(--gold); }

@media (max-width: 1240px) {
  .container {
    width: min(var(--container), calc(100% - 64px));
  }

  .integrations-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .integration-map {
    max-width: 920px;
  }

  .support-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
    gap: 70px;
  }

  .support-intro .section-rule,
  .support-intro h2,
  .support-intro .section-lead {
    grid-column: 1;
  }

  .support-prep {
    align-self: end;
    grid-column: 2;
    grid-row: 1 / 4;
    margin-top: 0;
  }

  .contact-rail {
    max-width: 900px;
  }

  .footer-inner {
    grid-template-columns: 200px 1fr;
  }

  .footer-inner nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: 190px 1fr 120px;
  }

  .brand,
  .brand img {
    width: 184px;
  }

  .brand img {
    height: 54px;
  }

  .site-nav {
    gap: 26px;
  }

  .hero-copy {
    max-width: 900px;
  }

  .hero-copy > p {
    max-width: 680px;
  }

  .showcase-body {
    padding-inline: 34px;
  }

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

  .about-intro {
    max-width: 720px;
  }

  .access-steps {
    max-width: 820px;
  }
}

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

  .container {
    width: min(100% - 40px, var(--container));
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .hero-center {
    padding-top: 74px;
  }

  .hero h1 {
    font-size: clamp(52px, 9.3vw, 72px);
  }

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

  .hero-showcase {
    margin-top: 64px;
  }

  .showcase-window {
    min-height: 0;
  }

  .showcase-body {
    padding: 42px 28px 38px;
  }

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

  .workflow-line {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 2;
  }

  .header-login {
    min-width: 92px;
    min-height: 44px;
    padding-inline: 18px;
    grid-column: 3;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: grid;
    visibility: hidden;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    background: rgba(7, 10, 16, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms var(--ease), visibility 180ms ease;
  }

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

  .site-nav a {
    padding: 13px 14px;
  }

  .site-nav a::after {
    display: none;
  }

  .section-shell {
    padding-block: 100px;
  }

  .policy-watermark {
    top: 80px;
    font-size: 140px;
  }

  .policy-row {
    grid-template-columns: 74px 64px minmax(0, 1fr) 30px;
    gap: 16px;
  }

  .integration-map {
    grid-template-columns: minmax(280px, 1fr) 110px 130px 110px minmax(200px, 0.8fr);
    overflow-x: auto;
    padding-bottom: 18px;
  }

  .support-intro {
    display: block;
  }

  .support-prep {
    margin-top: 48px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner nav {
    flex-wrap: wrap;
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .brand,
  .brand img {
    width: 151px;
  }

  .brand img {
    height: 46px;
  }

  .header-login {
    display: none;
  }

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

  .menu-toggle {
    grid-column: 2;
  }

  .hero-center {
    padding-top: 58px;
  }

  .hero-orbits {
    top: 8px;
    transform: translateX(-50%) scale(0.72);
    transform-origin: top center;
  }

  .hero-badge {
    font-size: 11px;
  }

  .hero-badge-inner {
    gap: 7px;
  }

  .hero-badge-tag {
    padding-inline: 6px;
    font-size: 8px;
  }

  .hero h1 {
    margin-top: 28px;
    font-size: clamp(43px, 12.8vw, 59px);
    letter-spacing: -0.065em;
  }

  .hero-copy > p {
    margin-top: 28px;
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .button {
    min-width: 0;
    padding-inline: 18px;
  }

  .hero-showcase {
    margin-top: 52px;
    padding: 5px;
    border-radius: 21px;
  }

  .showcase-window {
    border-radius: 15px;
  }

  .showcase-topbar {
    min-height: 62px;
    grid-template-columns: 1fr auto;
    padding: 7px 14px;
  }

  .showcase-topbar img {
    width: 140px;
    height: 44px;
  }

  .showcase-label {
    display: none;
  }

  .showcase-status {
    font-size: 9px;
  }

  .showcase-body {
    padding: 30px 16px 20px;
  }

  .showcase-heading h2 {
    font-size: clamp(29px, 8.5vw, 38px);
  }

  .showcase-heading p {
    font-size: 12px;
  }

  .workflow-track {
    gap: 8px;
    margin-top: 30px;
  }

  .workflow-card {
    min-height: 166px;
    padding: 15px;
  }

  .workflow-number {
    top: 14px;
    right: 14px;
  }

  .workflow-icon {
    width: 40px;
    height: 40px;
  }

  .workflow-icon svg {
    width: 20px;
  }

  .workflow-card strong {
    margin-top: 20px;
    font-size: 12px;
  }

  .workflow-card small {
    font-size: 9px;
  }

  .hero-fade {
    height: 8%;
  }

  .section-intro h2 {
    font-size: clamp(39px, 11.7vw, 54px);
  }

  .about-intro .section-lead {
    font-size: 21px;
  }

  .access-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .access-steps::before {
    top: 40px;
    bottom: 40px;
    left: 37px;
    width: 1px;
    height: auto;
  }

  .access-steps li {
    display: grid;
    grid-template-columns: 56px 78px 1fr;
    align-items: center;
    gap: 12px;
    padding-block: 22px;
    text-align: left;
  }

  .step-number {
    font-size: 31px;
  }

  .step-icon {
    width: 62px;
    height: 62px;
    margin: 0;
  }

  .access-steps h3 {
    font-size: 15px;
  }

  .access-steps p {
    margin-top: 5px;
  }

  .policy-intro {
    margin-bottom: 48px;
  }

  .policy-row {
    min-height: 0;
    grid-template-columns: 46px minmax(0, 1fr) 26px;
    gap: 12px;
    padding-block: 26px;
  }

  .policy-row:hover {
    padding-inline: 10px;
  }

  .policy-number {
    align-self: start;
    font-size: 30px;
  }

  .policy-icon {
    display: none;
  }

  .policy-copy strong {
    font-size: 18px;
  }

  .policy-copy > span {
    font-size: 13px;
    line-height: 1.6;
  }

  .row-arrow {
    width: 22px;
  }

  .integration-map {
    display: block;
    min-height: 0;
    overflow: visible;
  }

  .integration-map::before,
  .integration-connector {
    display: none;
  }

  .integration-list {
    gap: 0;
    margin-top: 52px;
    border-top: 1px solid var(--line);
  }

  .integration-item {
    grid-template-columns: 74px 1fr;
    padding-block: 20px;
    border-bottom: 1px solid var(--line);
  }

  .integration-logo {
    width: 68px;
    height: 62px;
  }

  .integration-logo img {
    width: 60px;
    height: 42px;
  }

  .integration-core {
    width: 118px;
    margin: 48px auto;
  }

  .access-output {
    max-width: 340px;
    margin-inline: auto;
  }

  .support-grid {
    gap: 62px;
  }

  .support-prep {
    grid-template-columns: 48px 1px 1fr;
    gap: 15px;
  }

  .prep-icon {
    width: 46px;
  }

  .prep-icon svg {
    width: 42px;
  }

  .support-prep p {
    font-size: 14px;
  }

  .contact-rail {
    grid-template-columns: 1fr;
  }

  .contact-whatsapp {
    grid-column: auto;
  }

  .contact-action,
  .contact-whatsapp {
    min-height: 104px;
    padding: 18px;
  }

  .contact-whatsapp {
    grid-template-columns: 58px minmax(0, 1fr) 26px;
  }

  .contact-icon {
    width: 52px;
    height: 52px;
  }

  .site-footer {
    padding-block: 56px;
  }

  .footer-inner {
    gap: 24px;
  }

  .footer-inner nav {
    display: grid;
    gap: 10px;
  }

  .footer-inner nav a {
    padding: 0;
    border: 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
