:root {
  --bg: #06111d;
  --bg-deep: #030a12;
  --surface: rgba(10, 28, 45, 0.82);
  --surface-solid: #0a1c2d;
  --surface-2: #0f2941;
  --line: rgba(132, 199, 255, 0.16);
  --line-strong: rgba(132, 199, 255, 0.34);
  --text: #f4f9ff;
  --muted: #9eb3c6;
  --blue: #2f8cff;
  --blue-2: #64c3ff;
  --cyan: #68e5e8;
  --danger: #ff6b7d;
  --success: #63e6be;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 10%, rgba(47, 140, 255, 0.12), transparent 30%),
    radial-gradient(circle at 85% 55%, rgba(104, 229, 232, 0.07), transparent 28%),
    linear-gradient(180deg, var(--bg-deep), var(--bg) 20%, #071725 100%);
  color: var(--text);
  font-family: "Almarai", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.8;
  overflow-x: hidden;
}

button, input { font: inherit; }
a { color: inherit; }
button { color: inherit; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .028;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.72'/%3E%3C/svg%3E");
}

.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(rgba(99, 177, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 177, 255, .06) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 72%);
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 15;
  height: 86px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(3, 10, 18, .94), rgba(3, 10, 18, .54), transparent);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  letter-spacing: .04em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(47, 140, 255, .08);
}
.brand-mark img { width: 29px; height: 33px; object-fit: contain; display: block; }
.brand > span:last-child { display: flex; flex-direction: column; line-height: 1.1; }
.brand b { font-size: .94rem; letter-spacing: .12em; }
.brand small { color: var(--muted); font-size: .66rem; margin-top: 6px; }

.ghost-button, .secondary-button {
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.025);
  border-radius: 999px;
  padding: 11px 18px;
  cursor: pointer;
  transition: .25s ease;
}
.ghost-button:hover, .secondary-button:hover { background: rgba(47,140,255,.1); border-color: var(--blue); }

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 90px;
  position: relative;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .75fr);
  gap: 80px;
  align-items: center;
  padding-top: 130px;
}

.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-2);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(100,195,255,.1), 0 0 24px currentColor;
}
.eyebrow.danger { color: var(--danger); }

.hero h1 {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  word-break: keep-all;
  font-size: clamp(5rem, 7.5vw, 7.5rem);
  line-height: 1;
  letter-spacing: -.06em;
  margin: 28px 0 36px;
  font-weight: 800;
  background: linear-gradient(180deg, #fff 15%, #a9c7df 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 70px rgba(47,140,255,.1);
}
.hero h1 .dot { color: var(--blue); -webkit-text-fill-color: var(--blue); }
.hero-lead { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--muted); margin: 0 0 4px; }
.hero-question { font-size: clamp(1.25rem, 2.5vw, 1.8rem); font-weight: 800; margin: 0 0 34px; }

.privacy-choice {
  padding: 17px 18px;
  border: 1px solid var(--line);
  background: rgba(9, 25, 41, .58);
  border-radius: var(--radius-sm);
  margin-bottom: 22px;
  max-width: 670px;
}
.switch-row { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; cursor: pointer; }
.switch-row input { position: absolute; opacity: 0; pointer-events: none; }
.switch {
  width: 48px;
  height: 28px;
  border-radius: 999px;
  background: #20384c;
  border: 1px solid var(--line-strong);
  position: relative;
  transition: .25s ease;
}
.switch::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 3px;
  right: 4px;
  border-radius: 50%;
  background: #d9e8f3;
  transition: .25s ease;
}
.switch-row input:checked + .switch { background: rgba(47,140,255,.45); border-color: var(--blue); }
.switch-row input:checked + .switch::after { transform: translateX(-19px); background: #fff; box-shadow: 0 0 16px rgba(100,195,255,.55); }
.switch-row b { display: block; font-size: .84rem; }
.switch-row small { display: block; color: var(--muted); font-size: .72rem; margin-top: 2px; }

.primary-button {
  border: 0;
  border-radius: 999px;
  padding: 15px 24px;
  background: linear-gradient(135deg, var(--blue), #1367dc);
  color: white;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 18px 44px rgba(47, 140, 255, .25);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.primary-button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 2; }
.primary-button:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 24px 54px rgba(47,140,255,.34); }
.primary-button:disabled { cursor: wait; opacity: .65; transform: none; }
.microcopy { max-width: 650px; color: #7891a5; font-size: .72rem; margin-top: 16px; }

.hero-visual { position: relative; display: grid; place-items: center; }
.device-shell {
  width: min(430px, 100%);
  aspect-ratio: .82;
  border-radius: 34px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(160deg, rgba(16,47,74,.9), rgba(5,18,31,.95));
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,.02);
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.device-shell::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: conic-gradient(from 180deg, transparent, rgba(47,140,255,.12), transparent 28%);
  animation: shellGlow 8s linear infinite;
}
.device-top { position: relative; z-index: 1; display: flex; gap: 7px; direction: ltr; }
.device-top span { width: 8px; height: 8px; border-radius: 50%; background: #29485e; }
.device-top span:first-child { background: var(--danger); }
.radar { position: absolute; inset: 80px 38px 110px; border-radius: 50%; border: 1px solid var(--line-strong); overflow: hidden; background: radial-gradient(circle, rgba(47,140,255,.14), transparent 62%); }
.radar::before, .radar::after { content: ""; position: absolute; background: var(--line); }
.radar::before { top: 50%; left: 0; width: 100%; height: 1px; }
.radar::after { left: 50%; top: 0; width: 1px; height: 100%; }
.radar-ring { position: absolute; border: 1px solid var(--line); border-radius: 50%; inset: 17%; }
.radar-ring.ring-b { inset: 32%; }
.radar-ring.ring-c { inset: 45%; }
.radar-sweep { position: absolute; width: 50%; height: 50%; right: 50%; bottom: 50%; transform-origin: 100% 100%; background: linear-gradient(35deg, rgba(47,140,255,.35), transparent 65%); animation: radarSweep 3.2s linear infinite; }
.radar-core { position: absolute; inset: 0; display: grid; place-items: center; }
.radar-core span { width: 14px; height: 14px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 8px rgba(104,229,232,.08), 0 0 35px var(--cyan); }
.blip { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-2); box-shadow: 0 0 14px var(--blue-2); animation: blip 2s ease-in-out infinite; }
.blip-1 { top: 24%; left: 32%; }
.blip-2 { top: 62%; left: 74%; animation-delay: .6s; }
.blip-3 { top: 38%; left: 66%; animation-delay: 1.2s; }
.terminal-lines { position: absolute; right: 32px; left: 32px; bottom: 36px; display: grid; gap: 10px; }
.terminal-lines span { width: var(--w); height: 6px; border-radius: 99px; background: linear-gradient(90deg, var(--blue), rgba(47,140,255,.08)); }
.hero-orbit { position: absolute; border: 1px solid rgba(100,195,255,.08); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 540px; height: 540px; left: -290px; top: 90px; }
.orbit-two { width: 260px; height: 260px; right: -130px; bottom: 80px; }

.section-heading { max-width: 760px; margin-bottom: 54px; }
.section-heading h2 { font-size: clamp(2.2rem, 5vw, 4.5rem); line-height: 1.15; margin: 20px 0 14px; letter-spacing: -.04em; }
.section-heading p { color: var(--muted); font-size: 1rem; }
.compact-heading { margin-bottom: 36px; }
.scan { min-height: 100vh; }
.scan-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 24px; }
.scanner-card, .reading-card {
  background: linear-gradient(150deg, rgba(15,41,65,.78), rgba(6,18,30,.84));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.scanner-card { padding: 28px; }
.scanner-frame {
  min-height: 350px;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(47,140,255,.04), rgba(47,140,255,.01)), repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(100,195,255,.045) 29px);
}
.scan-line { position: absolute; left: 0; right: 0; height: 2px; top: 0; background: linear-gradient(90deg, transparent, var(--cyan), transparent); box-shadow: 0 0 25px var(--cyan); animation: scanLine 2.4s ease-in-out infinite; }
.scanner-symbol svg { width: 115px; fill: none; stroke: var(--blue-2); stroke-width: 1.5; filter: drop-shadow(0 0 18px rgba(100,195,255,.35)); }
.scan-metrics { display: flex; justify-content: space-between; align-items: end; padding-top: 20px; }
.scan-metrics span { color: var(--muted); font-size: .8rem; }
.scan-metrics strong { font-size: 2.6rem; color: var(--blue-2); letter-spacing: .02em; }
.reading-card { padding: 30px; }
.reading-status { display: flex; align-items: center; gap: 10px; font-size: .78rem; color: var(--muted); }
.reading-status b { margin-right: auto; color: var(--text); }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 6px rgba(99,230,190,.08); animation: pulse 1.3s ease-in-out infinite; }
.progress-track { height: 5px; border-radius: 99px; background: #132d41; overflow: hidden; margin: 15px 0 30px; }
.progress-track span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--blue), var(--cyan)); transition: width .35s ease; }
.live-reading { min-height: 155px; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: rgba(3,12,21,.46); transition: .2s ease; }
.live-reading small { color: var(--blue-2); }
.live-reading strong { display: block; font-size: clamp(1.25rem, 3vw, 2.1rem); line-height: 1.35; margin: 8px 0; }
.live-reading p { color: var(--muted); margin: 0; font-size: .85rem; }
.live-reading.flash { border-color: rgba(100,195,255,.5); transform: translateY(-2px); }
.log-list { max-height: 255px; overflow: hidden; margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.log-item { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center; color: #89a3b7; font-size: .73rem; animation: logIn .35s ease both; }
.log-item::before { content: "✓"; color: var(--success); }
.log-item b { color: #cce3f4; font-weight: 400; }
.log-item time { direction: ltr; font-family: ui-monospace, monospace; font-size: .67rem; }

.results-heading { margin-bottom: 36px; }
.result-summary { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 28px; }
.result-summary article { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(10,28,45,.58); }
.result-summary small { color: var(--muted); display: block; font-size: .73rem; }
.result-summary strong { display: block; margin-top: 7px; font-size: 1.85rem; }
.facts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fact-card { min-height: 230px; padding: 22px; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(150deg, rgba(15,41,65,.64), rgba(6,18,30,.76)); position: relative; overflow: hidden; transition: transform .25s ease, border-color .25s ease; }
.fact-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.fact-card::after { content: ""; position: absolute; width: 120px; height: 120px; border-radius: 50%; left: -70px; bottom: -70px; background: rgba(47,140,255,.08); filter: blur(1px); }
.fact-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.fact-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 13px; background: rgba(47,140,255,.1); color: var(--blue-2); font-size: 1.1rem; }
.risk { font-size: .65rem; padding: 5px 9px; border-radius: 999px; border: 1px solid var(--line); color: var(--muted); }
.risk.medium { color: #ffd98e; border-color: rgba(255,217,142,.24); }
.risk.high { color: #ff9aaa; border-color: rgba(255,107,125,.24); }
.fact-card h3 { color: var(--muted); font-size: .75rem; margin: 22px 0 6px; font-weight: 400; }
.fact-value { font-size: 1.15rem; font-weight: 800; line-height: 1.5; overflow-wrap: anywhere; }
.fact-card p { color: #829aac; font-size: .72rem; line-height: 1.7; margin: 15px 0 0; }

.fingerprint-section { margin-top: 80px; padding: 44px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(15,41,65,.66), rgba(5,17,29,.88)); display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; box-shadow: var(--shadow); }
.fingerprint-copy h3 { font-size: clamp(1.8rem, 4vw, 3.2rem); line-height: 1.25; margin: 18px 0 14px; }
.fingerprint-copy p { color: var(--muted); font-size: .88rem; }
.fingerprint-copy code { display: block; margin-top: 24px; direction: ltr; text-align: left; padding: 12px 14px; background: rgba(1,8,14,.5); border: 1px solid var(--line); border-radius: 12px; color: var(--cyan); font-size: .72rem; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.fingerprint-visual { min-height: 250px; display: flex; align-items: center; justify-content: center; gap: 7px; direction: ltr; border-radius: 20px; padding: 30px; background: repeating-linear-gradient(90deg, transparent, transparent 24px, rgba(100,195,255,.035) 25px); border: 1px solid var(--line); }
.fp-bar { width: 7px; height: var(--h); min-height: 24px; max-height: 190px; border-radius: 99px; background: linear-gradient(180deg, var(--cyan), var(--blue)); box-shadow: 0 0 18px rgba(47,140,255,.2); transform-origin: bottom; animation: barGrow .65s cubic-bezier(.2,.8,.2,1) both; animation-delay: var(--d); }

.reveal-section { margin-top: 28px; padding: 38px; border: 1px solid rgba(255,107,125,.2); border-radius: var(--radius); background: linear-gradient(135deg, rgba(255,107,125,.075), rgba(10,28,45,.72)); display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: start; }
.reveal-icon { width: 72px; height: 72px; border-radius: 22px; background: rgba(255,107,125,.1); display: grid; place-items: center; color: var(--danger); }
.reveal-icon svg { width: 40px; fill: none; stroke: currentColor; stroke-width: 2; }
.reveal-section span { color: var(--danger); font-size: .72rem; font-weight: 800; }
.reveal-section h3 { font-size: clamp(1.7rem, 4vw, 3rem); margin: 5px 0 10px; }
.reveal-section p { color: #a9bbc9; margin: 0; max-width: 850px; }

.tips-section { margin-top: 90px; }
.inline-heading { margin-bottom: 36px; }
.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tips-grid article { padding: 24px; border-right: 2px solid rgba(47,140,255,.45); background: rgba(10,28,45,.45); border-radius: 16px 4px 4px 16px; }
.tips-grid span { font-size: .72rem; color: var(--blue-2); font-weight: 800; }
.tips-grid h3 { margin: 10px 0 8px; }
.tips-grid p { color: var(--muted); font-size: .78rem; margin: 0; }

.action-panel { margin-top: 80px; padding: 34px; border: 1px solid var(--line-strong); border-radius: var(--radius); background: linear-gradient(120deg, rgba(47,140,255,.17), rgba(10,28,45,.74)); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.action-panel span { color: var(--blue-2); font-size: .75rem; }
.action-panel h3 { margin: 6px 0 0; font-size: 1.4rem; }
.action-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.secondary-button { padding: 14px 21px; }

.site-footer { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; padding: 55px 0 38px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto; gap: 24px; color: var(--muted); }
.footer-brand b { color: var(--text); font-size: 1.5rem; }
.footer-brand p { max-width: 620px; font-size: .75rem; }
.footer-links { display: flex; gap: 18px; align-items: start; }
.footer-links button, .footer-links a { border: 0; background: none; color: var(--muted); cursor: pointer; text-decoration: none; font-size: .76rem; padding: 0; }
.footer-links button:hover, .footer-links a:hover { color: var(--blue-2); }
.site-footer > small { grid-column: 1 / -1; font-size: .68rem; }

.info-dialog { width: min(720px, calc(100% - 30px)); max-height: 84vh; overflow: auto; border: 1px solid var(--line-strong); border-radius: 26px; background: #0a1b2b; color: var(--text); padding: 36px; box-shadow: 0 40px 100px #000; }
.info-dialog::backdrop { background: rgba(0,5,10,.76); backdrop-filter: blur(7px); }
.info-dialog h2 { font-size: 2rem; margin: 15px 0; }
.info-dialog h3 { margin-top: 28px; }
.info-dialog p, .info-dialog li { color: var(--muted); font-size: .84rem; }
.info-dialog code { color: var(--cyan); }
.dialog-close { position: absolute; left: 20px; top: 16px; border: 0; background: transparent; color: var(--text); font-size: 2rem; cursor: pointer; }
.source-links a { color: var(--blue-2); }

.toast { position: fixed; z-index: 30; bottom: 24px; left: 50%; transform: translate(-50%, 30px); padding: 12px 18px; border-radius: 999px; background: #eaf6ff; color: #071321; font-size: .78rem; font-weight: 800; opacity: 0; pointer-events: none; transition: .25s ease; box-shadow: 0 15px 45px rgba(0,0,0,.3); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.noscript { position: fixed; inset: auto 20px 20px; z-index: 50; background: var(--danger); color: white; padding: 15px; border-radius: 14px; text-align: center; }

.is-hidden { display: none !important; }
.reveal-in { animation: revealIn .7s ease both; }

@keyframes radarSweep { to { transform: rotate(360deg); } }
@keyframes shellGlow { to { transform: rotate(360deg); } }
@keyframes blip { 0%,100% { opacity: .2; transform: scale(.7); } 50% { opacity: 1; transform: scale(1.2); } }
@keyframes pulse { 0%,100% { opacity: .45; } 50% { opacity: 1; } }
@keyframes scanLine { 0%,100% { top: 8%; opacity: .25; } 50% { top: 91%; opacity: 1; } }
@keyframes logIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
@keyframes barGrow { from { transform: scaleY(.06); opacity: 0; } to { transform: scaleY(1); opacity: 1; } }
@keyframes revealIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

@media (max-width: 940px) {
  .hero { grid-template-columns: 1fr; gap: 50px; padding-top: 150px; }
  .hero-visual { order: -1; max-width: 360px; margin: auto; }
  .device-shell { aspect-ratio: 1.15; }
  .radar { inset: 55px 55px 40px; }
  .terminal-lines { display: none; }
  .scan-layout, .fingerprint-section { grid-template-columns: 1fr; }
  .facts-grid, .tips-grid { grid-template-columns: repeat(2, 1fr); }
  .result-summary { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .site-header { height: 74px; padding: 0 18px; }
  .brand small { display: none; }
  .brand-mark { width: 38px; height: 38px; border-radius: 13px; }
  .brand-mark img { width: 25px; height: 29px; }
  .ghost-button { padding: 9px 13px; font-size: .72rem; }
  .section { width: min(100% - 28px, var(--max)); padding: 115px 0 70px; }
  .hero { padding-top: 110px; }
  .hero h1 { font-size: clamp(3.6rem, 20vw, 5.6rem); letter-spacing: -.055em; }
  .hero-visual { width: 100%; }
  .device-shell { border-radius: 24px; padding: 16px; }
  .privacy-choice { padding: 14px; }
  .switch-row { align-items: start; }
  .scan-layout { gap: 14px; }
  .scanner-card, .reading-card { border-radius: 22px; padding: 18px; }
  .scanner-frame { min-height: 230px; }
  .facts-grid, .tips-grid, .result-summary { grid-template-columns: 1fr; }
  .fact-card { min-height: auto; }
  .fingerprint-section { padding: 24px; gap: 24px; }
  .fingerprint-visual { min-height: 210px; gap: 4px; padding: 18px; }
  .fp-bar { width: 5px; }
  .reveal-section { grid-template-columns: 1fr; padding: 25px; }
  .action-panel { align-items: stretch; flex-direction: column; }
  .action-buttons { display: grid; grid-template-columns: 1fr; }
  .action-buttons button { justify-content: center; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

/* القائمة الكاملة للمعلومات التقنية */
.all-data-section {
  margin-top: 34px;
}
.all-data-card {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(88,150,231,.2);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(14,28,49,.94), rgba(7,14,25,.96));
  box-shadow: var(--shadow);
}
.all-data-intro {
  padding: clamp(26px, 5vw, 48px);
  text-align: center;
}
.all-data-intro h2 {
  margin: 14px 0 10px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.25;
}
.all-data-intro h2 strong { color: var(--cyan); }
.all-data-intro > p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.9;
}
.all-data-fingerprint {
  width: min(590px, 100%);
  margin: 22px auto 0;
  padding: 13px 15px;
  border: 1px dashed rgba(66,217,255,.28);
  border-radius: 14px;
  background: rgba(47,140,255,.06);
}
.all-data-fingerprint small { display: block; color: var(--muted); font-size: .65rem; }
.all-data-fingerprint code {
  display: block;
  margin-top: 5px;
  direction: ltr;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(.7rem, 2vw, .88rem);
  overflow-wrap: anywhere;
}
.data-toggle {
  min-height: 50px;
  margin-top: 22px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 14px;
  color: #06111d;
  background: linear-gradient(135deg, var(--cyan), #7feaff);
  cursor: pointer;
  font-weight: 800;
}
.data-toggle i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(4,17,29,.12);
  font-style: normal;
  font-size: 18px;
}
.all-data-content {
  padding: 0 clamp(14px, 4vw, 36px) clamp(24px, 4vw, 40px);
}
.all-data-content[hidden] { display: none; }
.data-groups { display: grid; gap: 10px; }
.data-group {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  background: rgba(255,255,255,.025);
}
.data-group summary {
  min-height: 68px;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: 42px minmax(0,1fr) 28px;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.data-group summary::-webkit-details-marker { display: none; }
.data-group summary:hover { background: rgba(255,255,255,.025); }
.data-group-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(47,140,255,.11);
  color: var(--cyan);
  font-size: .62rem;
  font-weight: 900;
  direction: ltr;
}
.data-group summary b { display: block; font-size: .86rem; }
.data-group summary small { display: block; color: var(--muted); font-size: .65rem; margin-top: 3px; }
.data-group summary > i {
  font-style: normal;
  color: var(--cyan);
  font-size: 20px;
  transition: transform .2s;
}
.data-group[open] summary > i { transform: rotate(180deg); }
.data-grid {
  padding: 0 12px 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.data-item {
  min-width: 0;
  padding: 13px;
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 12px;
  background: rgba(0,0,0,.12);
}
.data-item small { display: block; color: var(--muted); font-size: .64rem; }
.data-item strong {
  display: block;
  margin-top: 5px;
  color: #eaf4ff;
  font-size: .76rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.network-option {
  margin-top: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255,190,70,.2);
  border-radius: 16px;
  background: rgba(255,190,70,.055);
  text-align: right;
}
.network-option b { display: block; font-size: .86rem; }
.network-option p { margin: 5px 0 0; color: var(--muted); font-size: .68rem; }
.network-option button {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 10px 15px;
  border: 1px solid rgba(255,190,70,.35);
  border-radius: 12px;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  font-size: .72rem;
  font-weight: 700;
}
.network-option button:disabled { opacity: .65; cursor: wait; }
.network-results {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 8px;
}
.network-results[hidden] { display: none; }
.network-loading, .network-error {
  grid-column: 1 / -1;
  padding: 14px;
  border-radius: 12px;
  color: var(--muted);
  background: rgba(255,255,255,.03);
  text-align: center;
  font-size: .74rem;
}
.network-error { color: #ffb6c0; }

@media (max-width: 680px) {
  .all-data-section { margin-top: 22px; }
  .all-data-card { border-radius: 20px; }
  .all-data-intro { padding: 25px 14px; }
  .all-data-intro h2 { font-size: 1.72rem; }
  .all-data-intro > p { font-size: .78rem; }
  .data-toggle { width: 100%; }
  .all-data-content { padding-inline: 10px; }
  .data-group summary { padding-inline: 12px; }
  .data-grid, .network-results { grid-template-columns: 1fr; }
  .network-option { align-items: stretch; flex-direction: column; }
  .network-option button { width: 100%; }
}
