:root {
  --bg: #020713;
  --panel: rgba(9, 17, 36, 0.86);
  --panel-strong: rgba(12, 22, 45, 0.94);
  --line: rgba(120, 165, 255, 0.22);
  --line-hot: rgba(0, 255, 171, 0.55);
  --text: #f7fbff;
  --muted: #aeb9d4;
  --green: #00f39c;
  --green-2: #16ffd3;
  --blue: #3d8dff;
  --purple: #a267ff;
  --red: #ff4d6d;
  --yellow: #ffd348;
  --radius-lg: 14px;
  --radius-md: 10px;
  --page-max: 974px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

button,
input { font: inherit; }

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 70% 12%, rgba(2, 255, 210, 0.17), transparent 18%),
    radial-gradient(circle at 88% 26%, rgba(98, 58, 255, 0.19), transparent 22%),
    radial-gradient(circle at 16% 72%, rgba(101, 42, 255, 0.13), transparent 28%),
    linear-gradient(180deg, #020612 0%, #081022 48%, #040814 100%);
}

.site-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .42;
  background-image:
    linear-gradient(rgba(52, 130, 255, .11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 130, 255, .1) 1px, transparent 1px),
    radial-gradient(circle, rgba(28, 207, 255, .72) 0 1px, transparent 1.6px);
  background-size: 64px 64px, 64px 64px, 74px 74px;
  background-position: center top;
}

.landing-page {
  width: min(100%, 1024px);
  margin: 0 auto;
  padding: 12px 25px 18px;
}

.topbar {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 255px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--green-2);
  font-size: 33px;
  border: 2px solid rgba(0, 255, 202, .7);
  border-radius: 15px 15px 15px 4px;
  filter: drop-shadow(0 0 12px rgba(0, 255, 195, .75));
}

.brand strong {
  display: block;
  font-size: 18px;
  letter-spacing: .5px;
  font-weight: 900;
}

.brand em {
  display: block;
  margin-top: 2px;
  color: #b7bdd3;
  font-size: 12px;
  font-style: normal;
}

.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 34px;
  color: #e5e8f4;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a { transition: color .2s ease; }
.nav-links a:hover { color: var(--green); }

.top-action {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #001b13;
  background: linear-gradient(90deg, #11ffc3 0%, #00e778 100%);
  border-radius: 7px;
  box-shadow: 0 0 28px rgba(0, 245, 165, .28);
  font-weight: 950;
  cursor: pointer;
}

.btn-small { min-width: 87px; height: 34px; font-size: 12px; }
.btn-primary { min-width: 288px; height: 44px; padding: 0 24px; font-size: 16px; }
.btn.full { width: 100%; }

.section-panel {
  position: relative;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(8, 15, 32, .94), rgba(7, 13, 28, .94));
  box-shadow: inset 0 1px rgba(255,255,255,.04), 0 0 44px rgba(10, 35, 95, .16);
  overflow: hidden;
}

.hero {
  min-height: 322px;
  display: grid;
  grid-template-columns: 48% 52%;
  padding: 20px 0 8px 8px;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.hero-copy { padding-top: 14px; z-index: 2; }

.hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 5vw, 52px);
  line-height: .98;
  letter-spacing: -2px;
  font-weight: 1000;
  text-shadow: 0 3px 0 rgba(255,255,255,.08);
}

.hero h1 span { display: block; }
.hero h1 b { color: var(--green); font-weight: inherit; }

.hero-subtitle {
  margin: 18px 0 15px;
  color: #d596ff;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 950;
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 22px;
  margin: 0 0 21px;
  padding: 0;
  list-style: none;
  color: #edf7ff;
  font-size: 13px;
  font-weight: 800;
}

.proof-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 12px;
}

.hero-actions { display: flex; align-items: center; gap: 13px; }

.video-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #b7c0da;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.video-btn span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(147, 183, 255, .38);
  border-radius: 50%;
  color: #fff;
  background: rgba(13, 24, 48, .86);
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 13px;
  color: #d3d8e8;
  font-size: 12px;
  font-weight: 700;
}

.social-proof img { width: 134px; height: auto; border-radius: 999px; }

.hero-visual {
  position: relative;
  min-height: 310px;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 12px 30px 8px 4px;
  background:
    radial-gradient(circle at 55% 40%, rgba(15, 255, 215, .22), transparent 20%),
    radial-gradient(circle at 66% 38%, rgba(120, 54, 255, .23), transparent 18%);
  filter: blur(6px);
}

.brain-art {
  position: absolute;
  width: 430px;
  right: 30px;
  top: 26px;
  filter: saturate(1.1) drop-shadow(0 0 26px rgba(25, 224, 255, .45));
}

.orbit-card,
.income-card,
.system-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(0, 255, 202, .45);
  border-radius: 8px;
  background: rgba(7, 20, 38, .78);
  box-shadow: inset 0 1px rgba(255,255,255,.08), 0 0 30px rgba(0, 190, 255, .12);
  backdrop-filter: blur(10px);
}

.orbit-card { padding: 12px 14px; color: #fff; font-size: 12px; font-weight: 800; }
.orbit-card strong { display: block; margin-top: 6px; color: var(--green); font-size: 11px; }
.card-auto { left: 10px; top: 36px; transform: rotate(5deg); }
.card-video { left: 12px; bottom: 50px; transform: rotate(-5deg); }

.income-card { right: 0; top: 18px; width: 142px; padding: 12px 14px; }
.income-card span { display: block; color: #dbe8ff; font-size: 12px; font-weight: 900; }
.income-card strong { display: block; margin: 6px 0; font-size: 24px; line-height: 1; }
.income-card em { color: var(--green); font-size: 13px; font-style: normal; font-weight: 950; }
.income-card i { display: block; height: 22px; margin-top: 6px; border-bottom: 2px solid var(--green); border-radius: 50%; transform: skewX(-20deg); }

.system-card { right: 0; bottom: 48px; width: 148px; padding: 13px 14px; }
.system-card strong { display: block; margin-bottom: 7px; font-size: 14px; }
.system-card span { display: block; margin-top: 4px; color: #cad6ea; font-size: 11px; }
.system-card span::after { content: " 90%"; color: var(--green); font-weight: 900; }

.section-title {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 10px;
}

.section-title .num {
  font-size: 33px;
  line-height: 1;
  font-weight: 1000;
}

.num.green { color: var(--green); }
.num.red { color: var(--red); }
.num.blue-num { color: #4d8cff; }

.section-title h2 {
  margin: 0;
  font-size: 23px;
  line-height: 1.1;
  font-weight: 950;
}

.section-title em {
  padding: 5px 14px;
  border-radius: 999px;
  color: #f0e7ff;
  background: linear-gradient(90deg, rgba(115, 70, 255, .8), rgba(150, 45, 255, .55));
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.capability { padding: 16px 14px 13px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.feature-card {
  min-height: 170px;
  padding: 18px 12px 11px;
  text-align: center;
  border: 1px solid rgba(116, 161, 255, .23);
  border-radius: 10px;
  background: linear-gradient(160deg, rgba(11, 26, 48, .94), rgba(15, 20, 44, .92));
}

.feature-card.emerald { box-shadow: inset 0 0 35px rgba(0, 255, 177, .12); }
.feature-card.purple { box-shadow: inset 0 0 35px rgba(147, 75, 255, .14); }
.feature-card.blue { box-shadow: inset 0 0 35px rgba(36, 142, 255, .14); }
.feature-card.orange { box-shadow: inset 0 0 35px rgba(255, 146, 26, .12); }
.feature-card.pink { box-shadow: inset 0 0 35px rgba(255, 55, 130, .12); }

.feature-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 13px;
  border-radius: 12px;
  font-size: 38px;
  filter: drop-shadow(0 0 16px currentColor);
}

.feature-card h3 { margin: 0 0 8px; font-size: 18px; }
.feature-card p { margin: 0; color: #d9dfed; font-size: 13px; line-height: 1.45; }
.feature-card b { display: block; margin-top: 7px; color: var(--green); }
.section-note { margin: 10px 0 0; text-align: center; color: #c7ccd8; font-size: 12px; }

.comparison { padding: 13px 14px 7px; }
.vs-layout { display: grid; grid-template-columns: 1fr 42px 1fr; align-items: stretch; gap: 0; }
.dialog-card {
  position: relative;
  min-height: 214px;
  padding: 13px 18px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
}
.dialog-card.bad { background: radial-gradient(circle at 35% 18%, rgba(255,0,83,.22), transparent 28%), rgba(35, 12, 28, .8); border-color: rgba(255, 60, 104, .45); }
.dialog-card.good { background: radial-gradient(circle at 70% 18%, rgba(0,255,148,.22), transparent 34%), rgba(9, 33, 28, .76); border-color: rgba(0, 255, 164, .45); }
.dialog-card h3 { margin: 0 0 11px; font-size: 17px; color: var(--red); }
.dialog-card.good h3 { color: var(--green); }
.bubble {
  position: relative;
  z-index: 2;
  width: 58%;
  margin: 9px 0;
  padding: 13px 16px;
  border-radius: 12px;
  color: #fff;
  background: rgba(31, 38, 65, .94);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}
.bubble.user { margin-left: 70px; background: rgba(45, 48, 82, .96); }
.green-bubble { margin-left: 84px; width: 62%; background: linear-gradient(90deg, #0caf70, #057647); }
.person { position: absolute; right: 8px; bottom: 0; height: 155px; width: auto; z-index: 1; object-fit: cover; object-position: left bottom; }
.expert-person { right: -5px; height: 197px; }
.result { position: absolute; left: 24px; bottom: 16px; z-index: 3; padding: 8px 15px; border-radius: 999px; font-size: 17px; }
.result.fail { color: var(--red); background: rgba(255, 52, 91, .18); }
.result.success { left: auto; right: 145px; color: var(--green); background: rgba(0, 255, 143, .18); }
.vs-mark {
  align-self: center;
  justify-self: center;
  color: #74fff1;
  font-size: 46px;
  font-weight: 950;
  font-style: italic;
  text-shadow: 0 0 14px #00fff0, 0 0 8px #985dff;
  z-index: 4;
}

.quiz { padding: 12px 14px; }
.quiz-grid { display: grid; grid-template-columns: 27% 34px 36% 1fr; gap: 13px; align-items: stretch; }
.choice-card,
.answer-card {
  min-height: 128px;
  border-radius: 9px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.16);
}
.choice-a { background: rgba(70, 18, 39, .86); border-color: rgba(255, 66, 106, .55); }
.choice-b { background: rgba(10, 80, 57, .82); border-color: rgba(0, 255, 166, .56); }
.choice-card span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  font-weight: 950;
  background: linear-gradient(135deg, #ff5979, #ff305f);
}
.choice-b span { background: linear-gradient(135deg, #4cffb0, #0abd72); }
.choice-card p { min-height: 60px; margin: 12px 0 8px; color: #fff; font-size: 14px; line-height: 1.45; }
.choice-b p { font-size: 12px; }
.choice-card button { width: 100%; height: 29px; border: 0; border-radius: 5px; color: #fff; background: rgba(255, 69, 101, .62); font-weight: 900; }
.choice-b button { background: rgba(0, 160, 91, .78); }
.vs-mark.compact { font-size: 33px; }
.answer-card { background: rgba(12, 24, 48, .86); border-color: rgba(80, 133, 255, .25); }
.answer-card h3 { margin: 0 0 6px; color: #ffe251; font-size: 18px; }
.answer-card h4 { margin: 0 0 5px; color: #ffe251; }
.answer-card ul { margin: 0 0 6px; padding: 0; list-style: none; color: #d9e6f5; font-size: 12px; line-height: 1.55; }
.answer-card li::before { content: "◎"; color: var(--green); margin-right: 6px; }
.answer-card strong { color: #ffd947; font-size: 18px; }

.cases { padding: 12px 14px 10px; }
.real-data { background: linear-gradient(90deg, #00a868, #01df93) !important; color: #001b13 !important; }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.case-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  min-height: 125px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(111, 158, 255, .23);
}
.case-card.violet { background: linear-gradient(135deg, rgba(44, 16, 75, .94), rgba(48, 25, 89, .88)); }
.case-card.blue-card { background: linear-gradient(135deg, rgba(17, 55, 100, .94), rgba(13, 36, 76, .9)); }
.case-card.navy { background: linear-gradient(135deg, rgba(15, 51, 104, .9), rgba(9, 27, 57, .92)); }
.case-card img { width: 92px; height: 92px; border-radius: 9px; object-fit: cover; }
.case-card span { display: block; color: #dce5f4; font-size: 11px; font-weight: 800; }
.case-card h3 { margin: 4px 0; font-size: 13px; line-height: 1.25; }
.case-card p { margin: 0; color: #dbe4f5; font-size: 12px; }
.case-card strong { display: block; margin-top: 2px; color: #ffe33d; font-size: 20px; line-height: 1; }
.case-card a { display: inline-flex; margin-top: 6px; padding: 5px 16px; border-radius: 4px; color: #fff; background: rgba(120, 86, 255, .5); font-size: 11px; font-weight: 900; }
.more-link { display: block; margin-top: 8px; text-align: center; color: var(--green); font-size: 13px; font-weight: 900; }

.bonus { padding: 12px 14px 13px; }
.free-tag { color: #1d1300 !important; background: linear-gradient(90deg, #ffd43b, #ff9f1a) !important; }
.bonus-grid { display: grid; grid-template-columns: 38% 24% 1fr; gap: 12px; align-items: stretch; }
.gift-area {
  position: relative;
  min-height: 185px;
  border-radius: 10px;
  background: radial-gradient(circle at 50% 38%, rgba(124, 65, 255, .38), transparent 38%), rgba(10, 16, 36, .58);
}
.gift-area img { position: absolute; left: 50%; top: 2px; width: 278px; max-width: 96%; transform: translateX(-50%); filter: drop-shadow(0 0 26px rgba(120, 73, 255, .58)); }
.tag {
  position: absolute;
  padding: 9px 13px;
  border: 1px solid rgba(157, 109, 255, .35);
  border-radius: 7px;
  color: #ded8ff;
  background: rgba(43, 24, 93, .74);
  font-size: 11px;
  font-weight: 800;
}
.tag-1 { left: 10px; top: 28px; }
.tag-2 { left: 18px; top: 82px; }
.tag-3 { right: 15px; top: 34px; }
.tag-4 { left: 66px; bottom: 16px; }
.tag-5 { right: 8px; bottom: 22px; background: rgba(28, 58, 124, .76); }
.benefits-card,
.claim-form {
  border: 1px solid rgba(113, 157, 255, .18);
  border-radius: 10px;
  background: rgba(13, 22, 43, .86);
  padding: 19px 20px;
}
.benefits-card h3,
.claim-form h3 { margin: 0 0 14px; font-size: 16px; }
.benefits-card h3 { color: #5fa1ff; }
.benefits-card ul { margin: 0; padding: 0; list-style: none; color: #dce7f5; font-size: 12px; line-height: 2.05; }
.benefits-card li::before { content: "✓"; display: inline-grid; place-items: center; width: 16px; height: 16px; margin-right: 8px; border: 1px solid #2d8cff; border-radius: 50%; color: #48a1ff; font-size: 10px; }
.claim-form h3 { text-align: center; }
.claim-form label { display: block; margin-bottom: 9px; }
.claim-form label span { position: absolute; width: 1px; height: 1px; overflow: hidden; }
.claim-form input { width: 100%; height: 34px; border: 1px solid rgba(142, 161, 206, .13); border-radius: 5px; color: #fff; background: rgba(28, 37, 61, .96); padding: 0 13px; outline: none; }
.claim-form input:focus { border-color: rgba(0, 255, 188, .6); box-shadow: 0 0 0 3px rgba(0, 255, 188, .08); }
.claim-form .btn { height: 39px; margin-top: 2px; }
.claim-form p { display: flex; justify-content: center; align-items: center; gap: 7px; margin: 9px 0 0; color: #cdd6e8; font-size: 11px; font-weight: 800; }
.claim-form p img { width: 78px; border-radius: 999px; }

.trust-footer {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  color: #e0e7f6;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 760px) {
  .landing-page { width: 100%; padding: 10px 12px 18px; }
  .topbar { height: auto; flex-wrap: wrap; gap: 12px; padding: 4px 0 10px; }
  .brand { min-width: auto; flex: 1; }
  .nav-links { order: 3; width: 100%; justify-content: flex-start; gap: 14px; overflow-x: auto; padding-bottom: 4px; font-size: 12px; }
  .top-action { gap: 8px; }
  .claim-mini { display: none; }

  .hero { grid-template-columns: 1fr; padding: 10px 0 2px; min-height: auto; }
  .hero h1 { font-size: 40px; letter-spacing: -1.3px; }
  .hero-subtitle { font-size: 18px; }
  .proof-list { gap: 10px 14px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary { width: 100%; min-width: 0; }
  .video-btn { justify-content: center; }
  .hero-visual { min-height: 300px; margin-top: 5px; }
  .brain-art { width: 94%; right: 3%; top: 22px; }
  .card-auto { left: 4px; top: 12px; }
  .card-video { left: 6px; bottom: 25px; }
  .income-card { right: 0; top: 4px; width: 128px; }
  .system-card { right: 0; bottom: 24px; width: 142px; }

  .section-title { flex-wrap: wrap; gap: 8px; }
  .section-title h2 { font-size: 21px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card { min-height: 150px; }
  .feature-card:last-child { grid-column: 1 / -1; }

  .vs-layout { grid-template-columns: 1fr; gap: 12px; }
  .vs-mark { font-size: 33px; }
  .dialog-card { min-height: 232px; }
  .bubble, .green-bubble { width: 68%; margin-left: 0; }
  .result.success { right: 118px; }

  .quiz-grid { grid-template-columns: 1fr; }
  .vs-mark.compact { display: block; }
  .choice-card p { min-height: auto; }

  .case-grid { grid-template-columns: 1fr; }
  .case-card { grid-template-columns: 96px 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .gift-area { min-height: 210px; }
  .trust-footer { flex-wrap: wrap; justify-content: center; padding: 12px 0; font-size: 12px; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 34px; }
  .brand strong { font-size: 15px; }
  .brand em { font-size: 10px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card:last-child { grid-column: auto; }
  .bubble, .green-bubble { width: 74%; font-size: 12px; }
  .person { height: 136px; }
  .expert-person { height: 170px; }
}

/* Section 02: use a single cropped comparison image to avoid panel/person misalignment. */
.comparison-image-wrap {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
}

.comparison-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.social-proof img {
  width: 138px;
  height: auto;
  border-radius: 0;
}

.claim-form p img {
  width: 90px;
  height: auto;
  border-radius: 0;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #bfe7ff;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.language-switch select {
  height: 30px;
  border: 1px solid rgba(0, 255, 202, .34);
  border-radius: 7px;
  color: #f5fbff;
  background: rgba(7, 18, 38, .92);
  padding: 0 8px;
  outline: none;
}

.system-card span::after { content: none; }

.comparison-board {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 46px 1fr;
  gap: 0;
  min-height: 220px;
  border-radius: 10px;
  overflow: hidden;
}

.compare-panel {
  position: relative;
  min-height: 220px;
  padding: 13px 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
}

.compare-bad { border-color: rgba(255, 61, 103, .5); border-radius: 10px 0 0 10px; background: radial-gradient(circle at 30% 14%, rgba(255, 0, 85, .25), transparent 28%), rgba(35, 12, 28, .82); }
.compare-good { border-color: rgba(0, 255, 164, .55); border-radius: 0 10px 10px 0; background: radial-gradient(circle at 66% 18%, rgba(0,255,148,.24), transparent 34%), rgba(9, 33, 28, .8); }
.compare-panel h3 { margin: 0 0 9px; display: flex; align-items: center; gap: 8px; font-size: 17px; color: var(--red); }
.compare-good h3 { color: var(--green); }
.compare-panel h3 span { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; color: #06111a; background: currentColor; }
.compare-panel h3 span::first-letter { color: #06111a; }
.compare-bubble { position: relative; z-index: 3; width: 60%; margin: 9px 0; padding: 12px 15px; border-radius: 12px; color: #fff; background: rgba(31,38,65,.94); font-size: 13px; line-height: 1.38; font-weight: 800; }
.bubble-human { margin-left: 62px; background: rgba(48, 51, 84, .96); }
.bubble-green { width: 64%; margin-left: 74px; background: linear-gradient(90deg, #0caf70, #057647); }
.compare-person { position: absolute; right: 8px; bottom: 0; width: 150px; height: 150px; z-index: 2; }
.compare-person .head { position: absolute; left: 50px; top: 14px; width: 64px; height: 68px; border-radius: 50%; background: linear-gradient(135deg, #ffd8b8, #a95d3f); }
.compare-person .hair { position: absolute; left: 44px; top: 8px; width: 78px; height: 42px; border-radius: 44px 44px 14px 18px; background: #211713; }
.compare-person .body { position: absolute; left: 18px; bottom: -26px; width: 122px; height: 112px; border-radius: 42px 42px 8px 8px; background: linear-gradient(180deg, #222a3d, #050913); }
.compare-person .arm { position: absolute; left: 23px; top: 104px; width: 108px; height: 16px; border-radius: 999px; background: #d6a084; transform: rotate(10deg); }
.compare-person .arm.left { transform: rotate(15deg); top: 108px; }
.compare-person .arm.right { transform: rotate(-14deg); top: 108px; }
.question { position: absolute; color: #ff386b; font-size: 43px; font-weight: 1000; text-shadow: 0 0 16px rgba(255, 56, 107, .8); }
.q1 { right: -8px; top: 6px; } .q2 { right: 12px; top: 48px; font-size: 30px; }
.compare-person-confident::after { content: '✓'; position: absolute; right: -5px; top: 0; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: #062517; background: #09f59e; font-weight: 1000; }
.compare-result { position: absolute; z-index: 4; left: 24px; bottom: 16px; padding: 8px 15px; border-radius: 999px; font-size: 17px; }
.result-bad { color: var(--red); background: rgba(255,52,91,.18); }
.result-good { left: auto; right: 128px; color: var(--green); background: rgba(0,255,143,.18); }
.compare-vs { align-self: center; justify-self: center; color: #74fff1; font-size: 42px; font-weight: 950; font-style: italic; text-shadow: 0 0 14px #00fff0, 0 0 8px #985dff; z-index: 5; }

@media (max-width: 760px) {
  .language-switch { order: 2; }
  .comparison-board { grid-template-columns: 1fr; gap: 12px; overflow: visible; }
  .compare-bad, .compare-good { border-radius: 10px; }
  .compare-vs { font-size: 32px; }
  .compare-bubble, .bubble-green { width: 68%; margin-left: 0; }
  .compare-result.result-good { right: 112px; }
}

/* Improved Section 02 people: use clear SVG character illustrations instead of CSS primitives. */
.comparison-board .compare-person {
  right: -6px;
  bottom: -2px;
  width: 178px;
  height: 158px;
  z-index: 2;
  pointer-events: none;
}

.comparison-board .compare-person img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 0 18px rgba(0, 255, 213, .16));
}

.comparison-board .compare-person-worried::before,
.comparison-board .compare-person-worried::after {
  content: '?';
  position: absolute;
  z-index: 3;
  color: #ff386b;
  font-weight: 1000;
  text-shadow: 0 0 14px rgba(255, 56, 107, .75);
}

.comparison-board .compare-person-worried::before {
  right: 8px;
  top: 2px;
  font-size: 40px;
}

.comparison-board .compare-person-worried::after {
  right: 36px;
  top: 42px;
  font-size: 26px;
}

.comparison-board .compare-person-confident::after {
  content: '✓';
  position: absolute;
  right: 8px;
  top: 2px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #062517;
  background: #09f59e;
  font-weight: 1000;
  box-shadow: 0 0 16px rgba(9, 245, 158, .55);
}

@media (max-width: 760px) {
  .comparison-board .compare-person {
    width: 166px;
    height: 150px;
    right: -12px;
  }
}

.comparison-board .compare-person {
  width: 192px;
  height: 166px;
  right: -10px;
  bottom: -4px;
}

@media (max-width: 760px) {
  .comparison-board .compare-person {
    width: 184px;
    height: 158px;
  }
}

.social-proof.no-avatar {
  padding-left: 2px;
}

/* Language is detected automatically from the browser; no language menu is shown. */
.language-switch {
  display: none !important;
}

body.modal-open {
  overflow: hidden;
}

.submit-modal[hidden] {
  display: none;
}

.submit-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.submit-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 6, 18, .72);
  backdrop-filter: blur(8px);
}

.submit-modal__dialog {
  position: relative;
  width: min(92vw, 380px);
  padding: 34px 28px 30px;
  text-align: center;
  border: 1px solid rgba(0, 255, 202, .48);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(13, 29, 58, .98), rgba(6, 12, 28, .98));
  box-shadow: 0 0 60px rgba(0, 255, 194, .2), inset 0 1px rgba(255,255,255,.08);
}

.submit-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  color: #cde7ff;
  background: rgba(255,255,255,.08);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.submit-modal__icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  color: #062517;
  background: linear-gradient(135deg, #2cffd3, #00e778);
  box-shadow: 0 0 28px rgba(0, 255, 194, .45);
  font-size: 34px;
  font-weight: 1000;
}

.submit-modal__dialog h2 {
  margin: 0;
  color: #f7fbff;
  font-size: 22px;
  line-height: 1.3;
}


/* Browser gate: only mobile Safari sees the landing page; other visitors see a local multilingual prompt page. */
.browser-gate {
  display: none;
}

html.traffic-blocked .landing-page,
html.traffic-blocked .submit-modal {
  display: none !important;
}

html.traffic-blocked .browser-gate {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

html.traffic-allowed .browser-gate {
  display: none !important;
}

.browser-gate__card {
  width: min(92vw, 520px);
  padding: 42px 30px 34px;
  text-align: center;
  border: 1px solid rgba(0, 255, 202, .42);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 255, 202, .18), transparent 34%),
    linear-gradient(180deg, rgba(13, 29, 58, .96), rgba(5, 10, 24, .98));
  box-shadow: 0 0 70px rgba(0, 255, 202, .16), inset 0 1px rgba(255,255,255,.08);
}

.browser-gate__icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 24px;
  color: #071427;
  background: linear-gradient(135deg, #2cffd3, #00e778);
  box-shadow: 0 0 34px rgba(0, 255, 194, .42);
  font-size: 42px;
  font-weight: 1000;
}

.browser-gate__eyebrow {
  margin: 0 0 10px;
  color: #2cffd3;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.browser-gate h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 7vw, 46px);
  line-height: 1.08;
  font-weight: 1000;
}

.browser-gate__text {
  margin: 16px auto 0;
  max-width: 420px;
  color: #c8d5ed;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 700;
}

.browser-gate__steps {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.browser-gate__steps span {
  display: block;
  padding: 12px 14px;
  border: 1px solid rgba(120, 165, 255, .2);
  border-radius: 12px;
  color: #eaf4ff;
  background: rgba(255,255,255,.045);
  font-size: 14px;
  font-weight: 800;
}

/* Screenshot-matched Safari gate page. */
html.traffic-blocked body {
  background: #111a4a;
}

html.traffic-blocked .site-bg {
  background:
    radial-gradient(circle at 50% 10%, rgba(42, 116, 255, .34), transparent 25%),
    linear-gradient(180deg, #111444 0%, #142662 44%, #122461 100%);
}

html.traffic-blocked .site-bg::before {
  display: none;
}

html.traffic-blocked .browser-gate {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 66px 24px 28px;
}

.browser-gate__wrap {
  width: min(100%, 1040px);
  text-align: center;
}

.browser-gate__app-icon {
  width: 240px;
  height: 240px;
  display: grid;
  place-items: center;
  margin: 0 auto 70px;
  border-radius: 58px;
  background: linear-gradient(135deg, #1c9dfd 0%, #5c51f1 100%);
  box-shadow: 0 34px 86px rgba(25, 104, 255, .32), inset 0 1px rgba(255,255,255,.12);
}

.browser-gate__compass {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  border: 14px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 52px;
  line-height: 1;
}

.browser-gate h1 {
  margin: 0 0 35px;
  color: #fff0a9;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.12;
  font-weight: 1000;
  letter-spacing: -1.5px;
}

.browser-gate__lead {
  max-width: 980px;
  margin: 0 auto 74px;
  color: rgba(232, 238, 255, .68);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.55;
  font-weight: 900;
}

.browser-gate__tutorial {
  width: 100%;
  min-height: 584px;
  margin: 0 auto 60px;
  padding: 68px 52px 56px;
  border: 3px solid rgba(175, 188, 232, .16);
  border-radius: 42px;
  background: rgba(255, 255, 255, .07);
  box-shadow: inset 0 1px rgba(255,255,255,.06);
}

.browser-gate__tutorial h2 {
  margin: 0 0 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  color: #fff08f;
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.2;
  font-weight: 1000;
}

.browser-gate__tutorial ol {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 38px;
  list-style: none;
  text-align: left;
}

.browser-gate__tutorial li {
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: center;
  gap: 42px;
}

.browser-gate__tutorial li span {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #07133c;
  background: #ffc400;
  box-shadow: 0 16px 26px rgba(0, 0, 0, .22);
  font-size: 35px;
  font-weight: 1000;
}

.browser-gate__tutorial li b {
  color: rgba(248, 250, 255, .88);
  font-size: clamp(27px, 3vw, 36px);
  line-height: 1.36;
  font-weight: 950;
}

.browser-gate__copy {
  width: 100%;
  min-height: 130px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 40px;
  border: 0;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(90deg, #199ffc 0%, #5a55f1 100%);
  box-shadow: 0 18px 48px rgba(32, 100, 255, .24);
  font-size: clamp(30px, 3.8vw, 42px);
  font-weight: 1000;
  cursor: pointer;
}

.browser-gate__copy.copied {
  background: linear-gradient(90deg, #10e7a7 0%, #21a9ff 100%);
}

.browser-gate__warning {
  margin: 0 0 18px;
  padding: 35px 38px 34px;
  text-align: left;
  border: 2px solid rgba(255, 160, 68, .46);
  border-radius: 24px;
  background: rgba(85, 48, 62, .5);
}

.browser-gate__warning h2 {
  margin: 0 0 23px;
  color: #ffe15c;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.2;
  font-weight: 1000;
}

.browser-gate__warning p {
  margin: 0;
  color: #ffbd70;
  font-size: clamp(23px, 2.7vw, 31px);
  line-height: 1.58;
  font-weight: 950;
}

.browser-gate__env {
  margin: 0 0 82px;
  padding: 35px 22px 33px;
  border-radius: 20px;
  color: rgba(222, 229, 255, .33);
  background: rgba(255,255,255,.055);
  font-size: clamp(24px, 2.8vw, 30px);
  line-height: 1.45;
  font-weight: 900;
}

.browser-gate__env p {
  margin: 0;
}

.browser-gate__env b {
  font-weight: 950;
}

.browser-gate__footer {
  margin: 0;
  color: rgba(211, 221, 255, .27);
  font-size: clamp(23px, 2.6vw, 28px);
  font-weight: 900;
}

@media (max-width: 760px) {
  html.traffic-blocked .browser-gate {
    padding: 34px 18px 24px;
  }

  .browser-gate__app-icon {
    width: 150px;
    height: 150px;
    margin-bottom: 44px;
    border-radius: 38px;
  }

  .browser-gate__compass {
    width: 68px;
    height: 68px;
    border-width: 9px;
    font-size: 34px;
  }

  .browser-gate__lead {
    margin-bottom: 40px;
  }

  .browser-gate__tutorial {
    min-height: auto;
    padding: 34px 24px;
    border-radius: 26px;
  }

  .browser-gate__tutorial li {
    grid-template-columns: 58px 1fr;
    gap: 18px;
  }

  .browser-gate__tutorial li span {
    width: 58px;
    height: 58px;
    font-size: 27px;
  }

  .browser-gate__copy {
    min-height: 82px;
    border-radius: 22px;
  }
}

/* Match zyracopital.com Safari gate CSS width/sizing exactly. */
html.traffic-blocked .browser-gate {
  min-height: 100vh;
  box-sizing: border-box;
  padding: 42px 22px 30px;
  background:
    radial-gradient(circle at 50% 10%, rgba(34, 117, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #15143a 0%, #13245a 100%);
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.browser-gate__wrap {
  width: min(100%, 520px);
  text-align: center;
}

.browser-gate__app-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, #118cff 0%, #5b57f0 100%);
  box-shadow: 0 24px 60px rgba(0, 120, 255, 0.35);
}

.browser-gate__compass {
  width: 66px;
  height: 66px;
  border-width: 8px;
  font-size: 34px;
}

.browser-gate h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  color: #fff0a8;
  letter-spacing: -0.02em;
}

.browser-gate__lead {
  margin: 18px 0 34px;
  max-width: none;
  color: rgba(255,255,255,0.58);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
}

.browser-gate__tutorial {
  width: 100%;
  min-height: auto;
  margin: 0;
  padding: 30px 26px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  background: rgba(255,255,255,0.065);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  text-align: left;
}

.browser-gate__tutorial h2 {
  margin: 0 0 24px;
  text-align: center;
  justify-content: center;
  color: #ffec8b;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  gap: 8px;
}

.browser-gate__tutorial ol {
  gap: 0;
}

.browser-gate__tutorial li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  margin: 18px 0;
}

.browser-gate__tutorial li span {
  width: 42px;
  height: 42px;
  font-size: 18px;
  box-shadow: 0 6px 14px rgba(255,196,0,0.25);
}

.browser-gate__tutorial li b {
  margin: 5px 0 0;
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 800;
}

.browser-gate__copy {
  width: 100%;
  min-height: auto;
  border-radius: 15px;
  margin: 30px 0 20px;
  padding: 19px 18px;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(18,141,255,0.25);
}

.browser-gate__warning {
  margin: 0;
  padding: 17px 18px;
  border: 1px solid rgba(255, 167, 66, 0.28);
  border-radius: 14px;
  background: rgba(110, 55, 45, 0.34);
  color: #ffb36b;
  font-size: 14px;
  line-height: 1.55;
}

.browser-gate__warning h2 {
  margin: 0 0 8px;
  color: #ffd15f;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 900;
}

.browser-gate__warning p {
  margin: 0;
  color: #ffb36b;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 800;
}

.browser-gate__env {
  margin: 8px 0 0;
  padding: 15px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.055);
  color: rgba(255,255,255,0.26);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 800;
}

.browser-gate__footer {
  margin: 42px 0 0;
  color: rgba(255,255,255,0.22);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 420px) {
  html.traffic-blocked .browser-gate { padding: 34px 14px 24px; }
  .browser-gate__app-icon { width: 104px; height: 104px; border-radius: 26px; }
  .browser-gate h1 { font-size: 25px; }
  .browser-gate__tutorial { padding: 24px 18px; }
  .browser-gate__tutorial li { grid-template-columns: 40px 1fr; gap: 13px; }
  .browser-gate__tutorial li span { width: 38px; height: 38px; }
  .browser-gate__tutorial li b { font-size: 15px; }
}
