*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black: #030303;
  --off-black: #0A0A0A;
  --rule: #1A1A1A;
  --muted: #777777;
  --mid: #999999;
  --light: #888;
  --white: #F5F5F5;
  --blue: #00D4FF;
}
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: 'DM Mono', monospace; font-weight: 300; min-height: 100vh; overflow-x: hidden; }
body::after { content: ''; position: fixed; inset: 0; background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.025) 2px, rgba(0,0,0,0.025) 4px); pointer-events: none; z-index: 999; }
.wrap { max-width: 1000px; margin: 0 auto; padding: 0 48px; }

/* NAV */
nav { padding: 40px 0; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--rule); opacity: 0; animation: up 0.8s ease 0.1s forwards; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 8px var(--blue), 0 0 18px rgba(0,212,255,0.35); animation: pulse 2.5s ease-in-out infinite; }
.nav-wordmark { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); }
.nav-right { list-style: none; display: flex; gap: 40px; }
.nav-link { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid); text-decoration: none; transition: color 0.2s; padding: 8px 4px; }
.nav-link:hover { color: var(--blue); }

/* HERO */
.hero { padding: 96px 0 80px; opacity: 0; animation: up 1s ease 0.3s forwards; }
.hero-tag { display: inline-flex; align-items: center; gap: 10px; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); margin-bottom: 40px; }
.hero-tag::before { content: ''; display: block; width: 24px; height: 1px; background: var(--blue); }
.hero-hed { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(46px, 7vw, 78px); line-height: 1.06; letter-spacing: -0.02em; color: var(--white); margin-bottom: 44px; max-width: 680px; }
.hero-hed em { font-style: italic; color: var(--blue); text-shadow: 0 0 28px rgba(0,212,255,0.28); }
.hero-sub { font-size: 12px; line-height: 2; color: var(--light); max-width: 440px; letter-spacing: 0.02em; }

/* DIVIDER */
.div { height: 1px; background: var(--rule); border: none; }

/* SECTION LABEL */
.lbl { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--light); margin-bottom: 44px; display: flex; align-items: center; gap: 16px; }
.lbl::after { content: ''; flex: 1; height: 1px; background: var(--rule); }

/* PLATFORMS */
.platforms { padding: 68px 0 76px; opacity: 0; animation: up 1s ease 0.5s forwards; }
.pgrid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--rule); }
.platform { background: var(--black); padding: 44px 40px 52px; position: relative; text-decoration: none; display: block; overflow: hidden; transition: background 0.3s; }
.platform::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: transparent; transition: background 0.3s, box-shadow 0.3s; }
.platform:hover { background: var(--off-black); }
.platform:hover::before { background: var(--blue); box-shadow: 0 0 12px rgba(0,212,255,0.5); }
.p-type { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--light); margin-bottom: 22px; display: block; }
.p-name { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 33px; line-height: 1.1; color: var(--white); margin-bottom: 7px; letter-spacing: -0.01em; }
.p-url { font-size: 9px; letter-spacing: 0.08em; color: var(--blue); margin-bottom: 26px; display: block; opacity: 0.65; transition: opacity 0.3s; }
.platform:hover .p-url { opacity: 1; }
.p-desc { font-size: 11.5px; line-height: 1.9; color: var(--mid); max-width: 270px; }
.p-arrow { position: absolute; bottom: 40px; right: 40px; font-size: 14px; color: var(--muted); transition: color 0.3s, transform 0.3s; font-family: 'DM Mono', monospace; }
.platform:hover .p-arrow { color: var(--blue); transform: translate(3px, -3px); text-shadow: 0 0 8px var(--blue); }

/* ABOUT */
.about { padding: 68px 0 76px; opacity: 0; animation: up 1s ease 0.7s forwards; }
.about-grid { display: grid; grid-template-columns: 180px 1fr; gap: 72px; align-items: start; }
.a-name { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 20px; color: var(--white); margin-bottom: 5px; }
.a-title { font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); opacity: 0.75; line-height: 1.7; }
.about-body p { font-size: 12px; line-height: 2; color: var(--light); margin-bottom: 18px; letter-spacing: 0.02em; }
.about-body p:last-child { margin: 0; }
.about-body strong { color: var(--white); font-weight: 400; }

/* CONTACT */
.contact { padding: 68px 0 76px; opacity: 0; animation: up 1s ease 0.85s forwards; }
.contact-grid { display: grid; grid-template-columns: 180px 1fr; gap: 72px; align-items: start; }
.contact-links { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; flex-direction: column; gap: 5px; }
.contact-label { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.contact-val { font-size: 12px; color: var(--light); text-decoration: none; transition: color 0.2s; letter-spacing: 0.02em; }
.contact-val:hover { color: var(--blue); }
.contact-note { font-size: 12px; line-height: 2; color: var(--light); max-width: 420px; letter-spacing: 0.02em; }

/* FOOTER */
footer { border-top: 1px solid var(--rule); padding: 28px 0 40px; display: flex; align-items: center; justify-content: space-between; opacity: 0; animation: up 1s ease 0.9s forwards; }
.f-left { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.f-link { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.f-link:hover { color: var(--blue); }

/* STATUS */
.status { position: fixed; bottom: 24px; right: 24px; display: flex; align-items: center; gap: 8px; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); z-index: 10; font-family: 'DM Mono', monospace; }
.s-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 6px var(--blue); animation: pulse 2s ease-in-out infinite; }

/* ANIMATIONS */
@keyframes up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.beta-dot { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: #3FB950; box-shadow: 0 0 6px #3FB950; animation: pulse-green 2s ease-in-out infinite; margin-right: 6px; vertical-align: middle; }
@keyframes pulse-green { 0%,100% { opacity: 1; box-shadow: 0 0 6px #3FB950; } 50% { opacity: 0.4; box-shadow: 0 0 12px #3FB95080; } }

/* COMING SOON PLATFORM */
.platform--soon { opacity: 0.4; cursor: default; }
.platform--soon:hover { background: var(--black); }
.platform--soon:hover::before { background: transparent; box-shadow: none; }
.soon-tag { font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* RESPONSIVE */
@media (max-width: 820px) {
  .pgrid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 24px; }
  .pgrid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-hed { font-size: 38px; }
  footer { flex-direction: column; gap: 16px; align-items: flex-start; }
  .status { display: none; }
}

/* FOCUS */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

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

/* SKIP LINK */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--blue);
  color: #030303;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  text-decoration: none;
  letter-spacing: 0.1em;
}
.skip-link:focus {
  top: 0;
}
