/* ==========================================================================
   INFINITE BJJ & MMA — Coming Soon page styles
   ========================================================================== */

:root {
  --blue:       #3D73CD;
  --blue-deep:  #2F5CAB;
  --blue-wash:  #EDF2FB;
  --gray:       #AEAFB1;
  --paper:      #FCFCFD;
  --line:       #E1E4E8;
  --ink:        #14181F;
  --ink-soft:   #5A6068;
  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --body:    "Public Sans", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* subtle texture / accent */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(61,115,205,.22) 0%, transparent 70%);
  pointer-events: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

/* ---------- layout -------------------------------------------------------- */

.cs-wrap {
  width: 100%;
  padding: clamp(32px, 6vw, 80px) clamp(20px, 5vw, 48px);
  display: flex;
  justify-content: center;
}

.cs-box {
  max-width: 640px;
  width: 100%;
  text-align: center;
}

/* ---------- logo ---------------------------------------------------------- */

.logo-wrap {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.logo-img {
  height: 140px;
  width: auto;
}

/* SVG fallback logo */
.logo-svg {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  text-decoration: none;
}

.logo-svg svg {
  width: 52px;
  height: 28px;
  flex-shrink: 0;
}

.logo-svg-text {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -.02em;
  line-height: 1.1;
  text-align: left;
}

.logo-svg-text span {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  color: var(--gray);
}

/* ---------- eyebrow ------------------------------------------------------- */

.eyebrow {
  font-family: var(--display);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  display: block;
}

/* ---------- heading ------------------------------------------------------- */

h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.06;
  letter-spacing: -.025em;
  color: var(--paper);
  margin: 0 0 8px;
}

.h1-loc {
  display: block;
  color: var(--gray);
  font-size: .68em;
  font-weight: 600;
  letter-spacing: -.01em;
  margin-top: 6px;
}

/* ---------- body text ----------------------------------------------------- */

.tagline {
  font-size: 1.05rem;
  color: rgba(252,252,253,.72);
  margin: 24px 0 0;
  line-height: 1.72;
}

.soon-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 28px 0 0;
  padding: 7px 16px;
  border: 1px solid rgba(61,115,205,.5);
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.soon-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}

/* ---------- divider ------------------------------------------------------- */

.divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.1);
  margin: 40px 0;
}

/* ---------- contact grid -------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

@media (max-width: 480px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  transition: background .2s var(--ease), border-color .2s var(--ease);
  text-decoration: none;
  color: var(--paper);
}

.contact-item:hover {
  background: rgba(61,115,205,.15);
  border-color: rgba(61,115,205,.4);
}

.contact-item svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
  flex-shrink: 0;
}

.contact-item-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
}

.contact-item-value {
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

/* ---------- social -------------------------------------------------------- */

.social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 99px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--paper);
  text-decoration: none;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}

.social-link:hover {
  background: rgba(61,115,205,.18);
  border-color: rgba(61,115,205,.5);
}

.social-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
