@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/inter-latin-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --blue: #2f6ce5;
  --blue-soft: #edf4ff;
  --charcoal: #20242b;
  --charcoal-hover: #151922;
  --ink: #161616;
  --muted: #020407;
  --line: #e7ecf3;
  --surface: #fbfcff;
  --soft: #f7f9fc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--soft);
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.055);
}

.promo-bar {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 24px;
  background:
    linear-gradient(90deg, #1f3f8f 0%, #2f6ce5 48%, #4b5f85 100%);
  color: #f8fafc;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

.promo-bar span {
  color: rgba(248, 250, 252, 0.9);
  font-weight: 500;
}

.promo-bar strong {
  font-weight: 600;
}

.promo-arrow {
  margin-left: 4px;
  font-size: 14px;
  line-height: 1;
}

.site-header-ipsec .promo-bar {
  background:
    linear-gradient(90deg, #6f3517 0%, #ea7e21 52%, #c05621 100%);
}

.site-header-wireguard .promo-bar {
  background:
    linear-gradient(90deg, #6d1720 0%, #c92b38 52%, #8f1f2b 100%);
}

.header-inner {
  display: grid;
  grid-template-columns: 158px auto 1fr;
  align-items: center;
  width: min(100%, 1288px);
  min-height: 68px;
  margin: 0 auto;
  padding: 0 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.brand img {
  display: block;
  width: 126px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 36px;
}

.nav-menu {
  position: relative;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 68px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  cursor: pointer;
}

.nav-item:hover {
  color: #010204;
}

.nav-item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  height: 1px;
  background: transparent;
}

.nav-item:hover::after {
  background: #2f6ce5;
}

.site-header-ipsec .nav-item:hover::after {
  background: #ea7e21;
}

.site-header-wireguard .nav-item:hover::after {
  background: #c92b38;
}

.has-menu {
  gap: 6px;
}

.has-menu::before {
  content: "";
  order: 2;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.nav-menu.is-open .has-menu::before {
  margin-top: 2px;
  transform: rotate(225deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 6px);
  left: -18px;
  z-index: 20;
  display: grid;
  min-width: 210px;
  max-height: 0;
  padding: 0 10px;
  border: 1px solid rgba(214, 222, 235, 0);
  border-radius: 6px;
  background: rgba(251, 252, 255, 0.98);
  box-shadow: 0 18px 44px rgba(18, 28, 44, 0);
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  transition:
    max-height 220ms ease,
    padding 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    opacity 160ms ease,
    transform 220ms ease;
  pointer-events: none;
}

.nav-menu.is-open .nav-dropdown {
  max-height: 260px;
  padding: 9px 10px;
  border-color: #d8e0eb;
  box-shadow: 0 18px 44px rgba(18, 28, 44, 0.12);
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  min-height: 36px;
  border-radius: 4px;
  padding: 0 10px;
  color: #101317;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  background: #eef3fa;
  color: #010204;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  justify-self: end;
}

.signin-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.signin-link:hover {
  color: #010204;
}

.cta-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--charcoal);
  border-radius: 4px;
  padding: 0 18px;
  background: var(--charcoal);
  color: #f8fafc;
  font-size: 14px;
  font-weight: 500;
  box-shadow: none;
  white-space: nowrap;
}

.cta-link:hover {
  background: var(--charcoal-hover);
}

.hero {
  min-height: calc(100vh - 103px);
  background:
    radial-gradient(ellipse at center 64%, rgba(47, 108, 229, 0.16), transparent 44%),
    linear-gradient(180deg, #f7f9fc 0%, #eef3fa 100%);
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: min(100%, 1288px);
  min-height: calc(100vh - 103px);
  margin: 0 auto;
  padding: 58px 40px 76px;
  text-align: center;
}

.hero h1 {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  color: #0b111c;
  font-size: clamp(30px, 3.25vw, 46px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.06;
}

.hero-text {
  width: 100%;
  max-width: 620px;
  margin: 20px auto 0;
  color: #3e4a5b;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.hero-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin: 28px auto 0;
  border: 1px solid var(--charcoal);
  border-radius: 4px;
  padding: 0 20px;
  background: var(--charcoal);
  color: #f8fafc;
  font-size: 14px;
  font-weight: 550;
  white-space: nowrap;
}

.hero-cta:hover {
  background: var(--charcoal-hover);
}

.dashboard-preview {
  position: relative;
  width: min(100%, 1040px);
  margin: 48px auto 0;
  border: 1px solid rgba(145, 158, 180, 0.32);
  border-radius: 9px;
  background: #f3f6fb;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.65) inset,
    0 26px 84px rgba(21, 39, 70, 0.18),
    0 0 110px rgba(47, 108, 229, 0.22);
  overflow: hidden;
}

.dashboard-preview::before {
  content: "";
  position: absolute;
  inset: -36px;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(47, 108, 229, 0.26), transparent 64%);
}

.dashboard-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.price-section {
  background: #f7f9fc;
  padding: 86px 40px;
}

.price-inner {
  width: min(100%, 1288px);
  margin: 0 auto;
}

.price-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  min-height: 210px;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  padding: 42px 48px;
  background:
    radial-gradient(circle at 80% 50%, rgba(47, 108, 229, 0.12), transparent 34%),
    #fbfcff;
  box-shadow: 0 18px 54px rgba(20, 31, 51, 0.08);
}

.price-copy {
  max-width: 600px;
}

.price-copy h2 {
  margin: 0;
  color: #0b111c;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
}

.price-copy p {
  max-width: 540px;
  margin: 18px 0 0;
  color: #445166;
  font-size: 17px;
  line-height: 1.55;
}


.price-action {
  display: grid;
  justify-items: end;
  gap: 22px;
  flex: 0 0 auto;
}

.price-value {
  margin: 0;
  color: #172032;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.price-value strong {
  color: #0b111c;
  font-size: 66px;
  font-weight: 650;
  letter-spacing: 0;
}

.price-value span {
  color: #445166;
  font-size: 22px;
}

.price-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--charcoal);
  border-radius: 4px;
  padding: 0 18px;
  background: var(--charcoal);
  color: #f8fafc;
  font-size: 14px;
  font-weight: 550;
  white-space: nowrap;
}

.price-cta:hover {
  background: var(--charcoal-hover);
}

.ddos-section {
  background: #111b29;
  padding: 0;
}

.ddos-inner {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 640px;
  margin: 0 auto;
  overflow: hidden;
}

.ddos-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: min(100%, 1288px);
  max-width: none;
  min-height: 0;
  margin: 0 auto;
  padding: 104px 40px;
}

.ddos-copy h1,
.ddos-copy h2 {
  max-width: 760px;
  margin: 0;
  color: #f6f8fb;
  font-size: clamp(38px, 4vw, 64px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.04;
}

.ddos-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  width: min(100%, 980px);
  margin-top: 34px;
}

.ddos-columns h2 {
  margin: 0;
  color: #f6f8fb;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.ddos-columns p {
  margin: 14px 0 0;
  color: #d9e2ef;
  font-size: 17px;
  line-height: 1.62;
}

.ddos-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  border: 1px solid rgba(246, 248, 251, 0.22);
  border-radius: 4px;
  padding: 0 18px;
  background: #f6f8fb;
  color: #101827;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.ddos-cta:hover {
  background: #e8eef7;
}

.ddos-image {
  position: absolute;
  inset: 0;
  height: auto;
  min-height: 0;
  border-radius: 0;
  background: #101a28;
  box-shadow: none;
  overflow: hidden;
}

.ddos-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 20, 33, 0.92) 0%, rgba(12, 20, 33, 0.78) 36%, rgba(12, 20, 33, 0.35) 68%, rgba(12, 20, 33, 0.16) 100%),
    linear-gradient(180deg, rgba(12, 20, 33, 0.18), rgba(12, 20, 33, 0.48));
  pointer-events: none;
}

.ddos-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 64% 46%, rgba(47, 108, 229, 0.16), transparent 34%);
  pointer-events: none;
}

.ddos-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hosting-section {
  position: relative;
  background:
    radial-gradient(circle at 78% 18%, rgba(47, 108, 229, 0.12), transparent 30%),
    linear-gradient(180deg, #f7f9fc 0%, #eef3fa 100%);
  padding: 104px 40px 116px;
  overflow: hidden;
}

.hosting-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1288px);
  margin: 0 auto;
}

.hosting-snake {
  position: absolute;
  top: 58px;
  right: max(-330px, calc((100vw - 1288px) / 2 - 390px));
  z-index: 1;
  width: min(66vw, 980px);
  max-width: none;
  height: auto;
  opacity: 0.96;
  pointer-events: none;
}

.hosting-lead {
  max-width: 690px;
}

.hosting-lead h2 {
  margin: 0;
  color: #0b111c;
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.04;
}

.hosting-lead p {
  max-width: 590px;
  margin: 24px 0 0;
  color: #445166;
  font-size: 18px;
  line-height: 1.6;
}

.hosting-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 96px;
  border-top: 1px solid #ccd7e6;
}

.hosting-flow article {
  position: relative;
  min-width: 0;
  padding: 34px 34px 0 0;
}

.hosting-flow article::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2f6ce5;
  box-shadow: 0 0 0 6px rgba(47, 108, 229, 0.1);
}

.hosting-flow span {
  display: block;
  margin-bottom: 18px;
  color: #2f6ce5;
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
}

.hosting-flow h3 {
  margin: 0;
  color: #0b111c;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.hosting-flow p {
  margin: 14px 0 0;
  color: #4a586c;
  font-size: 16px;
  line-height: 1.58;
}

.performance-section {
  background: #101827;
  padding: 96px 40px;
}

.performance-inner {
  display: block;
  width: min(100%, 1288px);
  margin: 0 auto;
}

.performance-copy h2 {
  margin: 0;
  color: #f6f8fb;
  font-size: clamp(34px, 3.6vw, 54px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.06;
}

.performance-copy p {
  max-width: 680px;
  margin: 24px 0 0;
  color: #c7d2e2;
  font-size: 18px;
  line-height: 1.6;
}

.performance-statement {
  max-width: 1060px;
  margin-top: 44px;
  padding-top: 40px;
  border-top: 1px solid rgba(246, 248, 251, 0.18);
}

.performance-statement p {
  margin: 0;
  color: #dce5f2;
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.16;
}

.performance-statement strong {
  color: #f6f8fb;
  font-weight: 650;
}

.performance-intro-section {
  position: relative;
  z-index: 1;
  background:
    radial-gradient(circle at 80% 18%, rgba(47, 108, 229, 0.18), transparent 34%),
    linear-gradient(180deg, #f6faff 0%, #eaf2ff 100%);
  padding: 98px 40px 112px;
}

.performance-intro-inner {
  width: min(100%, 1288px);
  margin: 0 auto;
}

.performance-intro-copy h1 {
  max-width: 1040px;
  margin: 0;
  color: #08111f;
  font-size: clamp(40px, 4.6vw, 62px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.02;
}

.performance-intro-copy p {
  max-width: 980px;
  margin: 24px 0 0;
  color: #36475e;
  font-size: 18px;
  line-height: 1.66;
}

.performance-light-section {
  background: #f4f8ff;
  padding: 88px 40px 98px;
}

.performance-light-inner {
  width: min(100%, 1288px);
  margin: 0 auto;
}

.performance-light-copy {
  max-width: 1040px;
}

.performance-light-copy h2 {
  margin: 0;
  color: #08111f;
  font-size: clamp(34px, 3.6vw, 54px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.06;
}

.performance-light-copy p {
  max-width: 980px;
  margin: 22px 0 0;
  color: #3d4f67;
  font-size: 18px;
  line-height: 1.64;
}

.final-cta-section {
  background:
    radial-gradient(circle at 78% 40%, rgba(234, 126, 33, 0.14), transparent 34%),
    linear-gradient(180deg, #eef3fa 0%, #f7f9fc 100%);
  padding: 108px 40px 118px;
  overflow: hidden;
}

.final-cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  width: min(100%, 1288px);
  min-height: 420px;
  margin: 0 auto;
}

.final-cta-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.final-cta-copy h2 {
  margin: 0;
  color: #0b111c;
  font-size: clamp(40px, 4.6vw, 68px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.03;
}

.final-cta-copy p {
  max-width: 520px;
  margin: 24px 0 0;
  color: #445166;
  font-size: 18px;
  line-height: 1.58;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.final-cta-primary,
.final-cta-secondary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 550;
  white-space: nowrap;
}

.final-cta-primary {
  border: 1px solid var(--charcoal);
  background: var(--charcoal);
  color: #f8fafc;
}

.final-cta-primary:hover {
  background: var(--charcoal-hover);
}

.final-cta-secondary {
  border: 1px solid #cad4e3;
  background: rgba(251, 252, 255, 0.75);
  color: #172032;
}

.final-cta-secondary:hover {
  border-color: #aebbd0;
  background: rgba(251, 252, 255, 0.94);
}

.final-cta-snake {
  position: absolute;
  right: max(-190px, calc((100vw - 1288px) / 2 - 240px));
  bottom: -54px;
  z-index: 1;
  width: min(58vw, 760px);
  height: auto;
  max-width: none;
  pointer-events: none;
}

.site-footer {
  background: #101827;
  color: #dce5f2;
  padding: 70px 40px 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 78px;
  width: min(100%, 1288px);
  margin: 0 auto;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer-logo img {
  display: block;
  width: 132px;
  height: auto;
}

.footer-brand p {
  max-width: 330px;
  margin: 24px 0 0;
  color: #aebbd0;
  font-size: 14px;
  line-height: 1.58;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.footer-action {
  display: inline-flex;
  width: 40px;
  height: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 248, 251, 0.16);
  border-radius: 4px;
  padding: 0;
  background: rgba(246, 248, 251, 0.06);
  color: #f6f8fb;
}

.footer-action:hover {
  background: rgba(246, 248, 251, 0.1);
}

.footer-action svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}

.footer-links h2 {
  margin: 0 0 16px;
  color: #f6f8fb;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.2;
}

.footer-links a {
  display: block;
  margin-top: 12px;
  color: #aebbd0;
  font-size: 13px;
  line-height: 1.25;
}

.footer-links a:hover {
  color: #f6f8fb;
}

.footer-bottom {
  width: min(100%, 1288px);
  margin: 58px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(246, 248, 251, 0.12);
  color: #8491a5;
  font-size: 12px;
}

.content-page {
  min-height: calc(100vh - 103px);
  background:
    radial-gradient(circle at 80% 20%, rgba(47, 108, 229, 0.12), transparent 32%),
    linear-gradient(180deg, #f7f9fc 0%, #eef3fa 100%);
  padding: 112px 40px 124px;
}

.content-page-inner {
  width: min(100%, 1060px);
  margin: 0 auto;
}

.content-page h1 {
  max-width: 760px;
  margin: 0;
  color: #0b111c;
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.04;
}

.content-page p {
  max-width: 700px;
  margin: 24px 0 0;
  color: #445166;
  font-size: 18px;
  line-height: 1.62;
}

.content-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.content-page-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 550;
  white-space: nowrap;
}

.content-page-actions a:first-child {
  border: 1px solid var(--charcoal);
  background: var(--charcoal);
  color: #f8fafc;
}

.content-page-actions a:last-child {
  border: 1px solid #cad4e3;
  background: rgba(251, 252, 255, 0.72);
  color: #172032;
}

.ipv4-page,
.legal-page {
  position: relative;
  background: var(--surface);
  color: var(--ink);
}

.ipv4-docs,
.legal-docs {
  padding: 0 40px;
}

.docs-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px;
  gap: 64px;
  width: min(100%, 1288px);
  margin: 0 auto;
  padding: 56px 0 80px;
  align-items: start;
}

.docs-content {
  min-width: 0;
  max-width: 1024px;
}

.docs-content h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.docs-lead {
  margin: 18px 0 0;
  color: #5b6472;
  font-size: 18px;
  line-height: 1.6;
}

.docs-content section {
  margin-top: 48px;
}

.docs-content h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.005em;
  scroll-margin-top: 96px;
}

.docs-content p {
  margin: 14px 0 0;
  color: #33394a;
  font-size: 16px;
  line-height: 1.7;
}

.docs-content p:first-of-type {
  margin-top: 0;
}

.docs-content h3 {
  margin: 24px 0 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.docs-content ul,
.docs-content ol {
  margin: 14px 0 0;
  padding-left: 22px;
  color: #33394a;
  font-size: 16px;
  line-height: 1.7;
}

.docs-content li + li {
  margin-top: 6px;
}

.docs-content li > ul,
.docs-content li > ol {
  margin-top: 6px;
}

.docs-content strong {
  color: var(--ink);
  font-weight: 600;
}

.docs-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.docs-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 14px;
  color: #5b6472;
  font-size: 13.5px;
}

.docs-identity {
  margin: 24px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 18px 20px;
}

.docs-identity dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 8px 18px;
  margin: 0;
}

.docs-identity dt {
  color: #5b6472;
  font-size: 13px;
}

.docs-identity dd {
  margin: 0;
  color: #1b2028;
  font-size: 14.5px;
}

.lang-toggle {
  display: inline-flex;
  gap: 2px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  padding: 3px;
}

.lang-toggle-btn {
  border-radius: 999px;
  padding: 7px 16px;
  color: #5b6472;
  font-size: 13.5px;
  font-weight: 600;
}

.lang-toggle-btn.is-active {
  background: var(--charcoal);
  color: #f8fafc;
}

.docs-note {
  margin-top: 20px;
  border: 1px solid #c7d9f9;
  border-left: 3px solid var(--blue);
  border-radius: 6px;
  background: var(--blue-soft);
  padding: 14px 18px;
  color: #223862;
  font-size: 14.5px;
  line-height: 1.6;
}

.docs-note strong {
  color: #16305e;
}

.docs-diagram {
  margin: 24px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 18px;
  overflow-x: auto;
}

.docs-diagram img {
  display: block;
  width: 100%;
  min-width: 720px;
  height: auto;
}

.docs-diagram-inline {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  padding: 16px;
}

.docs-diagram-inline img {
  min-width: 0;
}

.docs-diagram-wide {
  max-width: 760px;
}

.docs-toc {
  position: sticky;
  top: 96px;
}

.docs-toc-label {
  display: block;
  margin-bottom: 12px;
  color: #5b6472;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.docs-toc nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  border-left: 1px solid var(--line);
}

.docs-toc a {
  padding: 2px 0 2px 14px;
  color: #5b6472;
  font-size: 13.5px;
  line-height: 1.4;
}

.docs-toc a:hover {
  color: var(--blue);
}

.docs-toc-label-spaced {
  margin-top: 28px;
}

/* Private reference documentation */
.reference-page { background: #fff; color: #313131; font-size: 14px; }
.reference-header { position: sticky; top: 0; z-index: 30; display: grid; grid-template-columns: 280px minmax(250px, 550px) 1fr; align-items: center; min-height: 64px; border-bottom: 1px solid #e7e7e7; background: rgba(255,255,255,.97); padding: 0 28px; }
.reference-brand { display: flex; align-items: center; gap: 12px; width: max-content; font-size: 14px; font-weight: 600; color: #202020; }
.reference-brand img { width: 118px; height: auto; }
.reference-brand span { border-left: 1px solid #d7d7d7; padding-left: 12px; }
.reference-search-area { position: relative; width: 100%; }
.reference-search { display: flex; align-items: center; gap: 9px; width: 100%; height: 36px; border: 1px solid #cfcfcf; border-radius: 4px; padding: 0 9px; color: #5f5f5f; background: #fff; }
.reference-search:focus-within { border-color: #2f6ce5; box-shadow: 0 0 0 2px rgba(47,108,229,.13); }
.reference-search svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.reference-search input { width: 100%; border: 0; outline: 0; color: #222; font: inherit; background: transparent; }
.reference-search input::placeholder { color: #5f5f5f; }
.reference-search kbd { border: 1px solid #ddd; border-radius: 3px; padding: 1px 5px; color: #5f5f5f; font: 11px Inter, sans-serif; white-space: nowrap; }
.reference-search-results { position: absolute; top: calc(100% + 7px); left: 0; z-index: 40; width: 100%; max-height: min(580px, calc(100vh - 92px)); overflow-y: auto; border: 1px solid #d8d8d8; border-radius: 5px; box-shadow: 0 10px 28px rgba(0,0,0,.14); background: #fff; }
.reference-search-status { margin: 0; padding: 11px 13px; border-bottom: 1px solid #ededed; color: #6b6b6b; font-size: 12px; font-weight: 600; }
.reference-search-results a { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 3px 12px; padding: 12px 13px; border-bottom: 1px solid #ededed; color: #242424; }
.reference-search-results a:last-child { border-bottom: 0; }
.reference-search-results a:hover, .reference-search-results a:focus { background: #f4f7fd; color: #1c59cf; outline: 0; }
.reference-search-results strong { font-size: 13px; }
.reference-search-location { color: #6b6b6b; font-size: 12px; }
.reference-search-snippet { grid-column: 1 / -1; color: #666; font-size: 12px; line-height: 1.45; }
.reference-header-nav { justify-self: end; display: flex; gap: 22px; align-items: center; font-size: 13px; font-weight: 600; }
.reference-header-nav a:last-child { border-radius: 4px; padding: 8px 11px; color: white; background: #2f6ce5; }
.reference-layout { display: grid; grid-template-columns: 304px minmax(0, 1fr) 254px; min-height: calc(100vh - 64px); }
.reference-sidebar { position: sticky; top: 64px; align-self: start; height: calc(100vh - 64px); overflow-y: auto; border-right: 1px solid #e8e8e8; padding: 32px 24px 48px; }
.reference-index { display: block; margin: 0 0 28px 10px; color: #333; font-size: 13px; font-weight: 700; }
.reference-sidebar nav { display: flex; flex-direction: column; gap: 4px; }
.reference-menu-group { margin: 0; }
.reference-menu-toggle { display: flex; width: 100%; align-items: center; justify-content: space-between; border: 0; border-radius: 4px; padding: 8px 10px; color: #363636; font: 700 13px Inter, sans-serif; text-align: left; background: transparent; cursor: pointer; }
.reference-menu-toggle:hover { background: #f4f4f4; }
.reference-menu-toggle span { width: 7px; height: 7px; margin-right: 3px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform 150ms ease; }
.reference-menu-items { display: grid; gap: 1px; margin: 1px 0 8px 13px; border-left: 1px solid #d6d6d6; padding: 1px 0 1px 10px; }
.reference-menu-group.is-collapsed .reference-menu-items { display: none; }
.reference-menu-group.is-collapsed .reference-menu-toggle span { transform: rotate(-45deg) translateY(-1px); }
.reference-sidebar nav a { position: relative; border-radius: 3px; padding: 6px 8px; color: #4a4a4a; font-size: 13px; line-height: 1.3; }
.reference-sidebar nav a:hover, .reference-sidebar nav a.is-current { color: #164da7; background: #edf4ff; }
.reference-content { min-width: 0; max-width: 900px; padding: 42px 64px 96px; }
.reference-breadcrumb { display: flex; flex-wrap: wrap; gap: 7px; color: #6e6e6e; font-size: 12px; }
.reference-breadcrumb a { color: #2f6ce5; }
.reference-breadcrumb strong { color: #535353; font-weight: 500; }
.reference-title-row { display: flex; justify-content: space-between; gap: 24px; margin-top: 22px; padding-bottom: 32px; border-bottom: 1px solid #e5e5e5; }
.reference-content h1 { margin: 0; color: #222; font-size: 38px; line-height: 1.1; letter-spacing: -.025em; }
.reference-index-section { margin-top: 40px; scroll-margin-top: 84px; }
.reference-index-section h2 { margin: 0 0 12px; color: #242424; font-size: 21px; line-height: 1.2; letter-spacing: -.015em; }
.reference-index-list { display: grid; border-top: 1px solid #e7e7e7; }
.reference-index-list span { border-bottom: 1px solid #e7e7e7; padding: 12px 10px; color: #414141; font-size: 13px; }
.reference-updated { margin: 11px 0 0; color: #5f5f5f; font-size: 12px; }
.reference-copy { align-self: start; border: 1px solid #cfcfcf; border-radius: 4px; padding: 7px 10px; color: #3f3f3f; font: 12px Inter, sans-serif; background: #fff; cursor: pointer; }
.reference-content section { margin-top: 34px; scroll-margin-top: 84px; }
.reference-content h2 { margin: 30px 0 12px; color: #242424; font-size: 21px; line-height: 1.3; letter-spacing: -.012em; }
.reference-content h3 { margin: 26px 0 8px; color: #303030; font-size: 17px; }
.reference-content p, .reference-content li { color: #404040; font-size: 14px; line-height: 1.65; }
.reference-content p { margin: 0 0 14px; }
.reference-content ol, .reference-content ul { padding-left: 21px; margin: 16px 0; }
.reference-content li + li { margin-top: 5px; }
.reference-content a { color: #1e5bcc; text-decoration: underline; text-underline-offset: 2px; }
.reference-flow { display: flex; align-items: stretch; justify-content: center; gap: 11px; margin: 24px 0; color: #2d2d2d; font-size: 12px; text-align: center; }
.reference-flow span { display: flex; align-items: center; justify-content: center; min-width: 102px; border: 1px solid #cfd8e7; border-radius: 4px; padding: 11px 9px; background: #f9fbff; font-weight: 600; }
.reference-flow span:nth-of-type(2) { border-color: #abc6f6; background: #edf4ff; }
.reference-flow small { display: block; margin-top: 3px; color: #5b6b82; font-weight: 400; }
.reference-flow i { display: flex; align-items: center; color: #78899d; font-style: normal; }
.reference-routing-diagram { margin: 34px 0; overflow-x: auto; border: 1px solid #e2e2e2; border-radius: 4px; padding: 20px; background: #fff; }
.reference-routing-diagram svg { display: block; min-width: 820px; width: 100%; height: auto; }
.reference-routing-diagram figcaption { margin: 16px auto 0; max-width: 760px; color: #5e5e5e; font-size: 12px; line-height: 1.55; text-align: center; }
.routing-zone { stroke-width: 1.25; }
.routing-zone-taipan { fill: #f7faff; stroke: #9abcf2; }
.routing-zone-customer { fill: #fffaf5; stroke: #edc69d; }
.routing-zone-label { font: 700 13px Inter, Arial, sans-serif; letter-spacing: .07em; }
.routing-zone-label-taipan { fill: #285aa7; }
.routing-zone-label-customer { fill: #9a561d; }
.routing-internet { fill: #f4f5f7; stroke: #7b8490; stroke-width: 1.25; }
.routing-cloud { fill: none; stroke: #7b8490; stroke-width: 1.25; }
.routing-card { stroke-width: 1.25; }
.routing-card-addresses { fill: #eaf2ff; stroke: #2f6ce5; }
.routing-card-edge { fill: #f2f7ff; stroke: #7fa8ee; }
.routing-card-endpoint { fill: #fff1e5; stroke: #e47b21; }
.routing-card-services { fill: #fff; stroke: #7d8794; }
.routing-node-title { fill: #262b33; font: 700 15px Inter, Arial, sans-serif; }
.routing-node-copy { fill: #5d6774; font: 12px Inter, Arial, sans-serif; }
.routing-inbound-path, .routing-outbound-path { fill: none; stroke-width: 2; }
.routing-inbound-path { stroke: #2f6ce5; }
.routing-outbound-path { stroke: #d66c1b; }
.routing-inbound-label, .routing-outbound-label { font: 12px Inter, Arial, sans-serif; }
.routing-inbound-label { fill: #285aa7; }
.routing-outbound-label { fill: #9a561d; }
.simple-routing-diagram { margin: 34px 0; overflow-x: auto; padding: 12px 0; }
.simple-routing-diagram svg { display: block; min-width: 760px; width: 100%; height: auto; }
.simple-routing-diagram figcaption { margin: 12px auto 0; max-width: 760px; color: #5e5e5e; font-size: 12px; line-height: 1.55; text-align: center; }
.simple-internet { fill: #f5f6f8; stroke: #7c8794; stroke-width: 1.25; }
.simple-cloud { fill: none; stroke: #7c8794; stroke-width: 1.25; }
.simple-customer-zone { fill: #fafafa; stroke: #b9bfc7; stroke-width: 1.25; }
.simple-zone-label { fill: #606873; font: 700 13px Inter, Arial, sans-serif; letter-spacing: .07em; }
.simple-node-title { fill: #262b33; font: 700 15px Inter, Arial, sans-serif; }
.simple-node-copy { fill: #5d6774; font: 12px Inter, Arial, sans-serif; }
.simple-inbound-path, .simple-outbound-path { fill: none; stroke-width: 2; }
.simple-inbound-path { stroke: #2f6ce5; }
.simple-outbound-path { stroke: #c96d24; }
.simple-inbound-label, .simple-outbound-label { font: 12px Inter, Arial, sans-serif; }
.simple-inbound-label { fill: #285aa7; }
.simple-outbound-label { fill: #94501b; }
.flow-routing-diagram { margin: 34px 0; overflow-x: auto; padding: 10px 0; }
.flow-routing-diagram svg { display: block; min-width: 760px; width: 100%; height: auto; }
.flow-routing-diagram figcaption { margin: 12px auto 0; max-width: 760px; color: #5e5e5e; font-size: 12px; line-height: 1.55; text-align: center; }
.flow-customer-zone { fill: #fafafa; stroke: #b9bfc7; stroke-width: 1.25; }
.flow-zone-label { fill: #606873; font: 700 13px Inter, Arial, sans-serif; letter-spacing: .07em; }
.flow-direction { font: 700 13px Inter, Arial, sans-serif; }
.flow-direction-inbound { fill: #285aa7; }
.flow-direction-outbound { fill: #94501b; }
.flow-internet-label, .flow-node-title { fill: #262b33; font: 700 14px Inter, Arial, sans-serif; }
.flow-inbound-path, .flow-outbound-path { fill: none; stroke-width: 2; }
.flow-inbound-path { stroke: #2f6ce5; }
.flow-outbound-path { stroke: #c96d24; }
.ip-flow-diagram { margin: 34px 0; overflow-x: auto; padding: 10px 0; }
.ip-flow-diagram svg { display: block; min-width: 760px; width: 100%; height: auto; }
.ip-flow-diagram figcaption { margin: 12px auto 0; max-width: 760px; color: #5e5e5e; font-size: 12px; line-height: 1.55; text-align: center; }
.ip-flow-customer-zone { fill: #fafafa; stroke: #b9bfc7; stroke-width: 1.25; }
.ip-flow-zone-label { fill: #606873; font: 700 13px Inter, Arial, sans-serif; letter-spacing: .07em; }
.ip-flow-direction { font: 700 13px Inter, Arial, sans-serif; }
.ip-flow-inbound-text, .ip-flow-label-inbound { fill: #285aa7; }
.ip-flow-outbound-text, .ip-flow-label-outbound { fill: #94501b; }
.ip-flow-internet, .ip-flow-node-title { fill: #262b33; font: 700 14px Inter, Arial, sans-serif; }
.ip-flow-internet { font-size: 16px; }
.ip-flow-inbound-path, .ip-flow-outbound-path { fill: none; stroke-width: 2; }
.ip-flow-inbound-path { stroke: #2f6ce5; }
.ip-flow-outbound-path { stroke: #c66b22; }
.ip-flow-label { font: 12px Inter, Arial, sans-serif; }
.reference-callout { margin: 24px 0; border-left: 3px solid #2f6ce5; border-radius: 2px; padding: 12px 15px; background: #f1f6ff; }
.reference-callout strong { color: #214d98; font-size: 12px; }
.reference-callout p { margin: 4px 0 0; color: #334866; font-size: 13px; line-height: 1.55; }
.reference-callout-warning { border-left-color: #bd7d14; background: #fff8e9; }
.reference-callout-warning strong { color: #80520c; }
.reference-callout-warning p { color: #624a25; }
.reference-table-wrap { margin: 20px 0; overflow-x: auto; border: 1px solid #dedede; border-radius: 4px; }
.reference-table-wrap table { width: 100%; border-collapse: collapse; font-size: 13px; text-align: left; }
.reference-table-wrap th, .reference-table-wrap td { border-bottom: 1px solid #e7e7e7; padding: 11px 13px; vertical-align: top; line-height: 1.45; }
.reference-table-wrap thead th { background: #f7f7f7; color: #454545; font-size: 12px; font-weight: 700; }
.reference-table-wrap tbody th { color: #303030; font-weight: 600; white-space: nowrap; }
.reference-table-wrap tr:last-child th, .reference-table-wrap tr:last-child td { border-bottom: 0; }
.reference-content pre { overflow: auto; margin: 20px 0; border-radius: 4px; padding: 15px 17px; background: #252525; color: #ececec; font: 12px/1.6 ui-monospace, SFMono-Regular, Menlo, monospace; }
.reference-next { margin-top: 25px !important; border-top: 1px solid #e7e7e7; padding-top: 21px; }
.reference-pagination { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 74px; border-top: 1px solid #e5e5e5; padding-top: 22px; }
.reference-pagination-placeholder { min-height: 48px; border: 1px solid #e1e1e1; border-radius: 4px; padding: 15px; color: #656565; font-size: 12px; }
.reference-pagination-placeholder:last-child { text-align: right; }
.reference-pagination a { display: block; min-height: 48px; border: 1px solid #d7d7d7; border-radius: 4px; padding: 10px 14px; color: #222; text-decoration: none; }
.reference-pagination a:last-child { text-align: right; }
.reference-pagination a span { display: block; margin-bottom: 3px; color: #5f5f5f; font-size: 11px; }
.reference-pagination a strong { color: #1e5bcc; font-size: 13px; }
.reference-on-page { position: sticky; top: 64px; align-self: start; min-height: calc(100vh - 64px); margin: 0; border-left: 1px solid #e8e8e8; padding: 42px 28px; }
.reference-on-page p { margin: 0 0 11px; color: #555; font-size: 12px; font-weight: 700; }
.reference-on-page a { display: block; margin: 0 0 9px; color: #5f5f5f; font-size: 12px; line-height: 1.35; }
.reference-on-page a:hover { color: #1e5bcc; }
.reference-on-page-inner { position: sticky; top: 96px; }
.reference-on-page-title { color: #4a4a4a !important; }
.reference-on-page-links { min-height: 4px; }
.reference-on-page-links a.is-subsection { margin-left: 10px; font-size: 11px; }
.reference-helpful { margin-top: 30px; border-top: 1px solid #e5e5e5; padding-top: 20px; }
.reference-helpful p { margin: 0 0 12px; color: #383838; font-size: 13px; font-weight: 700; }
.reference-helpful div { display: flex; gap: 8px; }
.reference-helpful button { border: 1px solid #d1d1d1; border-radius: 4px; padding: 7px 12px; color: #3f3f3f; font: 12px Inter, sans-serif; background: #fff; cursor: pointer; }
.reference-helpful button:hover { border-color: #2f6ce5; color: #1e5bcc; background: #f4f8ff; }
.reference-helpful span { color: #5b5b5b; font-size: 12px; line-height: 1.4; }

@media (max-width: 1120px) {
  .reference-layout { grid-template-columns: 230px minmax(0, 720px); column-gap: 38px; padding-right: 28px; }
  .reference-on-page { display: none; }
  .reference-header { grid-template-columns: 230px minmax(220px, 1fr) auto; }
}

@media (max-width: 760px) {
  .reference-header { position: relative; grid-template-columns: 1fr auto; gap: 14px; min-height: 58px; padding: 0 16px; }
  .reference-brand img { width: 108px; }
  .reference-header-nav a:first-child, .reference-search-area { display: none; }
  .reference-header-nav { gap: 0; }
  .reference-layout { display: block; padding: 0 20px; }
  .reference-sidebar { position: static; height: auto; overflow: visible; border: 0; border-bottom: 1px solid #e8e8e8; padding: 22px 0; }
  .reference-sidebar nav { display: block; column-count: 2; column-gap: 18px; }
  .reference-sidebar nav p { break-after: avoid; margin: 16px 0 5px; }
  .reference-sidebar nav a { display: block; break-inside: avoid; padding: 5px 8px; }
  .reference-sidebar nav p:first-child { margin-top: 0; }
  .reference-content { padding-top: 30px; }
  .reference-content h1 { font-size: 31px; }
  .reference-content h2 { font-size: 21px; }
  .reference-title-row { padding-bottom: 25px; }
  .reference-copy { padding: 6px 8px; white-space: nowrap; }
  .reference-flow { flex-wrap: wrap; gap: 7px; }
  .reference-flow span { min-width: 124px; }
}

@media (max-width: 440px) {
  .reference-brand span { display: none; }
  .reference-sidebar nav { column-count: 1; }
  .reference-flow { justify-content: flex-start; }
  .reference-flow i { transform: rotate(90deg); }
}

.gre-page {
  position: relative;
  background: #eef5ff;
  color: #08111f;
  overflow: hidden;
}

.gre-intro-section {
  position: relative;
  z-index: 1;
  background:
    radial-gradient(circle at 80% 18%, rgba(47, 108, 229, 0.18), transparent 34%),
    linear-gradient(180deg, #f6faff 0%, #eaf2ff 100%);
  padding: 98px 40px 112px;
}

.gre-intro-inner {
  width: min(100%, 1288px);
  margin: 0 auto;
}

.gre-intro-copy h1 {
  max-width: 1040px;
  margin: 0;
  color: #08111f;
  font-size: clamp(40px, 4.6vw, 62px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.02;
}

.gre-intro-copy p {
  max-width: 980px;
  margin: 24px 0 0;
  color: #36475e;
  font-size: 18px;
  line-height: 1.66;
}

.gre-light-section {
  background: #f4f8ff;
  padding: 88px 40px 98px;
}

.gre-light-inner {
  width: min(100%, 1288px);
  margin: 0 auto;
}

.gre-light-copy {
  max-width: 1040px;
}

.gre-light-copy h2 {
  margin: 0;
  color: #08111f;
  font-size: clamp(34px, 3.6vw, 54px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.06;
}

.gre-light-copy p {
  max-width: 980px;
  margin: 22px 0 0;
  color: #3d4f67;
  font-size: 18px;
  line-height: 1.64;
}

.gre-blue-section {
  position: relative;
  min-height: 600px;
  background:
    radial-gradient(circle at 78% 36%, rgba(82, 201, 232, 0.22), transparent 36%),
    linear-gradient(135deg, #132a4a 0%, #184f92 48%, #2f6ce5 100%);
  padding: 112px 40px 132px;
  overflow: hidden;
}

.gre-blue-section::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 92px;
  background: #eaf2ff;
  clip-path: polygon(0 0, 100% 0, 100% 22%, 0 100%);
}

.gre-blue-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1288px);
  margin: 0 auto;
}

.gre-blue-copy {
  max-width: 620px;
  margin-left: auto;
  padding-top: 56px;
}

.gre-blue-copy h2 {
  margin: 0;
  color: #f6faff;
  font-size: clamp(38px, 4.4vw, 64px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.04;
}

.gre-blue-copy p {
  margin: 24px 0 0;
  color: #dbeaff;
  font-size: 18px;
  line-height: 1.66;
}

.gre-blue-snake {
  position: absolute;
  bottom: -430px;
  left: max(-92px, calc((100vw - 1288px) / 2 - 160px));
  z-index: 1;
  width: min(52vw, 700px);
  height: auto;
  max-width: none;
  pointer-events: none;
  filter: drop-shadow(0 32px 54px rgba(0, 10, 28, 0.28));
}

.gre-pricing-section {
  position: relative;
  min-height: 650px;
  background:
    radial-gradient(circle at 84% 38%, rgba(47, 108, 229, 0.16), transparent 34%),
    linear-gradient(180deg, #eef5ff 0%, #e6f0ff 100%);
  padding: 104px 40px 116px;
  overflow: hidden;
}

.gre-pricing-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1288px);
  margin: 0 auto;
}

.gre-pricing-card {
  position: relative;
  width: min(100%, 520px);
  border: 1px solid rgba(177, 194, 218, 0.82);
  border-radius: 8px;
  background: rgba(248, 251, 255, 0.94);
  padding: 30px;
  box-shadow:
    0 24px 64px rgba(15, 35, 70, 0.13),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.gre-pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #2f6ce5 0%, #5bc8ff 100%);
}

.gre-pricing-card::after {
  content: none;
}

.gre-pricing-card > * {
  position: relative;
  z-index: 1;
}

.gre-pricing-card-head {
  padding-bottom: 24px;
  border-bottom: 1px solid #dbe5f1;
}

.gre-pricing-card h2 {
  margin: 0;
  color: #08111f;
  font-size: 26px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.1;
}

.gre-pricing-card-head p {
  margin: 10px 0 0;
  color: #52657e;
  font-size: 15px;
  line-height: 1.45;
}

.gre-pricing-main {
  display: grid;
  gap: 8px;
  padding: 28px 0 26px;
  border-bottom: 1px solid #dbe5f1;
}

.gre-pricing-main strong {
  color: #07101d;
  font-size: clamp(48px, 5.2vw, 64px);
  font-weight: 720;
  letter-spacing: 0;
  line-height: 0.96;
}

.gre-pricing-main strong del {
  color: #7d8da2;
  font-size: 0.48em;
  font-weight: 560;
  text-decoration-color: rgba(47, 108, 229, 0.72);
  text-decoration-thickness: 2px;
  vertical-align: middle;
}

.gre-pricing-main span {
  color: #52657e;
  font-size: 16px;
  font-weight: 540;
}

.gre-pricing-lines {
  display: grid;
  gap: 0;
}

.gre-pricing-lines div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 64px;
  border-bottom: 1px solid #dbe5f1;
}

.gre-pricing-lines div:last-child {
  border-bottom: 0;
}

.gre-pricing-lines span {
  color: #40526a;
  font-size: 15px;
  font-weight: 520;
  line-height: 1.25;
}

.gre-pricing-lines strong {
  color: #08111f;
  font-size: 17px;
  font-weight: 680;
  line-height: 1.2;
  white-space: nowrap;
}

.gre-pricing-lines del {
  color: #7d8da2;
  font-weight: 560;
  text-decoration-color: rgba(47, 108, 229, 0.72);
  text-decoration-thickness: 2px;
}


.gre-price-snake {
  position: absolute;
  right: max(-430px, calc((100vw - 1288px) / 2 - 500px));
  bottom: -94px;
  z-index: 1;
  width: min(74vw, 1040px);
  max-width: none;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 34px 48px rgba(4, 20, 42, 0.2));
}

.ipsec-page {
  position: relative;
  background: #fff3ea;
  color: #17100b;
  overflow: hidden;
}

.ipsec-inner {
  width: min(100%, 1288px);
  margin: 0 auto;
}

.ipsec-intro-section {
  position: relative;
  background:
    radial-gradient(circle at 82% 18%, rgba(234, 126, 33, 0.18), transparent 34%),
    linear-gradient(180deg, #fff9f3 0%, #fff0e4 100%);
  padding: 98px 40px 112px;
  overflow: hidden;
}

.ipsec-copy {
  position: relative;
  z-index: 2;
  max-width: 1080px;
}

.ipsec-copy h1,
.ipsec-copy h2,
.ipsec-orange-copy h2 {
  margin: 0;
  color: #17100b;
  font-weight: 650;
  letter-spacing: 0;
}

.ipsec-copy h1 {
  max-width: 1060px;
  font-size: clamp(40px, 4.6vw, 62px);
  line-height: 1.02;
}

.ipsec-copy h2,
.ipsec-orange-copy h2 {
  max-width: 1000px;
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 1.06;
}

.ipsec-copy p,
.ipsec-orange-copy p {
  max-width: 980px;
  margin: 24px 0 0;
  color: #614735;
  font-size: 18px;
  line-height: 1.66;
}

.ipsec-orange-section {
  position: relative;
  background:
    radial-gradient(circle at 82% 34%, rgba(255, 183, 83, 0.24), transparent 34%),
    linear-gradient(135deg, #3a1f10 0%, #b4531f 52%, #ea7e21 100%);
  padding: 106px 40px 116px;
  overflow: hidden;
}

.ipsec-orange-section::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 92px;
  background: #fff0e4;
  clip-path: polygon(0 0, 100% 0, 100% 22%, 0 100%);
}

.ipsec-orange-copy {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  padding-top: 50px;
}

.ipsec-orange-copy h2 {
  color: #fff9f3;
}

.ipsec-orange-copy p {
  color: #ffe8d7;
}

.ipsec-light-section {
  background:
    radial-gradient(circle at 18% 26%, rgba(234, 126, 33, 0.1), transparent 32%),
    #fff8f1;
  padding: 88px 40px 98px;
}

.ipsec-hero-snake {
  position: absolute;
  top: -148px;
  right: max(-260px, calc((100vw - 1288px) / 2 - 310px));
  z-index: 1;
  width: min(58vw, 760px);
  max-width: none;
  height: auto;
  opacity: 0.9;
  pointer-events: none;
  filter: drop-shadow(0 30px 48px rgba(95, 43, 12, 0.18));
}

.ipsec-pricing-section {
  position: relative;
  min-height: 650px;
  background:
    radial-gradient(circle at 84% 44%, rgba(234, 126, 33, 0.18), transparent 34%),
    linear-gradient(180deg, #fff3ea 0%, #fff8f1 100%);
  padding: 104px 40px 116px;
  overflow: hidden;
}

.ipsec-pricing-section .ipsec-inner {
  position: relative;
  z-index: 2;
}

.ipsec-pricing-card::before {
  background: linear-gradient(90deg, #ea7e21 0%, #ffc05f 100%);
}

.ipsec-pricing-card .gre-pricing-lines del {
  text-decoration-color: rgba(234, 126, 33, 0.78);
}

.ipsec-price-snake {
  position: absolute;
  right: max(-420px, calc((100vw - 1288px) / 2 - 500px));
  bottom: -122px;
  z-index: 1;
  width: min(70vw, 980px);
  max-width: none;
  height: auto;
  opacity: 0.9;
  pointer-events: none;
  filter: drop-shadow(0 34px 54px rgba(95, 43, 12, 0.2));
}

.ipsec-final-cta-section {
  background:
    radial-gradient(circle at 76% 40%, rgba(234, 126, 33, 0.2), transparent 34%),
    linear-gradient(180deg, #fff8f1 0%, #fff0e4 100%);
}

.ipsec-final-cta-section .final-cta-copy h2 {
  color: #17100b;
}

.ipsec-final-cta-section .final-cta-copy p {
  color: #614735;
}

.ipsec-final-cta-section .final-cta-primary {
  border-color: #6f3517;
  background: #6f3517;
  color: #fff9f3;
}

.ipsec-final-cta-section .final-cta-primary:hover {
  background: #562711;
}

.ipsec-final-cta-section .final-cta-secondary {
  border-color: #e4b286;
  background: rgba(255, 249, 243, 0.76);
  color: #3a1f10;
}

.ipsec-final-cta-section .final-cta-secondary:hover {
  border-color: #d3935c;
  background: rgba(255, 249, 243, 0.94);
}

.ipsec-final-cta-section .final-cta-snake {
  filter: drop-shadow(0 30px 46px rgba(95, 43, 12, 0.16));
}

.wireguard-page {
  position: relative;
  background: #fff0f1;
  color: #17090b;
  overflow: hidden;
}

.wireguard-inner {
  width: min(100%, 1288px);
  margin: 0 auto;
}

.wireguard-intro-section {
  position: relative;
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 43, 56, 0.16), transparent 34%),
    linear-gradient(180deg, #fff8f8 0%, #ffe8eb 100%);
  padding: 98px 40px 112px;
  overflow: hidden;
}

.wireguard-copy {
  position: relative;
  z-index: 2;
  max-width: 1080px;
}

.wireguard-copy h1,
.wireguard-copy h2,
.wireguard-red-copy h2 {
  margin: 0;
  color: #17090b;
  font-weight: 650;
  letter-spacing: 0;
}

.wireguard-copy h1 {
  max-width: 1060px;
  font-size: clamp(40px, 4.6vw, 62px);
  line-height: 1.02;
}

.wireguard-copy h2,
.wireguard-red-copy h2 {
  max-width: 1000px;
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 1.06;
}

.wireguard-copy p,
.wireguard-red-copy p {
  max-width: 980px;
  margin: 24px 0 0;
  color: #61343a;
  font-size: 18px;
  line-height: 1.66;
}

.wireguard-red-section {
  position: relative;
  background:
    radial-gradient(circle at 82% 34%, rgba(255, 119, 129, 0.22), transparent 34%),
    linear-gradient(135deg, #3a1015 0%, #8f1f2b 52%, #c92b38 100%);
  padding: 106px 40px 116px;
  overflow: hidden;
}

.wireguard-red-section::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 92px;
  background: #ffe8eb;
  clip-path: polygon(0 0, 100% 0, 100% 22%, 0 100%);
}

.wireguard-red-copy {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  padding-top: 50px;
}

.wireguard-red-copy h2 {
  color: #fff8f8;
}

.wireguard-red-copy p {
  color: #ffdce0;
}

.wireguard-light-section {
  background:
    radial-gradient(circle at 18% 26%, rgba(201, 43, 56, 0.1), transparent 32%),
    #fff7f7;
  padding: 88px 40px 98px;
}

.wireguard-hero-snake {
  position: absolute;
  top: -128px;
  right: max(-190px, calc((100vw - 1288px) / 2 - 250px));
  z-index: 1;
  width: min(58vw, 820px);
  max-width: none;
  height: auto;
  opacity: 0.82;
  pointer-events: none;
  filter: drop-shadow(0 30px 48px rgba(88, 12, 20, 0.18));
}

.wireguard-pricing-section {
  position: relative;
  min-height: 650px;
  background:
    radial-gradient(circle at 84% 44%, rgba(201, 43, 56, 0.16), transparent 34%),
    linear-gradient(180deg, #fff0f1 0%, #fff7f7 100%);
  padding: 104px 40px 116px;
  overflow: hidden;
}

.wireguard-pricing-section .wireguard-inner {
  position: relative;
  z-index: 2;
}

.wireguard-pricing-card::before {
  background: linear-gradient(90deg, #c92b38 0%, #ff7a85 100%);
}

.wireguard-pricing-card .gre-pricing-lines del {
  text-decoration-color: rgba(201, 43, 56, 0.78);
}

.wireguard-price-snake {
  position: absolute;
  right: max(-150px, calc((100vw - 1288px) / 2 - 220px));
  bottom: 72px;
  z-index: 1;
  width: min(52vw, 700px);
  max-width: none;
  height: auto;
  opacity: 0.9;
  pointer-events: none;
  filter: drop-shadow(0 34px 54px rgba(88, 12, 20, 0.2));
}

.wireguard-final-cta-section {
  background:
    radial-gradient(circle at 76% 40%, rgba(201, 43, 56, 0.18), transparent 34%),
    linear-gradient(180deg, #fff7f7 0%, #ffe8eb 100%);
}

.wireguard-final-cta-section .final-cta-copy h2 {
  color: #17090b;
}

.wireguard-final-cta-section .final-cta-copy p {
  color: #61343a;
}

.wireguard-final-cta-section .final-cta-primary {
  border-color: #6d1720;
  background: #6d1720;
  color: #fff8f8;
}

.wireguard-final-cta-section .final-cta-primary:hover {
  background: #531018;
}

.wireguard-final-cta-section .final-cta-secondary {
  border-color: #dfa0a7;
  background: rgba(255, 248, 248, 0.76);
  color: #3a1015;
}

.wireguard-final-cta-section .final-cta-secondary:hover {
  border-color: #cf7d87;
  background: rgba(255, 248, 248, 0.94);
}

.wireguard-final-cta-section .final-cta-snake {
  filter: drop-shadow(0 30px 46px rgba(88, 12, 20, 0.14));
}

.ddos-page {
  background: #f7f9fc;
}

.ddos-coverage-section {
  padding: 104px 40px 116px;
}

.ddos-coverage-inner {
  width: min(100%, 1288px);
  margin: 0 auto;
}

.ddos-coverage-lead {
  max-width: 720px;
}

.ddos-coverage-lead h2 {
  margin: 0;
  color: #0b111c;
  font-size: clamp(34px, 3.6vw, 54px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.06;
}

.ddos-coverage-lead p {
  max-width: 620px;
  margin: 22px 0 0;
  color: #445166;
  font-size: 18px;
  line-height: 1.6;
}

.ddos-netbait-section {
  background: #eef3fa;
  padding: 96px 40px;
}

.ddos-netbait-inner {
  width: min(100%, 900px);
  margin: 0 auto;
}

.ddos-netbait-inner h2 {
  margin: 0;
  color: #0b111c;
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.1;
}

.ddos-netbait-inner p {
  max-width: 680px;
  margin: 18px 0 0;
  color: #445166;
  font-size: 17px;
  line-height: 1.6;
}

.pricing-page {
  background: #f7f9fc;
}

.pricing-hero-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(47, 108, 229, 0.12), transparent 32%),
    linear-gradient(180deg, #f7f9fc 0%, #eef3fa 100%);
  padding: 112px 40px 96px;
}

.pricing-hero-inner {
  width: min(100%, 1060px);
  margin: 0 auto;
}

.pricing-hero-inner h1 {
  max-width: 780px;
  margin: 0;
  color: #0b111c;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.04;
}

.pricing-hero-inner p {
  max-width: 700px;
  margin: 24px 0 0;
  color: #445166;
  font-size: 18px;
  line-height: 1.62;
}

.pricing-plans-section {
  padding: 8px 40px 96px;
}

.pricing-plans-inner,
.pricing-terms-inner {
  width: min(100%, 1288px);
  margin: 0 auto;
}

.pricing-section-head {
  max-width: 720px;
  margin: 0 0 44px;
}

.pricing-plans-section .pricing-section-head {
  max-width: none;
}

.pricing-section-title {
  margin: 0;
  color: #0b111c;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.1;
}

.pricing-section-lead {
  margin: 14px 0 0;
  color: #445166;
  font-size: 17px;
  line-height: 1.58;
}

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

.pricing-plans-grid .gre-pricing-card {
  width: 100%;
}

.gre-pricing-card h3 {
  margin: 0;
  color: #08111f;
  font-size: 22px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.1;
}

.pricing-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  color: #2f6ce5;
  font-size: 14px;
  font-weight: 560;
}

.ipsec-pricing-card .pricing-card-link {
  color: #c05621;
}

.wireguard-pricing-card .pricing-card-link {
  color: #c92b38;
}

.pricing-terms-section {
  padding: 96px 40px 112px;
  background: #eef3fa;
}

.pricing-terms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pricing-term-card {
  position: relative;
  display: grid;
  gap: 10px;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  padding: 28px 24px;
  background: #fbfcff;
}

.pricing-term-card strong {
  color: #0b111c;
  font-size: 22px;
  font-weight: 650;
}

.pricing-term-card span {
  color: #52657e;
  font-size: 15px;
  font-weight: 520;
}

.pricing-term-card.is-best {
  border-color: #2f6ce5;
  background: linear-gradient(180deg, #f2f7ff 0%, #e8f0ff 100%);
  box-shadow: 0 18px 40px rgba(47, 108, 229, 0.14);
}

.pricing-term-card .pricing-term-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  border-radius: 999px;
  padding: 4px 10px;
  background: #2f6ce5;
  color: #f8fafc;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .site-header {
    min-height: auto;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 18px;
    padding: 14px 24px 10px;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 28px;
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 4px;
  }

  .nav-item {
    min-height: 36px;
  }

  .nav-dropdown {
    top: 38px;
  }

  .header-actions {
    justify-self: end;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding: 48px 24px 62px;
  }

  .hero-text {
    max-width: 610px;
  }

  .dashboard-preview {
    margin-top: 40px;
  }

  .price-section {
    padding: 68px 24px;
  }

  .price-block {
    align-items: flex-start;
    gap: 32px;
    padding: 32px;
  }

  .price-copy h2 {
    font-size: 30px;
  }

  .price-value strong {
    font-size: 56px;
  }

  .performance-intro-section {
    padding: 78px 24px 92px;
  }

  .ddos-inner {
    min-height: 560px;
  }

  .ddos-copy {
    padding: 74px 24px;
  }

  .ddos-copy h2 {
    max-width: 680px;
    font-size: 44px;
  }

  .ddos-columns {
    max-width: 720px;
    gap: 30px;
  }

  .hosting-section {
    padding: 78px 24px 88px;
  }

  .hosting-snake {
    top: 112px;
    right: -360px;
    width: 820px;
    opacity: 0.28;
  }

  .hosting-lead p {
    max-width: 680px;
  }

  .hosting-flow {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 64px;
    border-top: 0;
  }

  .hosting-flow article {
    padding: 0 0 34px 28px;
    border-left: 1px solid #ccd7e6;
  }

  .hosting-flow article:last-child {
    padding-bottom: 0;
  }

  .hosting-flow article::before {
    top: 3px;
    left: -5px;
  }

  .performance-section {
    padding: 78px 24px;
  }

  .performance-inner {
    display: block;
  }

  .performance-copy p {
    max-width: 640px;
  }

  .performance-statement {
    margin-top: 44px;
  }

  .final-cta-section {
    padding: 84px 24px 96px;
  }

  .final-cta-inner {
    min-height: 390px;
  }

  .final-cta-snake {
    right: -230px;
    bottom: -34px;
    width: 670px;
    opacity: 0.45;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 46px;
  }

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

  .content-page {
    padding: 78px 24px 92px;
  }

  .ipv4-docs {
    padding: 0 24px;
  }

  .docs-shell {
    grid-template-columns: 1fr;
    padding: 40px 0 60px;
  }

  .docs-toc {
    position: static;
  }

  .docs-toc nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 20px;
    border-left: none;
    border-top: 1px solid var(--line);
    padding-top: 14px;
  }

  .docs-toc a {
    padding-left: 0;
  }

  .docs-content {
    max-width: none;
  }

  .gre-intro-section {
    padding: 78px 24px 92px;
  }

  .gre-blue-section {
    min-height: 560px;
    padding: 86px 24px 110px;
  }

  .gre-blue-copy {
    max-width: 580px;
    margin-left: 0;
  }

  .gre-blue-snake {
    right: -210px;
    bottom: -320px;
    left: auto;
    width: 650px;
    opacity: 0.78;
  }

  .gre-pricing-section {
    min-height: 620px;
    padding: 82px 24px 280px;
  }

  .gre-pricing-card {
    width: min(100%, 520px);
    padding: 28px;
  }

  .gre-price-snake {
    right: -330px;
    bottom: -90px;
    width: 920px;
    opacity: 0.86;
  }

  .ipsec-intro-section,
  .ipsec-orange-section,
  .ipsec-light-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  .ipsec-intro-section {
    padding-top: 78px;
    padding-bottom: 92px;
  }

  .ipsec-orange-section {
    padding-top: 86px;
    padding-bottom: 96px;
  }

  .ipsec-light-section {
    padding-top: 78px;
    padding-bottom: 88px;
  }

  .ipsec-hero-snake {
    top: -80px;
    right: -310px;
    width: 720px;
    opacity: 0.28;
  }

  .ipsec-pricing-section {
    min-height: 620px;
    padding: 82px 24px 280px;
  }

  .ipsec-price-snake {
    right: -360px;
    bottom: -110px;
    width: 900px;
    opacity: 0.64;
  }

  .wireguard-intro-section,
  .wireguard-red-section,
  .wireguard-light-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  .wireguard-intro-section {
    padding-top: 78px;
    padding-bottom: 92px;
  }

  .wireguard-red-section {
    padding-top: 86px;
    padding-bottom: 96px;
  }

  .wireguard-light-section {
    padding-top: 78px;
    padding-bottom: 88px;
  }

  .wireguard-hero-snake {
    top: -64px;
    right: -300px;
    width: 780px;
    opacity: 0.24;
  }

  .wireguard-pricing-section {
    min-height: 620px;
    padding: 82px 24px 280px;
  }

  .wireguard-price-snake {
    right: -210px;
    bottom: 44px;
    width: 620px;
    opacity: 0.58;
  }

  .ddos-coverage-section {
    padding: 78px 24px 92px;
  }

  .ddos-netbait-section {
    padding: 72px 24px;
  }

  .pricing-hero-section {
    padding: 78px 24px 72px;
  }

  .pricing-plans-section {
    padding: 8px 24px 72px;
  }

  .pricing-plans-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .pricing-terms-section {
    padding: 72px 24px 84px;
  }

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

@media (max-width: 560px) {
  .header-inner {
    padding: 14px 16px 10px;
  }

  .brand img {
    width: 112px;
  }

  .signin-link {
    display: none;
  }

  .cta-link {
    min-height: 36px;
    padding: 0 14px;
    font-size: 13px;
  }

  .main-nav {
    gap: 22px;
  }

  .nav-dropdown {
    min-width: 188px;
  }

  .promo-bar {
    min-height: 32px;
    padding: 0 16px;
    font-size: 12px;
  }

  .hero-inner {
    padding: 42px 16px 50px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.06;
  }

  .hero-text {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.48;
  }

  .hero-cta {
    min-height: 42px;
    margin-top: 22px;
    padding: 0 16px;
    font-size: 13px;
  }

  .dashboard-preview {
    width: 100%;
    margin-top: 32px;
    border-radius: 7px;
  }

  .price-section {
    padding: 52px 16px;
  }

  .price-block {
    display: block;
    min-height: 0;
    padding: 28px 24px;
    text-align: left;
  }

  .price-copy h2 {
    font-size: 25px;
  }

  .price-copy p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.5;
  }

  .price-action {
    justify-items: start;
    gap: 18px;
    margin-top: 26px;
  }

  .price-value {
    font-size: 19px;
  }

  .price-value strong {
    font-size: 50px;
  }

  .price-value span {
    font-size: 18px;
  }

  .performance-intro-section {
    padding: 58px 16px 70px;
  }

  .performance-intro-copy h1 {
    font-size: 34px;
    line-height: 1.06;
  }

  .performance-intro-copy p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.56;
  }

  .performance-light-section {
    padding: 58px 16px 66px;
  }

  .performance-light-copy h2 {
    font-size: 30px;
  }

  .performance-light-copy p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.56;
  }

  .price-cta {
    min-height: 40px;
    padding: 0 16px;
    font-size: 13px;
  }

  .ddos-section {
    padding: 0;
  }

  .ddos-inner {
    gap: 0;
  }

  .ddos-copy h2 {
    font-size: 28px;
  }

  .ddos-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 24px;
  }

  .ddos-columns h2 {
    font-size: 17px;
  }

  .ddos-columns p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
  }

  .ddos-cta {
    min-height: 40px;
    margin-top: 24px;
    padding: 0 16px;
    font-size: 13px;
  }

  .ddos-image {
    min-height: 260px;
  }

  .hosting-section {
    padding: 58px 16px 66px;
  }

  .hosting-snake {
    display: none;
  }

  .hosting-lead h2 {
    font-size: 31px;
  }

  .hosting-lead p {
    font-size: 15px;
    line-height: 1.52;
  }

  .hosting-flow {
    margin-top: 38px;
  }

  .hosting-flow article {
    padding-left: 24px;
    padding-bottom: 30px;
  }

  .hosting-flow span {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .hosting-flow h3 {
    font-size: 18px;
  }

  .hosting-flow p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.52;
  }

  .performance-section {
    padding: 58px 16px;
  }

  .performance-inner {
    display: block;
  }

  .performance-copy h1,
  .performance-copy h2 {
    font-size: 30px;
  }

  .performance-copy p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.52;
  }

  .performance-statement {
    margin-top: 34px;
    padding-top: 28px;
  }

  .performance-statement p {
    font-size: 26px;
    line-height: 1.2;
  }

  .final-cta-section {
    padding: 62px 16px 300px;
  }

  .final-cta-inner {
    min-height: auto;
  }

  .final-cta-copy h2 {
    font-size: 34px;
  }

  .final-cta-copy p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.52;
  }

  .final-cta-actions {
    gap: 10px;
    margin-top: 26px;
  }

  .final-cta-primary,
  .final-cta-secondary {
    min-height: 42px;
    padding: 0 16px;
    font-size: 13px;
  }

  .final-cta-snake {
    right: -150px;
    bottom: -252px;
    width: 520px;
    opacity: 0.95;
  }

  .site-footer {
    padding: 52px 16px 26px;
  }

  .footer-logo img {
    width: 120px;
  }

  .footer-brand p {
    margin-top: 20px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    display: block;
    margin-top: 42px;
  }

  .footer-bottom span {
    display: block;
    margin-top: 8px;
  }

  .content-page {
    padding: 58px 16px 72px;
  }

  .content-page h1 {
    font-size: 34px;
  }

  .content-page p {
    font-size: 15px;
    line-height: 1.54;
  }

  .pricing-hero-inner h1 {
    font-size: 34px;
  }

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

  .ipv4-docs {
    padding: 0 16px;
  }

  .docs-shell {
    padding: 32px 0 48px;
    gap: 32px;
  }

  .docs-content h1 {
    font-size: 30px;
  }

  .docs-lead {
    font-size: 16px;
  }

  .docs-content h2 {
    font-size: 22px;
  }

  .docs-content section {
    margin-top: 40px;
  }

  .gre-intro-section {
    padding: 58px 16px 70px;
  }

  .gre-intro-copy h1 {
    font-size: 34px;
    line-height: 1.06;
  }

  .gre-intro-copy p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.56;
  }

  .gre-light-section {
    padding: 58px 16px 66px;
  }

  .gre-light-copy h2 {
    font-size: 30px;
  }

  .gre-light-copy p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.56;
  }

  .gre-blue-section {
    min-height: 720px;
    padding: 76px 16px 380px;
  }

  .gre-blue-section::before {
    height: 64px;
  }

  .gre-blue-copy {
    padding-top: 30px;
  }

  .gre-blue-copy h2 {
    font-size: 32px;
  }

  .gre-blue-copy p {
    font-size: 15px;
    line-height: 1.56;
  }

  .gre-blue-snake {
    top: 300px;
    right: -156px;
    bottom: auto;
    width: 470px;
    opacity: 0.86;
  }

  .gre-pricing-section {
    min-height: 680px;
    padding: 58px 16px 330px;
  }

  .gre-pricing-card {
    padding: 24px 20px 22px;
  }

  .gre-pricing-card h2 {
    font-size: 22px;
  }

  .gre-pricing-main {
    padding: 24px 0 22px;
  }

  .gre-pricing-main strong {
    font-size: 44px;
  }

  .gre-pricing-main span {
    font-size: 15px;
  }

  .gre-pricing-lines div {
    display: block;
    min-height: 0;
    padding: 15px 0;
  }

  .gre-pricing-lines strong {
    display: block;
    margin-top: 7px;
    font-size: 16px;
  }

  .gre-pricing-lines span {
    font-size: 14px;
  }


  .gre-price-snake {
    right: -276px;
    bottom: -64px;
    width: 720px;
    opacity: 0.9;
  }

  .ipsec-intro-section {
    padding: 58px 16px 70px;
  }

  .ipsec-orange-section {
    padding: 76px 16px 70px;
  }

  .ipsec-orange-section::before {
    height: 64px;
  }

  .ipsec-light-section {
    padding: 58px 16px 66px;
  }

  .ipsec-hero-snake {
    top: -40px;
    right: -260px;
    width: 560px;
    opacity: 0.18;
  }

  .ipsec-pricing-section {
    min-height: 680px;
    padding: 58px 16px 330px;
  }

  .ipsec-price-snake {
    right: -310px;
    bottom: -80px;
    width: 700px;
    opacity: 0.5;
  }

  .ipsec-copy h1 {
    font-size: 34px;
    line-height: 1.06;
  }

  .ipsec-copy h2,
  .ipsec-orange-copy h2 {
    font-size: 30px;
  }

  .ipsec-copy p,
  .ipsec-orange-copy p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.56;
  }

  .wireguard-intro-section {
    padding: 58px 16px 70px;
  }

  .wireguard-red-section {
    padding: 76px 16px 70px;
  }

  .wireguard-red-section::before {
    height: 64px;
  }

  .wireguard-light-section {
    padding: 58px 16px 66px;
  }

  .wireguard-copy h1 {
    font-size: 34px;
    line-height: 1.06;
  }

  .wireguard-copy h2,
  .wireguard-red-copy h2 {
    font-size: 30px;
  }

  .wireguard-copy p,
  .wireguard-red-copy p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.56;
  }

  .wireguard-hero-snake {
    top: -26px;
    right: -250px;
    width: 580px;
    opacity: 0.16;
  }

  .wireguard-pricing-section {
    min-height: 680px;
    padding: 58px 16px 330px;
  }

  .wireguard-price-snake {
    right: -190px;
    bottom: 38px;
    width: 460px;
    opacity: 0.48;
  }
}

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

.docs-table-wrap {
  margin-top: 24px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.pricing-comparison-table {
  margin-top: 0;
  margin-bottom: 44px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.5;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.comparison-table thead th {
  color: var(--ink);
  font-weight: 700;
  background: var(--blue-soft);
}

.comparison-table tbody th {
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
}

.comparison-table tbody td {
  color: #33394a;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* Article nav — slim header for the /article/ section, modeled on .reference-header */

.article-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 252, 255, 0.97);
}

.article-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 28px;
}

.article-nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.article-nav-brand img {
  width: 118px;
  height: auto;
}

.article-nav-brand span {
  border-left: 1px solid #d7d7d7;
  padding-left: 12px;
}

.article-nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #454c5c;
  font-size: 13px;
  font-weight: 600;
}

.article-nav-links a:hover {
  color: var(--ink);
}

.article-nav-cta {
  border-radius: 4px;
  padding: 8px 14px;
  color: #fff;
  background: var(--blue);
}

.article-nav-cta:hover {
  color: #fff;
  background: #2559c2;
}

@media (max-width: 620px) {
  .article-nav-brand span {
    display: none;
  }

  .article-nav-links {
    gap: 14px;
  }

  .article-nav-links a:not(.article-nav-cta) {
    display: none;
  }
}

/* Article hub — dashed editorial grid, modeled on blog.cloudflare.com's layout */

.article-hub-page {
  padding-bottom: 40px;
}

.article-hub-header {
  position: relative;
  border-bottom: 1px dashed #d3dbe8;
  padding: 40px 24px 40px;
}

.article-hub-header-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.article-hub-header h1 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.article-hub-header p {
  max-width: 640px;
  margin: 0;
  color: #454c5c;
  font-size: 17px;
  line-height: 1.55;
}

.article-hub-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.article-hub-tags a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  color: #454c5c;
  font-size: 13px;
  font-weight: 600;
}

.article-hub-tags a:hover,
.article-hub-tags a.is-active {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-soft);
}

.article-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.article-hub-item {
  position: relative;
  padding: 40px 40px 40px 0;
  border-bottom: 1px dashed #d3dbe8;
}

.article-hub-item:nth-child(odd) {
  padding-right: 40px;
  border-right: 1px dashed #d3dbe8;
}

.article-hub-item:nth-child(even) {
  padding-left: 40px;
}

.article-hub-date {
  display: block;
  margin-bottom: 14px;
  color: #6c7381;
  font: 600 12px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-hub-title {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.article-hub-title a {
  color: inherit;
  transition: color 150ms ease;
}

.article-hub-title a:hover {
  color: var(--blue);
}

.article-hub-excerpt {
  margin: 0 0 18px;
  color: #33394a;
  opacity: 0.72;
  font-size: 15px;
  line-height: 1.6;
}

.article-hub-empty {
  grid-column: 1 / -1;
  padding: 64px 0;
  text-align: center;
}

.article-hub-empty p {
  margin: 0;
  color: #6c7381;
  font-size: 15px;
}

@media (max-width: 760px) {
  .article-hub-header h1 {
    font-size: 27px;
  }

  .article-hub-grid {
    grid-template-columns: minmax(0, 1fr);
    padding: 0 20px;
  }

  .article-hub-item,
  .article-hub-item:nth-child(odd),
  .article-hub-item:nth-child(even) {
    padding: 32px 0;
    border-right: none;
  }
}

/* Single article — 3-column layout modeled on a blog.cloudflare.com post:
   toc | content | discuss (mirrored left/right from Cloudflare's own
   discuss | content | toc, per explicit request). */

.article-page {
  padding-bottom: 40px;
}

.article-hero {
  max-width: 1560px;
  margin: 0 auto;
  padding: 26px 24px 20px;
  background: #fff;
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
  color: #6b7383;
  font-size: 13px;
}

.article-breadcrumb a {
  color: var(--blue);
}

.article-date {
  color: #6c7381;
  font: 600 12px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-hero h1 {
  max-width: 760px;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.article-byline {
  margin: 0;
  color: #6b7383;
  font-size: 13px;
  line-height: 1.5;
}

@media (min-width: 640px) {
  .article-hero h1 {
    font-size: 42px;
  }
}

.article-hero-rule {
  margin-top: 14px;
  border-bottom: 1px dashed #d3dbe8;
}

.article-layout {
  display: grid;
  grid-template-areas: "content" "toc" "discuss";
  grid-template-columns: minmax(0, 1fr);
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .article-layout {
    grid-template-areas: "toc content";
    grid-template-columns: 240px minmax(0, 1fr);
    column-gap: 48px;
    align-items: start;
  }

  .article-discuss {
    grid-column: 2;
  }
}

@media (min-width: 1280px) {
  .article-layout {
    grid-template-areas: "toc content discuss";
    grid-template-columns: 240px minmax(0, 760px) 230px;
    justify-content: space-between;
  }

  .article-discuss {
    grid-column: auto;
  }
}

.article-toc {
  display: none;
  grid-area: toc;
}

@media (min-width: 768px) {
  .article-toc {
    display: block;
    position: sticky;
    top: 64px;
    align-self: start;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    padding: 32px 20px 32px 0;
    border-right: 1px dashed #d3dbe8;
  }
}

@media (min-width: 1280px) {
  .article-toc {
    padding: 32px 24px;
    border-right: 1px dashed #d3dbe8;
  }
}

.article-toc-label {
  margin: 0 0 12px;
  color: #6c7381;
  font: 700 11px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-toc nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 2px solid var(--line);
}

.article-toc a {
  padding: 6px 0 6px 14px;
  color: #6b7383;
  font-size: 13px;
  line-height: 1.4;
  border-left: 2px solid transparent;
  margin-left: -2px;
  transition: color 150ms ease, border-color 150ms ease;
}

.article-toc a:hover {
  color: var(--ink);
}

.article-toc a.is-active {
  color: var(--blue);
  border-left-color: var(--blue);
  font-weight: 600;
}

.article-content {
  grid-area: content;
  max-width: 760px;
  padding: 32px 0;
  color: #33394a;
  font-size: 16px;
  line-height: 1.75;
}

.article-content h2 {
  margin: 40px 0 16px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  scroll-margin-top: 80px;
}

.article-content h3 {
  margin: 28px 0 12px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.35;
  scroll-margin-top: 80px;
}

.article-content p {
  margin: 0 0 18px;
}

.article-content ul,
.article-content ol {
  margin: 0 0 20px;
  padding-left: 22px;
}

.article-content li {
  margin-bottom: 8px;
}

.article-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-content code {
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 1px 5px;
  background: #fff;
  font: 0.88em/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
  word-break: break-word;
}

.article-content pre {
  margin: 24px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: #f6f8fb;
}

.article-content pre code {
  display: block;
  width: max-content;
  min-width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: #263243;
  font: 13.5px/1.65 ui-monospace, SFMono-Regular, Menlo, monospace;
  word-break: normal;
}

.article-figure {
  margin: 32px 0;
}

.article-figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px dashed #d3dbe8;
  border-radius: 6px;
}

.article-figure figcaption {
  margin-top: 10px;
  color: #6b7383;
  font-size: 13px;
  line-height: 1.55;
}

.article-figure-hero {
  margin-top: 10px;
}

.article-callout {
  margin: 28px 0;
  border-left: 4px solid var(--blue);
  border-radius: 0 6px 6px 0;
  padding: 18px 22px;
  background: var(--blue-soft);
}

.article-callout strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 15px;
}

.article-callout p {
  margin: 0;
  color: #3f4960;
  font-size: 15px;
  line-height: 1.6;
}

.article-logo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0;
}

.article-content .article-logo-card {
  display: flex;
  min-height: 128px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 20px 14px;
  color: #5c6576;
  background: #fff;
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  transition: border-color 150ms ease, transform 150ms ease;
}

.article-content .article-logo-card:hover {
  border-color: #9db9ed;
  transform: translateY(-2px);
}

.article-logo-card img {
  display: block;
  width: auto;
  max-width: 145px;
  height: 42px;
  object-fit: contain;
}

.article-logo-wordmark {
  color: #172033;
  font-size: 23px;
  line-height: 42px;
  letter-spacing: -0.02em;
}

.article-content .article-logo-card-dark {
  border-color: #29354b;
  color: #c7d1e1;
  background: #172033;
}

.article-content .article-logo-card-dark:hover {
  border-color: #4779d7;
}

.article-checklist {
  padding-left: 0 !important;
  list-style: none;
}

.article-checklist li {
  position: relative;
  border-bottom: 1px dashed #d3dbe8;
  padding: 9px 0 9px 31px;
}

.article-checklist li::before {
  position: absolute;
  top: 12px;
  left: 2px;
  width: 17px;
  height: 17px;
  border: 2px solid #91abe0;
  border-radius: 3px;
  content: "";
}

.article-faq {
  margin-top: 48px;
  border-top: 1px dashed #d3dbe8;
  padding-top: 4px;
}

.article-faq details {
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
}

.article-faq summary {
  color: var(--ink);
  font-weight: 600;
  cursor: pointer;
}

.article-faq details p {
  margin: 12px 0 2px;
  color: #4f586a;
  font-size: 15px;
}

.article-sources {
  margin-top: 44px;
  border-top: 1px dashed #d3dbe8;
}

.article-sources h2 {
  font-size: 20px;
}

.article-sources ul {
  font-size: 14px;
}

@media (max-width: 640px) {
  .article-logo-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .article-content .article-logo-card {
    min-height: 104px;
  }
}

.article-table-wrap {
  margin: 28px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  text-align: left;
}

.article-table th,
.article-table td {
  border-bottom: 1px solid var(--line);
  padding: 10px 14px;
  line-height: 1.45;
}

.article-table thead th {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  background: var(--blue-soft);
  white-space: nowrap;
}

.article-table tbody th {
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
}

.article-table tbody td {
  color: #33394a;
}

.article-table tbody tr:last-child th,
.article-table tbody tr:last-child td {
  border-bottom: none;
}

.article-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 36px 0;
  border: 1px dashed #b9cdf3;
  border-radius: 6px;
  padding: 22px 24px;
  background: var(--blue-soft);
}

.article-cta p {
  margin: 0;
  max-width: 380px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.article-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  max-width: 100%;
}

@media (max-width: 480px) {
  .article-cta-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

.article-content .article-cta-primary {
  border-radius: 4px;
  padding: 10px 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  background: var(--blue);
}

.article-content .article-cta-primary:hover {
  background: #2559c2;
}

.article-content .article-cta-secondary {
  color: #2e69e0;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.article-content .article-cta-secondary:hover {
  text-decoration: underline;
}

.article-discuss {
  grid-area: discuss;
  padding: 32px 0;
}

@media (min-width: 768px) {
  .article-discuss {
    border-top: 1px dashed #d3dbe8;
  }
}

@media (min-width: 1280px) {
  .article-discuss {
    position: sticky;
    top: 64px;
    align-self: start;
    max-height: calc(100vh - 64px);
    padding: 32px 0 32px 24px;
    border-top: none;
    border-left: 1px dashed #d3dbe8;
  }
}

.article-discuss-label {
  margin: 0 0 14px;
  color: #6c7381;
  font: 700 11px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-discuss-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-discuss-actions a,
.article-discuss-actions button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #5b6270;
  background: #fff;
  cursor: pointer;
  transition: color 150ms ease, border-color 150ms ease;
}

.article-discuss-actions a:hover,
.article-discuss-actions button:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.article-discuss-actions button.is-copied {
  color: #16834a;
  border-color: #16834a;
  background: #effaf4;
}

.article-discuss-actions svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
