
    :root {
      --bg: #07111f;
      --bg-soft: #0b1728;
      --panel: rgba(15, 31, 51, .74);
      --panel-solid: #0f1f33;
      --line: rgba(148, 178, 214, .18);
      --text: #f5f8fc;
      --muted: #a9b8ca;
      --primary: #42d6b4;
      --primary-strong: #20b99a;
      --secondary: #6aa6ff;
      --warning: #ffce6a;
      --danger: #ff8181;
      --shadow: 0 24px 80px rgba(0, 0, 0, .34);
      --radius-sm: 12px;
      --radius: 20px;
      --radius-lg: 30px;
      --max: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 92px;
    }

    body {
      margin: 0;
      min-width: 320px;
      color: var(--text);
      background:
        radial-gradient(circle at 78% 12%, rgba(49, 135, 255, .14), transparent 32rem),
        radial-gradient(circle at 13% 28%, rgba(66, 214, 180, .10), transparent 28rem),
        var(--bg);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
    }

    body.menu-open,
    body.modal-open {
      overflow: hidden;
    }

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

    button,
    input {
      font: inherit;
    }

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

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

    .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;
    }

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

    .section {
      padding: 104px 0;
    }

    .section-sm {
      padding: 72px 0;
    }

    .section-heading {
      max-width: 720px;
      margin-bottom: 42px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 18px;
      color: var(--primary);
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 26px;
      height: 1px;
      background: currentColor;
    }

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

    h1 {
      max-width: 780px;
      margin-bottom: 22px;
      font-size: clamp(2.7rem, 7vw, 5.8rem);
      line-height: .98;
      letter-spacing: -.055em;
    }

    h2 {
      margin-bottom: 16px;
      font-size: clamp(2rem, 4vw, 3.4rem);
      line-height: 1.08;
      letter-spacing: -.04em;
    }

    h3 {
      margin-bottom: 10px;
      font-size: 1.17rem;
      line-height: 1.3;
    }

    p {
      color: var(--muted);
    }

    .lead {
      max-width: 680px;
      font-size: clamp(1.05rem, 1.8vw, 1.26rem);
    }

    .gradient-text {
      color: transparent;
      background: linear-gradient(90deg, #fff 5%, var(--primary) 52%, var(--secondary));
      -webkit-background-clip: text;
      background-clip: text;
    }

    .site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 50;
      border-bottom: 1px solid transparent;
      transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
    }

    .site-header.scrolled {
      border-color: var(--line);
      background: rgba(7, 17, 31, .86);
      box-shadow: 0 10px 35px rgba(0, 0, 0, .18);
      backdrop-filter: blur(16px);
    }

    .nav {
      position: relative;
      display: flex;
      min-height: 78px;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      font-size: 1.02rem;
      font-weight: 850;
      letter-spacing: -.025em;
      white-space: nowrap;
    }

    .brand-mark {
      display: grid;
      width: 38px;
      aspect-ratio: 1;
      place-items: center;
      border: 1px solid rgba(107, 237, 207, .38);
      border-radius: 12px;
      background: linear-gradient(145deg, rgba(66, 214, 180, .24), rgba(106, 166, 255, .16));
      box-shadow: inset 0 0 24px rgba(66, 214, 180, .06);
    }

    .brand-mark svg {
      width: 22px;
    }

    .brand-dot {
      color: var(--primary);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 30px;
      color: #d9e4ef;
      font-size: .93rem;
      font-weight: 650;
    }

    .nav-links a:not(.btn) {
      position: relative;
    }

    .nav-links a:not(.btn)::after {
      position: absolute;
      right: 0;
      bottom: -7px;
      left: 0;
      height: 1px;
      content: "";
      background: var(--primary);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform .2s ease;
    }

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

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      padding: 0;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 12px;
      color: var(--text);
      background: var(--panel);
      cursor: pointer;
    }

    .menu-toggle svg {
      width: 22px;
    }

    .btn {
      display: inline-flex;
      min-height: 48px;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 0 20px;
      border: 1px solid transparent;
      border-radius: 13px;
      font-size: .94rem;
      font-weight: 780;
      cursor: pointer;
      transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
    }

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

    .btn:focus-visible,
    .menu-toggle:focus-visible,
    .cookie-link:focus-visible,
    .switch input:focus-visible + .slider {
      outline: 3px solid rgba(106, 166, 255, .45);
      outline-offset: 3px;
    }

    .btn-primary {
      color: #04120e;
      background: linear-gradient(135deg, var(--primary), #8fe8d5);
      box-shadow: 0 13px 34px rgba(66, 214, 180, .16);
    }

    .btn-primary:hover {
      box-shadow: 0 17px 40px rgba(66, 214, 180, .25);
    }

    .btn-secondary {
      border-color: var(--line);
      color: var(--text);
      background: rgba(255, 255, 255, .045);
    }

    .btn-secondary:hover {
      border-color: rgba(66, 214, 180, .36);
      background: rgba(66, 214, 180, .07);
    }

    .btn-small {
      min-height: 42px;
      padding-inline: 16px;
      border-radius: 11px;
      font-size: .88rem;
    }

    .hero {
      position: relative;
      display: flex;
      min-height: 760px;
      align-items: center;
      padding: 145px 0 80px;
      overflow: hidden;
    }

    .hero::before {
      position: absolute;
      inset: 0;
      z-index: -2;
      content: "";
      background-image:
        linear-gradient(rgba(106, 166, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(106, 166, 255, .035) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: linear-gradient(to bottom, black 10%, transparent 90%);
    }

    .hero-orb {
      position: absolute;
      z-index: -1;
      top: 13%;
      right: -180px;
      width: 620px;
      height: 620px;
      border: 1px solid rgba(106, 166, 255, .15);
      border-radius: 50%;
      background: radial-gradient(circle, rgba(31, 108, 218, .16), transparent 68%);
    }

    .hero-grid {
      display: grid;
      align-items: center;
      gap: 74px;
      grid-template-columns: minmax(0, 1.08fr) minmax(340px, .78fr);
    }

    .hero-copy {
      position: relative;
      z-index: 2;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 13px;
      margin: 32px 0 35px;
    }

    .hero-proof {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 24px;
      color: #c9d6e4;
      font-size: .91rem;
      font-weight: 630;
    }

    .hero-proof span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .check {
      display: grid;
      width: 20px;
      height: 20px;
      place-items: center;
      border-radius: 50%;
      color: var(--primary);
      background: rgba(66, 214, 180, .12);
    }

    .server-card {
      position: relative;
      border: 1px solid rgba(148, 178, 214, .22);
      border-radius: var(--radius-lg);
      background: linear-gradient(145deg, rgba(18, 38, 62, .90), rgba(9, 22, 38, .92));
      box-shadow: var(--shadow);
      transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
      overflow: hidden;
    }

    .server-card::before {
      position: absolute;
      inset: 0;
      content: "";
      background: linear-gradient(120deg, transparent 32%, rgba(255, 255, 255, .055), transparent 58%);
      transform: translateX(-100%);
      animation: shine 6s infinite 1.5s;
    }

    @keyframes shine {
      0%, 45% { transform: translateX(-110%); }
      68%, 100% { transform: translateX(110%); }
    }

    .server-topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 20px;
      border-bottom: 1px solid var(--line);
    }

    .server-dots {
      display: flex;
      gap: 7px;
    }

    .server-dots i {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #506379;
    }

    .server-dots i:first-child {
      background: var(--primary);
      box-shadow: 0 0 14px rgba(66, 214, 180, .8);
    }

    .status {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: #b7f3e5;
      font-size: .73rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .status::before {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      content: "";
      background: var(--primary);
      box-shadow: 0 0 0 5px rgba(66, 214, 180, .09);
    }

    .server-body {
      padding: 24px;
    }

    .server-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 22px;
    }

    .server-title strong {
      font-size: 1.03rem;
    }

    .server-title span {
      color: var(--muted);
      font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
      font-size: .74rem;
    }

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

    .metric {
      min-height: 112px;
      padding: 17px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: rgba(255, 255, 255, .03);
    }

    .metric-label {
      display: block;
      margin-bottom: 13px;
      color: var(--muted);
      font-size: .76rem;
      font-weight: 700;
      text-transform: uppercase;
    }

    .metric-value {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 10px;
      font-size: 1.55rem;
      font-weight: 820;
    }

    .metric-value small {
      padding-bottom: 4px;
      color: var(--primary);
      font-size: .69rem;
      font-weight: 750;
    }

    .chart {
      display: flex;
      height: 82px;
      align-items: end;
      gap: 5px;
      margin-top: 18px;
      padding: 13px 13px 0;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: rgba(4, 13, 24, .33);
    }

    .chart span {
      flex: 1;
      min-width: 3px;
      border-radius: 4px 4px 0 0;
      background: linear-gradient(to top, rgba(66, 214, 180, .22), var(--primary));
      animation: pulse-bars 3s ease-in-out infinite alternate;
    }

    .chart span:nth-child(2n) { animation-delay: .35s; }
    .chart span:nth-child(3n) { animation-delay: .75s; }

    @keyframes pulse-bars {
      to { filter: brightness(1.22); transform: scaleY(.9); transform-origin: bottom; }
    }

    .trust-strip {
      border-block: 1px solid var(--line);
      background: rgba(255, 255, 255, .018);
    }

    .trust-grid {
      display: grid;
      min-height: 118px;
      align-items: center;
      gap: 22px;
      grid-template-columns: repeat(4, 1fr);
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 13px;
      padding: 20px 0;
    }

    .trust-icon,
    .service-icon {
      display: grid;
      flex: 0 0 auto;
      width: 45px;
      height: 45px;
      place-items: center;
      border: 1px solid rgba(66, 214, 180, .19);
      border-radius: 13px;
      color: var(--primary);
      background: rgba(66, 214, 180, .07);
    }

    .trust-icon svg,
    .service-icon svg {
      width: 22px;
    }

    .trust-item strong {
      display: block;
      font-size: .94rem;
    }

    .trust-item span {
      color: var(--muted);
      font-size: .78rem;
    }

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

    .card {
      position: relative;
      min-height: 270px;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: linear-gradient(145deg, rgba(255, 255, 255, .047), rgba(255, 255, 255, .018));
      transition: transform .22s ease, border-color .22s ease, background .22s ease;
      overflow: hidden;
    }

    .card::after {
      position: absolute;
      top: -80px;
      right: -80px;
      width: 170px;
      height: 170px;
      border-radius: 50%;
      content: "";
      background: rgba(66, 214, 180, .05);
      transition: transform .25s ease;
    }

    .card:hover {
      border-color: rgba(66, 214, 180, .34);
      background: linear-gradient(145deg, rgba(66, 214, 180, .065), rgba(255, 255, 255, .018));
      transform: translateY(-5px);
    }

    .card:hover::after {
      transform: scale(1.15);
    }

    .service-icon {
      margin-bottom: 23px;
    }

    .card p {
      margin-bottom: 18px;
      font-size: .94rem;
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #dffbf4;
      font-size: .88rem;
      font-weight: 760;
    }

    .text-link span {
      transition: transform .2s ease;
    }

    .text-link:hover span {
      transform: translateX(4px);
    }

    .split {
      display: grid;
      align-items: center;
      gap: 70px;
      grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    }

    .feature-list {
      display: grid;
      gap: 16px;
      margin-top: 28px;
    }

    .feature {
      display: grid;
      gap: 3px 13px;
      grid-template-columns: 26px 1fr;
    }

    .feature .check {
      margin-top: 2px;
    }

    .feature strong {
      font-size: .97rem;
    }

    .feature p {
      grid-column: 2;
      margin: 0;
      font-size: .88rem;
    }

    .infra {
      position: relative;
      min-height: 490px;
      padding: 35px;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background:
        radial-gradient(circle at 80% 10%, rgba(106, 166, 255, .15), transparent 17rem),
        linear-gradient(145deg, rgba(17, 37, 60, .88), rgba(9, 21, 36, .90));
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .infra-grid {
      display: grid;
      height: 100%;
      gap: 14px;
      grid-template-columns: repeat(6, 1fr);
      grid-template-rows: repeat(5, 68px);
    }

    .infra-box {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 17px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: rgba(255, 255, 255, .035);
    }

    .infra-box strong {
      font-size: .9rem;
    }

    .infra-box small {
      color: var(--muted);
      font-size: .71rem;
    }

    .infra-box:nth-child(1) {
      grid-column: 1 / 4;
      grid-row: 1 / 3;
    }

    .infra-box:nth-child(2) {
      grid-column: 4 / 7;
      grid-row: 1 / 2;
    }

    .infra-box:nth-child(3) {
      grid-column: 4 / 7;
      grid-row: 2 / 4;
    }

    .infra-box:nth-child(4) {
      grid-column: 1 / 4;
      grid-row: 3 / 5;
    }

    .infra-box:nth-child(5) {
      grid-column: 1 / 7;
      grid-row: 5 / 6;
      flex-direction: row;
      align-items: center;
    }

    .mini-bars {
      display: flex;
      height: 42px;
      align-items: flex-end;
      gap: 4px;
    }

    .mini-bars i {
      display: block;
      width: 7px;
      border-radius: 3px;
      background: var(--primary);
    }

    .plans {
      display: grid;
      align-items: stretch;
      gap: 20px;
      grid-template-columns: repeat(3, 1fr);
    }

    .plan {
      position: relative;
      display: flex;
      min-height: 470px;
      flex-direction: column;
      padding: 30px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .025);
    }

    .plan.featured {
      border-color: rgba(66, 214, 180, .45);
      background: linear-gradient(150deg, rgba(66, 214, 180, .10), rgba(255, 255, 255, .025) 48%);
      box-shadow: 0 24px 70px rgba(2, 13, 23, .32);
      transform: translateY(-8px);
    }

    .badge {
      position: absolute;
      top: 18px;
      right: 18px;
      padding: 5px 10px;
      border-radius: 999px;
      color: #052018;
      background: var(--primary);
      font-size: .68rem;
      font-weight: 850;
      letter-spacing: .05em;
      text-transform: uppercase;
    }

    .plan-label {
      color: var(--primary);
      font-size: .76rem;
      font-weight: 820;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .plan h3 {
      margin: 12px 0 6px;
      font-size: 1.45rem;
    }

    .price {
      margin: 18px 0;
      color: var(--text);
      font-size: 1.65rem;
      font-weight: 850;
      letter-spacing: -.03em;
    }

    .plan ul {
      display: grid;
      gap: 11px;
      margin: 3px 0 28px;
      padding: 0;
      list-style: none;
    }

    .plan li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: #c8d4e1;
      font-size: .9rem;
    }

    .plan li::before {
      flex: 0 0 auto;
      margin-top: 8px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      content: "";
      background: var(--primary);
    }

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

    .faq-list {
      display: grid;
      max-width: 860px;
      gap: 12px;
      margin: 0 auto;
    }

    details {
      border: 1px solid var(--line);
      border-radius: 15px;
      background: rgba(255, 255, 255, .025);
    }

    summary {
      position: relative;
      padding: 20px 56px 20px 21px;
      font-weight: 730;
      cursor: pointer;
      list-style: none;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    summary::after {
      position: absolute;
      top: 50%;
      right: 21px;
      color: var(--primary);
      content: "+";
      font-size: 1.5rem;
      font-weight: 400;
      transform: translateY(-53%);
      transition: transform .2s ease;
    }

    details[open] summary::after {
      transform: translateY(-53%) rotate(45deg);
    }

    details p {
      padding: 0 21px 20px;
      margin: 0;
      font-size: .92rem;
    }

    .cta {
      position: relative;
      display: grid;
      align-items: center;
      gap: 42px;
      padding: 54px;
      border: 1px solid rgba(66, 214, 180, .28);
      border-radius: var(--radius-lg);
      background:
        radial-gradient(circle at 88% 20%, rgba(106, 166, 255, .20), transparent 20rem),
        linear-gradient(130deg, rgba(66, 214, 180, .12), rgba(13, 28, 47, .9) 52%);
      box-shadow: var(--shadow);
      grid-template-columns: 1fr auto;
      overflow: hidden;
    }

    .cta::after {
      position: absolute;
      right: -70px;
      bottom: -110px;
      width: 280px;
      height: 280px;
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: 50%;
      content: "";
    }

    .cta h2 {
      max-width: 700px;
      margin-bottom: 11px;
    }

    .cta p {
      max-width: 650px;
      margin-bottom: 0;
    }

    .cta-actions {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      gap: 11px;
    }

    .site-footer {
      padding: 64px 0 28px;
      border-top: 1px solid var(--line);
      background: #050d18;
    }

    .footer-grid {
      display: grid;
      gap: 45px;
      grid-template-columns: 1.2fr .7fr .7fr .85fr;
    }

    .footer-brand p {
      max-width: 390px;
      margin: 18px 0 0;
      font-size: .9rem;
    }

    .footer-column h3 {
      margin-bottom: 15px;
      color: #dce8f4;
      font-size: .82rem;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a,
    .cookie-link {
      width: fit-content;
      padding: 0;
      border: 0;
      color: var(--muted);
      background: none;
      font-size: .87rem;
      cursor: pointer;
    }

    .footer-links a:hover,
    .cookie-link:hover {
      color: var(--primary);
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      margin-top: 48px;
      padding-top: 22px;
      border-top: 1px solid var(--line);
      color: #78899c;
      font-size: .78rem;
    }

    .privacy-note {
      padding: 18px 0 0;
      color: #77899d;
      font-size: .75rem;
    }

    .cookie-banner {
      position: fixed;
      z-index: 100;
      right: 18px;
      bottom: 18px;
      left: 18px;
      display: none;
      max-width: 720px;
      padding: 22px;
      border: 1px solid rgba(148, 178, 214, .28);
      border-radius: 18px;
      background: rgba(9, 21, 36, .98);
      box-shadow: 0 24px 90px rgba(0, 0, 0, .55);
      backdrop-filter: blur(18px);
    }

    .cookie-banner.is-visible {
      display: block;
      animation: cookie-in .32s ease both;
    }

    @keyframes cookie-in {
      from { opacity: 0; transform: translateY(16px); }
    }

    .cookie-banner h2 {
      margin-bottom: 8px;
      font-size: 1.16rem;
      letter-spacing: -.02em;
    }

    .cookie-banner p {
      margin-bottom: 17px;
      font-size: .87rem;
    }

    .cookie-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
    }

    .cookie-actions .btn {
      min-height: 42px;
      padding-inline: 15px;
      border-radius: 10px;
      font-size: .82rem;
    }

    .cookie-modal {
      position: fixed;
      z-index: 110;
      inset: 0;
      display: none;
      place-items: center;
      padding: 20px;
      background: rgba(1, 6, 12, .78);
      backdrop-filter: blur(9px);
    }

    .cookie-modal.is-visible {
      display: grid;
    }

    .cookie-dialog {
      width: min(100%, 650px);
      max-height: min(90vh, 760px);
      border: 1px solid rgba(148, 178, 214, .26);
      border-radius: 22px;
      background: #0a1828;
      box-shadow: 0 35px 120px rgba(0, 0, 0, .58);
      overflow: auto;
    }

    .cookie-dialog-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 20px;
      padding: 23px 24px 17px;
      border-bottom: 1px solid var(--line);
    }

    .cookie-dialog-header h2 {
      margin-bottom: 6px;
      font-size: 1.45rem;
    }

    .cookie-dialog-header p {
      margin: 0;
      font-size: .85rem;
    }

    .modal-close {
      display: grid;
      flex: 0 0 auto;
      width: 38px;
      height: 38px;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 10px;
      color: var(--text);
      background: rgba(255, 255, 255, .04);
      cursor: pointer;
    }

    .cookie-options {
      display: grid;
      gap: 11px;
      padding: 20px 24px;
    }

    .cookie-option {
      display: grid;
      align-items: center;
      gap: 13px;
      padding: 17px;
      border: 1px solid var(--line);
      border-radius: 14px;
      grid-template-columns: 1fr auto;
    }

    .cookie-option strong {
      display: block;
      margin-bottom: 3px;
      font-size: .92rem;
    }

    .cookie-option p {
      margin: 0;
      font-size: .79rem;
    }

    .always-on {
      color: var(--primary);
      font-size: .72rem;
      font-weight: 820;
      text-transform: uppercase;
    }

    .switch {
      position: relative;
      display: inline-block;
      width: 48px;
      height: 27px;
    }

    .switch input {
      width: 0;
      height: 0;
      opacity: 0;
    }

    .slider {
      position: absolute;
      inset: 0;
      border: 1px solid #3b4e63;
      border-radius: 999px;
      background: #26384c;
      cursor: pointer;
      transition: .2s;
    }

    .slider::before {
      position: absolute;
      bottom: 3px;
      left: 3px;
      width: 19px;
      height: 19px;
      border-radius: 50%;
      content: "";
      background: #c7d2dd;
      transition: .2s;
    }

    .switch input:checked + .slider {
      border-color: var(--primary);
      background: rgba(66, 214, 180, .24);
    }

    .switch input:checked + .slider::before {
      background: var(--primary);
      transform: translateX(21px);
    }

    .cookie-dialog-footer {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 9px;
      padding: 17px 24px 23px;
      border-top: 1px solid var(--line);
    }

    .noscript {
      margin: 90px auto 0;
      padding: 13px 20px;
      color: #2a1d00;
      background: var(--warning);
      text-align: center;
    }

    @media (max-width: 980px) {
      .nav-links {
        position: fixed;
        top: 78px;
        right: 14px;
        left: 14px;
        display: none;
        align-items: stretch;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: rgba(8, 19, 33, .98);
        box-shadow: var(--shadow);
        flex-direction: column;
        gap: 4px;
      }

      .nav-links.is-open {
        display: flex;
      }

      .nav-links a:not(.btn) {
        padding: 12px 10px;
      }

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

      .menu-toggle {
        display: grid;
      }

      .hero {
        min-height: auto;
      }

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

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

      .server-card {
        max-width: 680px;
        transform: none;
      }

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

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

      .split {
        gap: 48px;
        grid-template-columns: 1fr;
      }

      .infra {
        order: -1;
      }

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

      .plan,
      .plan.featured {
        min-height: auto;
        transform: none;
      }

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

      .cta-actions {
        width: fit-content;
        flex-direction: row;
        flex-wrap: wrap;
      }

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

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

      .section {
        padding: 78px 0;
      }

      .section-sm {
        padding: 55px 0;
      }

      .nav {
        min-height: 70px;
      }

      .nav-links {
        top: 70px;
      }

      .brand {
        font-size: .94rem;
      }

      .brand-mark {
        width: 35px;
      }

      .hero {
        padding: 120px 0 64px;
      }

      h1 {
        font-size: clamp(2.65rem, 13vw, 4.2rem);
      }

      .hero-actions,
      .hero-actions .btn {
        width: 100%;
      }

      .hero-proof {
        display: grid;
      }

      .server-body {
        padding: 18px;
      }

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

      .trust-grid,
      .cards,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .trust-item {
        padding: 10px 0;
      }

      .card {
        min-height: auto;
      }

      .infra {
        min-height: 440px;
        padding: 18px;
      }

      .infra-grid {
        grid-template-rows: repeat(5, 72px);
      }

      .infra-box {
        padding: 12px;
      }

      .cta {
        padding: 33px 23px;
      }

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

      .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
      }

      .cookie-banner {
        right: 10px;
        bottom: 10px;
        left: 10px;
        padding: 18px;
      }

      .cookie-actions,
      .cookie-actions .btn {
        width: 100%;
      }

      .cookie-dialog-header,
      .cookie-options,
      .cookie-dialog-footer {
        padding-right: 17px;
        padding-left: 17px;
      }

      .cookie-dialog-footer .btn {
        width: 100%;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
      }
    }
  
.csp-style-1 {height:38%}
.csp-style-2 {height:56%}
.csp-style-3 {height:44%}
.csp-style-4 {height:72%}
.csp-style-5 {height:61%}
.csp-style-6 {height:83%}
.csp-style-7 {height:69%}
.csp-style-8 {height:90%}
.csp-style-9 {height:78%}
.csp-style-10 {height:87%}
.csp-style-11 {height:71%}
.csp-style-12 {height:94%}
.csp-style-13 {height:82%}
.csp-style-14 {height:92%}
.csp-style-15 {height:86%}
.csp-style-16 {height:28%}
.csp-style-17 {height:43%}
.csp-style-18 {height:55%}
.csp-style-19 {height:67%}
.csp-style-20 {height:88%}
.csp-style-21 {height:70%}
.csp-style-22 {margin-inline:auto;text-align:center}
