:root {
  --theme-primary: #e36940;
  --theme-primary-hover: #ff7c52;
  --theme-bg-dark: #0a0d14;
  --theme-bg-surface: #121722;
  --theme-bg-tablet: #1a2130;
  --theme-text-main: #f0f4fc;
  --theme-text-sub: #94a3b8;
  --theme-accent-teal: #00d8d6;
  --theme-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  --radius-main: 20px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background-color: var(--theme-bg-dark);
  color: var(--theme-text-main);
  line-height: 1.7;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* 导航栏复用 */
.omnibar-socket {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 16px 5vw;
  background: rgba(10, 13, 20, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.emblem-casing {
  display: flex;
  align-items: center;
  min-width: 0;
}

.emblem-casing img {
  height: 36px;
  width: auto;
  display: block;
}

.prose-raster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.glyph-trigger {
  color: var(--theme-text-sub);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.35s ease;
  white-space: nowrap;
}

.glyph-trigger:hover {
  color: var(--theme-text-main);
  background: rgba(255, 255, 255, 0.05);
}

.glyph-trigger.active {
  color: #ffffff;
  background: var(--theme-primary);
}

/* 主内容容器 */
main {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4vw;
}

/* Hero Section (Article) */
.zenith-sandbox {
  padding: 80px 0 60px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  min-height: 75vh;
}

.zenith-raster {
  flex: 1 1 500px;
  min-width: 0;
}

.pixel-zenith {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.pixel-zenith span {
  color: var(--theme-primary);
  background: linear-gradient(135deg, #e36940 0%, #00d8d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.caption-zenith {
  font-size: 18px;
  color: var(--theme-text-sub);
  margin-bottom: 32px;
  max-width: 600px;
}

.casing-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.index-marker {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--theme-bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 14px;
  color: var(--theme-text-main);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.index-marker:hover {
  transform: translateY(-2px);
  border-color: var(--theme-accent-teal);
}

.prompt-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--theme-primary);
  color: #ffffff;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 10px 25px rgba(227, 105, 64, 0.35);
  transition: all 0.35s ease;
}

.prompt-trigger:hover {
  background: var(--theme-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(227, 105, 64, 0.5);
}

.visual-matrix {
  flex: 1 1 450px;
  min-width: 0;
  background: linear-gradient(145deg, #182030, #0d121c);
  border-radius: var(--radius-main);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  box-shadow: var(--theme-shadow);
  position: relative;
}

.shield-socket {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(10, 13, 20, 0.6);
  border-radius: 16px;
  border: 1px dashed rgba(0, 216, 214, 0.3);
  text-align: center;
}

.stat-value {
  font-size: 42px;
  font-weight: 800;
  color: var(--theme-accent-teal);
  line-height: 1;
  margin: 12px 0 4px;
}

.stat-caption {
  font-size: 14px;
  color: var(--theme-text-sub);
}

/* Privacy Dashboard Section */
.matrix-socket {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pixel-matrix {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: #ffffff;
}

.caption-matrix {
  text-align: center;
  color: var(--theme-text-sub);
  max-width: 720px;
  margin: 0 auto 50px;
  font-size: 16px;
}

.docket-casing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.tablet-socket {
  background: var(--theme-bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-main);
  padding: 28px;
  transition: all 0.35s ease;
  min-width: 0;
}

.tablet-socket:hover {
  transform: translateY(-4px);
  border-color: rgba(227, 105, 64, 0.4);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.trace-socket {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.switch-socket {
  width: 50px;
  height: 26px;
  background: rgba(0, 216, 214, 0.2);
  border: 1px solid var(--theme-accent-teal);
  border-radius: 13px;
  position: relative;
  padding: 2px;
}

.switch-knob {
  width: 20px;
  height: 20px;
  background: var(--theme-accent-teal);
  border-radius: 50%;
  position: absolute;
  right: 3px;
  top: 2px;
  box-shadow: 0 0 10px var(--theme-accent-teal);
}

/* Protection Features Aside */
.canvass-sandbox {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.docket-tablet {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.packet-tablet {
  background: linear-gradient(160deg, #161c28, #10141f);
  border-radius: var(--radius-main);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.35s ease;
  min-width: 0;
}

.packet-tablet:hover {
  border-color: var(--theme-primary);
  transform: translateY(-5px);
}

.trace-casing {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(227, 105, 64, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pixel-packet {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.caption-packet {
  font-size: 15px;
  color: var(--theme-text-sub);
}

/* Security Commitment Div */
.bedrock-sandbox {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 40px;
}

.docket-matrix {
  background: linear-gradient(135deg, #1a2130 0%, #121722 100%);
  border-radius: var(--radius-main);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 44px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.ledger-cluster {
  flex: 1 1 400px;
  min-width: 0;
}

.anchor-glyph {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 300px;
  min-width: 0;
}

.index-glyph {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: var(--theme-text-main);
  background: rgba(10, 13, 20, 0.4);
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Footer Section */
.bedrock-socket {
  background: #07090e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 5vw 40px;
}

.crown-raster {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.brand-docket {
  flex: 1 1 300px;
  min-width: 0;
}

.brand-name {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.brand-caption {
  font-size: 14px;
  color: var(--theme-text-sub);
  max-width: 320px;
}

.links-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  min-width: 0;
}

.glyph-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.glyph-pixel {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.foot-glyph {
  color: var(--theme-text-sub);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.35s ease;
}

.foot-glyph:hover {
  color: var(--theme-primary);
}

.copyright-raster {
  max-width: 1280px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 13px;
  color: var(--theme-text-sub);
}

/* 响应式断点 */
@media (max-width: 768px) {
  .omnibar-socket {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  
  .zenith-sandbox {
    padding: 40px 0;
    min-height: auto;
  }
  
  .docket-matrix {
    padding: 24px;
  }
}

.omnibar-omnibar-socket {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--theme-text-main);
}
.omnibar-omnibar-socket,
.omnibar-omnibar-socket *,
.omnibar-omnibar-socket *::before,
.omnibar-omnibar-socket *::after {
    box-sizing: border-box;
}

.omnibar-omnibar-socket nav,
.omnibar-omnibar-socket div,
.omnibar-omnibar-socket section,
.omnibar-omnibar-socket article,
.omnibar-omnibar-socket aside,
.omnibar-omnibar-socket p,
.omnibar-omnibar-socket h1,
.omnibar-omnibar-socket h2,
.omnibar-omnibar-socket h3,
.omnibar-omnibar-socket h4,
.omnibar-omnibar-socket h5,
.omnibar-omnibar-socket h6,
.omnibar-omnibar-socket a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.omnibar-omnibar-socket p,
.omnibar-omnibar-socket h1,
.omnibar-omnibar-socket h2,
.omnibar-omnibar-socket h3,
.omnibar-omnibar-socket h4,
.omnibar-omnibar-socket h5,
.omnibar-omnibar-socket h6 {
    text-decoration: none;
}

.omnibar-omnibar-socket img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.omnibar-omnibar-socket {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.omnibar-omnibar-socket a.omnibar-glyph-trigger {
    --aisite-shell-nav-padding: 8px 16px;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: inline;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.omnibar-omnibar-socket a.omnibar-glyph-trigger,
.omnibar-omnibar-socket a.omnibar-glyph-trigger:hover,
.omnibar-omnibar-socket a.omnibar-glyph-trigger:focus,
.omnibar-omnibar-socket a.omnibar-glyph-trigger:active,
.omnibar-omnibar-socket a.omnibar-glyph-trigger.active,
.omnibar-omnibar-socket a.omnibar-glyph-trigger[aria-current="page"] {
    background: transparent;
    border: none;
    border-bottom: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    padding: var(--aisite-shell-nav-padding, 0);
    margin: var(--aisite-shell-nav-margin, 0);
    line-height: var(--aisite-shell-nav-line-height, normal);
    display: var(--aisite-shell-nav-display, inline);
    height: var(--aisite-shell-nav-height, auto);
    min-height: var(--aisite-shell-nav-min-height, auto);
}

.omnibar-omnibar-socket{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 13, 20, 0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 16px 5vw;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

.omnibar-omnibar-socket .omnibar-emblem-casing{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            min-width: 0;
        }

.omnibar-omnibar-socket .omnibar-emblem-casing img{
            height: 36px;
            width: auto;
            display: block;
        }

.omnibar-omnibar-socket .omnibar-prose-raster{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 24px;
            min-width: 0;
        }

.omnibar-omnibar-socket .omnibar-glyph-trigger{
            color: #94a3b8;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.35s ease;
            padding: 8px 16px;
            border-radius: 99px;
            min-width: 0;
        }

.omnibar-omnibar-socket .omnibar-glyph-trigger:hover, .omnibar-omnibar-socket .omnibar-glyph-trigger.active{
            color: #ffffff;
            background: rgba(227, 105, 64, 0.15);
            border: 1px solid rgba(227, 105, 64, 0.3);
        }

@media (max-width: 768px){.omnibar-omnibar-socket{
                padding: 12px 4vw;
            }

.omnibar-omnibar-socket .omnibar-prose-raster{
                gap: 8px;
            }

.omnibar-omnibar-socket .omnibar-glyph-trigger{
                padding: 6px 10px;
                font-size: 13px;
            }}

.omnibar-omnibar-socket {
    background: rgb(10, 13, 20);
    background-image: none;
}

.bedrock-bedrock-ledger {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--theme-text-main);
}
.bedrock-bedrock-ledger,
.bedrock-bedrock-ledger *,
.bedrock-bedrock-ledger *::before,
.bedrock-bedrock-ledger *::after {
    box-sizing: border-box;
}

.bedrock-bedrock-ledger nav,
.bedrock-bedrock-ledger div,
.bedrock-bedrock-ledger section,
.bedrock-bedrock-ledger article,
.bedrock-bedrock-ledger aside,
.bedrock-bedrock-ledger p,
.bedrock-bedrock-ledger h1,
.bedrock-bedrock-ledger h2,
.bedrock-bedrock-ledger h3,
.bedrock-bedrock-ledger h4,
.bedrock-bedrock-ledger h5,
.bedrock-bedrock-ledger h6,
.bedrock-bedrock-ledger a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.bedrock-bedrock-ledger p,
.bedrock-bedrock-ledger h1,
.bedrock-bedrock-ledger h2,
.bedrock-bedrock-ledger h3,
.bedrock-bedrock-ledger h4,
.bedrock-bedrock-ledger h5,
.bedrock-bedrock-ledger h6 {
    text-decoration: none;
}

.bedrock-bedrock-ledger img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.bedrock-bedrock-ledger {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.bedrock-bedrock-ledger a,
.bedrock-bedrock-ledger a:hover,
.bedrock-bedrock-ledger a:focus,
.bedrock-bedrock-ledger a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.bedrock-bedrock-ledger{
            background: #06080d;
            border-top: 1px solid #263147;
            padding: 60px 5vw 30px 5vw;
            color: #94a3b8;
            font-size: 14px;
        }

.bedrock-bedrock-ledger .bedrock-crown-raster{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }

.bedrock-bedrock-ledger .bedrock-bedrock-info{
            flex: 1 1 300px;
            min-width: 0;
        }

.bedrock-bedrock-ledger .bedrock-bedrock-brand{
            font-size: 20px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
        }

.bedrock-bedrock-ledger .bedrock-bedrock-links{
            flex: 2 1 500px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
            min-width: 0;
        }

.bedrock-bedrock-ledger .bedrock-bedrock-col{
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

.bedrock-bedrock-ledger .bedrock-bedrock-col h4{
            color: #ffffff;
            font-size: 15px;
            margin-bottom: 6px;
        }

.bedrock-bedrock-ledger .bedrock-anchor-glyph{
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.35s ease;
        }

.bedrock-bedrock-ledger .bedrock-anchor-glyph:hover{
            color: #e36940;
        }

.bedrock-bedrock-ledger .bedrock-bedrock-copyright{
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: #64748b;
        }