:root {
  --ink: #f7fbff;
  --soft: #adc0cf;
  --muted: #74899a;
  --deep: #071426;
  --panel: rgba(12, 38, 60, .86);
  --panel-strong: rgba(13, 48, 75, .96);
  --line: rgba(95, 225, 255, .25);
  --green: #4ff58a;
  --cyan: #36c7ff;
  --yellow: #ffd75a;
  --orange: #ff8a3d;
  --red: #ff5a66;
  --shadow: 0 28px 90px rgba(0, 0, 0, .42);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Avenir Next, Trebuchet MS, Verdana, sans-serif;
  background:
    radial-gradient(circle at 8% -12%, rgba(54,199,255,.34), transparent 32%),
    radial-gradient(circle at 88% 6%, rgba(79,245,138,.22), transparent 30%),
    linear-gradient(180deg, #020813, var(--deep) 48%, #050d18);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.85), transparent 78%);
}
a { color: inherit; }
.shell { width: min(1040px, 100%); margin: 0 auto; padding: 24px 18px 46px; }
.topbar {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(4, 16, 29, .72);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}
.brand img { display: block; width: min(204px, 52vw); max-height: 58px; object-fit: contain; }
.back {
  display: inline-grid;
  place-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: #06101d;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  font-weight: 1000;
  text-decoration: none;
}
.hero { text-align: center; padding: 62px 0 32px; }
.eyebrow {
  width: fit-content;
  margin: 0 auto 14px;
  padding: 9px 13px;
  border: 1px solid rgba(79,245,138,.46);
  border-radius: 999px;
  color: var(--green);
  background: rgba(79,245,138,.10);
  font-size: .78rem;
  font-weight: 1000;
  letter-spacing: .10em;
  text-transform: uppercase;
}
h1 { margin: 0; font-size: clamp(2.4rem, 7vw, 5rem); line-height: .92; letter-spacing: -.055em; }
.version { margin: 16px 0 0; color: var(--soft); font-weight: 900; }
.card, .story, .value, .team-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(15,55,84,.88), rgba(8,28,48,.96));
  box-shadow: var(--shadow);
}
.card { padding: clamp(22px, 5vw, 48px); }
.intro { color: rgba(247,251,255,.86); font-size: 1.08rem; line-height: 1.7; font-weight: 800; }
.info {
  margin: 26px 0 42px;
  padding: 18px;
  border-left: 6px solid var(--green);
  border-radius: 0 18px 18px 0;
  background: rgba(79,245,138,.10);
  color: rgba(255,255,255,.9);
  line-height: 1.55;
  font-weight: 900;
}
.article { padding: 30px 0; border-top: 1px solid rgba(255,255,255,.10); }
.article:first-of-type { border-top: 0; padding-top: 0; }
.article-title { display: flex; align-items: baseline; gap: 14px; margin-bottom: 14px; }
.article-title span { color: var(--yellow); font-weight: 1000; white-space: nowrap; }
h2 { margin: 0; font-size: clamp(1.35rem, 3vw, 2rem); }
.article p, .article li { color: var(--soft); line-height: 1.75; font-weight: 800; }
ul { padding-left: 20px; }
.pricing-grid, .values, .team-grid { display: grid; gap: 16px; }
.pricing-grid { grid-template-columns: repeat(2, 1fr); margin: 26px 0 36px; }
.plan { padding: 22px; border-radius: 24px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); }
.plan.pro { border: 2px solid transparent; background: linear-gradient(180deg, rgba(16,65,88,.96), rgba(6,24,42,.98)) padding-box, linear-gradient(135deg, var(--green), var(--cyan)) border-box; }
.price { font-size: 2rem; font-weight: 1000; letter-spacing: -.04em; }
.about-lead { max-width: 780px; margin: 0 auto; color: var(--soft); font-size: 1.18rem; line-height: 1.65; font-weight: 800; }
.story { padding: clamp(24px, 5vw, 48px); margin: 28px 0; }
.highlight { padding: 20px; border-left: 6px solid var(--orange); border-radius: 0 18px 18px 0; background: rgba(255,138,61,.12); color: white; font-weight: 1000; line-height: 1.55; }
.values { grid-template-columns: repeat(3, 1fr); margin: 28px 0; }
.value { padding: 24px; text-align: center; box-shadow: 0 18px 48px rgba(0,0,0,.24); }
.value-icon { display: block; font-size: 2.8rem; margin-bottom: 12px; }
.value p, .team-card p { color: var(--soft); line-height: 1.55; font-weight: 800; }
.team-grid { grid-template-columns: repeat(3, 1fr); margin-top: 24px; }
.team-card { padding: 24px; text-align: center; }
.avatar { width: 96px; aspect-ratio: 1; display: grid; place-items: center; margin: 0 auto 16px; border-radius: 50%; background: rgba(255,255,255,.08); font-size: 2.8rem; border: 3px solid rgba(79,245,138,.46); }
.role { color: var(--green); font-weight: 1000; text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; }
footer { display: flex; justify-content: space-between; gap: 18px; margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.58); font-size: .9rem; font-weight: 800; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-links a { color: rgba(255,255,255,.7); text-decoration: none; }
@media (max-width: 760px) {
  .topbar { border-radius: 24px; }
  .back { min-height: 40px; padding: 0 12px; font-size: .84rem; }
  .pricing-grid, .values, .team-grid { grid-template-columns: 1fr; }
  .article-title { flex-direction: column; gap: 4px; }
  footer { flex-direction: column; }
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
}
.footer-links a:hover {
  color: white;
  border-color: rgba(79,245,138,.34);
  background: rgba(79,245,138,.08);
}
