:root {
  --background: #f6f7fb;
  --surface: #ffffff;
  --text: #12182a;
  --muted: #687086;
  --border: #dfe3ec;
  --dark: #0c1020;
  --dark-soft: #171c30;
  --accent: #665cff;
  --accent-dark: #5147e5;
  --accent-soft: #eeecff;
  --green: #35c995;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--background);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.container {
  width: calc(100% - 48px);
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
}

header {
  padding-top: 18px;
}

.nav-wrap {
  min-height: 68px;
  padding: 12px 14px 12px 20px;
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 19px;
  font-weight: 700;
}

.logo-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 12px;
  background: var(--accent);
  font-size: 17px;
}

nav {
  margin-right: auto;
  margin-left: auto;
  display: flex;
  gap: 36px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

nav a:hover {
  color: var(--accent);
}

.small-button {
  padding: 12px 17px;
  color: white;
  border-radius: 12px;
  background: var(--dark);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

.hero {
  padding-top: 90px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .7fr);
  gap: 80px;
  align-items: center;
}

.label {
  width: fit-content;
  margin-bottom: 24px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #515a70;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  font-size: 11px;
  font-weight: 700;
}

.label span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

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

h1 {
  margin-bottom: 26px;
  font-size: 76px;
  line-height: .98;
  letter-spacing: -4.5px;
}

h1 strong {
  color: var(--accent);
}

.intro {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.actions {
  margin-bottom: 46px;
  display: flex;
  gap: 10px;
}

.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

.button.primary {
  color: white;
  border-color: var(--accent);
  background: var(--accent);
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  background: var(--surface);
}

.button.secondary:hover {
  border-color: #bec4d1;
}

.hero-points {
  padding-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  border-top: 1px solid var(--border);
}

.hero-points div {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.hero-points span {
  color: var(--accent);
  font-family: monospace;
  font-size: 9px;
}

.hero-points strong {
  font-size: 12px;
}

.hero-points small {
  color: var(--muted);
  font-size: 10px;
}

.vm-card {
  padding: 22px;
  color: white;
  border-radius: 26px;
  background: var(--dark);
  box-shadow: 0 24px 50px rgba(12, 16, 32, .18);
}

.vm-header {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vm-header div {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
}

.online {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.running {
  padding: 6px 8px;
  color: #79e5bd;
  border-radius: 7px;
  background: #16362f;
  font-size: 8px;
  font-weight: 700;
}

.vm-screen {
  min-height: 235px;
  padding: 22px;
  overflow: hidden;
  color: #7f8aa6;
  border: 1px solid #2a3047;
  border-radius: 17px;
  background: #080b16;
  font-family: monospace;
  font-size: 11px;
  line-height: 2;
}

.prompt-line {
  margin-top: 15px;
  color: #a5adc1;
}

.prompt-line:first-child {
  margin-top: 0;
}

.prompt-line span {
  color: #8b82ff;
}

.prompt-line i {
  width: 6px;
  height: 12px;
  display: inline-block;
  vertical-align: middle;
  background: #747e98;
}

.vm-resources {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.vm-resources div {
  padding: 14px 10px;
  display: grid;
  gap: 6px;
  border: 1px solid #2a3047;
  border-radius: 13px;
  background: var(--dark-soft);
}

.vm-resources span {
  color: #707b97;
  font-size: 8px;
}

.vm-resources strong {
  font-size: 11px;
}

.vm-note {
  margin: 16px 0 0;
  color: #717b94;
  text-align: center;
  font-size: 9px;
}

.plans {
  padding-top: 110px;
  padding-bottom: 110px;
}

.section-head {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 70px;
  align-items: end;
}

.eyebrow {
  margin-bottom: 13px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: 55px;
  line-height: 1.05;
  letter-spacing: -3px;
}

.section-head > p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

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

.plan {
  min-width: 0;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
}

.plan.featured {
  border: 2px solid var(--accent);
}

.recommended {
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: white;
  border-radius: 999px;
  background: var(--accent);
  font-size: 9px;
  font-weight: 700;
}

.plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.plan-top h3 {
  margin-bottom: 0;
  font-size: 22px;
}

.plan-top span {
  padding: 6px 8px;
  color: #747d91;
  border-radius: 7px;
  background: #f0f2f6;
  font-size: 8px;
  font-weight: 700;
}

.plan > p {
  min-height: 44px;
  margin: 17px 0 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.price {
  padding-bottom: 23px;
  display: flex;
  align-items: baseline;
  gap: 7px;
  border-bottom: 1px solid var(--border);
}

.price strong {
  font-size: 32px;
}

.price span {
  color: var(--muted);
  font-size: 10px;
}

.plan ul {
  margin: 13px 0 26px;
  padding: 0;
  list-style: none;
}

.plan li {
  padding: 11px 0;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid #edf0f4;
  font-size: 11px;
}

.plan li span {
  color: var(--muted);
}

.full {
  width: 100%;
  margin-top: auto;
}

.custom-note {
  margin: 22px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 11px;
}

.policy-section {
  padding-top: 110px;
  padding-bottom: 110px;
  color: white;
  border-radius: 34px;
  background: var(--dark);
}

.policy-heading > p {
  color: #929ab0;
}

.policy-box {
  overflow: hidden;
  border: 1px solid #30364d;
  border-radius: 22px;
  background: var(--dark-soft);
}

.policy-tabs {
  padding: 9px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  border-bottom: 1px solid #30364d;
}

.policy-tabs button {
  min-width: 0;
  min-height: 46px;
  padding: 10px;
  color: #8f98b0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.policy-tabs button[aria-selected="true"] {
  color: var(--text);
  background: white;
}

.policy-content article {
  min-height: 300px;
  padding: 55px;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.policy-content article[hidden] {
  display: none;
}

.policy-icon {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8b3ff;
  border-radius: 18px;
  background: #29284b;
  font-family: monospace;
  font-size: 12px;
}

.policy-content h3 {
  margin-bottom: 14px;
  font-size: 35px;
  letter-spacing: -1.5px;
}

.policy-content article > div > p:last-child {
  max-width: 700px;
  margin-bottom: 0;
  color: #9ba3b8;
  font-size: 15px;
  line-height: 1.7;
}

.about {
  padding-top: 110px;
  padding-bottom: 110px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 500px);
  gap: 100px;
  align-items: start;
}

.about-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.about-copy a {
  margin-top: 16px;
  display: inline-flex;
  gap: 18px;
  color: var(--accent);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

.contact {
  margin-bottom: 90px;
  padding: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: white;
  border-radius: 26px;
  background: var(--accent);
}

.contact .eyebrow {
  color: #d9d6ff;
}

.contact h2 {
  margin-bottom: 10px;
}

.contact p:last-child {
  margin-bottom: 0;
  color: #dedcff;
  font-size: 13px;
}

.button.light {
  flex: 0 0 auto;
  color: var(--text);
  border-color: white;
  background: white;
}

footer {
  border-top: 1px solid var(--border);
  background: white;
}

.footer-wrap {
  min-height: 100px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  color: var(--muted);
  font-size: 11px;
}

.footer-wrap .logo {
  color: var(--text);
  font-size: 16px;
}

.footer-wrap p {
  margin-bottom: 0;
  text-align: center;
}

.footer-wrap p:last-child {
  text-align: right;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .small-button {
    margin-left: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .vm-card {
    width: 100%;
    max-width: 520px;
  }

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

  .plan {
    max-width: 600px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

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

@media (max-width: 650px) {
  .container {
    width: calc(100% - 28px);
  }

  header {
    padding-top: 10px;
  }

  .nav-wrap {
    min-height: 62px;
    padding: 10px 11px 10px 14px;
    border-radius: 16px;
  }

  .logo {
    font-size: 17px;
  }

  .logo-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .small-button {
    padding: 10px 13px;
  }

  .hero {
    padding-top: 65px;
    padding-bottom: 75px;
  }

  h1 {
    font-size: 49px;
    letter-spacing: -3px;
  }

  .intro {
    font-size: 16px;
  }

  .actions {
    display: grid;
  }

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

  .hero-points div {
    grid-template-columns: 30px 1fr;
  }

  .hero-points small {
    grid-column: 2;
  }

  .vm-card {
    padding: 16px;
    border-radius: 20px;
  }

  .vm-screen {
    min-height: 210px;
    padding: 17px;
    font-size: 10px;
  }

  .vm-resources div {
    padding: 11px 7px;
  }

  .vm-resources strong {
    font-size: 9px;
  }

  .plans,
  .policy-section,
  .about {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  h2 {
    font-size: 41px;
    letter-spacing: -2px;
  }

  .plan {
    padding: 22px;
  }

  .policy-section {
    border-radius: 24px;
  }

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

  .policy-content article {
    min-height: 390px;
    padding: 30px 24px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .policy-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
  }

  .policy-content h3 {
    font-size: 29px;
  }

  .contact {
    margin-bottom: 60px;
    padding: 35px 25px;
    display: grid;
    border-radius: 20px;
  }

  .contact .button {
    width: 100%;
  }

  .footer-wrap {
    padding-top: 30px;
    padding-bottom: 30px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-wrap p,
  .footer-wrap p:last-child {
    text-align: left;
  }
}

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