:root{
  --bg:#000;
  --ink:#fff;
  --muted:#cfcfcf;
  --soft:#a9a9a9;

  --accent:#ff6a00;
  --accent-2:#ff3300;

  --card:#0f0f0f;
  --card-border:#181818;

  --ring: 0 0 18px rgba(255,106,0,.35);
  --shadow-inset: inset 0 0 24px rgba(255,106,0,.05);
  --shadow-card: 0 0 24px rgba(0,0,0,.35);
}

/* Base */
*{ box-sizing: border-box; }
html, body{ height:100%; }
body{
  margin:0; background:var(--bg); color:var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
}

/* Layout container */
.wrap{
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px 18px 48px;
}

/* Hero */
.hero{ text-align:center; }

.logo{
  display:block;
  margin: 5px auto 7px;
  width: min(370px, 88vw);
  height:auto;
  border-radius: 16px;
  filter:
    drop-shadow(0 0 6px rgba(255,255,255,.85))
    drop-shadow(0 0 18px rgba(246, 246, 245, 0.55))
    drop-shadow(0 6px 16px rgba(0,0,0,.7));
}

.title{
  margin: 6px 0 4px;
  font-weight: 800;
  letter-spacing: .2px;
  font-size: clamp(26px, 3.6vw, 42px);
}

.tagline{
  margin: 6px 0 18px;
  font-family: 'Audiowide', sans-serif;
  font-size: clamp(18px, 2.6vw, 26px);
  color: var(--accent);
  text-shadow: 0 0 10px var(--accent), 0 0 18px var(--accent-2);
}

.sub{
  margin: 0 auto 26px;
  color: var(--muted);
  font-size: clamp(15px, 2.1vw, 20px);
  max-width: 900px;
  line-height: 1.58;
}

/* CTA rows */
.cta-row{
  display:flex;
  justify-content:center;
  align-items:stretch;
  gap: 14px;
  flex-wrap: wrap;
  margin: 10px 0 6px;
}

.cta-row--bottom{ margin-top: 12px; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 260px;
  padding: 16px 24px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .2px;
  box-shadow: var(--ring);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, background .18s ease, color .18s ease;
}

.btn-primary{
  background: var(--accent);
  color: #000;
}
.btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 0 26px rgba(255,106,0,.6);
  filter: saturate(1.06);
}

.btn-ghost{
  background: #131313;
  color: #fff;
  border: 1px solid #222;
}
.btn-ghost:hover{
  border-color: var(--accent);
  box-shadow: 0 0 18px rgba(255,106,0,.35);
}

/* Dividers */
.sep{
  height: 1px;
  background: #161616;
  border: 0;
  margin: 26px 0;
}

/* Grid + Cards */
.grid{
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(12, 1fr);
}

.card{
  grid-column: span 12;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 22px 22px;
  box-shadow: var(--shadow-inset), var(--shadow-card);
}

.h3{
  margin: 6px 0 12px;
  font-size: 22px;
  letter-spacing: .2px;
}

.card p{ margin: 8px 0 0; color: #d4d4d4; line-height: 1.65; }

.list{
  margin: 8px 0 0;
  padding-left: 20px;
  color: #dcdcdc;
  line-height: 1.7;
}

@media (min-width: 820px){
  .card.half{ grid-column: span 6; }
}

.footer {
  background-color: #ff6600;
  text-align: center;
  padding: 10px;
}

.footer-slogan {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.footer-icons {
  margin-bottom: 10px;
}

.social-icon {
  width: 32px;
  height: 32px;
  margin: 0 6px;
  border-radius: 6px;
  background-color: #000;
  padding: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.08);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.footer-logo-wrap {
  margin-bottom: 10px;
}

.footer-logo {
  height: 55px;
  width: auto;
  opacity: 1.9;
}

.footer-copy {
  font-size: 0.9rem;
}
.footer-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  line-height: 0;      /* prevents stray text slivers from showing */
  font-size: 0;        /* collapses any accidental text nodes */
}

.footer-icons a {
  display: inline-flex;
  text-decoration: none !important;
  line-height: 0;
  font-size: 0;        /* ensures no text renders inside the anchor */
}

.footer a:focus { outline: none; } /* optional: remove blue focus outline */
.footer-copy a {
  color: inherit;
  text-decoration: none;
  transition: text-shadow 0.3s ease, color 0.3s ease;
}

.footer-copy a {
  color: inherit;
  text-decoration: none;
  transition: text-shadow 0.3s ease, color 0.3s ease;
}

.footer-copy a:hover {
  color: #000; /* turns text black on hover */
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.8),
               0 0 12px rgba(0, 0, 0, 0.6),
               0 0 20px rgba(0, 0, 0, 0.4);
}
