:root {
  --bg: #e7ebf0;
			--shadow: #b8b9be;
				--white: #ffffff;
  --bg-grad-a: #edf1f6;
  --bg-grad-b: #d7dde6;
  --text: #1a1f29;
  --muted: #3d434e;
  --panel: #e3e8ee;
  --panel-soft: #dce2eaab;
  --shadow-light: rgba(255, 255, 255, 0.78);
  --shadow-dark: rgba(148, 160, 181, 0.36);
  --line-soft: rgba(123, 138, 161, 0.28);
  --accent: #3b82f6;
  --nav-glow-rgb: 205, 228, 255;
}

body.dark-theme {
  --bg: #12151c;
  --bg-grad-a: #1a1f29;
  --bg-grad-b: #0f1218;
  --text: #e8ecf5;
  --muted: #eaedf1;
  --panel: #191e28;
  --panel-soft: #1b191f80;
  --shadow-light: rgba(255, 255, 255, 0.04);
  --shadow-dark: rgba(0, 0, 0, 0.52);
  --line-soft: rgba(165, 177, 205, 0.2);
  --accent: #4f8cff;
  --nav-glow-rgb: 168, 201, 255;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "SF Pro Display", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 640px at 84% -12%, var(--bg-grad-a) 0%, transparent 58%),
    radial-gradient(980px 540px at -12% 22%, var(--bg-grad-b) 0%, transparent 52%),
    var(--bg);
  overflow-x: hidden;
  transition: background 0.35s ease, color 0.35s ease;
}

.bg-orb {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
  filter: blur(26px);
  opacity: 0.45;
}

.orb-a {
  width: 360px;
  height: 360px;
  left: -90px;
  top: 72px;
  background: rgba(147, 197, 253, 0.38);
}

.orb-b {
  width: 320px;
  height: 320px;
  right: 12%;
  top: 30%;
  background: rgba(99, 102, 241, 0.18);
}

.orb-c {
  width: 420px;
  height: 420px;
  right: -120px;
  bottom: -80px;
  background: rgba(250, 204, 21, 0.16);
}

.neumorph-panel {
  border-radius: 30px;
  background: var(--panel);
  box-shadow:
    20px 20px 60px var(--shadow-dark),
    -20px -20px 60px var(--shadow-light);
  border: 1px solid var(--line-soft);
}

.page-wrap {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100vw - 420px));
  margin: 116px auto 80px;
  margin-left: max(24px, calc((100vw - min(1200px, calc(100vw - 420px))) / 2));
  display: grid;
  gap: 22px;
}

.hero {
  padding: 34px 36px;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
	text-align: center;
}

.hero h1 {
  margin: 0;
  font-size: clamp(34px, 5.2vw, 60px);
  line-height: 1.06;
	text-align: center;
}

.hero .lead {
	margin: 16px auto;
  max-width: 880px;
  font-size: clamp(15px, 2vw, 20px);
  line-height: 1.6;
  color: var(--muted);
  text-align: justify;
	
}
		ol { 
			width: 100%;
  display: flex;
  flex-direction: row;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center; }
li { 
  width: 45%;
  padding: 15px;
  border: none;
  border-radius: 12px;
  background: var(--bg);
  box-shadow: 0px 0px 2px var(--shadow), inset -6px -6px 12px var(--white);
  outline: none;
  font-size: 16px;
  color: #444;
  list-style: none;
  font-weight: bold;
	text-align: center;
}
		#redirecting{
		cursor: pointer;
		}


.circle{
  background: rgba(100,200,255, 0.5);
  border-radius: 50%;
  width: 15px;
  height: 15px;
  position: absolute;
transform: translate(-50%,-50%);
	z-index: 2;
	
    pointer-events: none; 
}