/* ==========================================================
   VALIDATION — CLEAN SITE CSS (2026)
   Album-matched: Smoke / Teal / Ice / Deep Navy
   ========================================================== */

/* ---------- Base / Theme ---------- */
:root{
  /* Core */
  --bg: #070b10;                 /* deeper blue-black */
  --text: rgba(255,255,255,0.88);
  --muted: rgba(214,230,240,0.72);

  /* Surfaces */
  --panel: rgba(255,255,255,0.055);
  --panel-border: rgba(170,220,240,0.16);

  /* Validation palette (album-matched) */
  --accent: #65c7d0;             /* main cyan/teal */
  --accent2: #a9d9ff;            /* ice blue highlight */

  /* Depth */
  --shadow: rgba(0,0,0,0.55);
  --radius: 18px;
}

*{ box-sizing: border-box; }

html{
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3{
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin: 0;
  letter-spacing: 1px;
}

a{
  color: var(--accent);
  text-decoration: none;
  transition: color .25s ease;
}
a:hover{ color: var(--accent2); }

/* ---------- Layout ---------- */
.container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container.narrow{
  max-width: 900px;
  text-align: center;
}

/* Keep paragraphs centred on this site (you can change later) */
.container.narrow p{
  max-width: 860px;
  margin: 1.2rem auto;
  text-align: center;
  color: var(--text);
}

/* ---------- Header ---------- */
.rock-header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  box-shadow: 0 0 26px rgba(101,199,208,0.16);
}
.rock-header .inner{
  max-width: 1100px;
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 1rem;
}
.rock-header .logo{
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.rock-header nav a{
  color:#fff;
  margin-left: 1.25rem;
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: 1px;
}
.rock-header nav a:hover{
  color: var(--accent2);
  text-shadow: 0 0 12px rgba(169,217,255,0.55);
}

/* ---------- Hero ---------- */
.hero-sunrise{
  min-height: 78vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 4.5rem 1.5rem;
  background:
    radial-gradient(circle at 50% 85%, rgba(101,199,208,0.35) 0%, rgba(7,11,16,0.92) 55%, var(--bg) 100%),
    radial-gradient(circle at 18% 12%, rgba(169,217,255,0.18) 0%, rgba(0,0,0,0) 55%);
}
.hero-center{ max-width: 920px; }
.main-title{
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  letter-spacing: 4px;
  color:#fff;
  text-shadow: 0 0 34px rgba(101,199,208,0.22);
  margin-bottom: .6rem;
}
.tagline{
  font-size: 1.15rem;
  color: var(--text);
  margin: .6rem auto 1.6rem;
  max-width: 760px;
}
.fineprint{
  font-size: .9rem;
  color: rgba(255,255,255,0.6);
  margin-top: 1.2rem;
}

/* ---------- Sections ---------- */
section{
  padding: 3.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ==========================================================
   SECTION IMAGE — simple, clean scaling (ATS style)
   ========================================================== */

.section-image{
  max-width: 1100px;
  margin: 2rem auto;
  text-align: center;
}

.section-image img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}




/* ==========================================================
   SECTION HEADERS — LOCKED (After The Sun look)
   ========================================================== */

.section-title{
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
  margin: 0 0 0.9rem;
}

.section-title::after{
  content:"";
  display:block;
  width: 88px;
  height: 3px;
  margin: 0.65rem auto 0;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 2px;
}

.section-tagline{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--accent);
  opacity: 0.9;
  text-align: center;
  margin: 1.1rem auto 3rem;
  max-width: 720px;
  line-height: 1.6;
}

/* Sub-section titles (Commercial pathway / Scaling model / etc.) */
.container.narrow h3{
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  font-weight: 700;
  letter-spacing: 1px;
  color:#fff;
  margin: 2.6rem 0 1rem;
  text-align: center;
}

/* Keep paragraphs centred site-wide */
.container.narrow p{
  max-width: 860px;
  margin: 1.2rem auto;
  text-align: center;
  color: var(--text);
  line-height: 1.8;
}

/* Orange highlight utility (now teal highlight, keep class name for compatibility) */
.orange{
  color: var(--accent) !important;
  font-weight: 600;
}

/* ==========================================================
   LISTS — bullets aligned with text block
   ========================================================== */

.container.narrow ul,
.container.narrow ol,
.container.narrow .format-list{
  max-width: 860px;
  margin: 1.4rem auto 1.8rem;
  padding-left: 1.35rem;        /* bullet sits beside the text */
  list-style-position: outside; /* keeps bullets aligned to text edge */
  text-align: left;
}

.container.narrow li{
  margin: 0.6rem 0;
  line-height: 1.7;
  color: var(--text);
}

/* ==========================================================
   VALIDATION — BUTTONS + HOW-IT-BEGAN IMAGE + FOOTER TIDY
   Paste at VERY END of validation.css
   ========================================================== */

/* ---------- CTA ROW (matches After The Sun spacing/feel) ---------- */
.hero-cta{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2.2rem;
}

/* === CTA BUTTONS (After The Sun style) === */
.cta-button{
  display: inline-block;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-top: 0;              /* IMPORTANT: row controls spacing */
  line-height: 1;
}

.cta-button:hover{
  background: linear-gradient(135deg, rgba(101,199,208,1), rgba(169,217,255,0.95));
  color: #fff;
  box-shadow:
    0 0 28px rgba(101,199,208,0.35),
    0 0 22px rgba(169,217,255,0.22);
  transform: scale(1.05);
}

/* Optional: tighter buttons when used in footer */
.site-footer .cta-button{
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

/* ---------- HOW IT BEGAN: album image formatting ---------- */
.album-figure{
  width: 100%;
  max-width: 980px;           /* gives you that bold “break up paragraph” feel */
  margin: 2rem auto 2.2rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 0 28px rgba(0,0,0,0.50);
}

.album-figure img{
  width: 100%;
  height: auto;
  display: block;
  filter: none !important;
  transform: none !important;
}

/* If you want the image to sit a touch closer to the text above */
#began .album-figure,
#how-it-began .album-figure{
  margin-top: 1.6rem;
}

/* ---------- FOOTER: tidy, premium, consistent ---------- */
.site-footer{
  margin-top: 4rem;
  padding: 2.6rem 0;
  background: rgba(10,10,12,0.55);
  border-top: 1px solid rgba(255,255,255,0.10);
}

.site-footer .footer-top{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  align-items: start;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-footer .footer-title{
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: #fff;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.site-footer .footer-sub{
  margin-top: 0.35rem;
  color: rgba(255,255,255,0.62);
  font-size: 0.92rem;
  line-height: 1.6;
}

.site-footer .footer-links{
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.1rem;
  justify-content: center;
}

.site-footer .footer-links a{
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.site-footer .footer-links a:hover{
  color: #fff;
  text-shadow: 0 0 14px rgba(101,199,208,0.22);
}

.site-footer .footer-bottom{
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding-top: 1.25rem;
  color: rgba(255,255,255,0.70);
  font-size: 0.92rem;
  text-align: center;
}

.site-footer .footer-contact a{
  color: var(--accent);
  text-decoration: underline;
}

.site-footer .footer-legal{
  color: rgba(255,255,255,0.55);
}

/* Desktop footer layout */
@media (min-width: 900px){
  .site-footer .footer-top{
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
  }
  .site-footer .footer-links{
    justify-content: flex-end;
  }
  .site-footer .footer-bottom{
    grid-template-columns: 1fr 1fr;
    text-align: left;
    align-items: center;
  }
  .site-footer .footer-legal{
    text-align: right;
  }
}
/* ==========================================================
   ORIGINS — ALBUM IMAGE + TAGLINE (FINAL, CLEAN LOCK)
   ========================================================== */

/* All section taglines: teal + italic + consistent spacing */
.section-tagline{
  color: var(--accent) !important;
  font-style: italic !important;
  font-size: 1.05rem;
  opacity: 0.95;
  margin: 0.9rem auto 2.2rem;
  text-align: center;
}

/* Safety: any italic line used instead of class */
.container.narrow > em,
.container.narrow .tagline-em{
  color: var(--accent) !important;
  font-style: italic;
}

/* Semantic wrapper only — no layout responsibility */
#origins .album-figure{
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
}

/* Album image: this controls size + centring */
#origins .album-figure img{
  display: block;
  width: 50%;                  /* desktop scale */
  max-width: 460px;            /* hard ceiling */
  height: auto;
  margin: 1.6rem auto 1.4rem;  /* true centring */
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 0 22px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  filter: none !important;
  transform: none !important;
}

/* Mobile: image grows slightly so it still reads */
@media (max-width: 640px){
  #origins .album-figure img{
    width: 82%;
    max-width: 360px;
    margin: 1.2rem auto 1.1rem;
  }
}

/* ===== TEAM IMAGES — FIXED SCALING ===== */

.team-member {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.6rem;
  align-items: start;
}

.team-photo {
  width: 100%;
  aspect-ratio: 3 / 4;          /* portrait-safe ratio */
  object-fit: cover;            /* fills frame without distortion */
  object-position: center top;  /* protects faces */
  border-radius: 14px;
  background: #111;             /* fallback if image loads slowly */
}


/* ==========================================================
   INVESTOR LOGIN — use Validation site styling
   ========================================================== */

.gate-wrap{
  min-height: 78vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 4.5rem 1.5rem;
  background:
    radial-gradient(circle at 50% 85%, rgba(101,199,208,0.30) 0%, rgba(7,11,16,0.94) 58%, var(--bg) 100%),
    radial-gradient(circle at 18% 12%, rgba(169,217,255,0.14) 0%, rgba(0,0,0,0) 55%);
}

.gate-card{
  width: 100%;
  max-width: 680px;
  padding: 1.8rem 1.8rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 20px 60px var(--shadow);
  text-align: center;
}

.gate-title{
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: 3px;
  color:#fff;
  text-shadow: 0 0 32px rgba(101,199,208,0.18);
  margin-bottom: .6rem;
  text-transform: uppercase;
}

.gate-sub{
  color: rgba(255,255,255,0.78);
  margin: 0 auto 1.4rem;
  max-width: 55ch;
}

.gate-err{
  max-width: 560px;
  margin: 0.8rem auto 1rem;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  background: rgba(255, 0, 0, 0.10);
  border: 1px solid rgba(255, 0, 0, 0.25);
  color: #fff;
  text-align: left;
}

.gate-form{
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}

.gate-form label{
  display:block;
  font-weight: 700;
  letter-spacing: .5px;
  margin: 0.9rem 0 0.35rem;
  color: #fff;
}

.gate-form input{
  width: 100%;
  padding: 0.9rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.28);
  color: var(--text);
  outline: none;
}

.gate-form input:focus{
  border-color: rgba(101,199,208,0.65);
  box-shadow: 0 0 0 3px rgba(101,199,208,0.18);
}

.gate-actions{
  display:flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 1.4rem;
}

.gate-actions .cta-button{
  margin-top: 0;
}

.gate-fine{
  margin-top: 1.1rem;
  text-align: center;
  color: rgba(255,255,255,0.62);
  font-size: 0.92rem;
}

/* ==========================================================
   TEAM SECTION — FINAL (single source of truth)
   Paste at VERY END of validation.css
   ========================================================== */

.team-section .team-grid{
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 2.2rem;
}

/* Each person row */
.team-section .team-member{
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.8rem;
  align-items: start;
}

/* Portrait */
.team-section img.team-photo{
  display: block;
  width: 100%;
  max-width: 260px;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 14px;
  background: #111;

  /* IMPORTANT: keep margin stable, then offset using translate (more reliable than margin wars) */
  margin: 0;
  transform: translateY(0);
}

/* Header spacing */
.team-section .team-header{
  margin-bottom: 0.95rem;
}

.team-section .team-header h3{
  margin: 0 0 0.35rem;
  text-align: left;
}

.team-section .team-role{
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: left;
}

/* Text column: force LEFT (your global p rule is stronger, so we override p directly) */
.team-section .team-info{
  text-align: left;
}

.team-section .team-info p{
  text-align: left !important;   /* this is the key */
  margin: 0.9rem 0;
  line-height: 1.8;
  max-width: none;               /* stop the global max-width from re-centering feel */
}

/* Desktop alignment: nudge portrait down using transform (wins over all layout) */
@media (min-width: 821px){
  .team-section img.team-photo{
    transform: translateY(70px) !important; /* increase/decrease: try 52px–78px */
  }
}

/* Mobile stack */
@media (max-width: 820px){
  .team-section .team-member{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .team-section img.team-photo{
    margin: 0 auto;
    max-width: 320px;
    transform: none !important;
  }

  .team-section .team-info,
  .team-section .team-info p,
  .team-section .team-header h3,
  .team-section .team-role{
    text-align: center !important;
  }
}

/* ==========================================================
   AFTER THE SUN — SECTION-ONLY COLOUR THEME (TEXT + ACCENTS)
   Paste ONCE at the VERY END of validation.css
   ========================================================== */

#ats.ats-theme{
  --ats-accent: #ff6a00;
  --ats-accent-soft: #ff9a4d;
}

/* underline */
#ats.ats-theme .section-title::after{
  background: linear-gradient(90deg, var(--ats-accent), var(--ats-accent-soft)) !important;
}

/* tagline (must beat global .section-tagline { ... !important }) */
#ats.ats-theme .section-tagline,
#ats.ats-theme .ats-tagline{
  color: var(--ats-accent) !important;
  opacity: 0.95;
}

/* highlight utility inside ATS */
#ats.ats-theme .orange{
  color: var(--ats-accent) !important;
}

/* button inside ATS */
#ats.ats-theme .cta-button{
  border-color: var(--ats-accent) !important;
  color: var(--ats-accent) !important;
}

#ats.ats-theme .cta-button:hover{
  background: linear-gradient(135deg, var(--ats-accent), var(--ats-accent-soft)) !important;
  border-color: var(--ats-accent) !important;
  color: #fff !important;
  box-shadow:
    0 0 26px rgba(255,106,0,0.35),
    0 0 18px rgba(255,154,77,0.25);
}

/* ===== Gate helpers: tidy NDA + password helpers (drop at END of stylesheet) ===== */

.gate-center{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin: 1.2rem auto 0.8rem;
  width: 100%;
}

/* Make each checkbox row behave like a centred “line item” */
.gate-inline{
  display: flex;                 /* (not inline-flex) so it can size + wrap cleanly */
  align-items: flex-start;       /* aligns checkbox with first line of text */
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  max-width: 560px;              /* keeps text from drifting to the far right */
  padding: 0.1rem 0.2rem;
  font-size: 0.95rem;
  line-height: 1.35;
  cursor: pointer;
  white-space: normal;           /* IMPORTANT: allow wrapping */
  text-align: left;
}

.gate-inline input[type="checkbox"]{
  flex: 0 0 auto;
  margin: 0.15rem 0 0;           /* nudge down to sit on text baseline */
  width: 16px;
  height: 16px;
  accent-color: var(--accent2, #00b3ff);
}

/* Works whether your label text is a span, p, or just text */
.gate-inline span,
.gate-inline small,
.gate-inline p{
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}

/* NDA button spacing tweak */
.gate-nda{
  margin-top: 0.2rem;
}

/* NDA accept line slightly muted but clear + centred block */
.gate-nda-accept{
  margin-top: 0.25rem;
  opacity: 0.95;
}

/* Optional: if you want the checkbox lines to read more “premium” on hover */
.gate-inline:hover{
  opacity: 0.98;
}

/* Small screens: keep everything tight and centred */
@media (max-width: 520px){
  .gate-inline{
    max-width: 92vw;
    font-size: 0.94rem;
  }
}

.image-caption{
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: var(--muted, #b9bcc2);
  text-align: center;
  line-height: 1.4;
}

/* ==========================================================
   DEVELOPMENT PATH — INLINE 3-IMAGE PROGRESSION (MATCHES HTML)
   Paste at VERY END of validation.css
   ========================================================== */

.development-inline{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.2rem;
  margin: 2.2rem auto 2.2rem;
  max-width: 900px;
}

/* Each tile small + consistent */
.development-item{
  width: 220px;           /* ✅ hard cap */
  max-width: 30%;
  text-align: center;
  margin: 0;
}

/* Override any global image rules */
.development-item img{
  width: 100% !important;
  max-width: 220px !important;   /* ✅ prevents huge */
  height: 135px !important;      /* ✅ consistent thumbnail height */
  object-fit: cover !important;
  display: block;
  margin: 0 auto;
  border-radius: 14px;
  box-shadow: 0 0 18px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}

.development-item figcaption{
  margin-top: 0.55rem;
  font-size: 0.85rem;
  line-height: 1.35;
  color: var(--muted);
}

.development-item figcaption strong{
  display: block;
  color: #fff;
  letter-spacing: 0.02em;
}

.development-arrow{
  font-size: 1.4rem;
  color: var(--accent);
  opacity: 0.85;
  margin-top: 3.2rem; /* aligns arrow to image midline */
}

/* Mobile: stack */
@media (max-width: 780px){
  .development-inline{
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
  }

  .development-arrow{
    transform: rotate(90deg);
    margin-top: 0;
  }

  .development-item{
    width: min(360px, 85vw);
    max-width: none;
  }

  .development-item img{
    max-width: none !important;
    width: 100% !important;
    height: 180px !important;
  }
}
.hero-bandline{
  margin: 0.2rem auto 1.4rem;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.02rem;
}

.band-card{
  max-width: 860px;
  margin: 2rem auto 0;
  padding: 1.6rem 1.4rem 1.35rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(170,220,240,0.16);
  box-shadow: 0 0 22px rgba(0,0,0,0.45);
  text-align: left;
}

.band-card h3{
  margin: 0 0 0.9rem;
  text-align: left;
}

.band-grid{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.band-grid li{
  margin: 0;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.08);
}

.band-grid li span{
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.35;
}

.band-note{
  margin: 1rem 0 0;
  color: var(--text);
}

/* ===== Ledger table scroll container (prevents off-screen columns) ===== */
.table-wrap{
  margin-top:10px;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.10);
}

/* Keep table usable; allow horizontal scroll instead of pushing columns off-screen */
.table{
  width:100%;
  border-collapse:collapse;
  table-layout:fixed;
  min-width: 1500px; /* key: ensures right-most columns remain reachable via scroll */
  margin:0;          /* table-wrap already has the margin */
}

/* Make sure long content never forces layout bugs */
.table th,
.table td{
  min-width:0;
}

/* Optional: on narrow screens, give the filter/search row a bit more breathing room */
.tools .mini{max-width:260px}
