:root {
  --bg-main: #05070b;
  --bg-card: #11141b;
  --bg-card-alt: #151923;
  --accent: #ffbf00;
  --accent-soft: rgba(255, 191, 0, 0.16);
  --text-main: #f5f5f5;
  --text-muted: #9ca3af;
  --border-subtle: #272b36;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.65);
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
				  Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background: radial-gradient(circle at top left, #151923 0, #05070b 55%, #020307 100%);
  color: var(--text-main);
  min-height: 100vh;
}

/* /wins-style pill header */
.wins-header{
  padding: 14px 0 18px;
  display:flex;
  align-items:center;
}

.wins-header-split{
  justify-content: space-between;
  gap: 14px;
}

.wins-brand{
  text-decoration:none;
  color: inherit;
}

.wins-brand-inner{
  display:flex;
  align-items:center;
  gap: 12px;

  /* THIS is the "rectangled" look you want */
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(17,20,27,.70);
  box-shadow: 0 18px 55px rgba(0,0,0,.50);
}

.wins-mark{
  width: 34px;
  height: 34px;
  border-radius: 10px; /* not circle — matches the /wins vibe */
  display:grid;
  place-items:center;
  font-weight: 1000;
  font-size: 16px;
  color: #0b0d12;

  background: radial-gradient(circle at 30% 25%,
    #ffe28c 0%,
    #ffbf00 48%,
    #a87200 100%
  );
  box-shadow:
    0 0 0 2px rgba(255,191,0,.18),
    0 10px 28px rgba(0,0,0,.55),
    0 0 18px rgba(255,191,0,.18);
}

.wins-text{ line-height: 1.05; }

.wins-title{
  font-weight: 1000;
  letter-spacing: .06em;
  font-size: 18px;
  color: rgba(255,255,255,.95);
  text-transform: uppercase;
}

.wins-subtitle{
  margin-top: 4px;
  font-size: 12.5px;
  font-weight: 650;
  color: rgba(255,255,255,.60);
}



.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.hero-left-card {
  background: radial-gradient(circle at top left, #1e2535 0, #11141b 48%, #090c13 100%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 26px 26px 24px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

.hero-left-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 0 0, rgba(255, 191, 0, 0.18) 0, transparent 55%);
  opacity: 0.9;
  mix-blend-mode: screen;
}

.hero-left-inner {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background-color: rgba(15, 23, 42, 0.8);
  margin-bottom: 10px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.9);
}

.hero-title {
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.18;
  font-weight: 750;
  margin-bottom: 10px;
}

.hero-title span.accent {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 16px;
}

.metrics-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--accent-soft);
  margin-bottom: 16px;
  font-size: 12px;
  color: var(--text-muted);
}

.metrics-highlight {
  font-weight: 650;
  color: var(--accent);
  font-size: 13px;
}

.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 13px;
}

.bullet-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.bullet-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.7);
  color: #4ade80;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

.bullet-text {
  color: var(--text-muted);
}

.bullet-text strong {
  color: #e5e7eb;
  font-weight: 600;
}

.hero-bottom {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.hero-bottom strong {
  color: #e5e7eb;
  font-weight: 600;
}

.hero-bottom-link {
  font-size: 12px;
  color: var(--accent);
  text-decoration: none;
}

.hero-bottom-link:hover {
  text-decoration: underline;
}

/* Sign-in card + form (used by signin.html include) */

.signin-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 24px 22px 22px;
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.signin-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 2px;
}

.signin-title {
  font-size: 20px;
  font-weight: 700;
}

.signin-subtitle {
  font-size: 12px;
  color: var(--text-muted);
}

.signin-btn {
  width: 100%;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: #020617;
  padding: 9px 12px;
  font-size: 13px;
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
}

.signin-btn:hover {
  background: #020c1a;
}

.signin-btn.primary {
  border-color: transparent;
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
  color: #020617;
  font-weight: 600;
}

.signin-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
}

.signin-divider span.line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
	 to right,
	 transparent,
	 rgba(148, 163, 184, 0.8),
	 transparent
  );
}

.signin-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12px;
}

.signin-field label {
  color: var(--text-muted);
}

.signin-input {
  border-radius: 11px;
  background: #020617;
  border: 1px solid #1f2933;
  padding: 9px 11px;
  font-size: 13px;
  color: #e5e7eb;
  outline: none;
  width: 100%;
}

.signin-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(255, 191, 0, 0.55);
}

.signin-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
}

.signin-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 11px;
}

.signin-link:hover {
  text-decoration: underline;
}

.signin-cta {
  margin-top: 6px;
}

.signin-footer {
  margin-top: 4px;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
}

.signin-footer a {
  color: var(--accent);
  text-decoration: none;
}

.signin-footer a:hover {
  text-decoration: underline;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-grid {
	 grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .page-shell {
	 padding: 20px 14px 40px;
  }

  .hero-left-card,
  .signin-card {
	 padding: 20px 16px 18px;
  }

  .hero-title {
	 font-size: 22px;
  }
}
