:root {
  --ink: #101827;
  --muted: #5e6d7f;
  --line: #dbe5ee;
  --white: #ffffff;
  --night: #060a1f;
  --blue: #0e79ff;
  --teal: #20b7a8;
  --lime: #9ee800;
  --lime-dark: #69ab00;
  --soft: #f5f8fb;
  --shadow: 0 22px 60px rgba(6, 10, 31, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 229, 238, 0.82);
  backdrop-filter: blur(18px);
}

.site-header.compact {
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 178px;
  color: var(--night);
  font-weight: 900;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(105, 171, 0, 0.22);
}

.nav,
.footer-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav a:hover,
.footer-links a:hover,
.legal-content a {
  color: var(--lime-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.96fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
  min-height: 760px;
  padding: 72px clamp(20px, 5vw, 72px) 88px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 16%, rgba(32, 183, 168, 0.35), transparent 30%),
    radial-gradient(circle at 18% 78%, rgba(158, 232, 0, 0.22), transparent 25%),
    linear-gradient(135deg, #05061a 0%, #0a1635 52%, #123844 100%);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--lime-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: var(--lime);
}

.hero h1,
.legal-hero h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 7vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
}

.button-primary {
  color: var(--night);
  background: var(--lime);
  box-shadow: 0 14px 30px rgba(158, 232, 0, 0.24);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.26);
}

.hero-visual {
  display: grid;
  place-items: center;
  min-height: 560px;
}

.phone {
  position: relative;
  width: min(350px, 76vw);
  aspect-ratio: 0.54;
  padding: 20px;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.phone-top {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 86px;
  height: 7px;
  background: #2c3648;
  border-radius: 999px;
  transform: translateX(-50%);
}

.app-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  height: 100%;
  padding: 36px 18px 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #071026 0%, #102844 100%);
  border-radius: 24px;
}

.app-logo {
  width: 92px;
  height: 92px;
  border-radius: 20px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: #142000;
  background: var(--lime);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
}

.browser-toolbar {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  min-height: 38px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: 0.86rem;
}

.browser-toolbar span {
  width: 10px;
  height: 10px;
  background: var(--lime);
  border-radius: 50%;
}

.browser-window {
  width: 100%;
  min-height: 138px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
}

.search-line {
  height: 42px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, rgba(14, 121, 255, 0.16), rgba(158, 232, 0, 0.22));
  border-radius: 8px;
}

.content-lines {
  display: grid;
  gap: 10px;
}

.content-lines span {
  display: block;
  height: 12px;
  background: #dfe8f0;
  border-radius: 8px;
}

.content-lines span:nth-child(2) {
  width: 74%;
}

.content-lines span:nth-child(3) {
  width: 52%;
}

.server-card,
.speed-grid div,
.feature-card,
.price-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.server-card {
  width: 100%;
  padding: 15px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.server-card span,
.server-card strong {
  display: block;
}

.server-card span,
.speed-grid span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.86rem;
}

.speed-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.speed-grid div {
  padding: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.speed-grid strong,
.speed-grid span {
  display: block;
}

.section {
  padding: 86px clamp(20px, 5vw, 72px);
}

.band {
  background: var(--soft);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section h2,
.legal-content h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

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

.feature-card,
.price-card {
  min-height: 230px;
  padding: 24px;
  background: var(--white);
}

.feature-card span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--lime-dark);
  font-weight: 950;
}

.feature-card h3,
.price-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.feature-card p,
.price-card p,
.pricing-note,
.support-section p,
.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 1.03rem;
}

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

.price-card.highlighted {
  border-color: rgba(105, 171, 0, 0.45);
  box-shadow: 0 18px 42px rgba(105, 171, 0, 0.13);
}

.plan-name {
  margin-bottom: 12px;
  color: var(--lime-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: clamp(2.1rem, 5vw, 3.7rem);
  line-height: 1;
}

.price-card h3 span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
}

.pricing-note {
  max-width: 850px;
  margin: 24px 0 0;
}

.support-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 24px;
  background: var(--white);
  font-style: normal;
  box-shadow: 0 14px 36px rgba(16, 24, 39, 0.08);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--night);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--white);
}

.legal-page {
  background: var(--white);
}

.legal-hero {
  padding: 70px clamp(20px, 5vw, 72px);
  background: var(--soft);
}

.legal-hero p:last-child {
  color: var(--muted);
  font-weight: 700;
}

.legal-content {
  max-width: 980px;
  padding: 58px clamp(20px, 5vw, 72px) 86px;
}

.legal-content h2 {
  margin-top: 34px;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

@media (max-width: 900px) {
  .hero,
  .support-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

@media (max-width: 720px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header.compact {
    gap: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .site-header.compact .brand {
    font-size: 0.9rem;
  }

  .site-header.compact .brand img {
    width: 30px;
    height: 30px;
  }

  .site-header.compact .nav {
    gap: 12px;
    font-size: 0.82rem;
  }

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

  .hero h1 {
    font-size: clamp(2.55rem, 15vw, 4.6rem);
  }

  .legal-hero h1 {
    margin-bottom: 8px;
    font-size: clamp(1.85rem, 9vw, 2.7rem);
    line-height: 1.05;
  }

  .legal-hero .eyebrow,
  .legal-hero p:last-child {
    margin-bottom: 6px;
    font-size: 0.78rem;
  }

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

  .legal-hero {
    padding-top: 28px;
    padding-bottom: 26px;
  }

  .legal-content {
    padding-top: 36px;
    padding-bottom: 58px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 1rem;
  }
}
