:root{
  --bg:#ffffff;
  --text:#0b0b0f;
  --muted:#5a5a66;
  --muted2:#8a8a96;

  --accent:#111111;         /* Nike-style: mostly black */
  --accent2:#E9631A;        /* GETTO orange for emphasis only */

  --soft:#f5f5f7;
  --soft2:#efeff3;

  --radius:22px;
  --pill:999px;
  --max:1120px;

  --shadow1: 0 10px 30px rgba(0,0,0,.08);
  --shadow2: 0 18px 50px rgba(0,0,0,.10);
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans";
  background: var(--bg);
  color: var(--text);
  line-height:1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}

/* =========================
   TOPBAR (white, clean)
========================= */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:70px;
}

/* Brand */
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  letter-spacing:.4px;
}
.brand-mark{
  width:34px;
  height:34px;
  border-radius:12px;
  background:#111;
}
.brand-name{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brand-name span:first-child{font-size:14px}
.brand-name span:last-child{
  font-size:11px;
  color:var(--muted2);
  font-weight:750;
}

/* Nav menu */
.menu{
  display:flex;
  gap:14px;
  align-items:center;
}
.menu a{
  padding:10px 8px;
  color:var(--muted);
  font-weight:800;
  letter-spacing:.2px;
}
.menu a:hover{color:var(--text)}
.menu a.active{color:var(--text)}

.actions{
  display:flex;
  gap:10px;
  align-items:center;
}

/* =========================
   BUTTONS (Nike-ish)
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius: var(--pill);
  border:0;
  background: var(--soft);
  color: var(--text);
  font-weight:900;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
}
.btn:hover{
  transform: translateY(-1px);
  background: var(--soft2);
  box-shadow: var(--shadow1);
}
.btn.primary{
  background:#111;
  color:#fff;
}
.btn.primary:hover{
  background:#000;
  box-shadow: var(--shadow2);
}
.btn.ghost{
  background: transparent;
}
.btn.ghost:hover{
  background: var(--soft);
  box-shadow: var(--shadow1);
}
.btn.small{
  padding:10px 14px;
  font-size:14px;
}

/* Pills */
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius: var(--pill);
  background: var(--soft);
  color: var(--muted);
  font-weight:900;
  font-size:12px;
  letter-spacing:.2px;
}

/* =========================
   GLOBAL CARDS
========================= */
.card{
  border-radius: 26px;
  background:#fff;
  box-shadow: var(--shadow1);
  padding:18px;
}
.card h3{
  margin:0 0 8px;
  font-size:16px;
  letter-spacing:-.2px;
}
.card p{
  margin:0;
  color: var(--muted);
  font-weight:750;
}
.card .meta{
  margin-top:14px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

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

.feature{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}

/* Embed blocks */
.embed{
  border-radius: 26px;
  background:#fff;
  box-shadow: var(--shadow1);
  padding:16px;
  min-height: 180px;
}
.embed .label{
  color: var(--muted2);
  font-weight:950;
  font-size:12px;
  letter-spacing:.2px;
  margin-bottom:8px;
}
.placeholder{
  border-radius: 18px;
  background: var(--soft);
  padding:14px;
  color: var(--muted);
  font-size:14px;
  font-weight:750;
}

/* Hero card used in CTA sections */
.hero-card{
  border-radius: 32px;
  background:
    radial-gradient(900px 500px at 10% 10%, rgba(233,99,26,.10), transparent 55%),
    radial-gradient(700px 420px at 90% 30%, rgba(0,0,0,.05), transparent 60%),
    #fff;
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.hero-inner{padding: 26px}

/* Typography helpers */
.lede{
  color: var(--muted);
  font-weight: 750;
}

/* =========================
   FORMS
========================= */
.form{
  display:grid;
  gap:12px;
  padding:18px;
  border-radius: 26px;
  background:#fff;
  box-shadow: var(--shadow1);
}
.row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.field{display:grid; gap:6px}
label{
  font-size:12px;
  color: var(--muted2);
  font-weight:950;
  letter-spacing:.2px;
}
input, select, textarea{
  width:100%;
  padding:13px 12px;
  border-radius: 16px;
  border:0;
  background: var(--soft);
  color: var(--text);
  outline:none;
  font-weight:800;
}
textarea{min-height:110px; resize:vertical}
input:focus, select:focus, textarea:focus{
  background: #ededf2;
  box-shadow: 0 0 0 4px rgba(0,0,0,.07);
}

/* =========================
   FOOTER
========================= */
.footer{
  padding:34px 0 44px;
  margin-top: 28px;
  background:#fff;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:12px;
}
.footer small{
  color: var(--muted2);
  font-weight:750;
}
.socials{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.socials a{
  padding:10px 14px;
  border-radius: var(--pill);
  background: var(--soft);
  font-weight:900;
  color: var(--text);
}
.socials a:hover{
  background: var(--soft2);
  box-shadow: var(--shadow1);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 920px){
  .grid-3{grid-template-columns:1fr}
  .feature{grid-template-columns:1fr}
  .row{grid-template-columns:1fr}
  .menu{display:none}
}