/* SoftSin Studios Modern Prototype Theme */
:root {
  --bg: #07090d;
  --bg2: #0d1118;
  --panel: rgba(18, 22, 32, 0.76);
  --panel2: rgba(13, 17, 26, 0.92);
  --card: #101620;
  --line: rgba(255,255,255,0.09);
  --line2: rgba(120, 232, 255, 0.22);
  --text: #eef3ff;
  --muted: #aeb8c9;
  --soft: #748093;
  --accent: #67e8ff;
  --accent2: #ff5e78;
  --good: #5dff9f;
  --warn: #ffd166;
  --shadow: 0 30px 90px rgba(0,0,0,.55);
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255, 94, 120, .16), transparent 34rem),
    radial-gradient(circle at top right, rgba(103, 232, 255, .18), transparent 38rem),
    linear-gradient(180deg, #050609 0%, var(--bg) 45%, #050609 100%);
  color: var(--text);
  font: 15px/1.55 Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

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

.shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(10, 13, 20, .72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  position: sticky;
  top: 16px;
  z-index: 5;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 94, 120, .95), rgba(103, 232, 255, .95));
  box-shadow: 0 0 28px rgba(103, 232, 255, .24);
}

.brand strong {
  display: block;
  font-size: 14px;
  letter-spacing: .3px;
}

.brand span span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: -2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav a,
.btn {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
}

.nav a:hover,
.nav a.active,
.btn:hover {
  border-color: var(--line2);
  color: var(--text);
  background: rgba(103, 232, 255, .07);
}

.btn.primary {
  color: #071016;
  background: linear-gradient(135deg, var(--accent), #9ff4ff);
  border-color: rgba(103, 232, 255, .4);
}

.btn.red {
  color: var(--accent2);
  background: rgba(255, 94, 120, .08);
  border-color: rgba(255, 94, 120, .28);
  box-shadow: none;
}

.btn.red:hover {
  color: #ff8fa3;
  background: rgba(255, 94, 120, .14);
  border-color: rgba(255, 94, 120, .42);
  box-shadow: none;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: center;
  padding: 58px 0 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  border: 1px solid var(--line2);
  background: rgba(103,232,255,.07);
  border-radius: 999px;
  padding: 7px 11px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

h1 {
  margin: 16px 0 0;
  font-size: clamp(38px, 6vw, 78px);
  line-height: .95;
  letter-spacing: -2.6px;
}

.lead {
  max-width: 660px;
  color: var(--muted);
  font-size: 18px;
  margin: 20px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.panel {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-head {
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.035), transparent);
}

.panel-head h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -.4px;
}

.panel-head p {
  margin: 4px 0 0;
  color: var(--soft);
  font-size: 13px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  border-radius: var(--radius);
  padding: 20px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.visual-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(103,232,255,.12), transparent 44%),
    rgba(16, 22, 32, .76);
  border-radius: 30px;
  padding: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.visual {
  min-height: 430px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 52% 28%, rgba(103,232,255,.34), transparent 12rem),
    radial-gradient(circle at 38% 58%, rgba(255,94,120,.22), transparent 14rem),
    linear-gradient(145deg, #111824, #070a10);
  display: grid;
  place-items: center;
  position: relative;
}

.visual::before {
  content: "";
  width: 180px;
  height: 180px;
  border-radius: 42px;
  border: 1px solid rgba(103,232,255,.34);
  background:
    linear-gradient(135deg, rgba(255,255,255,.09), transparent),
    rgba(255,255,255,.035);
  transform: rotate(12deg);
  box-shadow: 0 0 70px rgba(103,232,255,.12);
}

.visual::after {
  content: "SoftSin Studios";
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(5,7,11,.72);
  color: var(--muted);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}

.section {
  margin-top: 24px;
}

.footer {
  color: var(--soft);
  text-align: center;
  padding: 36px 0 0;
  font-size: 13px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

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

@media (max-width: 940px) {
  .hero,
  .split {
    grid-template-columns: 1fr !important;
  }

  .topbar {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .visual {
    min-height: 300px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    letter-spacing: -1.8px;
  }
}
