/**
 * Court Warrior launch front end — the three doors.
 * Self-contained: loaded only on the launch homepage and the Organizations
 * gateway (see CWX_Front::assets). Owns nothing outside `.cwl`.
 *
 * Design language: Court Warrior ink #101113, gold #ffd100, warm paper.
 * Oswald (condensed, jersey) for display; Archivo for body; Plex Mono for data.
 * Every media box is sized so the page never lurches while it loads.
 */

.cwl{
	--ink:#101113; --paper:#f6f5f2; --card:#ffffff; --line:#e4e2db;
	--muted:#6b6f76; --muted-2:#8a8e95; --gold:#ffd100; --gold-deep:#b98f00; --band:#eceae3;
	--disp:"Oswald",Impact,"Arial Narrow Bold",sans-serif;
	--body:"Archivo","Helvetica Neue",Arial,sans-serif;
	--mono:"IBM Plex Mono",ui-monospace,Menlo,monospace;
	--maxw:1180px; --pad:24px;
	font-family:var(--body); color:var(--ink); line-height:1.6;
	-webkit-font-smoothing:antialiased;
}
/* Break out of the theme's constrained content column to full width, safely. */
.cwl-page .ast-container,
.cwl-page .site-content .ast-container,
.cwl-page .entry-content,
.cwl-page .ast-article-single{ padding-left:0; padding-right:0; max-width:100%; }
.cwl-page .site-content{ overflow-x:clip; }
.cwl{ width:100%; max-width:100%; margin-left:0; margin-right:0; }
/* Legacy premium homepage (mu-plugin renders #cw-top/#cw-bot on the front page) is superseded by this launch home; hide it on launch pages. Proper fix: disable that renderer at the source. */
.cwl-page #cw-top,
.cwl-page #cw-bot{ display:none !important; }
.cwl *{ box-sizing:border-box; }
.cwl img{ max-width:100%; display:block; }
.cwl .cwl-in{ max-width:var(--maxw); margin:0 auto; padding-left:var(--pad); padding-right:var(--pad); }
.cwl h1,.cwl h2,.cwl h3{ font-family:var(--disp); text-transform:uppercase; line-height:1.03; margin:0; text-wrap:balance; }
.cwl p{ margin:0; }
.cwl a{ color:inherit; text-decoration:none; }
.cwl .y{ color:var(--gold); }
.cwl-eyebrow{ font-family:var(--disp); font-weight:600; text-transform:uppercase; letter-spacing:.2em; font-size:12px; color:var(--gold-deep); margin:0; }

/* ---------- buttons ---------- */
.cwl-btn{ display:inline-flex; align-items:center; gap:9px; font-family:var(--disp); font-weight:600;
	text-transform:uppercase; letter-spacing:.05em; font-size:15px; padding:15px 26px; border-radius:100px;
	border:1.5px solid transparent; transition:transform .14s ease, background .14s ease, color .14s ease; cursor:pointer; }
.cwl-btn:hover{ transform:translateY(-1px); }
.cwl-btn--gold{ background:var(--gold); color:#101113; }
.cwl-btn--gold:hover{ background:#ffdb33; }
.cwl-btn--dark{ background:var(--ink); color:#fff; }
.cwl-btn--dark:hover{ background:#000; }
.cwl-btn--ghost{ background:transparent; color:#f3f2ee; border-color:rgba(255,255,255,.28); }
.cwl-btn--ghost:hover{ border-color:var(--gold); color:var(--gold); }
.cwl-btn--ghost-light{ background:transparent; color:#f3f2ee; border-color:rgba(255,255,255,.28); }
.cwl-btn--ghost-light:hover{ border-color:var(--gold); color:var(--gold); }

/* ---------- HERO ---------- */
.cwl-hero{ background:var(--ink); color:#f3f2ee; padding:76px 0 104px;
	background-image:radial-gradient(120% 90% at 82% -10%, rgba(255,209,0,.14), transparent 60%); }
.cwl-hero__h{ font-size:clamp(40px,6.6vw,78px); font-weight:700; color:#f6f5f2; margin:18px 0 0; max-width:15ch; }
.cwl-hero__p{ font-family:var(--body); text-transform:none; font-size:clamp(16px,1.9vw,19px); color:#c2c7cd;
	max-width:52ch; margin:22px 0 0; line-height:1.55; }
.cwl-hero__cta{ display:flex; flex-wrap:wrap; gap:14px; margin:30px 0 0; }
.cwl-hero__trust{ font-family:var(--body); text-transform:none; margin:24px 0 0; font-size:14px; color:#9aa0a8; }
.cwl-hero__trust b{ color:#f3f2ee; }
.cwl-hero__trust a{ color:var(--gold); }
.cwl-hero--org{ padding-bottom:52px; }

/* ---------- TWO PRIMARY DOORS ---------- */
.cwl-doors{ background:var(--paper); padding:0 0 44px; }
.cwl-doorgrid{ display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-top:-64px; position:relative; z-index:2; }
.cwl-door{ display:flex; flex-direction:column; gap:12px; border-radius:18px; padding:30px; min-height:262px;
	box-shadow:0 1px 2px rgba(16,17,19,.06), 0 18px 44px rgba(16,17,19,.12); transition:transform .16s ease, box-shadow .16s ease; }
.cwl-door:hover{ transform:translateY(-3px); box-shadow:0 1px 2px rgba(16,17,19,.06), 0 26px 60px rgba(16,17,19,.18); }
.cwl-door__tag{ font-family:var(--mono); font-size:12px; }
.cwl-door__h{ font-size:30px; font-weight:700; }
.cwl-door__p{ font-family:var(--body); text-transform:none; font-size:15px; flex:1; line-height:1.55; }
.cwl-door__cta{ font-family:var(--disp); font-weight:600; text-transform:uppercase; letter-spacing:.05em; font-size:14px; }
.cwl-door--custom{ background:var(--card); color:var(--ink); border:1px solid var(--line); }
.cwl-door--custom .cwl-door__tag{ color:var(--muted); }
.cwl-door--custom .cwl-door__cta{ color:var(--gold-deep); }
.cwl-door--org{ background:var(--ink); color:#f3f2ee;
	background-image:radial-gradient(120% 100% at 100% 0, rgba(255,209,0,.16), transparent 55%); }
.cwl-door--org .cwl-door__tag{ color:#9aa0a8; }
.cwl-door--org .cwl-door__h{ color:#fff; }
.cwl-door--org .cwl-door__p{ color:#c2c7cd; }
.cwl-door--org .cwl-door__cta{ color:var(--gold); }
/* Interaction system: dark surfaces lift with a gold glow; light surfaces deepen a neutral shadow. */
.cwl-door--org:hover{ box-shadow:0 1px 2px rgba(0,0,0,.25), 0 26px 60px rgba(0,0,0,.42), 0 0 0 1px rgba(255,209,0,.32); }

/* ---------- PROOF STRIP ---------- */
.cwl-proof{ background:var(--paper); padding:18px 0 40px; }
.cwl-proof__row{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; background:var(--band);
	border:1px solid var(--line); border-radius:16px; padding:24px; text-align:center; }
.cwl-proof__row .m{ display:block; font-family:var(--disp); font-weight:700; text-transform:uppercase; font-size:24px; }
.cwl-proof__row .l{ display:block; font-family:var(--mono); font-size:12px; color:var(--muted); margin-top:4px; }

/* ---------- SECTION HEADS ---------- */
.cwl-sec__head{ margin-bottom:26px; }
.cwl-sec__head--split{ display:flex; justify-content:space-between; align-items:flex-end; gap:20px; flex-wrap:wrap; }
.cwl-sec__h{ font-size:clamp(26px,3.6vw,40px); font-weight:600; margin:8px 0 0; }
.cwl-sec__p{ font-family:var(--body); text-transform:none; color:var(--muted); font-size:17px; max-width:60ch; margin:10px 0 0; }
.cwl-textlink{ font-family:var(--disp); font-weight:600; text-transform:uppercase; letter-spacing:.05em; font-size:14px; color:var(--gold-deep); white-space:nowrap; }

/* ---------- ORGANIZATIONS TEASER ---------- */
.cwl-orgteaser{ background:var(--ink); color:#f3f2ee; padding:64px 0; }
.cwl-orgteaser .cwl-sec__h{ color:#fff; }
.cwl-orgteaser .cwl-sec__p{ color:#b7bcc4; }
.cwl-orgteaser--flat{ background:var(--paper); color:var(--ink); }
.cwl-orgteaser--flat .cwl-sec__h{ color:var(--ink); }
.cwl-orgteaser--flat .cwl-sec__p{ color:var(--muted); }
.cwl-org3{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.cwl-orgteaser:not(.cwl-orgteaser--flat) .cwl-org3{ grid-template-columns:repeat(2,1fr); }
.cwl-org3__c{ display:flex; flex-direction:column; gap:8px; border-radius:14px; padding:24px;
	background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.12); transition:border-color .14s ease, transform .14s ease; }
.cwl-org3__c:hover{ transform:translateY(-2px); border-color:var(--gold); box-shadow:0 16px 36px rgba(0,0,0,.30), 0 0 0 1px rgba(255,209,0,.22); }
.cwl-orgteaser--flat .cwl-org3__c:hover{ box-shadow:0 14px 30px rgba(16,17,19,.12); border-color:var(--gold-deep); }
.cwl-org3__c h3{ font-size:20px; font-weight:600; color:#fff; }
.cwl-org3__c p{ font-family:var(--body); text-transform:none; font-size:14px; color:#b7bcc4; }
.cwl-org3__c .go{ margin-top:auto; padding-top:8px; font-family:var(--disp); font-weight:600; text-transform:uppercase; letter-spacing:.05em; font-size:13px; color:var(--gold); }
.cwl-orgteaser--flat .cwl-org3__c{ background:var(--card); border-color:var(--line); }
.cwl-orgteaser--flat .cwl-org3__c h3{ color:var(--ink); }
.cwl-orgteaser--flat .cwl-org3__c p{ color:var(--muted); }
.cwl-org3__c--static{ cursor:default; }
.cwl-org3__c--static:hover{ transform:none; border-color:var(--line); }
.cwl-org3__c ul{ margin:6px 0 0; padding:0; list-style:none; display:flex; flex-direction:column; gap:6px; }
.cwl-org3__c li{ font-family:var(--body); text-transform:none; font-size:13.5px; color:var(--muted); display:flex; gap:9px; align-items:flex-start; }
.cwl-org3__c li::before{ content:""; width:6px; height:6px; border-radius:2px; background:var(--gold); margin-top:7px; flex:0 0 auto; }
.cwl-orgteaser__cta{ margin-top:26px; }

/* ---------- ORIGINALS DISCOVERY ---------- */
.cwl-originals{ background:var(--paper); padding:60px 0; border-top:1px solid var(--line); }
.cwl-rail{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:6px; }
.cwl-card{ display:flex; flex-direction:column; background:var(--card); border:1px solid var(--line); border-radius:14px;
	overflow:hidden; transition:transform .14s ease, box-shadow .14s ease; }
.cwl-card:hover{ transform:translateY(-3px); box-shadow:0 14px 30px rgba(16,17,19,.10); }
.cwl-card__media{ display:block; aspect-ratio:1/1; background:#fff; }
.cwl-card__media img{ width:100%; height:100%; object-fit:contain; padding:14px; }
.cwl-card__name{ font-family:var(--body); font-weight:600; font-size:13.5px; padding:12px 14px 0; line-height:1.35; }
.cwl-card__price{ font-family:var(--disp); font-weight:600; font-size:15px; padding:6px 14px 16px; color:var(--gold-deep); }
.cwl-sports{ display:flex; flex-wrap:wrap; gap:9px; align-items:center; margin-top:26px; }
.cwl-sports__lab{ font-family:var(--disp); text-transform:uppercase; letter-spacing:.06em; font-weight:600; font-size:13px; color:var(--muted); margin-right:6px; }
.cwl-sportchip{ font-family:var(--body); font-weight:600; font-size:13.5px; padding:8px 15px; border:1.5px solid var(--line);
	border-radius:100px; background:var(--card); transition:border-color .14s ease, color .14s ease, transform .14s ease, box-shadow .14s ease; }
.cwl-sportchip:hover{ border-color:var(--ink); transform:translateY(-1px); box-shadow:0 6px 16px rgba(16,17,19,.10); }

/* ---------- CLOSING ---------- */
.cwl-close{ background:var(--ink); color:#f3f2ee; padding:60px 0; text-align:center;
	background-image:radial-gradient(90% 120% at 50% 120%, rgba(255,209,0,.14), transparent 60%); }
.cwl-close__h{ font-size:clamp(26px,4vw,42px); font-weight:700; color:#fff; }
.cwl-close__p{ font-family:var(--body); text-transform:none; color:#b7bcc4; margin:12px auto 0; max-width:46ch; }
.cwl-close__cta{ display:flex; flex-wrap:wrap; gap:14px; justify-content:center; margin-top:26px; }

/* ---------- HOW IT WORKS ---------- */
.cwl-how{ background:var(--paper); padding:56px 0; border-top:1px solid var(--line); }
.cwl-steps{ list-style:none; margin:0; padding:0; display:grid; grid-template-columns:repeat(5,1fr); gap:16px; }
.cwl-steps li{ background:var(--card); border:1px solid var(--line); border-radius:14px; padding:20px; display:flex; flex-direction:column; gap:12px; }
.cwl-steps li .n{ width:34px; height:34px; border-radius:9px; background:var(--gold); color:#101113; display:grid; place-items:center; font-family:var(--disp); font-weight:700; font-size:17px; }
.cwl-steps li div{ font-family:var(--body); text-transform:none; font-size:14px; color:var(--muted); line-height:1.5; }
.cwl-steps li b{ color:var(--ink); font-weight:700; }

/* ---------- QUOTE FORM ---------- */
.cwl-quote{ background:var(--band); padding:60px 0 72px; border-top:1px solid var(--line); scroll-margin-top:80px; }
.cwl-quote__head{ text-align:center; max-width:60ch; margin:0 auto 30px; }
.cwl-quote__head .cwl-sec__p{ margin-left:auto; margin-right:auto; }
.cwl-formerr{ font-family:var(--body); text-transform:none; margin:14px auto 0; max-width:44ch; background:#fdecec; color:#8a1c1c;
	border:1px solid #f3c9c9; border-radius:10px; padding:10px 14px; font-size:14px; }
.cwl-grid{ display:grid; grid-template-columns:1.55fr 1fr; gap:22px; align-items:start; }
.cwl-main{ display:flex; flex-direction:column; gap:18px; }
.cwl-fs{ background:var(--card); border:1px solid var(--line); border-radius:16px; padding:24px; margin:0; }
.cwl-fs legend{ font-family:var(--disp); text-transform:uppercase; font-weight:600; letter-spacing:.04em; font-size:14px;
	color:var(--muted); padding:0; margin-bottom:15px; display:flex; align-items:center; gap:10px; }
.cwl-fs legend .s{ width:24px; height:24px; border-radius:7px; background:var(--gold); color:#101113; display:grid; place-items:center; font-size:12px; font-weight:700; }
.cwl .f{ display:block; font-family:var(--body); font-size:13px; font-weight:600; margin:0 0 6px; }
.cwl .f .hint{ font-weight:400; color:var(--muted); }
.cwl .req{ color:var(--gold-deep); }
.cwl input[type=text],.cwl input[type=email],.cwl input[type=date],.cwl select,.cwl textarea{
	width:100%; font-family:var(--body); font-size:15px; padding:12px 14px; border:1.5px solid var(--line); border-radius:10px;
	background:var(--paper); color:var(--ink); }
.cwl input:focus,.cwl select:focus,.cwl textarea:focus{ outline:2px solid var(--gold-deep); outline-offset:1px; border-color:var(--gold-deep); }
.cwl textarea{ min-height:96px; resize:vertical; }
.cwl-row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:16px; }
.cwl-pick{ display:flex; flex-wrap:wrap; gap:9px; }
.cwl-opt{ font-family:var(--body); font-size:13.5px; font-weight:600; padding:9px 15px; border:1.5px solid var(--line);
	border-radius:100px; background:var(--paper); cursor:pointer; user-select:none; }
.cwl-opt.sel{ background:var(--ink); color:#fff; border-color:var(--ink); }
.cwl-opt input{ position:absolute; opacity:0; width:0; height:0; }
.cwl-opt label{ cursor:pointer; }
.cwl-deadline{ background:var(--band); border:1px solid var(--line); border-left:3px solid var(--gold); border-radius:10px; padding:14px 16px; }
.cwl-deadline .why{ font-family:var(--body); text-transform:none; font-size:12px; color:var(--muted); margin-top:8px; }
.cwl-drop{ display:block; border:2px dashed var(--line); border-radius:12px; padding:22px; text-align:center; background:var(--paper); cursor:pointer; }
.cwl-drop:hover{ border-color:var(--gold-deep); }
.cwl-drop .big{ display:block; font-family:var(--disp); text-transform:uppercase; font-weight:600; font-size:15px; }
.cwl-drop .sm{ display:block; font-family:var(--body); font-size:12px; color:var(--muted); margin-top:5px; }
.cwl-drop input[type=file]{ margin:12px auto 0; font-size:12px; font-family:var(--body); }
.cwl-side{ display:flex; flex-direction:column; gap:16px; position:sticky; top:20px; }
.cwl-fs--contact .f{ margin-top:12px; }
.cwl-fs--contact .f:first-of-type{ margin-top:0; }
.cwl-submit{ width:100%; margin-top:18px; background:var(--gold); color:#101113; font-family:var(--disp); text-transform:uppercase;
	font-weight:600; letter-spacing:.05em; font-size:16px; padding:16px; border:0; border-radius:100px; cursor:pointer; display:flex; align-items:center; justify-content:center; gap:8px; }
.cwl-submit:hover{ background:#ffdb33; }
.cwl-after{ font-family:var(--mono); font-size:11.5px; color:var(--muted); text-align:center; margin-top:12px; line-height:1.5; }
.cwl-talk{ background:var(--ink); color:#f3f2ee; border-radius:14px; padding:20px; }
.cwl-talk h3{ font-size:16px; font-weight:600; color:#fff; }
.cwl-talk p{ font-family:var(--body); text-transform:none; font-size:13px; color:#b7bcc4; margin-top:6px; }
.cwl-talk .ph{ display:block; font-family:var(--mono); font-size:16px; color:var(--gold); margin-top:12px; font-weight:500; }
.cwl-talk .sub{ font-family:var(--mono); font-size:11px; color:#9aa0a8; }
.cwl-hp{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

/* ---------- DONE ---------- */
.cwl-done{ background:var(--card); border:1px solid var(--line); border-radius:18px; padding:44px 30px; text-align:center; max-width:640px; margin:0 auto; }
.cwl-done__mark{ width:56px; height:56px; border-radius:50%; background:var(--gold); color:#101113; display:grid; place-items:center; font-size:28px; font-weight:700; margin:0 auto 18px; }
.cwl-done .cwl-hero__cta{ justify-content:center; }
.cwl-done .cwl-btn--ghost{ color:var(--ink); border-color:var(--line); }
.cwl-done .cwl-btn--ghost:hover{ border-color:var(--ink); color:var(--ink); }

/* ---------- RESPONSIVE ---------- */
@media (max-width:900px){
	.cwl-doorgrid{ grid-template-columns:1fr; margin-top:-48px; }
	.cwl-org3{ grid-template-columns:1fr; }
	.cwl-rail{ grid-template-columns:1fr 1fr; }
	.cwl-steps{ grid-template-columns:1fr 1fr; }
	.cwl-grid{ grid-template-columns:1fr; }
	.cwl-side{ position:static; }
	.cwl-proof__row{ grid-template-columns:1fr 1fr; text-align:left; }
}
@media (max-width:560px){
	.cwl-hero{ padding:52px 0 92px; }
	.cwl-row{ grid-template-columns:1fr; }
	.cwl-rail{ grid-template-columns:1fr 1fr; }
	.cwl-steps{ grid-template-columns:1fr; }
	.cwl-sec__head--split{ align-items:flex-start; }
}

@media (prefers-reduced-motion:reduce){
	.cwl-btn,.cwl-door,.cwl-card,.cwl-org3__c,.cwl-sportchip{ transition:none; }
}
