* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0e0f11;
  --fg: #ffffff;
  --fg-muted: #b5b5b5;
  --card-bg: #1a1b1e;
  --accent: #925bec;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(0,0,0,0.25);
}

body {
  background: radial-gradient(circle at top, #141416, #0e0f11 60%);
  color: var(--fg);
  font-family: system-ui, sans-serif;
  padding: 1rem 1rem;
  max-width: 900px;
  margin: auto;
}

.logo { width: clamp(140px, 22vw, 280px); height: auto; fill: white; margin-bottom: clamp(-7.00rem, -10vw, -1.95rem);}

.hero {
  text-align: center;
  margin-bottom: 4rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.subtitle {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  color: var(--fg-muted);
}

.products {
  display: grid;
  gap: 2rem;
}

.product {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

.product.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.footer {
  margin-top: 4rem;
  padding: 2rem 0;
  text-align: center;
  color: var(--fg-muted);
  font-size: 0.9rem;
  border-top: 1px solid #2a2a2d;
}

.footer a {
  color: var(--accent);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 6px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.footer-socials svg,
.footer-socials img {
  width: 18px;
  height: 18px;
}

.social-simplex svg {
  fill: #69dffa;
}

.social-xtwitter svg {
  fill: #ffffff;
}

.social-github svg {
  fill: #ffffff;
}

.social-discord svg {
  fill: #5865F2;
}

.social-bluesky svg {
  fill: #1185FE;
}

.social-matrix svg {
  fill: white;
}

.social-youtube svg {
  fill: #FF0000;
}

.social-stoat svg {
  fill: rgb(140,36,236);
}

.social-reddit svg {
  fill: #FF4500;
}

.social-tiktok svg {
  fill: white;
}

.social-instagram svg {
  fill: #FF0069;
}

.social-mastodon svg {
  fill: #6364FF;
}

.social-kofi svg {
  fill: #FF6433;
}

.social-buymeacoffee svg {
  fill: #FFDD00;
}

.social-patreon svg {
  fill: white;
}

.social-fluxer svg {
  fill: #4641D9;
}

.sub-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.sub-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  background: whitesmoke;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.product-details {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

.detail-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

.visit-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.visit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.visit-card h2 {
  margin-bottom: 0.5rem;
  color: #fff;
}

.visit-card p {
  margin-bottom: 1.25rem;
  color: #ccc;
}

.visit-link {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background: #2a2a32;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}

.visit-link:hover {
  background: #151515;
}

.brand-hero {
  text-align: center;
  padding: 4rem 1rem 2rem;
}

.brand-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.brand-hero .subtitle {
  font-size: 1.2rem;
  opacity: 0.8;
}

.brand-section {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
  padding: 2rem 1rem;
}

.brand-logo-preview {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.brand-logo-preview img {
  max-width: 180px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 4px rgba(0,0,0,0.15));
}

.brand-logo-preview img[src*="white"] {
  background: #1e1e2f;
  padding: 1rem;
  border-radius: 12px;
}

.brand-downloads {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.brand-downloads a {
  padding: 0.55rem 1.2rem;
  background: #34629D;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}

.brand-downloads a:hover {
  background: #2b4f7c;
}

.brand-colors {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.color-swatch {
  width: 180px;
  height: 150px;
  background: var(--color);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  font-weight: 600;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.color-swatch span {
  font-size: 0.95rem;
}

.color-swatch small {
  font-size: 0.8rem;
  opacity: 0.85;
}

.brand-rules {
  list-style: none;
  padding: 0;
  margin: 1rem auto;
  max-width: 600px;
  text-align: left;
}

.brand-rules li {
  margin: 0.6rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.brand-rules li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #34629D;
  font-size: 1.2rem;
}

.presskit-button {
  padding: 0.75rem 1.5rem;
  background: #34629D;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
  transition: background 0.2s ease;
}

.presskit-button:hover {
  background: #2b4f7c;
}

.brand-section p a {
  color: #34629D;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.brand-section p a:hover {
  color: #F0A42B;
  border-color: #F0A42B;
}

