/*
 * The Select Source Live - coming soon page
 *
 * Brand colours come in as CSS custom properties emitted by index.php from
 * config.php, so this file stays static and cacheable (the live vhost serves
 * .css with `expires max`). The fallbacks after each var() are the shipped
 * design values, so the stylesheet still renders correctly on its own.
 *
 * Hero artwork gradients are deliberately left as literals - they are
 * illustration, not brand tokens, and are not meant to track the accent.
 */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: #f6f5f3; -webkit-font-smoothing: antialiased; font-family: Archivo, 'Helvetica Neue', Helvetica, Arial, sans-serif; color: #1c1c1c; }
a { color: var(--ss-blue, #1668ea); text-decoration: none; }
a:hover { color: #0f4fb5; text-decoration: underline; }
input { font-family: inherit; }
img { border: 0; }

@keyframes ssPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(.82); } }
@keyframes ssSweep { 0% { transform: translateX(-120%); } 100% { transform: translateX(320%); } }
@keyframes ssDrift { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(0,-14px,0); } }
@keyframes ssTicker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.ss-page { background: #f6f5f3; min-height: 100vh; display: flex; flex-direction: column; }

/* utility bar */
.ss-util { background: #eeedeb; border-bottom: 1px solid #e2e0dd; }
.ss-util-in { max-width: 1420px; margin: 0 auto; padding: 0 28px; height: 34px; display: flex; align-items: center; justify-content: flex-end; gap: 18px; font-size: 13.5px; color: #33383f; }
.ss-util-item { display: flex; align-items: center; gap: 7px; }
.ss-rule-v { width: 1px; height: 17px; background: #cfcdc9; }
.ss-house { width: 13px; height: 9px; border: 1.5px solid #4a5058; border-bottom: none; border-radius: 2px 2px 0 0; }
.ss-heart { width: 15px; height: 14px; background: #1c1c1c; clip-path: path('M7.5 14C7.5 14 0 9.2 0 4.6C0 2 1.9 0.4 4 0.4C5.5 0.4 6.8 1.3 7.5 2.4C8.2 1.3 9.5 0.4 11 0.4C13.1 0.4 15 2 15 4.6C15 9.2 7.5 14 7.5 14Z'); }
.ss-flag { width: 22px; height: 15px; border-radius: 2px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 0 0 1px rgba(0,0,0,.12); }
.ss-flag span { flex: 1; }
.ss-flag span:nth-child(odd) { background: #b22234; }
.ss-flag span:nth-child(even) { background: #fff; }
.ss-caret { width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid #33383f; }

/* header */
.ss-header { background: #fbfaf9; border-bottom: 1px solid #e4e2df; }
.ss-header-in { max-width: 1420px; margin: 0 auto; padding: 18px 28px; display: flex; align-items: center; gap: 36px; }
/* .ss-logo is a plain element, not a link - this is a placeholder page with no
   destinations, so the mark is identity rather than navigation. */
.ss-logo { display: flex; flex-direction: column; gap: 5px; flex: 0 0 auto; }
.ss-logo img { display: block; width: 252px; height: auto; }
.ss-logo-live { display: flex; align-items: center; gap: 8px; }
.ss-logo-live .l { flex: 1; height: 2px; border-radius: 2px; background: linear-gradient(90deg, rgba(12,36,71,0) 0%, #0c2447 100%); }
.ss-logo-live .r { flex: 1; height: 2px; border-radius: 2px; background: linear-gradient(270deg, rgba(12,36,71,0) 0%, #0c2447 100%); }
.ss-badge { display: flex; align-items: center; gap: 7px; padding: 2px 10px 3px; border-radius: 3px; background: var(--ss-accent, #e01b24); }
.ss-badge i { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: ssPulse 1.6s ease-in-out infinite; }
.ss-badge span { font-size: 15px; font-weight: 800; letter-spacing: 0.34em; color: #fff; text-transform: uppercase; }

/* decorative search - no form element, nothing submits */
.ss-search { flex: 1; display: flex; max-width: 800px; }
.ss-search input { flex: 1; height: 44px; border: 1px solid #c9c7c3; border-right: none; border-radius: 3px 0 0 3px; padding: 0 14px; font-size: 15px; color: #2b2b2b; background: #fff; outline: none; }
.ss-search input[disabled] { background: #fff; color: #2b2b2b; cursor: default; opacity: 1; -webkit-text-fill-color: #2b2b2b; }
.ss-search .ss-search-btn { width: 48px; height: 44px; border-radius: 0 3px 3px 0; background: var(--ss-blue, #1668ea); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; cursor: default; }
.ss-mag { display: block; width: 13px; height: 13px; border: 2.5px solid #fff; border-radius: 50%; position: relative; }
.ss-mag::after { content: ''; position: absolute; width: 2.5px; height: 8px; background: #fff; border-radius: 2px; right: -3px; bottom: -7px; transform: rotate(-45deg); }

.ss-account { display: flex; align-items: center; gap: 20px; flex: 0 0 auto; }
.ss-account .div { width: 1px; height: 44px; background: #dedcd8; }
.ss-account .welcome { font-size: 14.5px; color: #3a3f46; }
.ss-account .welcome strong { font-weight: 700; color: #1c1c1c; }
.ss-account .my { display: flex; align-items: center; gap: 7px; font-size: 16px; font-weight: 700; color: #1c1c1c; }
.ss-account .my i { width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 6px solid #1c1c1c; }

/* hero */
.ss-main { flex: 1; display: flex; align-items: center; justify-content: center; padding: 74px 28px 88px; }
.ss-main-in { width: 100%; max-width: 880px; }
.ss-card { position: relative; border-radius: 14px; overflow: hidden; background: linear-gradient(122deg, #050f22 0%, #0a1d3d 22%, #10336c 48%, #17469a 72%, #1f5ec4 100%); box-shadow: 0 30px 70px -28px rgba(8,27,56,.55), 0 2px 0 rgba(255,255,255,.06) inset; }
.ss-wash { position: absolute; inset: 0; background: radial-gradient(120% 90% at 88% 46%, rgba(56,140,255,.42) 0%, rgba(56,140,255,0) 62%); }
.ss-grid { position: absolute; inset: 0; opacity: .38; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 46px 46px; }
.ss-glow-a { position: absolute; width: 420px; height: 420px; border-radius: 50%; top: -180px; right: -120px; background: radial-gradient(circle, rgba(56,126,235,.45) 0%, rgba(56,126,235,0) 70%); animation: ssDrift 9s ease-in-out infinite; }
/* Select Source mark, tinted navy so it blends into the hero */
.ss-mark { position: absolute; left: -95px; top: -55px; width: 540px; height: 540px; object-fit: contain; opacity: .88; filter: contrast(1.06) saturate(1.05); pointer-events: none; }
.ss-flare { position: absolute; left: -18px; top: 235px; width: 200px; height: 160px; border-radius: 50%; pointer-events: none; background: radial-gradient(circle, rgba(255,120,150,.42) 0%, rgba(192,42,106,.16) 45%, rgba(122,28,88,0) 72%); }
.ss-shade { position: absolute; inset: 0; background: linear-gradient(104deg, rgba(5,14,32,.42) 0%, rgba(8,24,52,.16) 30%, rgba(8,24,52,0) 54%); }
.ss-glow-b { position: absolute; width: 340px; height: 340px; border-radius: 50%; bottom: -170px; left: 4%; background: radial-gradient(circle, rgba(var(--ss-accent-rgb, 224,27,36),.26) 0%, rgba(var(--ss-accent-rgb, 224,27,36),0) 70%); }
.ss-card-body { position: relative; padding: 62px 56px 0; text-align: center; }
.ss-pill { display: inline-flex; align-items: center; gap: 9px; padding: 8px 17px; border-radius: 999px; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.07); flex: 0 0 auto; }
.ss-pill i { width: 8px; height: 8px; border-radius: 50%; background: var(--ss-accent, #e01b24); box-shadow: 0 0 0 4px rgba(var(--ss-accent-rgb, 224,27,36),.22); animation: ssPulse 1.6s ease-in-out infinite; }
.ss-pill span { font-size: 13px; font-weight: 700; letter-spacing: 0.22em; color: #eaf1ff; text-transform: uppercase; white-space: nowrap; }
.ss-h1 { margin: 30px 0 0; font-size: clamp(52px, 9vw, 104px); line-height: .92; font-weight: 900; letter-spacing: -0.035em; color: #fff; }
.ss-h1 span { display: block; background: linear-gradient(180deg, #ffffff 0%, #ffffff 52%, #b6cdf5 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ss-bar { position: relative; width: 210px; height: 4px; margin: 26px auto 0; border-radius: 4px; overflow: hidden; background: rgba(255,255,255,.16); }
.ss-bar i { position: absolute; inset: 0; width: 34%; border-radius: 4px; background: linear-gradient(90deg, rgba(255,255,255,0), var(--ss-accent, #e01b24), rgba(255,255,255,.9)); animation: ssSweep 2.6s linear infinite; }
.ss-lede { margin: 26px auto 0; max-width: 620px; font-size: 18.5px; line-height: 1.68; color: #cfdff7; text-wrap: pretty; }
.ss-hr { margin-top: 54px; height: 1px; background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.28), rgba(255,255,255,0)); }
.ss-strap { position: relative; padding: 26px 40px 30px; display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
.ss-strap .grp { display: flex; align-items: center; gap: 10px; }
.ss-strap .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ss-accent, #e01b24); animation: ssPulse 1.6s ease-in-out infinite; }
.ss-strap b { font-size: clamp(15px, 2.1vw, 21px); font-weight: 800; letter-spacing: 0.13em; color: #fff; text-transform: uppercase; }
.ss-strap em { font-style: normal; font-size: clamp(15px, 2.1vw, 21px); font-weight: 500; letter-spacing: 0.06em; color: #8fb0e4; text-transform: uppercase; }

/* ticker */
.ss-ticker { margin-top: 22px; border-radius: 8px; border: 1px solid #e2e0dd; background: #fbfaf9; overflow: hidden; }
.ss-ticker-track { display: flex; width: max-content; animation: ssTicker 34s linear infinite; padding: 13px 0; }
.ss-ticker-set { display: flex; gap: 44px; padding-right: 44px; font-size: 13.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #5b626c; white-space: nowrap; }
.ss-ticker-set .sep { color: #c9c7c3; }

/* footer */
.ss-footer { background: #eeedeb; border-top: 1px solid #e2e0dd; padding: 40px 28px 30px; }
.ss-footer-in { max-width: 1420px; margin: 0 auto; }
.ss-flinks { display: flex; flex-wrap: wrap; gap: 8px 26px; font-size: 14.5px; }
/* rendered as spans, not links - see partials/footer.php */
.ss-flinks .lnk { color: #2b2b2b; }
.ss-fask { font-size: 14.5px; line-height: 1.6; color: #2b2b2b; }
.ss-frow { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; align-items: flex-start; }
.ss-news { min-width: 380px; }
.ss-news h4 { margin: 0 0 9px; font-size: 17px; font-weight: 600; color: #1c1c1c; }
.ss-news form { display: flex; }
.ss-news input { flex: 1; height: 40px; border: 1px solid #c9c7c3; border-right: none; border-radius: 3px 0 0 3px; padding: 0 13px; font-size: 14.5px; background: #fff; outline: none; }
.ss-news button { height: 40px; padding: 0 20px; border: none; border-radius: 0 3px 3px 0; background: var(--ss-blue, #1668ea); color: #fff; font-family: inherit; font-size: 14.5px; font-weight: 600; cursor: pointer; }
.ss-news button:hover { background: var(--ss-blue-hover, #0f56c8); }
.ss-copy { margin-top: 38px; text-align: center; font-size: 14px; color: #4a5058; }

@media (max-width: 900px) {
  .ss-header-in { flex-wrap: wrap; gap: 18px; }
  .ss-search { order: 3; max-width: none; flex-basis: 100%; }
  .ss-card-body { padding: 44px 24px 0; }
  .ss-news { min-width: 0; flex-basis: 100%; }
}

/* Respect a reduced-motion preference: the page is decorative animation only,
   so there is nothing to lose by holding it still. */
@media (prefers-reduced-motion: reduce) {
  .ss-badge i, .ss-pill i, .ss-bar i, .ss-strap .dot, .ss-glow-a, .ss-ticker-track {
    animation: none;
  }
}
