:root {
  --ink: #080d2e;
  --navy: #020718;
  --navy-2: #071440;
  --violet: #7b54ff;
  --purple: #9a6cff;
  --teal: #4de5d0;
  --cyan: #45b8ff;
  --white: #ffffff;
  --muted: #64708f;
  --line: rgba(120, 144, 210, 0.24);
  --soft: #f7f8ff;
  --shadow: 0 22px 70px rgba(10, 18, 55, 0.16);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

#planos,
#sobre,
#diferenciais,
#contato {
  scroll-margin-top: 112px;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--soft);
  color: var(--ink);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 500;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: 24px 0;
  color: var(--white);
  background: transparent;
  transition: width 180ms ease, margin 180ms ease, padding 180ms ease, background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  width: min(1240px, calc(100% - 12px));
  margin-top: 0;
  padding: 22px 30px;
  border: 1px solid rgba(110, 232, 229, 0.2);
  border-radius: 0 0 26px 26px;
  background: #050b22;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 18px 54px rgba(0, 0, 0, 0.48),
    0 34px 80px rgba(1, 5, 22, 0.58);
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 142px;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 54px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  box-shadow:
    0 0 18px rgba(77, 229, 208, 0.22),
    0 0 26px rgba(124, 86, 255, 0.28);
  transition: filter 120ms ease, transform 120ms ease;
}

.brand-mark img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 520ms ease, filter 520ms ease, transform 520ms ease;
}

.sphere-lit-img {
  opacity: 0;
}

.sphere-lit .sphere-idle {
  opacity: 0.18;
  transform: scale(1.01);
}

.sphere-lit .sphere-lit-img {
  opacity: 1;
  filter:
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.56))
    drop-shadow(0 0 14px rgba(125, 86, 255, 0.32));
  transform: scale(1.015);
}

.brand-mark::before {
  content: none;
  position: absolute;
  inset: 14px;
  background: #071038;
  clip-path: polygon(50% 0, 63% 37%, 100% 50%, 63% 63%, 50% 100%, 37% 63%, 0 50%, 37% 37%);
}

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

.brand-wordmark {
  width: 88px;
  height: 37px;
  max-height: 37px;
  object-fit: contain;
  object-position: left center;
  transform: translateY(2px);
}

.brand-text strong {
  font-size: 31px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-text span {
  font-size: 16px;
  letter-spacing: 3px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  opacity: 0.92;
  transition: transform 180ms ease, color 180ms ease, text-shadow 180ms ease, opacity 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.main-nav a:hover {
  transform: translateY(-2px) scale(1.06);
  opacity: 1;
  color: #fff;
  text-shadow:
    0 0 8px rgba(77, 229, 208, 0.36),
    0 0 14px rgba(124, 86, 255, 0.28);
}

.main-nav a:hover::after {
  background: linear-gradient(90deg, #55ead9, #8a61ff);
  box-shadow:
    0 0 8px rgba(77, 229, 208, 0.55),
    0 0 14px rgba(124, 86, 255, 0.4);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.header-cta i,
.btn i {
  width: 20px;
  height: 20px;
  color: currentColor;
}

.header-cta svg,
.btn svg,
.socials svg {
  display: block;
  width: 100%;
  height: 100%;
}

.header-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(105, 222, 255, 0.78);
  background:
    linear-gradient(rgba(5, 11, 34, 0.72), rgba(5, 11, 34, 0.72)) padding-box,
    linear-gradient(110deg, rgba(77, 229, 208, 0.95), rgba(124, 86, 255, 0.85), rgba(255, 142, 153, 0.74)) border-box;
  box-shadow:
    inset -1px 0 0 rgba(255, 142, 153, 0.58),
    0 0 18px rgba(77, 229, 208, 0.16),
    0 0 28px rgba(124, 86, 255, 0.18);
}

.header-cta::before {
  content: none;
  position: absolute;
  inset: -80% -35%;
  background: linear-gradient(105deg, transparent 36%, rgba(255, 255, 255, 0.36), transparent 64%);
  transform: translateX(-60%) rotate(10deg);
  animation: cta-shine 5.4s ease-in-out infinite;
  pointer-events: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 720px;
  padding: 118px 0 56px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 22%, rgba(137, 84, 255, 0.75), transparent 34%),
    radial-gradient(circle at 61% 27%, rgba(53, 226, 217, 0.45), transparent 22%),
    linear-gradient(135deg, #020715 0%, #071440 52%, #01081c 100%);
}

.hero-grid,
.section,
.footer-grid,
.footer-bottom,
.cta-band {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: start;
  gap: 24px;
}

.hero-copy {
  padding-bottom: 42px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--violet);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.hero .eyebrow,
.operators .eyebrow {
  color: #a98bff;
}

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

h1 {
  max-width: 520px;
  margin-bottom: 26px;
  font-size: clamp(42px, 4.15vw, 56px);
  line-height: 1.03;
  font-weight: 900;
}

h1 span,
h2 span,
.cta-band span {
  background: linear-gradient(110deg, var(--teal), var(--cyan), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 470px;
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.btn-primary {
  position: relative;
  isolation: isolate;
  color: var(--white);
  overflow: hidden;
  border: 1px solid rgba(103, 230, 222, 0.9);
  background: linear-gradient(105deg, #55ead9 0%, #4dbbff 45%, #8357ff 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 0 16px rgba(82, 232, 219, 0.34),
    0 0 28px rgba(126, 86, 255, 0.26),
    0 15px 35px rgba(79, 110, 255, 0.32);
}

.btn-primary::before {
  content: none;
  position: absolute;
  inset: -45%;
  z-index: -1;
  background: linear-gradient(115deg, transparent 22%, rgba(255, 255, 255, 0.72) 42%, transparent 62%);
  transform: translateX(-38%) rotate(8deg);
  animation: cta-shine 4.8s ease-in-out infinite;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.045);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 20px rgba(82, 232, 219, 0.42),
    0 0 34px rgba(126, 86, 255, 0.34),
    0 18px 42px rgba(79, 110, 255, 0.36);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover,
.header-cta:hover {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(105, 235, 225, 0.98);
  box-shadow:
    inset 0 0 0 1px rgba(180, 146, 255, 0.44),
    0 0 8px rgba(85, 234, 217, 0.58),
    0 0 18px rgba(85, 234, 217, 0.38),
    0 0 30px rgba(133, 91, 255, 0.34);
}

.btn-soft {
  min-height: 44px;
  color: #5936d8;
  border: 1px solid rgba(89, 54, 216, 0.38);
  background: rgba(255, 255, 255, 0.72);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.btn-soft:hover {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(124, 86, 255, 0.95);
  box-shadow:
    0 0 8px rgba(124, 86, 255, 0.42),
    0 0 20px rgba(124, 86, 255, 0.24);
}

.trust-row {
  display: flex;
  gap: 0;
  align-items: center;
  width: 100%;
  margin-top: 8px;
  text-align: left;
}

.trust-row strong,
.trust-row span,
.trust-row small {
  display: block;
}

.trust-row small {
  margin-top: 8px;
  color: #fff;
  font-size: 15px;
}

.trust-row .rating-stars {
  display: inline-block;
  color: #47d8b5;
  letter-spacing: 2px;
  text-shadow: 0 0 12px rgba(71, 216, 181, 0.34);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-visual::before {
  content: none;
  position: absolute;
  width: min(420px, 55vw);
  aspect-ratio: 1;
  left: 2%;
  top: 2%;
  border-radius: 50%;
  background: linear-gradient(135deg, #63f4da, #49a8ff 42%, #8b61ff 100%);
  filter: drop-shadow(0 0 42px rgba(86, 201, 255, 0.55));
  opacity: 0.95;
}

.hero-visual::after,
.symbol-small::after {
  content: "";
  position: absolute;
  background: currentColor;
  clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
}

.hero-visual::after {
  content: none;
}

.hero-visual img {
  position: absolute;
  right: -34px;
  top: 8px;
  z-index: 2;
  width: min(690px, 64vw);
  border-radius: 0;
  filter: drop-shadow(0 32px 58px rgba(0, 0, 0, 0.48));
  mix-blend-mode: normal;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, #000 12%, #000 100%),
    linear-gradient(to bottom, #000 0, #000 84%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0, #000 12%, #000 100%),
    linear-gradient(to bottom, #000 0, #000 84%, transparent 100%);
  mask-composite: intersect;
}

.feature-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: min(650px, calc(100% - 48px));
  margin: -118px max(24px, calc((100% - 1180px) / 2)) 0 auto;
  border: 1px solid transparent;
  border-radius: 22px;
  background:
    linear-gradient(rgba(8, 16, 48, 0.86), rgba(8, 16, 48, 0.86)) padding-box,
    linear-gradient(90deg, rgba(84, 231, 218, 0.95), rgba(156, 107, 255, 0.9), rgba(84, 231, 218, 0.65)) border-box;
  backdrop-filter: blur(18px);
  box-shadow:
    0 0 10px rgba(104, 231, 219, 0.12),
    0 0 22px rgba(142, 91, 255, 0.2),
    0 25px 75px rgba(0, 0, 0, 0.28);
}

.feature-strip span {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 0 20px;
  border-right: 1px solid rgba(160, 124, 255, 0.58);
  font-size: 14px;
  font-weight: 700;
  box-shadow: inset -1px 0 0 rgba(83, 228, 212, 0.16);
}

.feature-strip span:last-child {
  border-right: 0;
}

i[data-icon] {
  display: inline-grid;
  place-items: center;
  width: 30px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  font-style: normal;
  color: #764cff;
}

.feature-strip i[data-icon] {
  color: #b996ff;
  filter:
    drop-shadow(0 0 4px rgba(184, 150, 255, 0.72))
    drop-shadow(0 0 8px rgba(83, 228, 212, 0.18));
}

@keyframes cta-shine {
  0%, 48% {
    transform: translateX(-46%) rotate(8deg);
    opacity: 0;
  }

  62% {
    opacity: 0.72;
  }

  100% {
    transform: translateX(46%) rotate(8deg);
    opacity: 0;
  }
}

.section {
  padding: 76px 0;
}

.plans {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 58px;
  align-items: start;
}

.section-intro h2,
.about h2,
.cta-band h2 {
  margin-bottom: 22px;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.06;
  font-weight: 900;
}

.section-intro p,
.about-copy p,
.cta-band p {
  color: #273154;
  line-height: 1.7;
}

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

.plan-card {
  position: relative;
  isolation: isolate;
  min-height: 260px;
  padding: 30px 26px;
  border: 1px solid rgba(10, 18, 55, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  overflow: visible;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: auto -18px -24px;
  height: 72%;
  z-index: -2;
  opacity: 0;
  background:
    radial-gradient(circle at 18% 50%, rgba(77, 229, 208, 0.42), transparent 44%),
    radial-gradient(circle at 86% 56%, rgba(124, 86, 255, 0.36), transparent 46%);
  filter: blur(18px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.plan-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: #fff;
}

.plan-card:hover {
  transform: translateY(-10px) scale(1.035);
  border-color: rgba(125, 86, 255, 0.26);
  box-shadow:
    0 24px 58px rgba(48, 58, 132, 0.18);
}

.plan-card:hover::before {
  opacity: 1;
  transform: translateY(8px) scale(1.03);
}

.plan-card:hover i {
  box-shadow:
    0 0 18px rgba(77, 229, 208, 0.42),
    0 0 28px rgba(124, 86, 255, 0.32);
}

.plan-card i {
  width: 52px;
  margin-bottom: 24px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #52dbc7, #7b54ff);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.plan-card:hover i {
  transform: scale(1.06);
}

.plan-card h3 {
  font-size: 20px;
}

.plan-card p {
  min-height: 84px;
  color: #263052;
  line-height: 1.65;
}

.plan-card a,
.operators a {
  color: #5633d1;
  font-weight: 800;
}

.about {
  display: grid;
  grid-template-columns: 0.85fr 0.55fr 1fr;
  gap: 54px;
  align-items: center;
  border-top: 1px solid rgba(10, 18, 55, 0.06);
}

.symbol-large,
.symbol-small {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, #58dfc9, #5ca2ff 42%, #7d56ff);
  box-shadow: 0 28px 76px rgba(86, 90, 220, 0.28);
}

.symbol-large {
  width: min(250px, 100%);
  margin: 0 auto;
  isolation: isolate;
  border-radius: 0;
  background:
    url("assets/esfera-centro-final-clean.png") center / contain no-repeat;
  box-shadow: none;
}

.symbol-large {
  filter:
    drop-shadow(-10px 18px 18px rgba(77, 242, 223, 0.26))
    drop-shadow(12px 20px 22px rgba(139, 66, 255, 0.3));
}

.symbol-large::before {
  content: "";
  position: absolute;
  inset: 18px 22px 24px 23px;
  z-index: -1;
  border-radius: 50%;
  padding: 2px;
  background: conic-gradient(from 0deg, #4df2df, #27aefc, #3159ff, #8b42ff, #e43df7, #4df2df);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  filter:
    drop-shadow(0 0 5px rgba(77, 242, 223, 0.5))
    drop-shadow(0 0 10px rgba(139, 66, 255, 0.42));
  opacity: 0.92;
  animation: orbit-glow 4s linear infinite;
}

.symbol-large::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 6%;
  height: 22%;
  z-index: -1;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(77, 242, 223, 0.76), rgba(39, 174, 252, 0.62), rgba(139, 66, 255, 0.74), rgba(228, 61, 247, 0.68));
  filter: blur(18px);
  opacity: 0.68;
  transform: translateY(16px);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 34px;
}

.why-grid div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 7px 14px;
  align-items: start;
}

.why-grid i {
  grid-row: span 2;
}

.why-grid strong {
  font-size: 14px;
}

.why-grid span {
  color: #44506f;
  font-size: 13px;
  line-height: 1.55;
}

.operators {
  padding-top: 26px;
  overflow: hidden;
  text-align: center;
}

.operator-marquee {
  position: relative;
  width: 100%;
  margin: 32px 0 28px;
  overflow: hidden;
  contain: paint;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.operator-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 58px;
  animation: operator-scroll 24s linear infinite;
}

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

.operator-track img {
  display: block;
  width: auto;
  height: 58px;
  max-width: 160px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: saturate(1.08);
}

@keyframes operator-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 29px));
  }
}

@keyframes orbit-glow {
  to {
    transform: rotate(360deg);
  }
}

.cta-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 780px);
  justify-content: center;
  justify-items: center;
  gap: 20px;
  align-items: center;
  width: 100%;
  min-height: clamp(150px, 13.2vw, 190px);
  padding: 32px max(40px, calc((100% - 1180px) / 2 + 40px));
  overflow: hidden;
  color: var(--white);
  text-align: center;
  isolation: isolate;
  background:
    radial-gradient(circle at 0% 0%, rgba(77, 229, 208, 0.82), transparent 18%),
    radial-gradient(circle at 86% 35%, rgba(123, 84, 255, 0.72), transparent 24%),
    linear-gradient(96deg, #06123d 0%, #07133f 47%, #050b30 73%, #07193c 100%);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(77, 229, 208, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 34%);
  pointer-events: none;
}

.cta-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.cta-band h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 2.45vw, 36px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.cta-band h2 span {
  background: linear-gradient(110deg, var(--teal), var(--cyan), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-band p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
  font-size: 16px;
}

.cta-benefits {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 700;
}

.cta-benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 18px;
  gap: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  color: rgba(255, 255, 255, 0.88);
}

.cta-benefits span:last-child {
  border-right: 0;
}

.cta-benefits i {
  width: 19px;
  height: 19px;
  color: rgba(255, 255, 255, 0.84);
  filter: drop-shadow(0 0 8px rgba(123, 84, 255, 0.48));
}

.cta-orb {
  position: absolute;
  z-index: 1;
  right: max(32px, calc((100% - 1180px) / 2 + 32px));
  top: 50%;
  width: clamp(96px, 9vw, 118px);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translateY(-50%);
  background: url("assets/esfera-1.png") center / cover no-repeat;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  color: inherit;
  opacity: 0.76;
  filter: drop-shadow(0 0 28px rgba(123, 84, 255, 0.58));
}

.footer {
  padding: 46px 0 24px;
  color: var(--white);
  background: #030817;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer .brand {
  margin-bottom: 20px;
}

.footer p,
.footer span,
.footer a {
  color: rgba(255, 255, 255, 0.76);
}

.footer h3 {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 12px;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-weight: 800;
}

.socials i {
  width: 17px;
  height: 17px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  font-size: 13px;
}

.story-page {
  min-height: 100vh;
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(124, 86, 255, 0.44), transparent 32%),
    radial-gradient(circle at 14% 18%, rgba(77, 229, 208, 0.3), transparent 24%),
    linear-gradient(135deg, #030817 0%, #071440 55%, #030817 100%);
}

.story-header {
  position: sticky;
  margin-top: 0;
  padding: 24px 0;
}

.story-main {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0 72px;
}

.story-hero {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 48px;
  align-items: center;
  padding: 72px 0 56px;
}

.story-hero h1 {
  max-width: 760px;
  font-size: clamp(46px, 5.2vw, 72px);
}

.story-hero p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.7;
}

.story-symbol {
  position: relative;
  width: 260px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: url("assets/esfera-1.png") center / cover no-repeat;
  border: 0;
  box-shadow:
    0 0 34px rgba(80, 232, 218, 0.22),
    0 0 54px rgba(124, 86, 255, 0.28);
  image-rendering: auto;
  transition: filter 120ms ease, transform 120ms ease;
}

.story-symbol::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/esfera-2.png");
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 620ms ease, filter 620ms ease, transform 620ms ease;
}

.sphere-lit .story-symbol::after {
  opacity: 1;
  transform: scale(1.01);
  filter:
    drop-shadow(0 0 14px rgba(255, 255, 255, 0.4))
    drop-shadow(0 0 24px rgba(125, 86, 255, 0.28));
}

.story-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.story-content article {
  padding: 34px;
  border: 1px solid rgba(139, 107, 255, 0.26);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.story-content h2,
.story-cta h2 {
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.12;
}

.story-content p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.story-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding: 34px;
  border-radius: 18px;
  background: linear-gradient(105deg, rgba(77, 229, 208, 0.22), rgba(124, 86, 255, 0.2));
}

.story-cta h2 {
  margin-bottom: 0;
}

.career-page {
  background:
    radial-gradient(circle at 82% 18%, rgba(124, 86, 255, 0.5), transparent 30%),
    radial-gradient(circle at 10% 10%, rgba(77, 229, 208, 0.34), transparent 26%),
    linear-gradient(135deg, #030817 0%, #071440 54%, #04091f 100%);
}

.career-main {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 84px 0 78px;
}

.career-hero {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 44px;
  align-items: center;
  padding: 70px 0 44px;
}

.career-hero-copy h1 {
  max-width: 820px;
  font-size: clamp(44px, 5vw, 70px);
  line-height: 1.02;
}

.career-hero-copy p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.7;
}

.career-symbol {
  width: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: url("assets/esfera-1.png") center / cover no-repeat;
  filter:
    drop-shadow(0 0 24px rgba(77, 229, 208, 0.4))
    drop-shadow(0 0 38px rgba(124, 86, 255, 0.42));
  opacity: 0.88;
}

.career-panel {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 26px;
  align-items: stretch;
  padding: 34px;
  border: 1px solid rgba(139, 107, 255, 0.26);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.24);
}

.career-info {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 12px 8px 12px 0;
}

.career-info h2 {
  max-width: 430px;
  margin-bottom: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.career-info p {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.career-points {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.career-points span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.career-points i {
  width: 22px;
  height: 22px;
  color: var(--teal);
  filter: drop-shadow(0 0 10px rgba(77, 229, 208, 0.36));
}

.career-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(105, 222, 255, 0.2);
  border-radius: 18px;
  background: rgba(3, 8, 23, 0.56);
}

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

.career-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.career-form input,
.career-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 0 14px;
  color: #fff;
  font: inherit;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.career-form select {
  color: rgba(255, 255, 255, 0.82);
}

.career-form option {
  color: #071038;
}

.career-form input:focus,
.career-form select:focus {
  border-color: rgba(77, 229, 208, 0.78);
  background: rgba(255, 255, 255, 0.11);
  box-shadow:
    0 0 0 3px rgba(77, 229, 208, 0.12),
    0 0 18px rgba(124, 86, 255, 0.18);
}

.file-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.file-drop {
  display: grid;
  place-items: center;
  min-height: 132px;
  padding: 22px;
  border: 1px dashed rgba(77, 229, 208, 0.58);
  border-radius: 16px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 35% 20%, rgba(77, 229, 208, 0.18), transparent 36%),
    rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.file-drop:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 86, 255, 0.84);
  box-shadow:
    0 0 18px rgba(77, 229, 208, 0.2),
    0 0 28px rgba(124, 86, 255, 0.18);
}

.file-drop i {
  width: 30px;
  height: 30px;
  margin-bottom: 8px;
  color: var(--teal);
}

.file-drop strong,
.file-drop small {
  display: block;
}

.file-drop small {
  max-width: 100%;
  margin-top: 5px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.7);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.career-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.career-status {
  margin: 2px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(77, 229, 208, 0.42);
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  text-align: center;
  background: rgba(77, 229, 208, 0.13);
  box-shadow: 0 0 24px rgba(77, 229, 208, 0.14);
}

.career-status:not(.is-visible):not(:target) {
  display: none;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .main-nav {
    position: fixed;
    inset: 104px 16px auto;
    flex-direction: column;
    gap: 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(4, 9, 27, 0.96);
  }

  body.menu-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 16px 8px;
  }

  .hero-grid,
  .plans,
  .about,
  .career-hero,
  .career-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 20px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-visual img {
    right: 50%;
    top: 20px;
    width: min(670px, 96vw);
    transform: translateX(50%);
  }

  .feature-strip,
  .plan-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-band {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 34px 28px;
  }

  .cta-copy {
    max-width: 580px;
  }

  .cta-benefits {
    justify-content: flex-start;
  }

  .cta-orb {
    position: absolute;
    right: 18px;
    top: 50%;
    width: 124px;
    transform: translateY(-50%);
    opacity: 0.28;
  }

  .feature-strip {
    margin: 20px auto 0;
  }

  .career-symbol {
    width: 170px;
  }

  .career-info {
    padding: 0;
  }

}

@media (max-width: 720px) {
  .site-header,
  .hero-grid,
  .section,
  .footer-grid,
  .footer-bottom,
  .cta-band,
  .career-main {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 46px;
  }

  .brand-text strong {
    font-size: 26px;
  }

  .brand-text span {
    font-size: 14px;
  }

  .brand-wordmark {
    width: 74px;
    height: 31px;
    transform: translateY(1px);
  }

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

  h1 {
    font-size: 42px;
  }

  .hero-actions,
  .trust-row {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .header-cta {
    width: 100%;
  }

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

  .feature-strip,
  .plan-grid,
  .why-grid,
  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .feature-strip span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .feature-strip span:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 56px 0;
  }

  .about {
    gap: 34px;
  }

  .symbol-large {
    width: 190px;
  }

  .cta-band {
    width: 100%;
    padding: 32px 20px;
  }

  .cta-band h2 {
    font-size: 30px;
  }

  .cta-band p {
    font-size: 15px;
  }

  .cta-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cta-benefits span {
    padding: 0;
    border-right: 0;
  }

  .cta-orb {
    display: none;
  }

  .operator-track {
    gap: 34px;
    animation-duration: 18s;
  }

  .operator-track img {
    height: 48px;
    max-width: 138px;
  }

  .footer-bottom {
    justify-content: start;
  }

  .story-main {
    width: min(100% - 28px, 1120px);
    padding-top: 40px;
  }

  .story-hero,
  .story-content,
  .career-hero,
  .career-panel,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .career-main {
    padding-top: 40px;
  }

  .career-hero {
    gap: 24px;
    padding: 42px 0 34px;
  }

  .career-hero-copy h1 {
    font-size: 40px;
  }

  .career-hero-copy p {
    font-size: 17px;
  }

  .career-panel {
    padding: 22px;
  }

  .career-form {
    padding: 20px;
  }

  .story-symbol {
    width: 160px;
  }

  .story-cta {
    align-items: stretch;
    flex-direction: column;
  }
}
