/* =====================================================
   MNCC BASE RESET
   One file. One source of truth.
===================================================== */

/* ---------------------
   ROOT VARIABLES
--------------------- */
:root{
  --bg:#f3f4f6;
  --card:#ffffff;
  --text:#1f2937;
  --muted:#4b5563;
  --green:#22c55e;
  --green-soft:#22c55e22;
  --danger:#dc2626;

  --radius:18px;
  --shadow:0 10px 30px rgba(15,23,42,0.08);

  --max-content:1150px;   /* ← CHANGE THIS TO WIDEN PAGE */
  --max-card:980px;       /* ← CHANGE THIS TO WIDEN CARDS */
}

/* ---------------------
   GLOBAL RESET / WP FIX
--------------------- */
body{
  margin:0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--text);
  background:var(--bg);
  overflow-x:hidden;
}

.wp-site-blocks,
.site-content,
.content-area,
.entry-content,
.wp-block-group,
.wp-block-group__inner-container{
  max-width:none !important;
  width:100% !important;
  padding:0 !important;
  margin:0 !important;
}

/* =====================================================
   HEADER (CLEAN + STABLE)
===================================================== */

.mncc-header-wrap{
  width:100%;
  background:linear-gradient(135deg,#16a34a,#22c55e);
  position:sticky;
  top:0;
  z-index:999;
  box-shadow:0 6px 14px rgba(15,23,42,0.18);
}

.mncc-header{
  max-width:1250px;
  margin:0 auto;
  padding:0.45rem 1.5rem;
  height:60px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  color:#ecfdf5;
}

.mncc-header a{
  color:inherit;
  text-decoration:none;
}

/* Logo */
.mncc-header-left{
  display:flex;
  align-items:center;
  gap:.5rem;
}

.mncc-logo-img{ height:48px; }

/* Nav */
.mncc-header-nav{
  display:flex;
  gap:1.1rem;
  font-size:.8rem;
}

.mncc-header-nav a{ opacity:.9; }
.mncc-header-nav a:hover{ opacity:1; }

/* CTA */
.mncc-header-cta{
  padding:.45rem .9rem;
  border-radius:999px;
  background:rgba(15,23,42,.85);
  font-size:.8rem;
}

/* Mobile */
@media(max-width:850px){
  .mncc-header-nav,
  .mncc-header-cta{ display:none; }
}

/* =====================================================
   PAGE WIDTH SYSTEM (SIMPLE)
===================================================== */

.mncc-section{
  width:100%;
  padding:2.5rem 1.5rem;
  display:flex;
  justify-content:center;
}

.mncc-inner{
  width:100%;
  max-width:var(--max-content);
}

/* =====================================================
   CARD BASE
===================================================== */

.mncc-card{
  width:100%;
  max-width:var(--max-card);
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  border:1px solid rgba(148,163,184,.35);
  padding:2rem;
  position:relative;
}

/* =====================================================
   COMING SOON — COUNTDOWN
===================================================== */

.tt-pill{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.25rem .7rem;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.6);
  background:#f9fafb;
  font-size:.72rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
}

.tt-title{
  margin:.75rem 0 .4rem;
  font-size:clamp(2rem,3vw,2.6rem);
  font-weight:700;
  letter-spacing:-.03em;
}

.tt-subtitle{
  font-size:.95rem;
  color:var(--muted);
  margin-bottom:1.5rem;
}

.tt-timer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:.9rem;
}

.tt-time-box{
  background:#f9fafb;
  border:1px solid #d1d5db;
  border-radius:14px;
  padding:.9rem;
  text-align:center;
}

.tt-time-value{
  font-size:1.6rem;
  font-weight:700;
}

.tt-time-label{
  font-size:.7rem;
  letter-spacing:.18em;
  color:var(--muted);
}

.tt-progress{
  margin-top:1.5rem;
}

.tt-progress-bar{
  height:7px;
  background:#e5e7eb;
  border-radius:999px;
  overflow:hidden;
}

.tt-progress-fill{
  height:100%;
  width:0%;
  background:linear-gradient(90deg,var(--green),#4ade80);
}

/* =====================================================
   QUICK BRIEFING
===================================================== */

.tt-brief-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1rem;
}

.tt-brief-tile{
  background:#f9fafb;
  border:1px solid #d1d5db;
  border-radius:14px;
  padding:1rem;
}

.tt-brief-tile-title{
  font-weight:700;
  margin-bottom:.25rem;
}

.tt-brief-tile-text{
  font-size:.85rem;
  color:var(--muted);
}

/* =====================================================
   SIGNUP
===================================================== */

.tt-form{
  display:grid;
  grid-template-columns:1.5fr 1fr;
  gap:.9rem;
}

.tt-input{
  padding:.6rem .7rem;
  border-radius:10px;
  border:1px solid #d1d5db;
  background:#f9fafb;
}

.tt-submit{
  border-radius:999px;
  border:none;
  background:linear-gradient(135deg,var(--green),#16a34a);
  color:white;
  font-weight:600;
  cursor:pointer;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:900px){
  .tt-timer-grid{ grid-template-columns:repeat(2,1fr); }
  .tt-brief-grid{ grid-template-columns:1fr; }
  .tt-form{ grid-template-columns:1fr; }
}

/* =========================
MNCC — HARD OVERRIDES (LOCK STYLES)
Purpose: Prevent theme / Gutenberg from neutering forms
========================= */

.tt-subscribe-wrapper *,
.tt-brief-wrapper *,
.tt-countdown-wrapper * {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* FORCE BUTTON STYLES */
.tt-subscribe-wrapper button,
.tt-subscribe-wrapper .tt-role-btn,
.tt-subscribe-wrapper .tt-submit-btn {
  appearance: none;
  -webkit-appearance: none;
  border: none !important;
  background: none;
}

/* ROLE TOGGLE */
.tt-role-toggle {
  display: inline-flex !important;
  padding: 0.22rem !important;
  border-radius: 999px !important;
  background: #e5e7eb !important;
  border: 1px solid #d1d5db !important;
}

.tt-role-btn {
  padding: 0.45rem 0.95rem !important;
  border-radius: 999px !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  color: #4b5563 !important;
}

.tt-role-btn.tt-role-active {
  background: #ffffff !important;
  color: #065f46 !important;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12) !important;
}

/* INPUTS */
.tt-input {
  width: 100% !important;
  padding: 0.55rem 0.7rem !important;
  border-radius: 10px !important;
  border: 1px solid #d1d5db !important;
  background: #f9fafb !important;
  font-size: 0.9rem !important;
}

.tt-input:focus {
  border-color: #22c55e !important;
  box-shadow: 0 0 0 1px rgba(34,197,94,.25) !important;
  background: #ffffff !important;
  outline: none !important;
}

/* SUBMIT BUTTON */
.tt-submit-btn {
  background: linear-gradient(135deg, #22c55e, #16a34a) !important;
  color: #f9fafb !important;
  font-weight: 600 !important;
  border-radius: 999px !important;
  padding: 0.7rem 1rem !important;
  cursor: pointer !important;
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.35) !important;
}
