
:root {
  --bg: #020b19;
  --bg-2: #041631;
  --panel: rgba(7, 27, 57, .78);
  --panel-2: rgba(4, 19, 42, .92);
  --text: #f7fbff;
  --muted: #9db0c8;
  --line: rgba(61, 148, 255, .23);
  --blue: #0A47D1;
  --blue-2: #1088ff;
  --cyan: #3bc8ff;
  --shadow: 0 30px 80px rgba(0, 0, 0, .42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 72% 18%, rgba(12, 85, 205, .18), transparent 31%),
    radial-gradient(circle at 8% 52%, rgba(0, 107, 255, .12), transparent 28%),
    linear-gradient(180deg, #020914 0%, #031225 52%, #020b19 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background-image:
    linear-gradient(rgba(28, 109, 213, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 109, 213, .035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(1180px, calc(100% - 40px)); margin: auto; }

.site-header {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid rgba(255,255,255,.05);
  background: rgba(1, 8, 19, .6);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 62px; height: 62px; object-fit: contain; filter: drop-shadow(0 0 18px rgba(16,136,255,.28)); }
.brand span { display: grid; line-height: 1; }
.brand strong { font-family: "Montserrat"; letter-spacing: .09em; font-size: 1.04rem; }
.brand small { color: #4ea1ff; letter-spacing: .48em; font-weight: 700; font-size: .67rem; margin-top: 8px; }

.coming-pill {
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  color: #7fd4ff;
  padding: 10px 14px;
  border: 1px solid rgba(66, 179, 255, .32);
  border-radius: 999px;
  background: rgba(8, 81, 179, .15);
  box-shadow: inset 0 0 20px rgba(38, 129, 255, .08);
}

.hero { padding: 70px 0 78px; position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 48px;
  align-items: center;
}

.eyebrow, .mini-label {
  color: #55b5ff;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.9rem, 5.2vw, 5.7rem);
  line-height: .98;
  letter-spacing: -.045em;
  margin: 22px 0 24px;
  max-width: 790px;
}
h1 span {
  display: inline-block;
  background: linear-gradient(90deg, #1694ff, #2368ff 54%, #8bdcff);
  -webkit-background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 28px rgba(29, 113, 255, .16));
}

.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.7;
  color: #ccd8e8;
  max-width: 660px;
  margin: 0 0 18px;
}

.surprise {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #dbeaff;
  padding: 13px 17px;
  margin: 0 0 26px;
  border: 1px solid rgba(63, 177, 255, .22);
  background: linear-gradient(90deg, rgba(11, 87, 196, .19), rgba(26, 149, 255, .07));
  border-radius: 14px;
}
.surprise span { color: #46beff; }

.future-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 30px;
}
.future-tags span {
  padding: 10px 13px;
  border-radius: 10px;
  color: #b9d6f5;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(120, 181, 255, .11);
  font-size: .87rem;
}

.hero-note {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 3px solid #1688ff;
  padding-left: 17px;
}
.hero-note strong { font-size: 1rem; }
.hero-note span { color: var(--muted); font-size: .9rem; }

.hero-visual { position: relative; padding: 18px 0 20px 18px; }
.visual-frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(63, 171, 255, .34);
  background: #061c3f;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .55), 0 0 65px rgba(0, 85, 255, .12);
  transform: perspective(1300px) rotateY(-4deg) rotateX(1deg);
}
.visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px rgba(4, 28, 65, .52);
  pointer-events: none;
}
.visual-frame img { width: 100%; aspect-ratio: 1.42; object-fit: cover; }

.floating-card {
  position: absolute;
  left: -9px;
  bottom: -6px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 17px;
  border-radius: 15px;
  background: rgba(4, 20, 44, .94);
  border: 1px solid rgba(82, 182, 255, .25);
  box-shadow: 0 18px 44px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
}
.dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: #26b7ff;
  box-shadow: 0 0 0 6px rgba(38,183,255,.11), 0 0 22px rgba(38,183,255,.7);
}
.floating-card div { display: grid; gap: 4px; }
.floating-card small { color: #69c7ff; font-size: .65rem; letter-spacing: .13em; }
.floating-card strong { font-size: .83rem; }

.categories {
  padding: 72px 0 86px;
  border-top: 1px solid rgba(255,255,255,.045);
  background: linear-gradient(180deg, rgba(2, 13, 31, .4), rgba(4, 24, 52, .72));
}

.section-heading { max-width: 700px; margin-bottom: 34px; }
.section-heading > span { color: #57b7ff; font-size: .72rem; font-weight: 800; letter-spacing: .18em; }
.section-heading h2, .reveal h2 {
  font-family: "Montserrat";
  margin: 11px 0 12px;
  font-size: clamp(2rem, 3.3vw, 3.4rem);
  letter-spacing: -.03em;
}
.section-heading p, .reveal p { color: var(--muted); line-height: 1.7; margin: 0; }

.cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.card {
  overflow: hidden;
  border-radius: 19px;
  background: linear-gradient(180deg, rgba(9, 35, 72, .9), rgba(4, 20, 45, .98));
  border: 1px solid rgba(66, 159, 255, .22);
  box-shadow: 0 20px 48px rgba(0,0,0,.23);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: translateY(-7px);
  border-color: rgba(69, 177, 255, .5);
  box-shadow: 0 30px 65px rgba(0,0,0,.32), 0 0 30px rgba(12, 97, 226, .1);
}
.card img { width: 100%; height: 145px; object-fit: cover; }
.card-body { padding: 19px 17px 21px; }
.icon {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid #198fff;
  color: #63c5ff;
  margin-bottom: 13px;
  background: rgba(10, 86, 202, .14);
}
.card h3 { margin: 0 0 8px; font-size: 1rem; }
.card p { color: #b7c8dc; line-height: 1.56; margin: 0; font-size: .84rem; }

.reveal { padding: 80px 0; }
.reveal-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 44px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 78% 50%, rgba(16, 133, 255, .22), transparent 28%),
    linear-gradient(120deg, rgba(7, 31, 67, .96), rgba(3, 16, 36, .98));
  border: 1px solid rgba(77, 170, 255, .2);
  box-shadow: var(--shadow);
}
.reveal-panel::before {
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(115deg, transparent 0 48%, rgba(50,157,255,.06) 49% 50%, transparent 51%);
  pointer-events:none;
}
.reveal p { max-width: 720px; }

.seal {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(92, 190, 255, .52);
  box-shadow: inset 0 0 0 8px rgba(14, 99, 218, .08), 0 0 48px rgba(16, 113, 255, .15);
  transform: rotate(-6deg);
}
.seal span { color: #74d2ff; font-size: .73rem; letter-spacing: .2em; }
.seal strong { font-size: 1.3rem; margin: 4px 0; }
.seal small { color: #7fa5ce; font-size: .56rem; letter-spacing: .13em; }

footer {
  border-top: 1px solid rgba(255,255,255,.05);
  background: rgba(1,8,18,.8);
}
.footer-grid {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 48px; height: 48px; object-fit: contain; }
.footer-brand div { display: grid; gap: 4px; }
.footer-brand strong { font-size: .84rem; letter-spacing: .08em; }
.footer-brand span, .footer-message { color: #8da4be; font-size: .84rem; }

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 820px; }
  .hero-visual { max-width: 760px; margin: auto; width: 100%; }
  .cards { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 740px) {
  .container { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 72px; }
  .brand img { width: 48px; height: 48px; }
  .brand strong { font-size: .84rem; }
  .brand small { font-size: .57rem; }
  .coming-pill { font-size: .61rem; padding: 8px 10px; }
  .hero { padding: 48px 0 56px; }
  h1 { font-size: clamp(2.45rem, 13vw, 4.5rem); }
  .eyebrow { line-height: 1.7; }
  .surprise { align-items: flex-start; line-height: 1.45; }
  .hero-visual { padding-left: 0; }
  .visual-frame { transform: none; border-radius: 20px; }
  .floating-card { position: relative; left: auto; bottom: auto; margin-top: 12px; }
  .categories { padding: 56px 0 66px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .card img { height: 150px; }
  .reveal { padding: 56px 0; }
  .reveal-panel { grid-template-columns: 1fr; padding: 30px 24px; }
  .seal { width: 145px; height: 145px; }
  .footer-grid { align-items: flex-start; flex-direction: column; padding: 26px 0; }
}

@media (max-width: 520px) {
  .brand span { display: none; }
  .cards { grid-template-columns: 1fr; }
  .card { display: grid; grid-template-columns: 42% 58%; min-height: 165px; }
  .card img { height: 100%; min-height: 165px; }
  .card-body { padding: 18px 15px; }
  .future-tags { gap: 7px; }
  .future-tags span { font-size: .78rem; }
}
