/* ============================================================
   DESIGN SYSTEM V2 — TheBigs.AI Premium White
   Shared Stylesheet
   ============================================================ */
:root {
  --red: #c0392b;
  --red-hover: #d63031;
  --red-light: rgba(192,57,43,0.06);
  --navy: #1f1c54;
  --bg: #fbfbfd;
  --surface: #f5f5f7;
  --white: #ffffff;
  --text: #1d1d1f;
  --text-secondary: #6e6e73;
  --muted: #86868b;
  --border: rgba(0,0,0,0.08);
  --green: #34c759;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.12);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: var(--bg); color: var(--text); font-size: 17px; line-height: 1.47;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
*:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 4px; }

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--red), var(--navy));
  z-index: 1100; transition: width 0.05s linear;
  pointer-events: none;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 52px; display: flex; align-items: center;
  padding: 0 clamp(20px, 4vw, 40px);
  background: rgba(251,251,253,0.88); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 0.5px 0 rgba(0,0,0,0.1);
}
.nav__inner {
  max-width: 1080px; width: 100%; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo img { height: 36px; width: auto; display: block; transition: opacity 0.3s; }
.nav__logo:hover img { opacity: 0.7; }
.nav__center { display: flex; align-items: center; gap: 4px; }
.nav__link {
  font-size: 14px; font-weight: 500; color: var(--text);
  padding: 6px 16px; border-radius: 980px; position: relative;
  transition: color 0.2s, background 0.2s; letter-spacing: -0.01em;
}
.nav__link:hover { color: var(--text); background: rgba(0,0,0,0.04); }
.nav__link.active { color: var(--text); background: rgba(0,0,0,0.06); font-weight: 600; }
.nav__right { display: flex; align-items: center; gap: 8px; }
.nav__store {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 980px;
  border: 1px solid var(--border); background: var(--white);
  font-size: 11px; font-weight: 500; color: var(--text);
  transition: all 0.3s var(--ease); box-shadow: var(--shadow-xs);
}
.nav__store:hover { border-color: var(--red); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.nav__store svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav__store-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav__store-text small { font-size: 7px; font-weight: 400; color: var(--muted); text-transform: uppercase; letter-spacing: 0.3px; }
.nav__store-text span { font-size: 11px; font-weight: 600; }
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; background: none; border: none; cursor: pointer; z-index: 1001;
}
.nav__hamburger span {
  display: block; width: 20px; height: 1.5px; background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }
.nav__mobile {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(251,251,253,0.97); backdrop-filter: blur(40px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; z-index: 999;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 28px; font-weight: 600; color: var(--text);
  padding: 12px 24px; border-radius: 12px; transition: background 0.2s;
}
.nav__mobile a:hover { background: rgba(0,0,0,0.04); }
.nav__mobile-stores { display: flex; gap: 12px; margin-top: 32px; }
@media (max-width: 768px) {
  .nav__center, .nav__right .nav__store { display: none; }
  .nav__hamburger { display: flex; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 980px; font-size: 15px; font-weight: 600;
  letter-spacing: -0.01em; cursor: pointer; border: none;
  transition: all 0.3s var(--ease); position: relative; overflow: hidden;
}
.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: rgba(255,255,255,0); transition: background 0.3s;
}
.btn:active::after { background: rgba(255,255,255,0.15); }
.btn--red { background: var(--red); color: #fff; box-shadow: 0 2px 8px rgba(192,57,43,0.2); }
.btn--red:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(192,57,43,0.3); }
.btn--red:active { transform: translateY(0); }
.btn--navy { background: var(--navy); color: #fff; box-shadow: 0 2px 8px rgba(31,28,84,0.2); }
.btn--navy:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(31,28,84,0.3); }
.btn--outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn--outline:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }

/* Large store buttons */
.store-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 14px;
  background: var(--text); color: #fff; font-size: 13px; font-weight: 600;
  transition: all 0.3s var(--ease); box-shadow: var(--shadow-md);
}
.store-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.store-btn:active { transform: translateY(-1px); }
.store-btn svg { width: 24px; height: 24px; flex-shrink: 0; }
.store-btn__text { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.store-btn__text small { font-size: 10px; font-weight: 400; opacity: 0.75; }
.store-btn__text span { font-size: 17px; font-weight: 700; }

/* ============================================================
   LAYOUT
   ============================================================ */
.section { padding: 120px clamp(20px, 5vw, 40px); }
.section--surface { background: var(--surface); }
.container { max-width: 1080px; margin: 0 auto; width: 100%; }
.section-label {
  display: block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--red);
  margin-bottom: 12px; text-align: center;
}
.text-center { text-align: center; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ============================================================
   OVERVIEW & CAPABILITIES (shared: home, athlete, coach)
   ============================================================ */
.overview { padding: 120px clamp(20px, 5vw, 40px); background: var(--white); }
.overview__heading {
  font-size: clamp(28px, 4.5vw, 48px); font-weight: 700; line-height: 1.1;
  letter-spacing: -0.025em; margin-bottom: 16px; text-align: center;
}
.overview__sub {
  font-size: 17px; color: var(--text-secondary); max-width: 580px;
  margin: 0 auto 64px; text-align: center; line-height: 1.5;
}
.capabilities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1080px; margin: 0 auto; }
.cap-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px 24px;
  transition: all 0.4s var(--ease); cursor: default;
}
.cap-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.cap-card__icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.cap-card__icon svg { width: 24px; height: 24px; }
.cap-card__icon--red { background: var(--red-light); }
.cap-card__icon--red svg { stroke: var(--red); fill: none; stroke-width: 1.5; }
.cap-card__icon--navy { background: rgba(31,28,84,0.06); }
.cap-card__icon--navy svg { stroke: var(--navy); fill: none; stroke-width: 1.5; }
.cap-card__icon--green { background: rgba(52,199,89,0.08); }
.cap-card__icon--green svg { stroke: var(--green); fill: none; stroke-width: 1.5; }
.cap-card__icon--dark { background: rgba(29,29,31,0.06); }
.cap-card__icon--dark svg { stroke: var(--text); fill: none; stroke-width: 1.5; }
.cap-card__title { font-size: 17px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
.cap-card__desc { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }

/* ============================================================
   GET TO KNOW — Apple-Style Expandable Cards (shared: home, athlete, coach)
   ============================================================ */
.gtk {
  padding: 120px clamp(20px, 5vw, 40px) 140px;
  background: var(--surface);
  overflow: hidden;
}
.gtk__inner { max-width: 1080px; margin: 0 auto; }
.gtk__label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--red); margin-bottom: 12px;
  display: inline-block;
}
.gtk__heading {
  font-size: clamp(28px, 4.5vw, 48px); font-weight: 700;
  line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 48px;
  color: var(--text);
}
.gtk__cards-wrapper { position: relative; width: 100vw; margin-left: calc(-50vw + 50%); }
.gtk__cards {
  display: flex; gap: 16px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; cursor: grab;
  padding: 12px max(clamp(20px, 5vw, 40px), calc((100vw - 1080px) / 2)) 12px max(clamp(20px, 5vw, 40px), calc((100vw - 1080px) / 2));
}
.gtk__cards:active { cursor: grabbing; }
.gtk__cards::-webkit-scrollbar { display: none; }
.gtk__card {
  flex: 0 0 400px; border-radius: 20px; overflow: hidden;
  background: #1d1d1f; color: #fff; position: relative;
  cursor: pointer; transition: transform 0.3s var(--ease);
}
.gtk__card:hover { transform: scale(1.02); }
.gtk__card-collapsed {
  position: relative; height: 680px;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.gtk__card-text { padding: 28px 24px 0; position: relative; z-index: 2; text-shadow: 0 1px 6px rgba(0,0,0,0.6); }
.gtk__card-category { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #d4a017; margin-bottom: 6px; }
.gtk__card-title { font-size: 22px; font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; color: #fff; }
.gtk__card-plus {
  position: absolute; bottom: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: none; cursor: pointer; display: flex;
  align-items: center; justify-content: center; z-index: 3;
  transition: all 0.25s var(--ease);
}
.gtk__card-plus:hover { background: rgba(255,255,255,0.25); transform: scale(1.1); }
.gtk__card-plus svg { width: 18px; height: 18px; stroke: #fff; stroke-width: 2; transition: transform 0.3s var(--ease); }
.gtk__expanded {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease);
}
.gtk__expanded.active { opacity: 1; pointer-events: all; }
.gtk__expanded-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.gtk__expanded-content {
  position: relative; width: 90%; max-width: 980px; max-height: 90vh;
  border-radius: 24px; overflow: hidden;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.45s var(--ease-out);
  box-shadow: 0 32px 80px rgba(0,0,0,0.2);
}
.gtk__expanded.active .gtk__expanded-content { transform: scale(1) translateY(0); }
.gtk__expanded-scroll { background: var(--surface); max-height: 90vh; overflow-y: auto; scrollbar-width: thin; scrollbar-color: rgba(0,0,0,0.15) transparent; }
.gtk__expanded-scroll::-webkit-scrollbar { width: 6px; }
.gtk__expanded-scroll::-webkit-scrollbar-track { background: transparent; }
.gtk__expanded-scroll::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 3px; }
.gtk__expanded-close {
  position: sticky; top: 16px; float: right; margin: 16px 16px 0 0;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.06); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: background 0.2s;
}
.gtk__expanded-close:hover { background: rgba(0,0,0,0.12); }
.gtk__expanded-close svg { width: 16px; height: 16px; stroke: var(--text); stroke-width: 2.5; }
.gtk__expanded-header { padding: 48px 56px 0; }
.gtk__expanded-category { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--red); margin-bottom: 6px; }
.gtk__expanded-title { font-size: clamp(28px, 4vw, 44px); font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; color: var(--text); margin-bottom: 20px; }
.gtk__expanded-body { padding: 0 56px; }
.gtk__expanded-desc { font-size: 17px; line-height: 1.47; color: var(--text-secondary); max-width: 640px; }
.gtk__expanded-image { padding: 40px 56px 56px; display: flex; justify-content: center; }
.gtk__expanded-image img { width: 100%; max-width: 480px; border-radius: 12px; box-shadow: 0 16px 48px rgba(0,0,0,0.1); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 56px clamp(20px, 5vw, 40px) 28px;
}
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; max-width: 1080px; margin: 0 auto 40px; }
.footer__logo img { height: 32px; width: auto; margin-bottom: 14px; }
.footer__desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; max-width: 260px; }
.footer__heading { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; color: var(--text); }
.footer__link { display: block; font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; transition: color 0.2s; }
.footer__link:hover { color: var(--red); }
.footer__newsletter-label { font-size: 14px; margin-bottom: 14px; color: var(--text-secondary); }
.footer__newsletter-label strong { color: var(--text); }
.footer__form { display: flex; gap: 8px; }
.footer__input {
  flex: 1; padding: 10px 16px; background: var(--white);
  border: 1px solid var(--border); border-radius: 980px;
  color: var(--text); font-size: 13px; outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.footer__input::placeholder { color: var(--muted); }
.footer__input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,57,43,0.08); }
.footer__submit {
  padding: 10px 20px; background: var(--red); border: none;
  border-radius: 980px; color: #fff; font-size: 12px; font-weight: 600;
  cursor: pointer; transition: all 0.3s var(--ease);
}
.footer__submit:hover { background: var(--red-hover); transform: translateY(-1px); }
.footer__bottom { border-top: 1px solid var(--border); padding-top: 20px; max-width: 1080px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer__copy { font-size: 11px; color: var(--muted); }
.footer__social { display: flex; gap: 16px; align-items: center; }
.footer__social a { color: var(--muted); transition: color 0.2s; }
.footer__social a:hover { color: var(--red); }
.footer__social svg { width: 16px; height: 16px; }
.footer__email { font-size: 12px; color: var(--text-secondary); transition: color 0.2s; }
.footer__email:hover { color: var(--red); }

/* ============================================================
   SHARED RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 80px 20px; }
  .capabilities { grid-template-columns: 1fr; }
  .gtk { padding: 80px clamp(20px, 5vw, 40px); }
  .gtk__card { flex: 0 0 300px; }
  .gtk__card-collapsed { height: 560px; }
  .gtk__expanded-header { padding: 40px 32px 0; }
  .gtk__expanded-body { padding: 0 32px; }
  .gtk__expanded-image { padding: 32px; }
  .footer { padding: 40px 20px 20px; }
  .footer__grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .footer__desc { font-size: 12px; max-width: none; }
  .footer__form { flex-direction: column; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer__grid > :first-child { grid-column: 1 / -1; }
  .footer__grid > :last-child { grid-column: 1 / -1; }
  .footer__newsletter-label { font-size: 12px; }
  .footer__bottom { flex-wrap: wrap; justify-content: center; gap: 12px; text-align: center; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  position: relative; width: 100%; height: 70vh; min-height: 480px; overflow: hidden;
}
.contact-hero__img {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.contact-hero__overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3)); z-index: 1;
}
.contact-hero__title {
  position: absolute; bottom: 48px; left: 40px; z-index: 2;
  font-family: acumin-pro-condensed, sans-serif;
  font-size: clamp(36px, 6vw, 72px); font-weight: 800;
  color: #fff; line-height: 1; text-transform: uppercase;
}
.contact-intro { padding: 60px 40px; background: var(--bg); text-align: center; }
.contact-intro h2 {
  font-size: clamp(28px, 4.5vw, 48px); font-weight: 700;
  margin-bottom: 16px; line-height: 1.1; letter-spacing: -0.025em; color: var(--text);
}
.contact-intro p {
  font-size: 16px; color: var(--text-secondary);
  max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.7;
}
.contact-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  max-width: 1000px; margin: 0 auto; padding: 80px 40px 100px;
}
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.contact-form-group { display: flex; flex-direction: column; }
.contact-form label {
  font-size: 13px; font-weight: 600; color: var(--text);
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 16px; border: 1px solid var(--border); border-radius: 12px;
  font-size: 15px; color: var(--text); background: #fff;
  font-family: inherit; outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,57,43,0.08);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d1d1f' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 40px;
}
.contact-form .btn--red { width: 100%; margin-top: 12px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  background: #fff; border: 1px solid var(--border); border-radius: 24px;
  padding: 32px; box-shadow: var(--shadow-sm); transition: all 0.3s var(--ease);
}
.contact-card:hover { border-color: var(--red); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.contact-card__icon {
  width: 44px; height: 44px; background: var(--red-light);
  border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.contact-card__icon svg { width: 24px; height: 24px; stroke: var(--red); fill: none; stroke-width: 1.5; }
.contact-card h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.contact-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }
.contact-card a { color: var(--red); font-weight: 600; }
.contact-card a:hover { text-decoration: underline; }
@media (max-width: 768px) {
  .contact-hero__title { bottom: 32px; left: 20px; }
  .contact-intro { padding: 40px 20px; }
  .contact-content { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px 80px; }
}

/* ============================================================
   FOOTER BOTTOM LEFT GROUP
   ============================================================ */
.footer__bottom-left {
  display: flex; align-items: center; gap: 20px;
}

/* ============================================================
   COMING SOON MODAL (shared across all product pages)
   ============================================================ */
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
.cs-modal {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 10000; background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
}
.cs-modal__box {
  background: linear-gradient(135deg, #0a1628 0%, #132040 100%);
  border: 1px solid rgba(59,130,246,0.3); border-radius: 16px;
  padding: 40px; max-width: 420px; width: 90%; text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5); animation: modalIn 0.3s ease;
}
.cs-modal__icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: rgba(59,130,246,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cs-modal__title {
  font-family: acumin-pro-condensed, -apple-system, sans-serif;
  font-size: 28px; font-weight: 800; text-transform: uppercase;
  color: #fff; margin-bottom: 8px; letter-spacing: -0.02em;
}
.cs-modal__desc {
  color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.5; margin-bottom: 24px;
}
.cs-modal__cta {
  display: inline-block; padding: 12px 32px; background: #3b82f6;
  color: #fff; border-radius: 8px; text-decoration: none;
  font-weight: 600; font-size: 14px; transition: background 0.2s;
}
.cs-modal__cta:hover { background: #2563eb; }
.cs-modal__dismiss {
  display: block; margin: 16px auto 0; background: none; border: none;
  color: rgba(255,255,255,0.4); font-size: 13px; cursor: pointer;
}
.cs-modal__dismiss:hover { color: rgba(255,255,255,0.6); }
