/* ============================================================
   SkillShift ™ — holding site styles
   Palette and typography match the investor deck for consistency.
   ============================================================ */

:root {
  --navy:    #0E1E3A;
  --navy-dk: #081226;
  --gold:    #C9A064;
  --gold-lt: #E4CC99;
  --ink:     #1F2A3C;
  --slate:   #5A6573;
  --warm:    #FBF6EC;
  --white:   #FFFFFF;
  --line:    #E6DECD;
}

* { box-sizing: border-box; }
html, body, p, h1, h2, h3, h4, ul, ol, li, figure, blockquote { margin: 0; padding: 0; }
html, body { height: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0 6vw;
  overflow: hidden;
}

/* gold accent strip across the top-right corner */
.page::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 26%;
  height: 5px;
  background: var(--gold);
}

/* ---------- header ---------- */
.hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0 1rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--gold-lt);
}

.tm {
  font-size: 0.7em;
  vertical-align: super;
  letter-spacing: 0;
}

.pill {
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--gold-lt);
  border-radius: 999px;
  color: var(--gold-lt);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  white-space: nowrap;
}

/* ---------- hero ---------- */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 1.5rem 0 3rem;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(2.8rem, 7.5vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.005em;
  margin: 0 0 1.6rem;
}

h1 em {
  font-style: italic;
  color: var(--gold-lt);
}

.rule {
  width: 12rem;
  height: 2px;
  background: var(--gold);
  border: none;
  margin: 1rem 0 1.4rem;
}

.lead {
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  margin-bottom: 0.35rem;
  max-width: 65ch;
}

.lead-em em {
  color: var(--gold-lt);
  font-style: italic;
}

/* ---------- form ---------- */
.form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2.2rem;
  max-width: 560px;
}

.honeypot { display: none !important; }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.form input[type="email"] {
  flex: 1 1 280px;
  min-width: 0;
  padding: 0.95rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--gold);
  background: var(--white);
  color: var(--ink);
  border-radius: 2px;
  font-family: inherit;
  outline: none;
}

.form input[type="email"]:focus {
  outline: 2px solid var(--gold-lt);
  outline-offset: 1px;
}

.form input[type="email"]::placeholder {
  color: var(--slate);
  font-style: italic;
}

.form button {
  padding: 0.95rem 1.8rem;
  font-size: 1rem;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.01em;
  transition: background 0.18s ease;
}

.form button:hover,
.form button:focus { background: var(--gold-lt); }
.form button:focus { outline: 2px solid var(--white); outline-offset: 1px; }

.hint {
  margin-top: 1rem;
  color: var(--gold-lt);
  font-style: italic;
  font-size: 0.95rem;
  max-width: 560px;
}

.privacy-note {
  margin-top: 0.5rem;
  color: var(--gold-lt);
  font-size: 0.78rem;
  max-width: 560px;
  opacity: 0.7;
}

.privacy-note a {
  color: var(--gold-lt);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------- footer ---------- */
.ftr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0 1.6rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
  color: var(--gold-lt);
  gap: 1rem;
  flex-wrap: wrap;
}

.ftr a {
  color: var(--gold-lt);
  text-decoration: none;
}
.ftr a:hover { text-decoration: underline; }

/* ============================================================
   text pages (thanks, privacy)
   ============================================================ */
.page-text { background: var(--navy); }
.page-text .text-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.6;
}
.page-text h1.page-title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3rem);
  margin-bottom: 1.4rem;
  line-height: 1.1;
}
.page-text h1.page-title em { color: var(--gold-lt); font-style: italic; }
.page-text h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--gold-lt);
  margin: 2rem 0 0.6rem;
}
.page-text p { margin-bottom: 1rem; }
.page-text a {
  color: var(--gold-lt);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-text .back {
  margin-top: 2.5rem;
  display: inline-block;
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
}
.page-text .back:hover { text-decoration: underline; }

/* ---------- responsive ---------- */
@media (max-width: 720px) {
  .page { padding: 0 5vw; }
  .hdr { padding: 1.2rem 0 0.6rem; }
  .pill { font-size: 0.6rem; padding: 0.35rem 0.8rem; letter-spacing: 0.18em; }
  .brand { font-size: 1.1rem; }
  h1 { font-size: clamp(2.1rem, 11vw, 3.6rem); }
  .hero { padding: 1rem 0 2.5rem; }
  .ftr {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 1.2rem 0 1.6rem;
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
