.home-hero {
  position: relative;
  min-height: calc(100dvh - var(--header-height));
  padding-top: clamp(38px, 6vh, 72px);
  padding-bottom: 34px;
  background:
    radial-gradient(circle at 14% 24%, var(--color-nebula-orange), var(--color-transparent) 29%),
    radial-gradient(circle at 84% 18%, var(--color-nebula-pink), var(--color-transparent) 27%),
    radial-gradient(circle at 50% 72%, var(--color-nebula), var(--color-transparent) 38%);
}

.hero-center {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-stars span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 1px;
  background: var(--color-star);
}

.hero-stars span:nth-child(1) {
  top: 12%;
  left: 8%;
}

.hero-stars span:nth-child(2) {
  top: 23%;
  left: 28%;
  background: var(--color-star-soft);
}

.hero-stars span:nth-child(3) {
  top: 17%;
  right: 18%;
}

.hero-stars span:nth-child(4) {
  top: 48%;
  right: 7%;
  background: var(--color-star-soft);
}

.hero-stars span:nth-child(5) {
  bottom: 22%;
  left: 13%;
}

.hero-stars span:nth-child(6) {
  right: 30%;
  bottom: 11%;
  background: var(--color-star-soft);
}

.hero-stars span:nth-child(7) {
  top: 64%;
  left: 37%;
}

.hero-stars span:nth-child(8) {
  top: 8%;
  left: 58%;
  background: var(--color-star-soft);
}

.hero-stars span:nth-child(9) {
  right: 42%;
  bottom: 31%;
}

.hero-stars span:nth-child(10) {
  top: 37%;
  left: 4%;
  background: var(--color-star-soft);
}

.hero-kicker {
  margin-bottom: 18px;
}

.hero-kicker .badge-dot {
  flex-shrink: 0;
}

.home-hero h1 {
  max-width: 900px;
  margin-bottom: 22px;
}

.hero-actions {
  justify-content: center;
  margin-bottom: 22px;
}

.hero-lead {
  max-width: 740px;
  margin-bottom: 17px;
  color: var(--color-text-muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.hero-lead strong {
  color: var(--color-text);
}

.hero-trust {
  display: flex;
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 17px;
  margin-bottom: 18px;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  font-weight: 700;
}

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

.trust-square {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 2px;
}

.trust-lime {
  background: var(--color-lime);
}

.trust-pink {
  background: var(--color-pink);
}

.trust-coral {
  background: var(--color-coral);
}

.trust-orange {
  background: var(--color-accent);
}

.hero-platform-block,
.hero-route-block {
  display: flex;
  width: 100%;
  max-width: 940px;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.hero-platform-block {
  margin-bottom: 9px;
}

.hero-row-label {
  flex: 0 0 auto;
  margin: 0;
  color: var(--color-text-soft);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero-platforms,
.hero-flags {
  justify-content: center;
}

.mini-platform,
.mini-flag {
  min-height: 32px;
  padding: 5px 10px;
}

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

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

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

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

.pixel-route-map {
  position: relative;
  width: min(100%, 390px);
  height: 125px;
  margin-top: 12px;
}

.pixel-field {
  display: grid;
  width: 276px;
  grid-template-columns: repeat(12, 18px);
  gap: 5px;
  margin-inline: auto;
}

.pixel-field > span {
  width: 18px;
  height: 18px;
  border: 1px solid var(--color-border-soft);
  border-radius: 5px;
  background: var(--color-panel-raised);
  box-shadow: 0 5px 12px var(--color-shadow-soft);
}

.pixel-field > .pixel-empty {
  border-color: var(--color-transparent);
  background: var(--color-transparent);
  box-shadow: none;
}

.pixel-field > .pixel-lit {
  border-color: var(--color-transparent);
  box-shadow: var(--shadow-soft);
  transform: scale(1.18);
}

.pixel-field > .pixel-orange {
  background: var(--color-accent);
}

.pixel-field > .pixel-coral {
  background: var(--color-coral);
}

.pixel-field > .pixel-lime {
  background: var(--color-lime);
}

.pixel-field > .pixel-pink {
  background: var(--color-pink);
}

.route-code {
  position: absolute;
  padding: 3px 6px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  background: var(--color-bg-deep);
  box-shadow: var(--shadow-soft);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 800;
}

.route-us {
  top: 13px;
  left: 47px;
}

.route-jp {
  top: 34px;
  right: 32px;
}

.route-hk {
  top: 58px;
  right: 80px;
}

.route-sg {
  right: 48px;
  bottom: 13px;
}

.route-kr {
  right: 6px;
  bottom: 46px;
}

.hero-facts {
  display: flex;
  width: min(100%, 910px);
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-band);
  box-shadow: var(--shadow-soft);
}

.hero-facts span {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  color: var(--color-text-muted);
  font-size: 0.76rem;
}

.hero-facts strong {
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 0.95rem;
}

.hero-facts span:nth-of-type(2) strong {
  color: var(--color-pink);
}

.hero-facts span:nth-of-type(3) strong {
  color: var(--color-lime);
}

.hero-facts span:nth-of-type(4) strong {
  color: var(--color-coral);
}

.hero-facts i {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 1px;
  background: var(--color-border);
}

.section-heading {
  max-width: 800px;
  margin-bottom: clamp(34px, 6vw, 60px);
}

.section-heading h2 {
  margin-top: 13px;
  margin-bottom: 16px;
}

.feature-section {
  background:
    radial-gradient(circle at 8% 16%, var(--color-nebula-pink), var(--color-transparent) 24%),
    radial-gradient(circle at 92% 74%, var(--color-nebula-orange), var(--color-transparent) 25%);
}

.feature-stack {
  display: grid;
  gap: 24px;
}

.feature-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  min-height: 330px;
  overflow: clip;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.feature-strip:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.feature-panel-a {
  background: var(--color-panel);
}

.feature-panel-b {
  background: var(--color-panel-raised);
}

.feature-reverse {
  grid-template-columns: minmax(0, 1.22fr) minmax(260px, 0.78fr);
}

.feature-reverse .feature-visual {
  grid-column: 2;
  grid-row: 1;
}

.feature-reverse .feature-copy {
  grid-column: 1;
  grid-row: 1;
}

.feature-visual {
  position: relative;
  display: grid;
  min-height: 300px;
  place-items: center;
  padding: 42px;
  border-right: 1px solid var(--color-border-soft);
  background:
    linear-gradient(135deg, var(--color-panel-raised), var(--color-panel-alt));
}

.feature-reverse .feature-visual {
  border-right: 0;
  border-left: 1px solid var(--color-border-soft);
}

.feature-number {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius-md);
  color: var(--color-ink);
  background: var(--color-accent);
  box-shadow: var(--shadow-soft);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 900;
}

.feature-number-coral {
  background: var(--color-coral);
}

.feature-number-lime {
  background: var(--color-lime);
}

.feature-number-pink {
  background: var(--color-pink);
}

.feature-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(30px, 5vw, 66px);
}

.feature-code {
  margin-bottom: 10px;
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.feature-copy h3 {
  margin-bottom: 17px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.feature-copy p:last-child {
  margin: 0;
  color: var(--color-text-muted);
}

.pixel-chain {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pixel-chain i {
  width: 27px;
  height: 27px;
  border-radius: var(--radius-sm);
  background: var(--color-border);
  box-shadow: var(--shadow-soft);
}

.pixel-chain i:nth-child(2),
.pixel-chain i:nth-child(5) {
  transform: translateY(-18px);
}

.pixel-chain i:nth-child(3) {
  background: var(--color-accent);
}

.pixel-chain i:nth-child(4) {
  background: var(--color-lime);
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 36px);
  gap: 10px;
}

.privacy-grid i {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--color-border);
}

.privacy-grid i:nth-child(2),
.privacy-grid i:nth-child(4),
.privacy-grid i:nth-child(8) {
  background: var(--color-pink);
}

.privacy-grid i:nth-child(5) {
  border: 5px solid var(--color-lime);
  background: var(--color-bg-deep);
}

.device-pixels {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.device-pixels i {
  width: 54px;
  height: 76px;
  border: 6px solid var(--color-lime);
  border-radius: var(--radius-md);
  background: var(--color-bg-deep);
  box-shadow: var(--shadow-card);
}

.device-pixels .device-wide {
  width: 120px;
  height: 76px;
  border-color: var(--color-accent);
}

.device-pixels .device-tall {
  width: 42px;
  height: 92px;
  border-color: var(--color-pink);
}

.ai-blocks {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 58px);
  gap: 12px;
}

.ai-blocks i {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--color-border);
}

.ai-blocks i:nth-child(1) {
  background: var(--color-accent);
}

.ai-blocks i:nth-child(4) {
  background: var(--color-pink);
}

.ai-blocks b {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--color-text);
  font-family: var(--font-mono);
  font-size: 1.4rem;
}

.media-pixels {
  display: flex;
  align-items: center;
  gap: 9px;
}

.media-pixels i {
  width: 30px;
  height: 68px;
  border-radius: var(--radius-sm);
  background: var(--color-border);
}

.media-pixels i:nth-child(2) {
  height: 96px;
  background: var(--color-coral);
}

.media-pixels i:nth-child(3) {
  height: 120px;
  background: var(--color-accent);
}

.media-pixels i:nth-child(4) {
  height: 84px;
  background: var(--color-pink);
}

.refund-blocks {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 60px);
  gap: 12px;
}

.refund-blocks i {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--color-border);
}

.refund-blocks i:nth-child(1) {
  background: var(--color-lime);
}

.refund-blocks span {
  position: absolute;
  right: -34px;
  bottom: -24px;
  color: var(--color-coral);
  font-family: var(--font-mono);
  font-size: 4rem;
  font-weight: 900;
}

.difference-note {
  display: grid;
  grid-template-columns: minmax(230px, 0.6fr) minmax(0, 1.4fr);
  gap: 40px;
  align-items: start;
  margin-top: 28px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-bg-deep);
  box-shadow: var(--shadow-soft);
}

.difference-note h3 {
  margin-top: 12px;
  margin-bottom: 0;
}

.difference-note p {
  margin: 0;
  color: var(--color-text-muted);
}

.route-preview-section {
  background: var(--color-band);
}

.route-marker {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border-radius: 3px;
}

.marker-orange {
  background: var(--color-accent);
}

.marker-pink {
  background: var(--color-pink);
}

.marker-coral {
  background: var(--color-coral);
}

.marker-lime {
  background: var(--color-lime);
}

.route-advice {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  margin-top: 22px;
}

.route-advice-block {
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-panel);
}

.route-advice-block h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.route-advice-block p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.section-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--color-accent);
  font-weight: 850;
}

.section-link:hover {
  color: var(--color-warning);
}

.pricing-preview-section {
  background:
    radial-gradient(circle at 88% 12%, var(--color-nebula-pink), var(--color-transparent) 24%);
}

.plan-audience {
  min-height: 82px;
  color: var(--color-text-muted);
}

.traffic-pack-note {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  gap: 36px;
  align-items: center;
  margin-top: 28px;
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-panel-raised);
  box-shadow: var(--shadow-soft);
}

.traffic-pack-note h3 {
  margin-top: 14px;
  margin-bottom: 0;
}

.traffic-pack-note p {
  margin: 0;
  color: var(--color-text-muted);
}

.pricing-rules {
  margin-top: 20px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg-deep);
}

.pricing-rules h3 {
  margin-bottom: 18px;
}

.pricing-rules ol {
  display: grid;
  gap: 12px;
  margin: 0;
  color: var(--color-text-muted);
}

.pricing-rules strong {
  color: var(--color-text);
}

.blog-preview-section {
  background: var(--color-band);
}

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

.home-article-grid .article-card h3 {
  font-size: 1.13rem;
}

.blog-selection-note {
  margin-top: 20px;
  padding: clamp(24px, 4vw, 38px);
  border-left: 5px solid var(--color-lime);
  border-radius: var(--radius-lg);
  background: var(--color-panel);
  box-shadow: var(--shadow-soft);
}

.blog-selection-note h3 {
  margin-bottom: 11px;
}

.blog-selection-note p {
  margin: 0;
  color: var(--color-text-muted);
}

.home-cta-section {
  padding-top: 70px;
  padding-bottom: 20px;
}

.home-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: clamp(30px, 6vw, 64px);
  overflow: clip;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(130deg, var(--color-accent-dark), var(--color-coral));
  box-shadow: var(--shadow-card);
}

.home-cta-band .eyebrow {
  color: var(--color-text);
}

.home-cta-band .eyebrow::before {
  background: var(--color-lime);
}

.home-cta-band h2 {
  margin: 12px 0 10px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.home-cta-band p {
  max-width: 700px;
  margin: 0;
  color: var(--color-text);
}

@media (max-width: 1100px) {
  .home-article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-strip,
  .feature-reverse {
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  }
}

@media (max-width: 900px) {
  .home-hero {
    min-height: 0;
  }

  .hero-platform-block,
  .hero-route-block {
    flex-direction: column;
    gap: 7px;
  }

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

  .feature-reverse .feature-visual,
  .feature-reverse .feature-copy,
  .feature-visual,
  .feature-copy {
    grid-column: 1;
  }

  .feature-visual,
  .feature-reverse .feature-visual {
    grid-row: 1;
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--color-border-soft);
    border-left: 0;
  }

  .feature-copy,
  .feature-reverse .feature-copy {
    grid-row: 2;
  }

  .difference-note,
  .traffic-pack-note {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .route-advice {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .home-hero {
    padding-top: 34px;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: left;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: var(--radius-lg);
  }

  .hero-facts span {
    justify-content: center;
  }

  .hero-facts i {
    display: none;
  }

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

  .home-cta-band .btn {
    justify-self: start;
  }

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

  .plan-audience {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .home-hero {
    padding-bottom: 24px;
  }

  .hero-platforms,
  .hero-flags {
    width: 100%;
  }

  .mini-platform,
  .mini-flag {
    flex: 1 1 92px;
    justify-content: center;
  }

  .pixel-route-map {
    transform: scale(0.9);
    transform-origin: center top;
    margin-bottom: -10px;
  }

  .feature-visual,
  .feature-reverse .feature-visual {
    min-height: 200px;
    padding: 34px 20px;
  }

  .feature-copy {
    padding: 26px 22px 30px;
  }

  .pixel-chain {
    gap: 7px;
  }

  .pixel-chain i {
    width: 22px;
    height: 22px;
  }

  .device-pixels i {
    width: 43px;
    height: 66px;
  }

  .device-pixels .device-wide {
    width: 92px;
    height: 66px;
  }

  .device-pixels .device-tall {
    width: 36px;
    height: 80px;
  }

  .difference-note,
  .traffic-pack-note,
  .home-cta-band {
    padding: 25px 21px;
  }
}

@media (max-width: 380px) {
  .hero-trust {
    grid-template-columns: 1fr;
  }

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

  .pixel-route-map {
    width: 320px;
    max-width: 100%;
    transform: scale(0.82);
    margin-bottom: -20px;
  }

  .route-us {
    left: 20px;
  }

  .route-jp {
    right: 14px;
  }

  .route-hk {
    right: 62px;
  }

  .route-sg {
    right: 28px;
  }

  .route-kr {
    right: 0;
  }
}