@font-face {
  font-family: 'PressStart';
  src: url('assets/PressStart2P-vaV7.ttf') format('truetype');
  font-display: swap;
}

:root {
  --bg: #07080d;
  --bg-soft: #101425;
  --card: rgba(14, 20, 38, 0.82);
  --card-strong: rgba(18, 24, 46, 0.95);
  --line: rgba(255,255,255,0.08);
  --text: #f8fafc;
  --muted: #c2c9d6;
  --accent: #ff8a57;
  --accent-2: #5f7cff;
  --accent-3: #ffd36c;
  --shadow: 0 24px 80px rgba(0,0,0,0.45);
  --radius: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 12%, rgba(255,130,72,0.26), transparent 0 20%),
    radial-gradient(circle at 82% 76%, rgba(54,130,255,0.18), transparent 0 18%),
    linear-gradient(180deg, #090a10 0%, #0c0f18 48%, #090a10 100%);
  min-height: 100vh;
}

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

.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7, 8, 13, 0.78);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(255,138,87,0.3);
}

.brand-text strong,
.pixel {
  font-family: 'PressStart', monospace;
  letter-spacing: 0.02em;
}

.brand-text strong {
  font-size: 0.9rem;
  display: block;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 600;
}

.nav-links a:hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff9a63);
  color: #fff;
  box-shadow: 0 14px 36px rgba(255, 138, 87, 0.3);
}
.btn-secondary {
  background: rgba(255,255,255,0.04);
  border-color: var(--line);
  color: var(--text);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 34px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  color: var(--accent-3);
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h1 {
  margin: 0 0 18px;
  line-height: 1.05;
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.hero h1 .pixel {
  display: block;
  font-size: 0.48em;
  color: var(--accent-3);
  margin-bottom: 18px;
}

.hero p {
  max-width: 650px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero-points {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
}

.hero-points span {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(11,14,25,0.96), rgba(9,12,22,0.92));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,138,87,0.16), transparent 42%, rgba(95,124,255,0.18));
  pointer-events: none;
}

.hero-card img { width: 100%; }

.hero-float {
  position: absolute;
  padding: 14px 18px;
  border-radius: 20px;
  background: rgba(12, 18, 32, 0.82);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.float-top { top: -16px; right: 20px; }
.float-bottom { bottom: 16px; left: -14px; }
.hero-float small { display: block; color: var(--muted); margin-bottom: 6px; }
.hero-float strong { font-size: 1.1rem; }

.section { padding: 32px 0 78px; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.section-head h2 { margin: 0 0 10px; font-size: clamp(1.8rem, 3vw, 3rem); }
.section-head p { margin: 0; color: var(--muted); max-width: 650px; line-height: 1.7; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.feature-card .icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255,138,87,0.2), rgba(95,124,255,0.2));
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.feature-card h3 { margin: 0 0 10px; }
.feature-card p { margin: 0; color: var(--muted); line-height: 1.7; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-card h3,
.contact-card h3 { margin-top: 0; }
.about-list,
.contact-list {
  display: grid;
  gap: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.shot {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: var(--card-strong);
  box-shadow: var(--shadow);
}

.shot img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
}

.cta {
  position: relative;
  overflow: hidden;
}

.cta-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: center;
  padding: 34px;
  background: linear-gradient(135deg, rgba(255,138,87,0.16), rgba(95,124,255,0.12)), var(--card-strong);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.cta-card h2 { margin: 0 0 10px; font-size: clamp(2rem, 3vw, 3rem); }
.cta-card p { margin: 0; color: var(--muted); line-height: 1.75; }
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 40px;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.policy-page {
  padding: 54px 0 84px;
}

.policy-shell {
  max-width: 920px;
  margin: 0 auto;
}

.policy-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.policy-card h1,
.policy-card h2,
.policy-card h3 { margin-top: 0; }
.policy-card h1 { font-size: clamp(2rem, 4vw, 3.4rem); margin-bottom: 14px; }
.policy-card h2 { margin-top: 30px; font-size: 1.35rem; }
.policy-card p,
.policy-card li { color: var(--muted); line-height: 1.8; }
.policy-card ul { padding-left: 20px; }
.policy-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 18px;
}
.policy-meta span {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--accent-3);
  font-weight: 700;
}

.notice {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  margin: 18px 0;
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .cta-card,
  .grid-3 { grid-template-columns: 1fr; }
  .shot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-actions { justify-content: flex-start; }
}

@media (max-width: 760px) {
  .nav { min-height: 70px; }
  .nav-links { display: none; }
  .hero { padding-top: 48px; }
  .section { padding-bottom: 62px; }
  .shot-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .policy-card { padding: 24px; }
}

@media (max-width: 520px) {
  .container { width: min(var(--max), calc(100% - 22px)); }
  .shot-grid { grid-template-columns: 1fr; }
  .hero-actions,
  .hero-points { gap: 10px; }
  .btn { width: 100%; }
  .hero h1 { font-size: clamp(2.15rem, 11vw, 3rem); }
}
