/* ==========================================================================
   THE 1230 — Coming Soon / Register Interest — v2
   ========================================================================== */
:root{
  --pink: #FE028D;
  --pink-deep: #C2016B;
  --pink-tint: #FFE9F5;
  --cyan: #00B8D4;
  --amber: #FFD400;
  --green: #00E58A;
  --ink: #0A0A0A;
  --paper: #FFFFFF;
  --paper-2: #FAF9F7;
  --line: rgba(10,10,10,.10);
  --grey: #6b6b6b;
  --grey-dim: #9a9a9a;
  --mono: 'Space Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --display: 'Bricolage Grotesque', 'Archivo', sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 3px;
  --container: 1080px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body{
  margin:0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; }
.container{ max-width: var(--container); margin: 0 auto; padding: 0 24px; }

::selection{ background: var(--pink); color:#fff; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior:auto !important; }
}

.eyebrow{
  font-family: var(--body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  color: var(--pink-deep);
  display:inline-flex;
  align-items:center;
  gap:9px;
}
.eyebrow::before{
  content:"";
  width:7px; height:7px;
  background: var(--pink);
  border-radius: 50%;
  display:inline-block;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position: sticky; top:0; left:0; right:0; z-index: 50;
  padding: 22px 0 14px;
  padding-top: calc(22px + env(safe-area-inset-top, 0px));
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container{ display:flex; align-items:center; justify-content:center; }
.brand{ display:flex; align-items:center; gap:10px; text-decoration:none; }
.brand-badge{ display:flex; align-items:center; }
.brand-badge img{ height: 78px; width:auto; }
.header-status{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing:.1em;
  text-transform: uppercase;
  color: var(--pink-deep);
  border: 1px solid var(--pink);
  background: var(--pink-tint);
  padding: 6px 10px;
  border-radius: var(--radius);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  padding: 64px 0 48px;
  overflow: hidden;
}
.hero-glow{
  position:absolute; top:-180px; right:-160px; width:520px; height:520px;
  background: radial-gradient(circle, var(--pink-tint) 0%, transparent 70%);
  pointer-events:none;
}
.hero-inner{ position:relative; max-width: 740px; margin: 0 auto; display:flex; flex-direction:column; align-items:center; text-align:center; }
.hero .eyebrow{ margin-bottom: 22px; }
.hero h1{
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(17px, 5.3vw, 58px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  -webkit-text-stroke: 0.6px currentColor;
}
.hero h1 .l1{ white-space: nowrap; }
.hero h1 .hl{ color: var(--pink); }
.hero p.overview{
  font-family: var(--body);
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--grey);
  max-width: 620px;
  margin: 0 0 26px;
  line-height: 1.6;
}
.hero p.tagline{
  font-family: var(--body);
  font-weight: 700;
  font-size: clamp(16px, 2vw, 19px);
  color: var(--ink);
  max-width: 560px;
  margin: 0 0 32px;
  line-height: 1.5;
}
.hero p.tagline .brand-1230{
  color: var(--pink);
  font-size: 1.15em;
}
.hero p.tagline .u-pink{ text-decoration: underline; text-decoration-color: var(--pink); text-decoration-thickness: 3px; text-underline-offset: 4px; white-space: nowrap; }
.hero p.tagline .u-cyan{ text-decoration: underline; text-decoration-color: var(--cyan); text-decoration-thickness: 3px; text-underline-offset: 4px; white-space: nowrap; }

.hero-ctas{ display:flex; flex-direction:column; align-items:center; gap:16px; }

.btn{
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  text-decoration:none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary{
  background: var(--pink);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(254,2,141,.55);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(254,2,141,.6); }

.hero-scroll-hint{
  font-family: var(--mono);
  font-size: 12px;
  color: var(--grey);
  text-decoration: none;
  display:inline-flex; align-items:center; gap:6px;
}
.hero-scroll-hint:hover{ color: var(--pink-deep); }

/* ==========================================================================
   Broadcast panel (signature element)
   ========================================================================== */
.broadcast-wrap{ padding: 56px 0 64px; }
.broadcast-head{ max-width: 640px; margin: 0 auto 34px; text-align:center; }
.broadcast-head h2{
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(24px, 3.2vw, 32px);
  margin: 10px 0 8px;
  letter-spacing: -0.01em;
}
.broadcast-head p{ color: var(--grey); font-size: 15px; margin:0; }
.broadcast{
  background: var(--paper);
  border-radius: 14px;
  border: 2px solid var(--pink);
  overflow: hidden;
  box-shadow: 0 24px 60px -30px rgba(254,2,141,.35);
}
.broadcast-rows{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
}
.b-row{
  display:grid;
  grid-template-columns: 46px 1fr;
  column-gap: 16px;
  align-items:start;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  transition: background-color .15s ease;
}
/* dividers: right edge on the left column; bottom edge removed on the final row */
.broadcast-rows .b-row:nth-child(odd){ border-right: 1px solid var(--line); }
.broadcast-rows .b-row:nth-last-child(-n+2){ border-bottom: none; }
.b-row:hover{ background: var(--paper-2); }
.b-row .code{
  grid-row: 1 / 3;
  width: 34px; height: 34px;
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 13px;
  border: 1.5px solid var(--line);
  background: var(--paper-2);
  color: var(--grey);
}
.b-row .label{
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
}
.b-row .desc{ color: var(--grey); font-size: 13.5px; font-family: var(--body); line-height:1.5; margin-top: 3px; }
.b-row.c-pink .code{ color: var(--pink-deep); border-color: var(--pink); background: var(--pink-tint); }
.b-row.c-cyan .code{ color: #0091A8; border-color: var(--cyan); background: #E3F8FC; }
.b-row.c-amber .code{ color: #8A5C07; border-color: var(--amber); background: #FFF6DA; }
.b-row.c-green .code{ color: #00875A; border-color: var(--green); background: #DFFBEF; }

.ticker-full{ width:100%; }
.vidiprinter{
  border-top: 1px solid var(--pink-deep);
  border-bottom: 1px solid var(--pink-deep);
  background: var(--pink);
  overflow: hidden;
  padding: 13px 0;
}
.vidiprinter-track{
  display: inline-flex;
  width: max-content;
  animation: ticker-scroll 34s linear infinite;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
.vidiprinter-track span{
  font-family: var(--mono);
  font-weight:400;
  font-size: 11px;
  letter-spacing:.02em;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 36px;
}
.vidiprinter-track span b{ font-weight:700; }
.vidiprinter-track span .soft{ font-weight:400; color: rgba(255,255,255,.78); }
.vidiprinter-track span .v{
  display:inline-block;
  background: var(--cyan);
  color: var(--ink);
  font-size: 9px;
  padding: 1.5px 6px;
  border-radius: 3px;
  margin: 0 8px;
  vertical-align: 1px;
}
@keyframes ticker-scroll{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

/* ==========================================================================
   Register
   ========================================================================== */
.register{ background: var(--paper-2); border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding: 56px 0; scroll-margin-top: 132px; }
.register-wrap{ max-width: 480px; margin: 0 auto; }
.section-head{ margin-bottom: 30px; }
.section-head h2{
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 34px);
  margin: 10px 0 8px;
  letter-spacing: -0.01em;
}
.section-head p{ color: var(--grey); font-size: 15px; margin:0; }

.form-row{ margin-bottom: 18px; }
.form-row label{
  display:block; font-size: 13px; font-weight:600; margin-bottom:7px; color: var(--ink);
}
.form-row input[type=text], .form-row input[type=email], .form-row select{
  width:100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  padding: 13px 14px;
  font-family: var(--body);
  font-size: 15px;
}
.form-row input:focus, .form-row select:focus{ outline:none; border-color: var(--pink); box-shadow: 0 0 0 3px var(--pink-tint); }
.hint{ font-size: 12px; color: var(--grey-dim); margin: 8px 0 0; }

.captcha-box{
  display:flex; align-items:center; gap:12px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 13px 14px;
  border-radius: var(--radius);
}
.captcha-question{
  font-family: var(--mono);
  color: var(--pink-deep);
  font-weight:700;
  font-size: 14px;
  white-space:nowrap;
}
.captcha-box input{
  flex:1;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  padding: 6px 4px;
  font-family: var(--body);
  font-size: 15px;
}
.captcha-box input:focus{ outline:none; border-color: var(--pink); }

.hp-field{ position:absolute !important; left:-9999px !important; top:-9999px !important; opacity:0; height:0; width:0; overflow:hidden; }

.form-submit{ width:100%; justify-content:center; margin-top: 6px; }
.form-msg{
  margin-top: 16px;
  font-size: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  display:none;
  font-family: var(--mono);
}
.form-msg.show{ display:block; }
.form-msg.success{ background: var(--pink-tint); border: 1px solid var(--pink); color: var(--pink-deep); }
.form-msg.error{ background: #fff0f0; border: 1px solid #ff5050; color: #c62828; }

.privacy-note{ font-size: 12px; color: var(--grey-dim); margin-top: 18px; line-height:1.6; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ padding: 36px 0; }
.footer-grid{
  display:flex; flex-wrap:wrap; justify-content:space-between; align-items:flex-start; gap: 20px;
}
.footer-brand{ display:flex; align-items:center; gap:10px; }
.footer-brand .brand-badge img{ height:22px; }
.footer-safer{
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--grey);
  max-width: 380px;
  line-height: 1.7;
  text-align:right;
}
.footer-safer a{ color: var(--pink-deep); text-decoration: underline; }

/* ==========================================================================
   Cookie consent banner
   ========================================================================== */
.cookie-banner{
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 18px 24px;
  transform: translateY(100%);
  transition: transform .25s ease;
  box-shadow: 0 -10px 30px rgba(0,0,0,.2);
}
.cookie-banner.show{ transform: translateY(0); }
.cookie-banner-inner{
  max-width: var(--container);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.cookie-banner p{
  margin: 0; font-size: 13.5px; color: #d8d8d8; max-width: 640px; line-height: 1.5;
}
.cookie-banner a{ color: var(--pink); text-decoration: underline; }
.cookie-banner-actions{ display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn{
  font-family: var(--body); font-weight: 700; font-size: 13px;
  padding: 10px 18px; border-radius: var(--radius); border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
}
.cookie-btn-accept{ background: var(--pink); color: #0a0a0a; }
.cookie-btn-necessary{ background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }

@media (max-width: 640px){
  .footer-safer{ text-align:left; }
  .footer-grid{ flex-direction:column; }
  .broadcast-rows{ grid-template-columns: 1fr; }
  .broadcast-rows .b-row{ border-right:none !important; border-bottom: 1px solid var(--line); }
  .broadcast-rows .b-row:last-child{ border-bottom:none; }
  .site-header .container{ flex-wrap: wrap; row-gap: 6px; }
}