:root {
  --bg: #f7f8f9;
  --ink: #1d2736;
  --muted: #667085;
  --panel: #ffffff;
  --line: #e5e8ed;
  --blue: #3267d6;
  --blue-dark: #2453b8;
  --soft-blue: #f3f6fc;
  --green-soft: #edf7f4;
  --green: #327b70;
  --shadow: 0 8px 24px rgba(23, 35, 56, .055);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.8;
}

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

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: relative;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid #f0f1f3;
}

.nav {
  width: min(1120px, calc(100% - 32px));
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  font-size: 25px;
  font-weight: 760;
  white-space: nowrap;
}

.brand-mark {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-left: auto;
  font-size: 15px;
  font-weight: 650;
}

.nav-links a {
  padding: 36px 0 34px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.nav-toggle,
.menu-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 720;
  white-space: nowrap;
}

.btn-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 8px 20px rgba(50, 103, 214, .18);
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-light,
.btn-ghost {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.btn-light:hover,
.btn-ghost:hover {
  border-color: #cbd2dd;
}

.text-link,
.source-note a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.source-note {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.35;
}

h1 {
  margin: 0;
  font-size: 42px;
}

h2 {
  margin: 0;
  font-size: 34px;
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 750;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9a329;
}

.hero {
  width: min(1200px, calc(100% - 32px));
  min-height: 0;
  margin: 20px auto 0;
  padding: 88px 40px;
  color: var(--ink);
  background: #fff;
}

.hero .container {
  width: 100%;
}

.hero-content {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  overflow: hidden;
  padding: 46px 56px 42px;
  text-align: center;
  border: 1px solid #e2e8f4;
  border-radius: 8px;
  background: var(--soft-blue);
  box-shadow: var(--shadow);
}

.hero-content::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: url("cn-airport-directory-hero.jpg") center / cover no-repeat;
  opacity: .035;
}

.hero h1 {
  max-width: 920px;
  margin: 0 auto;
  color: #1f315b;
}

.hero-desc {
  width: min(860px, 100%);
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}

.hero-metrics {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 22px;
  color: #8a93a3;
  font-size: 13px;
}

.metric {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.metric strong,
.metric span {
  display: inline;
  color: inherit;
  font-size: inherit;
  font-weight: 600;
}

.metric span {
  margin-left: 4px;
}

main > section:not(.hero):not(.page-hero) {
  padding: 58px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .7fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 28px;
}

.section-copy {
  margin: 0;
  color: var(--muted);
}

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

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

.card,
.plan,
.faq-item,
.article-card,
.step {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}

.card,
.article-card,
.step {
  min-height: 190px;
  padding: 23px;
}

.article-card {
  display: flex;
  flex-direction: column;
}

.article-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.card p,
.plan p,
.step p,
.faq-item p,
.article-card p,
.content p,
.content li {
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.tag {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--green);
  background: var(--green-soft);
  font-size: 12px;
  font-weight: 750;
}

.plan {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 24px;
}

.plan.featured {
  border-color: #ccd8ed;
  box-shadow: var(--shadow);
}

.plan-name {
  color: var(--blue);
  font-size: 13px;
  font-weight: 750;
}

.price {
  margin: 12px 0 6px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 780;
}

.plan ul {
  margin: 18px 0 22px;
  padding-left: 18px;
}

.plan .btn {
  margin-top: auto;
}

.band {
  background: #f2f5f8;
}

.step-num {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 6px;
  color: var(--blue);
  background: #edf3ff;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 20px 22px;
}

.cta-band {
  color: var(--ink);
  background: #eef2f8;
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.cta-box p {
  margin: 8px 0 0;
  color: var(--muted);
}

main:has(> .page-hero) {
  width: min(1200px, calc(100% - 32px));
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(280px, 1fr);
  gap: 20px;
  align-items: start;
}

.page-hero {
  grid-column: 1;
  grid-row: 1;
  padding: 31px 34px 28px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.page-hero .container {
  width: 100%;
}

.page-hero h1 {
  font-size: 34px;
  line-height: 1.45;
}

.page-hero .eyebrow {
  display: none;
}

.page-hero .hero-desc {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.post-meta {
  margin: 12px 0 0;
  color: #99a1ae;
  font-size: 13px;
}

main:has(> .page-hero) > section:nth-child(2),
main:has(> .page-hero) > section:nth-child(2) > .content-wrap {
  display: contents;
}

main:has(> .page-hero) > section:nth-child(2) > .container:not(.content-wrap) {
  width: 100%;
  grid-column: 1 / -1;
}

main:has(.appleid-article) {
  grid-template-columns: minmax(0, 1fr);
}

main:has(.appleid-article) .page-hero,
main:has(.appleid-article) .content {
  grid-column: 1;
}

main:has(.appleid-article) .toc {
  display: none;
}

.content {
  grid-column: 1;
  grid-row: 2;
  padding: 32px 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.content > p:first-of-type,
.content > ul:first-of-type {
  padding: 20px;
  border: 1px solid #e0e5ed;
  border-radius: 8px;
  background: #f7f9fc;
}

.content h2 {
  margin: 36px 0 10px;
  font-size: 27px;
}

.content h2:first-child {
  margin-top: 0;
}

.beginner-panel {
  margin-bottom: 30px;
  padding: 24px;
  border: 1px solid #dfe6f1;
  border-radius: 8px;
  background: #f8fbff;
}

.beginner-panel h2 {
  margin-top: 0;
}

.step-list {
  margin: 16px 0 0;
  padding-left: 22px;
}

.step-list li {
  margin: 10px 0;
  padding-left: 4px;
}

.step-list strong,
.mini-check strong {
  color: var(--ink);
}

.notice-card {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 4px solid var(--blue);
  border-radius: 6px;
  color: #465467;
  background: #fff;
}

.mini-check {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.mini-check span {
  display: block;
  padding: 12px 14px;
  border: 1px solid #e4e9f2;
  border-radius: 6px;
  color: var(--muted);
  background: #fff;
}

.apple-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 22px;
}

.apple-status-card {
  overflow: hidden;
  border: 1px solid #dde5f1;
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: #fff;
}

.apple-status-card.is-good {
  border-left-color: #2e8b67;
}

.apple-status-card.is-warn {
  border-left-color: #d39a27;
}

.apple-status-card.is-safe {
  border-left-color: #6b7280;
}

.apple-status-head {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 15px;
  border-bottom: 1px solid #edf0f5;
  background: #f8fbff;
}

.account-mask {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 15px;
  font-weight: 780;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status-pill {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 25px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  color: #246451;
  background: #e9f7f0;
  font-size: 12px;
  font-weight: 780;
}

.apple-status-card.is-warn .status-pill {
  color: #8a5e12;
  background: #fff6df;
}

.apple-status-card.is-safe .status-pill {
  color: #475467;
  background: #f1f3f6;
}

.apple-status-body {
  padding: 16px;
}

.apple-status-body h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.apple-status-body p {
  margin: 0 0 13px;
  color: var(--muted);
  font-size: 15px;
}

.copy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.copy-actions a,
.copy-actions span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid #d7dde8;
  border-radius: 6px;
  color: #344054;
  background: #fff;
  font-size: 13px;
  font-weight: 720;
}

.copy-actions .muted-action {
  color: #98a2b3;
  background: #f7f8fa;
}

.apple-mini-board {
  margin-bottom: 22px;
}

.appleid-article h2 {
  color: #0f172a;
}

.appleid-article > * {
  width: min(1040px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.hx-warning-hero {
  margin-bottom: 22px;
  padding: 22px 24px;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  background: #fff7ed;
}

.hx-warning-hero h2 {
  margin: 0 0 12px;
  font-size: 30px;
}

.hx-warning-hero p {
  color: #374151;
}

.danger-line {
  padding: 14px 16px;
  border-left: 4px solid #dc2626;
  border-radius: 6px;
  background: #fff;
}

.danger-line strong {
  color: #dc2626;
}

.hx-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.hx-action-row a,
.hx-two-cta a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  color: #fff;
  background: #2563eb;
  font-size: 15px;
  font-weight: 780;
  text-decoration: none;
}

.hx-action-row a:nth-child(2) {
  background: #111827;
}

.hx-action-row a:nth-child(3),
.hx-cta-light a {
  color: #111827;
  background: #fff;
  border: 1px solid #d1d5db;
}

.hx-feature-grid,
.hx-two-cta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 24px;
}

.hx-feature-card {
  padding: 15px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
}

.hx-feature-card strong {
  display: block;
  margin-bottom: 4px;
  color: #111827;
}

.hx-feature-card.danger strong {
  color: #dc2626;
}

.hx-feature-card span {
  display: block;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.75;
}

.hx-share-frame {
  overflow: hidden;
  margin: 18px 0 24px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .06);
}

.hx-share-frame-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid #e5e7eb;
  background: #f8fafc;
}

.hx-share-frame-head strong {
  color: #111827;
  font-size: 14px;
}

.hx-share-frame-head span {
  color: #dc2626;
  font-size: 12px;
  font-weight: 800;
}

.hx-apple-list {
  display: grid;
  gap: 14px;
  padding: 16px;
  background: #fbfdff;
}

.hx-apple-card {
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
}

.hx-apple-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid #eef2f7;
  background: #fff;
}

.hx-apple-card-head strong,
.hx-apple-card-head em {
  display: block;
}

.hx-apple-card-head strong {
  color: #111827;
  font-size: 16px;
}

.hx-apple-card-head em {
  color: #64748b;
  font-size: 12px;
  font-style: normal;
}

.hx-apple-status {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.hx-apple-status.ok {
  color: #15803d;
  background: #dcfce7;
}

.hx-apple-status.wait {
  color: #92400e;
  background: #fef3c7;
}

.hx-apple-main {
  padding: 14px 16px;
}

.hx-apple-main p {
  margin-bottom: 9px;
  color: #4b5563;
  font-size: 15px;
}

.hx-apple-main code {
  padding: 2px 6px;
  border-radius: 5px;
  color: #1f2937;
  background: #f3f4f6;
}

.hx-region-badge {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 0 9px;
  border-radius: 6px;
  color: #fff;
  background: #2563eb;
  font-size: 12px;
  font-weight: 800;
}

.hx-copy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 16px;
}

.hx-copy-row a,
.hx-copy-btn {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #2563eb;
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
}

.hx-copy-btn {
  color: #344054;
  background: #fff;
  border: 1px solid #d0d5dd;
}

.hx-copy-btn:hover {
  border-color: #98a2b3;
}

.hx-copy-btn[disabled],
.hx-copy-locked {
  color: #98a2b3;
  background: #f7f8fa;
  border-color: #eaecf0;
  cursor: not-allowed;
}

.hx-copy-row a:nth-of-type(2) {
  color: #111827;
  background: #fff;
  border: 1px solid #d1d5db;
}

.hx-two-cta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 28px;
}

.hx-cta-dark,
.hx-cta-light {
  padding: 20px;
  border-radius: 8px;
}

.hx-cta-dark {
  color: #fff;
  background: #0f172a;
}

.hx-cta-light {
  border: 1px solid #e5e7eb;
  background: #fff;
}

.hx-cta-dark h2,
.hx-cta-light h2 {
  margin: 0 0 8px;
  font-size: 21px;
}

.hx-cta-dark h2,
.hx-cta-dark p {
  color: #fff;
}

.hx-cta-dark p,
.hx-cta-light p {
  font-size: 15px;
}

.hx-cta-dark p {
  color: #d1d5db;
}

.compare-table {
  overflow-x: auto;
  margin: 14px 0 22px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
}

.compare-table table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 15px;
}

.compare-table th,
.compare-table td {
  padding: 12px;
  border-bottom: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  color: #111827;
  background: #f8fafc;
}

.compare-table td {
  color: #4b5563;
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.compare-table th:last-child,
.compare-table td:last-child {
  border-right: 0;
}

.hx-warning-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 22px;
}

.hx-warning-list div {
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
}

.hx-warning-list strong {
  color: #111827;
}

.hx-warning-list div:first-child strong {
  color: #dc2626;
}

.hx-warning-list p {
  margin: 5px 0 0;
}

.related-list {
  margin: 14px 0 24px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
}

.related-list a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid #f1f5f9;
  color: inherit;
  text-decoration: none;
}

.related-list a:last-child {
  border-bottom: 0;
}

.related-list strong {
  display: block;
  color: #111827;
  font-size: 16px;
}

.related-list span {
  display: block;
  max-width: 330px;
  color: #6b7280;
  font-size: 14px;
}

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

.content li {
  margin: 7px 0;
}

.toc {
  position: sticky;
  top: 20px;
  grid-column: 2;
  grid-row: 1 / span 2;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.toc h3 {
  margin: 0;
  padding: 8px 0 12px;
  font-size: 17px;
}

.toc a {
  display: block;
  padding: 10px 0;
  color: #475467;
  border-bottom: 1px solid #edf0f3;
  font-size: 15px;
}

.toc a:last-child {
  border-bottom: 0;
}

.sidebar-group {
  margin-top: 20px;
  padding-top: 12px;
  border-top: 6px solid var(--bg);
}

footer {
  margin-top: 32px;
  padding: 34px 0;
  color: #737d8d;
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 900px) {
  body {
    font-size: 16px;
  }

  .nav {
    height: 92px;
  }

  .brand {
    font-size: 24px;
  }

  .menu-toggle {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    border: 0;
    background: #fafafa;
    font-size: 0;
    cursor: pointer;
  }

  .menu-toggle::before {
    content: "☰";
    color: var(--ink);
    font-size: 23px;
    line-height: 1;
  }

  .nav > .btn-light {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 92px;
    right: 16px;
    left: 16px;
    display: none;
    margin: 0;
    padding: 10px 20px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links a {
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

  .hero {
    padding: 28px 20px;
  }

  .hero-content {
    padding: 38px 24px;
  }

  .hero h1 {
    font-size: 35px;
  }

  .hero-desc {
    font-size: 17px;
  }

  .hero-metrics {
    display: none;
  }

  .section-head,
  .grid-3,
  .grid-4,
  .apple-status-grid,
  .hx-feature-grid,
  .hx-two-cta,
  .plans,
  .steps,
  .article-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  main:has(> .page-hero) {
    display: block;
    width: min(760px, calc(100% - 24px));
    margin-top: 18px;
  }

  main:has(> .page-hero) > section:nth-child(2),
  main:has(> .page-hero) > section:nth-child(2) > .content-wrap {
    display: block;
  }

  .page-hero,
  .content,
  .toc {
    margin-bottom: 16px;
  }

  .toc {
    position: static;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 32px, 1120px);
  }

  h2 {
    font-size: 29px;
  }

  .hero {
    width: 100%;
    margin-top: 16px;
    padding: 16px;
  }

  .hero-content {
    padding: 32px 18px;
  }

  .hero h1 {
    font-size: 31px;
  }

  .hero-actions {
    display: grid;
  }

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

  main > section:not(.hero):not(.page-hero) {
    padding: 45px 0;
  }

  .section-head {
    gap: 14px;
  }

  .card,
  .article-card,
  .step {
    min-height: auto;
  }

  .page-hero {
    padding: 24px 18px;
  }

  .page-hero h1 {
    font-size: 27px;
  }

  .content {
    padding: 25px 18px;
  }

  .content h2 {
    font-size: 24px;
  }

  .beginner-panel {
    padding: 18px;
  }

  .hx-warning-hero {
    padding: 20px 18px;
  }

  .hx-warning-hero h2 {
    font-size: 26px;
  }

  .hx-action-row a,
  .hx-two-cta a,
  .hx-copy-row a {
    width: 100%;
    max-width: none;
  }

  .hx-share-frame-head,
  .hx-apple-card-head,
  .related-list a {
    display: grid;
  }

  .hx-apple-list {
    padding: 12px;
  }

  .compare-table {
    margin-right: -2px;
  }

.related-list span {
    max-width: none;
  }
}

.speed-page {
  background: #f6f8fb;
}

.speed-hero {
  padding: 84px 0 56px;
  background:
    radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.18), transparent 32%),
    linear-gradient(135deg, #07111f 0%, #122338 58%, #17324a 100%);
  color: #f8fbff;
}

.speed-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  gap: 36px;
  align-items: center;
}

.speed-hero-copy {
  max-width: 650px;
}

.speed-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.03;
}

.speed-hero .hero-desc {
  color: rgba(245, 249, 255, 0.86);
  max-width: 620px;
}

.speed-hero-visual {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(4, 16, 30, 0.34);
  background: #fff;
}

.speed-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.speed-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.speed-trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.speed-coupon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
}

.speed-coupon code,
.coupon-note code,
.faq-item code {
  color: #b91c1c;
  font-weight: 800;
}

.speed-stats-band {
  padding: 22px 0;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}

.speed-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.speed-stats-grid div,
.speed-scene-grid div,
.speed-feature-grid article {
  padding: 20px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
}

.speed-stats-grid strong {
  display: block;
  color: #0f172a;
  font-size: 24px;
}

.speed-stats-grid span,
.speed-scene-grid span,
.speed-feature-grid p {
  color: #64748b;
}

.speed-feature-grid,
.speed-scene-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.speed-feature-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: #fff;
  background: #0f766e;
  font-weight: 800;
}

.speed-feature-grid h3,
.speed-scene-grid strong {
  display: block;
  margin: 14px 0 8px;
  color: #0f172a;
}

.speed-plans .plan.featured {
  border-color: #0f766e;
  box-shadow: 0 24px 54px rgba(15, 118, 110, 0.18);
}

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

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

.global-plan-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 22px 20px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.global-plan-card.is-featured {
  border-color: #ef4444;
  box-shadow: 0 24px 60px rgba(239, 68, 68, 0.15);
}

.global-plan-head {
  min-height: 118px;
}

.global-plan-head h3 {
  margin: 0 64px 18px 0;
  color: #0f172a;
  font-size: 20px;
  line-height: 1.25;
}

.global-plan-head h3 em {
  display: block;
  margin-top: 5px;
  color: #334155;
  font-style: normal;
  font-size: 15px;
}

.global-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 7px;
  color: #64748b;
}

.global-price strong {
  color: #dc2626;
  font-size: 32px;
  line-height: 1;
}

.plan-ribbon {
  position: absolute;
  top: 12px;
  right: -42px;
  z-index: 1;
  width: 150px;
  transform: rotate(40deg);
  padding: 7px 0;
  background: #f59e0b;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.ribbon-pink .plan-ribbon {
  background: #db2777;
}

.buy-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 4px 0 22px;
  border: 1px solid #ef4444;
  border-radius: 5px;
  background: #fee2e2;
  color: #dc2626;
  font-weight: 800;
}

.buy-strip:hover {
  background: #fecaca;
}

.global-feature-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 901px) {
  .global-feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .global-feature-list li:nth-child(3),
  .global-feature-list li:nth-child(4) {
    grid-column: 1 / -1;
  }
}

.global-feature-list li {
  position: relative;
  padding-left: 25px;
}

.global-feature-list li::before {
  content: "✓";
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border: 1px solid #15803d;
  border-radius: 50%;
  color: #15803d;
  font-size: 12px;
  font-weight: 800;
}

.global-feature-list b {
  display: inline-block;
  margin-right: 6px;
  color: #0f172a;
}

.global-feature-list p {
  margin: 5px 0 0;
  color: #111827;
  font-size: 14px;
  line-height: 1.55;
}

.global-feature-list strong {
  color: #dc2626;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #ff4d4f;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  vertical-align: middle;
}

.coupon-note {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid #fecaca;
  border-radius: 8px;
  background: #fff1f2;
  color: #7f1d1d;
}

.speed-compare table {
  min-width: 840px;
}

@media (max-width: 900px) {
  .speed-hero {
    padding: 56px 0 44px;
    background: #0d1b2d;
  }

  .speed-hero-grid,
  .speed-stats-grid,
  .speed-feature-grid,
  .speed-scene-grid,
  .global-plan-grid,
  .annual-grid {
    grid-template-columns: 1fr;
  }

  .speed-hero h1 {
    font-size: 38px;
  }

  .global-plan-head {
    min-height: auto;
  }

  .global-feature-list {
    grid-template-columns: 1fr;
  }

  .global-feature-list li {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .speed-coupon {
    display: grid;
    width: 100%;
  }

  .global-plan-card {
    padding: 20px 16px;
  }

  .global-price {
    justify-content: flex-start;
  }

  .global-plan-head h3 {
    margin-right: 70px;
  }
}
