.home-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.flag-red {
  fill: var(--color-error);
}

.flag-white {
  fill: var(--color-white);
}

.flag-blue {
  fill: var(--color-accent-dark);
}

.hero {
  position: relative;
  max-width: 100%;
  overflow-x: clip;
  padding-top: 34px;
}

.hero-device {
  display: contents;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.glow {
  position: absolute;
  inset: -10% -20% auto;
  height: 70%;
  background:
    radial-gradient(ellipse at 40% 8%, var(--color-paper-glow), transparent 72%),
    radial-gradient(ellipse at 68% 18%, var(--color-honey-soft), transparent 70%),
    linear-gradient(180deg, var(--color-honey-soft), transparent 60%);
  opacity: 0.72;
}

.grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.04;
  mix-blend-mode: multiply;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 760px;
  margin-inline: auto;
  flex-direction: column;
  align-items: center;
  padding-inline: 20px;
  text-align: center;
}

.hero-copy > .badge {
  min-height: 34px;
  padding: 5px 14px 5px 12px;
  font-size: 13px;
}

.hero-copy > .badge svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--color-accent);
}

.h1 {
  margin: 22px 0 0;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.h1 .line {
  display: block;
}

.kw {
  position: relative;
  display: inline-block;
  padding-inline: 2px;
}

.kw svg {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 12px;
  fill: none;
  stroke: var(--color-honey);
  stroke-width: 6;
  stroke-linecap: round;
}

.lede {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.6;
}

.lede strong {
  color: var(--color-text);
  font-weight: 700;
}

.ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.btn-ghost {
  border-color: var(--color-border);
  background: var(--color-panel);
  color: var(--color-text);
}

.btn-ghost:hover {
  border-color: var(--color-accent);
}

.ctas .btn svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
  margin: 20px 0 0;
  padding: 0;
  color: var(--color-muted);
  font-size: 13px;
  list-style: none;
}

.trust li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  stroke: var(--color-success);
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rows {
  display: flex;
  margin-top: 26px;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.chiprow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.chiprow .lbl {
  margin-right: 6px;
  color: var(--color-muted);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.chip {
  display: inline-flex;
  min-height: 30px;
  max-width: 100%;
  align-items: center;
  gap: 7px;
  padding: 3px 12px 3px 9px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-panel);
  color: var(--color-text);
  box-shadow: inset 0 1px 0 var(--color-white);
  font-size: 13px;
  font-weight: 600;
  text-overflow: ellipsis;
}

.chip .pf {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--color-accent);
}

.chip .flag {
  width: 20px;
  height: 15px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: var(--radius-xs);
}

.floaters {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.fc {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px 9px 9px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-panel);
  box-shadow: var(--shadow-card);
  font-size: 12px;
  pointer-events: auto;
  transition: box-shadow var(--motion-fast) ease;
}

.fc:hover {
  box-shadow: var(--shadow-panel);
}

.fc .plate {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: var(--radius-xs);
  background: var(--color-apricot);
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 800;
}

.fc .t {
  line-height: 1.25;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.fc .s {
  margin-top: 2px;
  color: var(--color-muted);
  font-size: 11px;
  line-height: 1.3;
  white-space: nowrap;
}

.fc .dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: var(--radius-pill);
  background: var(--color-success);
  box-shadow: 0 0 0 3px var(--color-mint);
  vertical-align: 1px;
}

.fc.mini {
  padding: 9px;
}

.fc.mini svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fc.c1 {
  top: 44px;
  left: 7%;
  transform: rotate(-3deg);
  animation: float-c1 7s ease-in-out -1s infinite alternate;
}

.fc.c2 {
  top: 50px;
  right: 6%;
  transform: rotate(3deg);
  animation: float-c2 8s ease-in-out -2.5s infinite alternate;
}

.fc.c2 .plate,
.fc.c6 .plate {
  background: var(--color-mint);
}

.fc.c3 {
  top: 162px;
  left: 3.6%;
  transform: rotate(2deg);
  animation: float-c3 8.5s ease-in-out -3s infinite alternate;
}

.fc.c3 .plate,
.fc.c7 .plate {
  background: var(--color-mist);
}

.fc.c4 {
  top: 168px;
  right: 4%;
  transform: rotate(-2deg);
  animation: float-c4 6.8s ease-in-out -1.5s infinite alternate;
}

.fc.c4 .plate,
.fc.c8 .plate {
  background: var(--color-lilac);
}

.fc.c5 {
  top: 284px;
  left: 8%;
  transform: rotate(-2deg);
  animation: float-c5 6.5s ease-in-out -2s infinite alternate;
}

.fc.c5 .plate {
  background: var(--color-honey-soft);
}

.fc.c6 {
  top: 280px;
  right: 7%;
  transform: rotate(2deg);
  animation: float-c6 9s ease-in-out -3.5s infinite alternate;
}

.fc.c7 {
  top: 392px;
  left: 4.5%;
  transform: rotate(3deg);
  animation: float-c7 9s ease-in-out -4s infinite alternate;
}

.fc.c8 {
  top: 396px;
  right: 4.5%;
  transform: rotate(-3deg);
  animation: float-c8 7.2s ease-in-out -.5s infinite alternate;
}

.fc.m1 {
  top: 118px;
  left: 19.5%;
  transform: rotate(4deg);
  animation: float-m1 7.5s ease-in-out -5s infinite alternate;
}

.fc.m2 {
  top: 112px;
  right: 20%;
  transform: rotate(-4deg);
  animation: float-m2 8.2s ease-in-out -6s infinite alternate;
}

@keyframes float-c1 {
  to { transform: rotate(-3deg) translateY(-6px); }
}

@keyframes float-c2 {
  to { transform: rotate(3deg) translateY(-6px); }
}

@keyframes float-c3 {
  to { transform: rotate(2deg) translateY(-6px); }
}

@keyframes float-c4 {
  to { transform: rotate(-2deg) translateY(-6px); }
}

@keyframes float-c5 {
  to { transform: rotate(-2deg) translateY(-6px); }
}

@keyframes float-c6 {
  to { transform: rotate(2deg) translateY(-6px); }
}

@keyframes float-c7 {
  to { transform: rotate(3deg) translateY(-6px); }
}

@keyframes float-c8 {
  to { transform: rotate(-3deg) translateY(-6px); }
}

@keyframes float-m1 {
  to { transform: rotate(4deg) translateY(-6px); }
}

@keyframes float-m2 {
  to { transform: rotate(-4deg) translateY(-6px); }
}

.win-wrap {
  position: relative;
  z-index: 2;
  margin-top: 44px;
}

.win {
  width: 70%;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-panel);
  box-shadow: var(--shadow-panel);
}

.chrome {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 14px;
  padding-inline: 14px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-panel-soft);
}

.dots {
  display: flex;
  gap: 6px;
}

.dots i {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-pill);
  background: var(--color-accent);
}

.dots i:nth-child(2) {
  background: var(--color-warning);
}

.dots i:nth-child(3) {
  background: var(--color-apricot);
}

.wtabs {
  display: flex;
  gap: 4px;
  margin-left: 6px;
}

.wtab {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding-inline: 12px;
  border-radius: var(--radius-xs);
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 600;
}

.wtab[aria-selected="true"] {
  background: var(--color-honey-soft);
  color: var(--color-accent-dark);
  font-weight: 800;
}

.wtitle {
  margin-left: auto;
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.wbody {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 400px;
}

.list {
  padding-top: 8px;
  border-right: 1px solid var(--color-border);
}

.list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 14px 8px;
  color: var(--color-muted);
  font-size: 12px;
}

.filter {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding-inline: 9px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-panel);
  color: var(--color-muted);
  font-size: 11px;
}

.row {
  display: grid;
  min-height: 38px;
  grid-template-columns: 18px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  padding-inline: 14px;
  border-top: 1px solid var(--color-border);
  font-size: 13px;
}

.row.cur {
  background: var(--color-honey-soft);
}

.row .flag {
  width: 18px;
  height: 13px;
  overflow: hidden;
  border-radius: var(--radius-xs);
}

.row .name {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 6px;
  overflow: hidden;
  white-space: nowrap;
}

.row .name b {
  overflow: hidden;
  font-weight: 700;
  text-overflow: ellipsis;
}

.row .name span {
  color: var(--color-muted);
  font-size: 12px;
}

.row.cur .name b {
  color: var(--color-accent-dark);
}

.proto {
  display: inline-flex;
  min-height: 20px;
  align-items: center;
  padding-inline: 7px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  background: var(--color-panel);
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: 10px;
}

.tg {
  position: relative;
  width: 30px;
  height: 17px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-border);
}

.tg::after {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 13px;
  height: 13px;
  border-radius: var(--radius-pill);
  background: var(--color-panel);
  box-shadow: var(--shadow-card);
  content: "";
}

.tg.on {
  border-color: var(--color-accent);
  background: var(--color-accent);
}

.tg.on::after {
  right: 1px;
  left: auto;
}

.graph {
  padding: 10px;
}

.graph-panel {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
}

.graph-head {
  position: absolute;
  top: 10px;
  right: 12px;
  left: 12px;
  display: flex;
  justify-content: space-between;
  color: var(--color-muted);
  font-size: 12px;
}

.graph-head .leg {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.graph-head .leg i {
  width: 9px;
  height: 9px;
  border-radius: var(--radius-pill);
  background: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-shadow);
}

.topo {
  width: 100%;
  height: auto;
  margin-top: 26px;
}

.topo .edge {
  fill: none;
  stroke: var(--color-accent);
  stroke-opacity: .38;
  stroke-width: 1;
}

.topo .halo {
  fill: var(--color-accent);
  opacity: .22;
}

.topo .node {
  fill: var(--color-panel);
  stroke: var(--color-accent);
  stroke-width: 1.5;
}

.topo .core {
  fill: var(--color-accent);
}

.topo .core-ring {
  fill: none;
  stroke: var(--color-accent);
  stroke-opacity: .35;
  stroke-width: 1;
}

.topo text {
  fill: var(--color-text);
  font-family: var(--font-body);
  font-size: 10px;
  text-anchor: middle;
}

.topo text.core-l {
  fill: var(--color-accent-dark);
  font-weight: 700;
}

.feature-section {
  position: relative;
  overflow: hidden;
}

.feature-section .wrap {
  position: relative;
  z-index: 2;
}

.feature-sketches {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sketch {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 2px solid var(--color-accent);
  opacity: .06;
}

.sketch-flag {
  top: 9%;
  left: 6%;
  border-radius: var(--radius-xs);
  transform: rotate(-8deg);
}

.sketch-plug {
  top: 42%;
  left: 12%;
  border-radius: var(--radius-pill);
  transform: rotate(7deg);
}

.sketch-key {
  top: 18%;
  right: 8%;
  border-radius: var(--radius-pill);
  transform: rotate(9deg);
}

.sketch-window {
  right: 17%;
  bottom: 10%;
  border-radius: var(--radius-sm);
  transform: rotate(-5deg);
}

.drawer-panels {
  min-width: 0;
}

.drawer-tab:nth-child(2) .drawer-icon {
  background: var(--color-mint);
}

.drawer-tab:nth-child(3) .drawer-icon {
  background: var(--color-mist);
}

.drawer-tab:nth-child(4) .drawer-icon {
  background: var(--color-lilac);
}

.drawer-tab:nth-child(5) .drawer-icon {
  background: var(--color-honey-soft);
}

.drawer-tab:nth-child(6) .drawer-icon {
  background: var(--color-apricot);
}

.drawer-detail p {
  color: var(--color-muted);
}

.drawer-detail p:last-of-type {
  margin-bottom: 0;
}

.drawer-snippet ul {
  display: grid;
  gap: 7px;
  margin-bottom: 0;
}

.platform-snippet {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.platform-snippet span,
.refund-snippet span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-panel);
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}

.refund-snippet {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.feature-method,
.pricing-notes,
.blog-context {
  max-width: 900px;
  margin: 44px auto 0;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-panel);
  box-shadow: var(--shadow-card);
}

.feature-method h3,
.pricing-notes h3,
.blog-context h3 {
  font-size: 24px;
}

.feature-method p,
.pricing-notes p,
.blog-context p {
  color: var(--color-muted);
}

.feature-method p:last-child,
.pricing-notes p:last-child,
.blog-context p:last-child {
  margin-bottom: 0;
}

.section-head-left {
  max-width: 800px;
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.route-guide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.route-guide article {
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-panel);
  box-shadow: var(--shadow-card);
}

.route-guide h3 {
  font-size: 21px;
}

.route-guide p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.server-status:empty {
  display: none;
}

.server-status:not(:empty) {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 100%;
  margin-bottom: 32px;
  overflow: hidden;
}

.srv-row {
  display: grid;
  min-width: 0;
  grid-template-columns: auto auto minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 10px 13px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-panel);
  box-shadow: var(--shadow-card);
}

.srv-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: var(--radius-pill);
  background: var(--color-success);
  box-shadow: 0 0 0 3px var(--color-mint);
  animation: status-breathe 2.8s ease-in-out infinite alternate;
}

.srv-flag {
  width: 22px;
  height: 16px;
  overflow: hidden;
  border-radius: var(--radius-xs);
}

.srv-name {
  min-width: 0;
  overflow: hidden;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.srv-type {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding-inline: 8px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 10px;
  white-space: nowrap;
}

.srv-ms,
.srv-bw {
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  white-space: nowrap;
}

@keyframes status-breathe {
  to {
    opacity: .55;
    transform: scale(.82);
  }
}

.section-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 20px 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-panel);
}

.section-link-row p {
  max-width: 760px;
  margin: 0;
  color: var(--color-muted);
}

.section-link-row .article-link {
  flex: 0 0 auto;
}

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

.traffic-pack-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr);
  align-items: center;
  gap: 36px;
  margin-top: 28px;
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-panel);
  box-shadow: var(--shadow-panel);
}

.traffic-pack-panel p:last-child {
  margin-bottom: 0;
  color: var(--color-muted);
}

.traffic-pack-panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.traffic-pack-panel li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  padding: 10px 13px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
}

.traffic-pack-panel li strong {
  color: var(--color-accent-dark);
  font-family: var(--font-mono);
}

.traffic-pack-panel li span {
  color: var(--color-muted);
  font-size: 12px;
  text-align: right;
}

.article-grid-home {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.article-grid-home .article-card h3 {
  font-size: 19px;
}

@media (max-width: 1260px) {
  .floaters {
    display: none;
  }

  .win {
    width: 86%;
  }

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

@media (max-width: 960px) {
  .h1 {
    font-size: 52px;
  }

  .win {
    width: 100%;
  }

  .traffic-pack-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .toolbox-browser {
    display: block;
  }

  .drawer-list {
    gap: 10px;
  }

  .drawer-tab {
    min-height: 74px;
  }

  .drawer-detail {
    min-height: 0;
    margin: 0 0 10px;
    padding: 22px;
  }

  .drawer-detail[hidden] {
    display: none;
  }

  .route-guide,
  .server-status:not(:empty) {
    grid-template-columns: 1fr;
  }

  .srv-row {
    grid-template-columns: auto auto minmax(0, 1fr) auto auto;
  }

  .srv-bw {
    display: none;
  }

  .article-grid-home {
    grid-template-columns: 1fr;
  }

  .section-link-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 28px;
  }

  .hero-copy {
    padding-inline: var(--gutter);
  }

  .hero-copy > .badge {
    font-size: 12px;
  }

  .h1 {
    font-size: 40px;
    line-height: 1.12;
  }

  .ctas {
    width: 100%;
    flex-direction: column;
  }

  .ctas .btn {
    width: 100%;
  }

  .lede {
    font-size: 15px;
  }

  .rows {
    align-items: stretch;
  }

  .chiprow {
    justify-content: flex-start;
  }

  .chiprow .lbl {
    width: 100%;
    margin: 0 0 2px;
    text-align: left;
  }

  .win-wrap {
    margin-top: 34px;
  }

  .chrome {
    gap: 8px;
  }

  .wtab:nth-child(n+3),
  .wtitle {
    display: none;
  }

  .wbody {
    grid-template-columns: 1fr;
    min-height: 320px;
  }

  .list {
    border-right: 0;
  }

  .graph {
    display: none;
  }

  .row {
    grid-template-columns: 18px minmax(0, 1fr) auto;
  }

  .row .tg {
    display: none;
  }

  .row .name span {
    display: none;
  }

  .feature-method,
  .pricing-notes,
  .blog-context {
    padding: 22px;
  }

  .traffic-pack-panel {
    padding: 22px;
  }

  .traffic-pack-panel li {
    align-items: flex-start;
    flex-direction: column;
  }

  .traffic-pack-panel li span {
    text-align: left;
  }

  .srv-row {
    grid-template-columns: auto auto minmax(0, 1fr) auto;
  }

  .srv-type {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fc,
  .srv-dot {
    animation: none;
  }

  .fc {
    transform: none;
  }
}