/* ============================================================
   FOR PURPOSE OS  ·  wepowerpurpose.com
   Shared stylesheet. Edit here once, every page updates.
   ============================================================ */

:root {
  --night-navy:   #1E2A38;
  --slate-blue:   #3A4A5E;
  --dawn-amber:   #F1B647;
  --parchment:    #FEFDFA;
  --deep-teal:    #0D2035;
  --morning-mist: #CCD3E5;
  --sunrise:      #E8824A;
  --cloud-blue:   #2A4060;
  --hairline:     #E8E7E3;
  --tint:         #F5F4F0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', Arial, sans-serif;
  background: var(--parchment);
  color: var(--night-navy);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

[id] { scroll-margin-top: 112px; }

h1, h2, h3 { font-family: 'Prata', Georgia, serif; font-weight: 400; }
.prod-name { font-family: 'Raleway', Arial, sans-serif; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; margin: 0 auto; }
.skip {
  position: absolute; left: -9999px; top: 0; background: var(--dawn-amber);
  color: var(--night-navy); padding: 12px 20px; z-index: 200; font-weight: 700;
}
.skip:focus { left: 12px; top: 12px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 30px; border-radius: 3px;
  font-family: 'Raleway', Arial, sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none;
  border: none; cursor: pointer; transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn-amber { background: var(--dawn-amber); color: var(--night-navy); }
.btn-amber:hover { background: #f5c569; }
.btn-outline { background: transparent; color: var(--parchment); border: 1px solid rgba(254,253,250,0.35); }
.btn-outline:hover { border-color: var(--dawn-amber); color: var(--dawn-amber); }
.btn-dark-outline { background: transparent; color: var(--night-navy); border: 1px solid var(--night-navy); }
.btn-dark-outline:hover { border-color: var(--dawn-amber); color: var(--sunrise); }
.btn-small { padding: 10px 20px; font-size: 12px; }
.btn-block { width: 100%; }

.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--dawn-amber); margin-bottom: 14px; display: block;
}

/* ---------- GLOW AURAS ---------- */
.glow-host { position: relative; overflow: hidden; isolation: isolate; }
.aura { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.aura-amber { background: radial-gradient(circle closest-side, rgba(241,182,71,0.20), rgba(241,182,71,0)); }
.aura-cloud { background: radial-gradient(circle closest-side, rgba(58,90,140,0.5), rgba(58,90,140,0)); }
.glow-host > .content { position: relative; z-index: 1; }

/* ---------- NAV ---------- */
.floatnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,32,53,0.95);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(241,182,71,0.22);
}
.floatnav-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px; height: 92px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.floatnav .brandlink img { height: 42px; width: auto; }
.floatnav-links { display: flex; align-items: center; gap: 26px; }
.floatnav-links a {
  font-size: 13px; font-weight: 600; color: var(--morning-mist);
  letter-spacing: 0.02em; transition: color 0.15s ease;
}
.floatnav-links a:hover, .floatnav-links a[aria-current="page"] { color: var(--parchment); }
.floatnav-links a[aria-current="page"] { border-bottom: 2px solid var(--dawn-amber); padding-bottom: 3px; }
.floatnav-cta {
  background: var(--dawn-amber); color: var(--night-navy) !important;
  padding: 10px 20px; border-radius: 3px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em; font-size: 12px !important;
}
.floatnav-cta:hover { background: #f5c569; }
.floatnav-cta[aria-current="page"] { border-bottom: none !important; padding-bottom: 10px !important; }

.navtoggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 42px; height: 42px; padding: 9px; flex-shrink: 0;
}
.navtoggle span {
  display: block; height: 2px; background: var(--parchment);
  margin: 4px 0; transition: transform 0.2s ease, opacity 0.2s ease;
}
.navtoggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.navtoggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navtoggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  /* backdrop-filter makes an element a containing block for fixed-position
     children, which collapsed the open menu to the height of the bar.
     The bar is 95% opaque anyway, so the blur is no loss here. */
  .floatnav { -webkit-backdrop-filter: none; backdrop-filter: none; background: var(--deep-teal); }
  .floatnav-inner { height: 76px; }
  .floatnav .brandlink img { height: 32px; }
  .navtoggle { display: block; }
  .floatnav-links {
    position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
    height: calc(100vh - 76px); height: calc(100dvh - 76px);
    background: var(--deep-teal); flex-direction: column; align-items: stretch;
    gap: 0; padding: 20px 24px 60px; overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
  .floatnav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .floatnav-links a {
    font-size: 17px; padding: 16px 0; border-bottom: 1px solid rgba(204,211,229,0.14);
  }
  .floatnav-links a[aria-current="page"] { border-bottom: 1px solid var(--dawn-amber); padding-bottom: 16px; }
  .floatnav-cta { margin-top: 22px; text-align: center; justify-content: center; font-size: 14px !important; }
}

/* ---------- HERO ---------- */
.hero {
  background: linear-gradient(155deg, var(--deep-teal), var(--night-navy) 60%, #24344a);
  padding: 164px 0 84px; text-align: center; color: var(--parchment);
}
.hero-logo { width: 380px; height: auto; margin: 0 auto 30px; }
.hero h1 { font-size: 46px; line-height: 1.16; color: var(--parchment); margin-bottom: 20px; }
.hero h1 em { color: var(--dawn-amber); font-style: italic; }
.hero p { font-size: 17px; color: var(--morning-mist); line-height: 1.65; margin: 0 auto 34px; max-width: 640px; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-tagline {
  font-family: 'Prata', Georgia, serif; font-size: 15px; color: var(--dawn-amber);
  letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 18px;
}
@media (max-width: 900px) { .hero { padding: 128px 0 68px; } }
@media (max-width: 640px) {
  .hero h1 { font-size: 31px; }
  .hero-logo { width: 260px; }
  .hero p { font-size: 15.5px; }
}

/* Interior page hero, shorter */
.subhero {
  background: linear-gradient(150deg, var(--deep-teal), var(--night-navy) 70%);
  padding: 150px 0 62px; color: var(--parchment);
}
.subhero h1 { font-size: 40px; line-height: 1.18; color: var(--parchment); margin-bottom: 16px; max-width: 780px; }
.subhero h1 em { color: var(--dawn-amber); font-style: italic; }
.subhero p { font-size: 16.5px; color: var(--morning-mist); max-width: 660px; line-height: 1.65; }
.subhero .hero-ctas { justify-content: flex-start; margin-top: 30px; }
@media (max-width: 900px) { .subhero { padding: 118px 0 52px; } }
@media (max-width: 640px) { .subhero h1 { font-size: 28px; } }

/* ---------- SECTION SHELLS ---------- */
.sec { padding: 78px 0; }
.sec-tint { background: var(--tint); }
.sec-dark { background: var(--deep-teal); color: var(--parchment); }
.sec-navy { background: var(--night-navy); color: var(--parchment); }
.sec-head { text-align: center; margin-bottom: 46px; }
.sec-head h2 { font-size: 34px; margin-bottom: 14px; }
.sec-head p { font-size: 16px; color: var(--slate-blue); max-width: 620px; margin: 0 auto; }
.sec-dark .sec-head h2, .sec-navy .sec-head h2 { color: var(--parchment); }
.sec-dark .sec-head p, .sec-navy .sec-head p { color: var(--morning-mist); }
.sec-head-left { text-align: left; }
.sec-head-left p { margin: 0; }
@media (max-width: 720px) { .sec { padding: 58px 0; } .sec-head h2 { font-size: 26px; } }

/* ---------- PRODUCT SPLIT (home) ---------- */
.prodsplit { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.prodcard {
  background: var(--parchment); border: 1px solid var(--hairline); border-radius: 6px;
  padding: 38px 34px; display: flex; flex-direction: column; gap: 16px;
  border-top: 4px solid var(--dawn-amber);
}
.prodcard.secondary { border-top-color: var(--cloud-blue); }
.prodcard .plabel { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--slate-blue); }
.prodcard h3 { font-size: 26px; line-height: 1.25; }
.prodcard .pline { font-family: 'Prata', Georgia, serif; font-size: 15px; color: var(--sunrise); }
.prodcard p { font-size: 14.5px; color: var(--slate-blue); line-height: 1.65; }
.prodcard ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.prodcard ul li { font-size: 13.5px; color: var(--slate-blue); display: flex; gap: 9px; line-height: 1.45; }
.prodcard ul li .dot { color: var(--dawn-amber); flex-shrink: 0; }
.prodcard .pfoot { margin-top: auto; padding-top: 10px; }
.prodcard .pprice { font-size: 13px; font-weight: 700; color: var(--night-navy); margin-bottom: 14px; }
.prodcard .pprice span { font-weight: 400; color: var(--slate-blue); }
@media (max-width: 860px) { .prodsplit { grid-template-columns: 1fr; } }

/* ---------- PILLARS ---------- */
.pillar-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(254,253,250,0.12); border-radius: 6px; overflow: hidden;
}
@media (max-width: 860px) { .pillar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pillar-grid { grid-template-columns: 1fr; } }
.pillar { background: rgba(13,32,53,0.55); padding: 28px 26px; }
.pillar .num { font-family: 'Prata', Georgia, serif; font-size: 13px; color: var(--dawn-amber); display: block; margin-bottom: 10px; }
.pillar h3 { font-size: 18px; color: var(--parchment); margin-bottom: 8px; }
.pillar p { font-size: 13px; color: var(--morning-mist); line-height: 1.55; }

/* ---------- ADVISORS ---------- */
.adv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.adv-card {
  background: var(--parchment); border: 1px solid var(--hairline); border-radius: 6px;
  padding: 26px 22px; text-align: center;
}
.adv-card img { width: 92px; height: 92px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; }
.adv-card .role { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sunrise); margin-bottom: 8px; }
.adv-card h3 { font-size: 17px; margin-bottom: 6px; line-height: 1.3; }
.adv-card .course { font-size: 12.5px; color: var(--slate-blue); }

/* ---------- COURSE CARDS ---------- */
.course-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 900px) { .course-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .course-grid { grid-template-columns: 1fr; } }
.course-card {
  background: var(--parchment); border: 1px solid var(--hairline); border-top: 3px solid var(--dawn-amber);
  border-radius: 4px; padding: 22px 20px; display: flex; flex-direction: column; gap: 12px;
}
.course-card .adv { display: flex; align-items: center; gap: 10px; min-height: 38px; }
.course-card .adv img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.course-card .adv-name { font-size: 11.5px; font-weight: 700; color: var(--night-navy); }
.course-card .adv-anon { font-size: 11px; color: var(--slate-blue); font-style: italic; }
.course-card h3 { font-size: 17px; line-height: 1.3; }
.course-card .cdesc { font-size: 12.5px; color: var(--slate-blue); line-height: 1.55; flex-grow: 1; }
.course-card .cprice { font-size: 13px; font-weight: 700; color: var(--night-navy); }
.course-card .cprice .note { font-size: 10.5px; color: var(--slate-blue); font-weight: 400; display: block; margin-top: 2px; }

/* ---------- SUBSCRIPTION CARD (membership) ---------- */
.plans-section { background: var(--tint); padding: 76px 0 90px; }
.plans-head { text-align: center; margin-bottom: 44px; }
.plans-head h2 { font-size: 34px; color: var(--night-navy); margin-bottom: 14px; }
.plans-head p { font-size: 16px; color: var(--slate-blue); max-width: 560px; margin: 0 auto; }

.tabswitch { display: none; }
.tabbar { display: flex; justify-content: center; gap: 10px; margin-bottom: 42px; flex-wrap: wrap; }
.tabbtn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 40px; border: 1px solid var(--hairline);
  background: var(--parchment); cursor: pointer; font-size: 14px; font-weight: 700;
  color: var(--slate-blue); letter-spacing: 0.02em; transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.tabbtn .tag {
  font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  background: none; color: var(--slate-blue); opacity: 0.75; padding: 0;
}
#tab-akademia:checked ~ .tabbar label[for="tab-akademia"],
#tab-eosiq:checked ~ .tabbar label[for="tab-eosiq"] {
  background: var(--night-navy); color: var(--parchment); border-color: var(--night-navy);
}
#tab-akademia:checked ~ .tabbar label[for="tab-akademia"] .tag,
#tab-eosiq:checked ~ .tabbar label[for="tab-eosiq"] .tag {
  background: none; color: var(--dawn-amber); opacity: 1;
}
.tabswitch:focus-visible ~ .tabbar label { outline: 2px solid var(--dawn-amber); outline-offset: 2px; }

.panel { display: none; }
#tab-akademia:checked ~ .panel-akademia { display: block; }
#tab-eosiq:checked ~ .panel-eosiq { display: block; }

.sub-card {
  background: var(--night-navy); border-radius: 6px; padding: 44px 40px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center;
  margin-bottom: 20px; position: relative; overflow: hidden;
}
.sub-card::before {
  content: ''; position: absolute; top: -80px; right: -80px; width: 260px; height: 260px;
  border-radius: 50%; background: radial-gradient(circle closest-side, rgba(241,182,71,0.22), rgba(241,182,71,0));
}
.sub-card-left, .sub-card-right { position: relative; z-index: 1; }
.sub-card h3 { font-size: 24px; color: var(--parchment); margin-bottom: 10px; }
.sub-card p.desc { font-size: 14.5px; color: var(--morning-mist); line-height: 1.6; margin-bottom: 18px; }
.sub-includes { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.sub-includes li { font-size: 13.5px; color: var(--morning-mist); display: flex; gap: 9px; align-items: flex-start; line-height: 1.45; }
.sub-includes li .dot { color: var(--dawn-amber); flex-shrink: 0; margin-top: 1px; }
.sub-card-right { background: rgba(254,253,250,0.05); border: 1px solid rgba(254,253,250,0.14); border-radius: 5px; padding: 28px; text-align: center; }
.price-main { font-family: 'Prata', Georgia, serif; font-size: 42px; color: var(--parchment); line-height: 1; }
.price-main span.unit { font-family: 'Raleway', Arial, sans-serif; font-size: 15px; color: var(--morning-mist); font-weight: 400; }
.price-annual { font-size: 12.5px; color: var(--dawn-amber); margin: 10px 0 20px; font-weight: 600; }
@media (max-width: 720px) { .sub-card { grid-template-columns: 1fr; padding: 32px 24px; } }

.courses-head { margin: 40px 0 20px; text-align: center; }
.courses-head h3 { font-size: 12px; font-family: 'Raleway', Arial, sans-serif; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--slate-blue); }
.courses-head p { font-size: 13.5px; color: var(--slate-blue); margin-top: 6px; }

.free-callout {
  margin-top: 30px; background: var(--parchment); border: 1px dashed var(--morning-mist);
  border-radius: 4px; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.free-callout .txt { flex: 1; min-width: 220px; }
.free-callout .txt strong { color: var(--night-navy); font-size: 14px; display: block; margin-bottom: 4px; }
.free-callout .txt span { font-size: 13px; color: var(--slate-blue); }

.crosssell { margin-top: 34px; text-align: center; padding: 20px; border-top: 1px solid var(--hairline); }
.crosssell p { font-size: 13.5px; color: var(--slate-blue); }
.crosssell a { color: var(--sunrise); font-weight: 700; }
.crosssell a:hover { text-decoration: underline; }

/* ---------- VALUE ROW ---------- */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1px; background: rgba(254,253,250,0.12); border-radius: 6px; overflow: hidden; }
.value-card { background: rgba(13,32,53,0.5); padding: 40px 32px; }
.value-card .tag { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dawn-amber); margin-bottom: 16px; display: block; }
.value-card h3 { font-size: 20px; color: var(--parchment); margin-bottom: 12px; }
.value-card p { font-size: 13.5px; color: var(--morning-mist); line-height: 1.6; }

/* ---------- STORY / TWO COLUMN ---------- */
.twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.twocol h2 { font-size: 32px; margin-bottom: 18px; line-height: 1.24; }
.twocol p { font-size: 15.5px; color: var(--slate-blue); line-height: 1.75; margin-bottom: 16px; }
.sec-dark .twocol p, .sec-navy .twocol p { color: var(--morning-mist); }
.twocol .portrait { border-radius: 6px; overflow: hidden; }
.twocol .portrait img { width: 100%; height: auto; }
@media (max-width: 860px) { .twocol { grid-template-columns: 1fr; gap: 32px; } .twocol h2 { font-size: 26px; } }

.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 28px; margin: 40px 0 14px; line-height: 1.3; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: 'Raleway', Arial, sans-serif; font-size: 17px; font-weight: 700; margin: 28px 0 10px; }
.prose p { font-size: 15.5px; color: var(--slate-blue); line-height: 1.8; margin-bottom: 16px; }
.prose ul { margin: 0 0 18px 20px; }
.prose li { font-size: 15.5px; color: var(--slate-blue); line-height: 1.75; margin-bottom: 8px; }
.prose a { color: var(--sunrise); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.pullquote {
  border-left: 3px solid var(--dawn-amber); background: var(--tint);
  padding: 22px 26px; margin: 28px 0; border-radius: 2px;
}
.pullquote p { font-family: 'Prata', Georgia, serif; font-style: italic; font-size: 17px; color: var(--night-navy); line-height: 1.6; margin: 0; }
.pullquote cite { display: block; margin-top: 12px; font-family: 'Raleway', Arial, sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate-blue); font-style: normal; }
.policy-note {
  background: #FFF6E0; border: 1px solid var(--dawn-amber); border-radius: 4px;
  padding: 18px 22px; margin-bottom: 30px; font-size: 13.5px; color: var(--night-navy);
}
.policy-note strong { display: block; margin-bottom: 5px; }

/* ---------- RESOURCE CARDS ---------- */
.res-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.res-card {
  background: var(--parchment); border: 1px solid var(--hairline); border-radius: 6px;
  padding: 32px 28px; display: flex; flex-direction: column; gap: 12px;
  border-left: 4px solid var(--cloud-blue);
}
.res-card.legal { border-left-color: var(--dawn-amber); }
.res-card.acct { border-left-color: var(--sunrise); }
.res-card .kicker { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--slate-blue); }
.res-card h3 { font-size: 21px; line-height: 1.3; }
.res-card .when { font-family: 'Prata', Georgia, serif; font-size: 14.5px; color: var(--sunrise); line-height: 1.5; }
.res-card p { font-size: 14px; color: var(--slate-blue); line-height: 1.65; flex-grow: 1; }
.res-card .go { font-size: 12.5px; font-weight: 700; color: var(--night-navy); text-transform: uppercase; letter-spacing: 0.06em; }
.res-card .go:hover { color: var(--sunrise); }

/* ---------- COMING SOON ---------- */
.soon { background: var(--night-navy); color: var(--parchment); padding: 74px 0; }
.soon h2 { font-size: 32px; line-height: 1.25; color: var(--parchment); margin-bottom: 18px; max-width: 620px; }
.soon p { font-size: 15.5px; color: var(--morning-mist); line-height: 1.75; max-width: 700px; margin-bottom: 16px; }
.soon-form { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; max-width: 560px; }
.soon-form input[type="email"] {
  flex: 1; min-width: 220px; padding: 14px 16px; border-radius: 3px;
  border: 1px solid rgba(254,253,250,0.28); background: rgba(254,253,250,0.06);
  color: var(--parchment); font-family: 'Raleway', Arial, sans-serif; font-size: 14.5px;
}
.soon-form input[type="email"]::placeholder { color: rgba(204,211,229,0.6); }
.soon-form input[type="email"]:focus { outline: none; border-color: var(--dawn-amber); }
.soon-note { font-size: 12px; color: rgba(204,211,229,0.65); margin-top: 14px; }
.soon-card {
  background: var(--parchment); border-radius: 6px; padding: 22px 24px;
  margin-top: 28px; max-width: 700px; border-top: 4px solid var(--dawn-amber);
}
@media (max-width: 520px) { .soon-card { padding: 18px 16px; } }
/* Sits on the navy section above the form card, so it reads light */
.soon-card-head {
  font-family: 'Prata', Georgia, serif; font-size: 21px; line-height: 1.3;
  color: var(--dawn-amber); margin-top: 34px; margin-bottom: 8px;
}
.soon-card-sub {
  font-size: 14.5px; color: var(--morning-mist); line-height: 1.65;
  max-width: 700px; margin-bottom: 0;
}
.soon-card-sub + .soon-card { margin-top: 18px; }

/* ---------- EMBEDDED HUBSPOT FORMS ----------
   Developer embed code renders in the normal page DOM, so these
   rules restyle HubSpot's markup to match the rest of the site.
   Field labels and button text are still set in HubSpot. */

.hs-form-html { width: 100%; font-family: 'Raleway', Arial, sans-serif; }
.hs-form-html form { margin: 0; }

/* field wrapper */
.hs-form-html .hs-form-field { margin-bottom: 20px; }
.hs-form-html .hs-form-field:last-of-type { margin-bottom: 16px; }

/* labels */
.hs-form-html label {
  display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--slate-blue); margin-bottom: 7px;
  line-height: 1.4;
}
.hs-form-html .hs-form-required { color: var(--sunrise); margin-left: 2px; }
.hs-form-html .hs-field-desc {
  font-size: 12px; font-weight: 400; letter-spacing: 0; text-transform: none;
  color: var(--slate-blue); margin: 0 0 7px;
}

/* inputs */
.hs-form-html input[type="text"],
.hs-form-html input[type="email"],
.hs-form-html input[type="tel"],
.hs-form-html input[type="number"],
.hs-form-html select,
.hs-form-html textarea,
.hs-form-html .hs-input {
  width: 100% !important; box-sizing: border-box;
  padding: 13px 14px; border: 1px solid var(--morning-mist); border-radius: 3px;
  font-family: 'Raleway', Arial, sans-serif; font-size: 15px;
  color: var(--night-navy); background: #fff; line-height: 1.4;
  -webkit-appearance: none; appearance: none;
}
.hs-form-html select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%233A4A5E' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 38px;
}
.hs-form-html textarea { min-height: 150px; resize: vertical; }
.hs-form-html input:focus,
.hs-form-html select:focus,
.hs-form-html textarea:focus { outline: none; border-color: var(--dawn-amber); }
.hs-form-html input::placeholder,
.hs-form-html textarea::placeholder { color: var(--slate-blue); opacity: 0.7; }

/* checkbox and radio keep their native size */
.hs-form-html input[type="checkbox"],
.hs-form-html input[type="radio"] { width: auto !important; margin-right: 8px; }
.hs-form-html .inputs-list { list-style: none; margin: 0; padding: 0; }
.hs-form-html .inputs-list label {
  text-transform: none; letter-spacing: 0; font-weight: 400;
  font-size: 14px; color: var(--slate-blue);
}

/* validation */
.hs-form-html .hs-error-msgs { list-style: none; margin: 6px 0 0; padding: 0; }
.hs-form-html .hs-error-msg,
.hs-form-html .hs-error-msgs label {
  font-size: 12px; font-weight: 500; letter-spacing: 0; text-transform: none;
  color: #C0392B; margin: 0;
}
.hs-form-html .hs-input.invalid { border-color: #C0392B; }

/* legal and rich text */
.hs-form-html .hs-richtext,
.hs-form-html .legal-consent-container {
  font-size: 12.5px; color: var(--slate-blue); line-height: 1.6; margin-bottom: 16px;
}
.hs-form-html .hs-richtext:empty { display: none; }

/* submit */
.hs-form-html .hs_submit { margin-top: 4px; }
.hs-form-html .actions { margin: 0; padding: 0; }
.hs-form-html input[type="submit"],
.hs-form-html .hs-button {
  width: 100%; display: block; cursor: pointer;
  background: var(--dawn-amber); color: var(--night-navy); border: none;
  padding: 15px 30px; border-radius: 3px;
  font-family: 'Raleway', Arial, sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: background 0.15s ease;
}
.hs-form-html input[type="submit"]:hover,
.hs-form-html .hs-button:hover { background: #f5c569; }

/* inline confirmation, if a form is ever left without a redirect */
.hs-form-html .submitted-message {
  font-size: 15px; color: var(--night-navy); line-height: 1.7;
}
@media (max-width: 720px) { .soon h2 { font-size: 26px; } }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--hairline); padding: 22px 0; }
.faq-item h3 { font-size: 16px; font-weight: 600; font-family: 'Raleway', Arial, sans-serif; color: var(--night-navy); margin-bottom: 8px; }
.faq-item p { font-size: 14px; color: var(--slate-blue); line-height: 1.7; }

/* ---------- COMPARE TABLE ---------- */
.cmp { width: 100%; border-collapse: collapse; background: var(--parchment); border: 1px solid var(--hairline); border-radius: 6px; overflow: hidden; }
.cmp th, .cmp td { padding: 15px 18px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--hairline); }
.cmp thead th { background: var(--night-navy); color: var(--parchment); font-family: 'Raleway', Arial, sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.cmp tbody th { font-weight: 600; color: var(--night-navy); width: 40%; }
.cmp td { color: var(--slate-blue); }
.cmp tbody tr:last-child th, .cmp tbody tr:last-child td { border-bottom: none; }
@media (max-width: 640px) { .cmp th, .cmp td { padding: 12px 12px; font-size: 13px; } }

/* ---------- FORM ---------- */
.formcard { background: var(--parchment); border: 1px solid var(--hairline); border-radius: 6px; padding: 36px 34px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate-blue); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--morning-mist); border-radius: 3px;
  font-family: 'Raleway', Arial, sans-serif; font-size: 15px; color: var(--night-navy);
  background: #fff;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--dawn-amber); }
.hidden-field { position: absolute; left: -9999px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; gap: 0; } }
button[type="submit"][disabled] { opacity: 0.6; cursor: default; }

/* ---------- FINAL CTA ---------- */
.final-cta { background: var(--night-navy); padding: 74px 0; text-align: center; color: var(--parchment); }
.final-cta h2 { font-size: 32px; color: var(--parchment); margin-bottom: 16px; }
.final-cta p { font-size: 15.5px; color: var(--morning-mist); max-width: 540px; margin: 0 auto 30px; }
.final-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 720px) { .final-cta h2 { font-size: 26px; } }

/* ---------- FOOTER ---------- */
footer { background: var(--deep-teal); padding: 54px 0 28px; }
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px;
  padding-bottom: 30px; border-bottom: 1px solid rgba(204,211,229,0.15);
}
.foot-logo { height: 40px; width: auto; margin-bottom: 18px; }
.foot-tag { font-family: 'Prata', Georgia, serif; font-size: 14px; color: var(--dawn-amber); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.foot-addr { font-size: 12.5px; color: rgba(204,211,229,0.75); line-height: 1.7; }
.foot-addr a { text-decoration: underline; }
.foot-addr a:hover { color: var(--parchment); }
.foot-col h3 { font-family: 'Raleway', Arial, sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dawn-amber); margin-bottom: 14px; }
.foot-col a { display: block; font-size: 13px; color: var(--morning-mist); margin-bottom: 9px; }
.foot-col a:hover { color: var(--parchment); }
.foot-social { display: flex; gap: 18px; justify-content: center; padding: 24px 0 14px; }
.foot-social a { font-size: 12px; color: var(--morning-mist); letter-spacing: 0.04em; }
.foot-social a:hover { color: var(--dawn-amber); }
.foot-bottom { text-align: center; font-size: 11.5px; color: rgba(204,211,229,0.5); line-height: 1.8; }
.foot-bottom a { text-decoration: underline; }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } .foot-social { flex-wrap: wrap; } }

/* ---------- 404 / THANKS ---------- */
.center-page { min-height: 68vh; display: flex; align-items: center; text-align: center; }
.center-page h1 { font-size: 40px; margin-bottom: 16px; }
.center-page p { font-size: 16px; color: var(--slate-blue); max-width: 480px; margin: 0 auto 28px; }

/* ============================================================
   WAVE 2  ·  course, advisor, and pillar pages
   ============================================================ */

/* ---------- SUB NAV (course pages) ---------- */
.subnav {
  position: sticky; top: 92px; z-index: 90;
  background: rgba(254,253,250,0.96);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.subnav-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px; height: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.subnav-links { display: flex; align-items: center; gap: 24px; overflow-x: auto; }
.subnav-links a {
  font-size: 13px; font-weight: 600; color: var(--slate-blue); white-space: nowrap;
}
.subnav-links a:hover { color: var(--night-navy); }
.subnav-cta {
  background: var(--dawn-amber); color: var(--night-navy); padding: 9px 18px;
  border-radius: 3px; font-weight: 700; font-size: 12px; letter-spacing: 0.04em;
  text-transform: uppercase; white-space: nowrap; flex-shrink: 0;
}
.subnav-cta:hover { background: #f5c569; }
@media (max-width: 900px) {
  .subnav { top: 76px; }
  .subnav-inner { height: 52px; gap: 12px; }
  .subnav-links { gap: 18px; }
  .subnav-links a { font-size: 12.5px; }
}
@media (max-width: 620px) { .subnav-links { display: none; } .subnav-inner { justify-content: center; } }

/* ---------- COURSE HERO ---------- */
.course-hero { padding: 150px 0 76px; text-align: left; }
.hero-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 52px; align-items: start; }
.hero-kicker {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--dawn-amber); margin-bottom: 14px;
}
.course-hero h1 { font-size: 44px; line-height: 1.14; color: var(--parchment); margin-bottom: 14px; }
.hero-series {
  font-size: 12.5px; color: var(--dawn-amber); font-weight: 600;
  letter-spacing: 0.02em; margin-bottom: 16px;
}
.lede { font-size: 16.5px; color: var(--morning-mist); line-height: 1.7; margin-bottom: 26px; max-width: 620px; }
.hero-byline { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.hero-byline img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.hero-byline span { font-size: 13.5px; color: var(--morning-mist); line-height: 1.5; }
.hero-byline strong { color: var(--parchment); font-weight: 600; }
.hero-card {
  background: rgba(254,253,250,0.06); border: 1px solid rgba(254,253,250,0.16);
  border-radius: 5px; padding: 30px 28px; border-top: 4px solid var(--dawn-amber);
}
.hero-card .price-main { font-family: 'Prata', Georgia, serif; font-size: 42px; color: var(--parchment); line-height: 1; }
.hero-card .price-note { font-size: 12.5px; color: var(--dawn-amber); margin: 10px 0 20px; font-weight: 600; }
.hero-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.hero-card ul li { font-size: 13.5px; color: var(--morning-mist); display: flex; gap: 9px; line-height: 1.45; }
.hero-card ul li .dot { color: var(--dawn-amber); flex-shrink: 0; }
@media (max-width: 900px) { .course-hero { padding: 120px 0 60px; } .hero-grid { grid-template-columns: 1fr; gap: 34px; } }
@media (max-width: 640px) { .course-hero h1 { font-size: 31px; } .lede { font-size: 15.5px; } }

/* ---------- RECOGNITION ---------- */
.recognition { background: var(--tint); padding: 72px 0; }
.recognition-head { text-align: center; margin-bottom: 40px; }
.recognition-head h2 { font-size: 30px; line-height: 1.3; max-width: 720px; margin: 0 auto; }
.rec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rec-card {
  background: var(--parchment); border: 1px solid var(--hairline);
  border-left: 3px solid var(--sunrise); border-radius: 4px; padding: 22px 24px;
}
.rec-card p {
  font-family: 'Prata', Georgia, serif; font-style: italic; font-size: 15px;
  color: var(--night-navy); line-height: 1.6;
}
@media (max-width: 860px) { .rec-grid { grid-template-columns: 1fr; } .recognition-head h2 { font-size: 25px; } }

/* ---------- CURRICULUM ---------- */
.curriculum { padding: 76px 0; }
.curriculum-head { text-align: center; margin-bottom: 36px; }
.curriculum-head h2 { font-size: 30px; line-height: 1.3; margin-bottom: 12px; }
.curriculum-head p { font-size: 15px; color: var(--slate-blue); max-width: 560px; margin: 0 auto; }
.module {
  background: var(--parchment); border: 1px solid var(--hairline);
  border-radius: 4px; margin-bottom: 12px; overflow: hidden;
}
.module summary {
  display: flex; align-items: center; gap: 14px; padding: 18px 22px;
  cursor: pointer; list-style: none;
}
.module summary::-webkit-details-marker { display: none; }
.module .m-left { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 0; }
.module .m-num {
  width: 28px; height: 28px; border-radius: 50%; background: var(--night-navy);
  color: var(--dawn-amber); font-family: 'Prata', Georgia, serif; font-size: 13px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.module .m-title { font-family: 'Prata', Georgia, serif; font-size: 16px; color: var(--night-navy); line-height: 1.35; }
.module .m-count {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--slate-blue); white-space: nowrap;
}
.module .m-icon { color: var(--dawn-amber); font-size: 15px; flex-shrink: 0; }
.module[open] .m-icon { transform: rotate(45deg); }
.lessons { list-style: none; padding: 0 22px 20px 64px; }
.lessons li {
  font-size: 14px; color: var(--slate-blue); padding: 7px 0;
  border-top: 1px solid var(--hairline); line-height: 1.5;
}
.lessons-flat {
  padding: 0; background: var(--parchment); border: 1px solid var(--hairline);
  border-radius: 4px; overflow: hidden;
}
.lessons-flat li { padding: 16px 22px; border-top: 1px solid var(--hairline); font-size: 15px; }
.lessons-flat li:first-child { border-top: none; }
@media (max-width: 620px) {
  .module summary { flex-wrap: wrap; gap: 10px; }
  .module .m-count { width: 100%; padding-left: 42px; }
  .lessons { padding-left: 22px; }
}

/* ---------- RESOURCES ---------- */
.resources { background: var(--tint); padding: 76px 0; }
.resources-head { text-align: center; margin-bottom: 36px; }
.resources-head h2 { font-size: 30px; margin-bottom: 12px; line-height: 1.3; }
.resources-head p { font-size: 15px; color: var(--slate-blue); max-width: 560px; margin: 0 auto; }
.resource-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 14px; }
.resource-card {
  background: var(--parchment); border: 1px solid var(--hairline);
  border-left: 3px solid var(--dawn-amber); border-radius: 4px;
  padding: 18px 20px; display: flex; align-items: flex-start; gap: 13px;
}
.resource-card .r-icon {
  width: 28px; height: 28px; border-radius: 50%; background: var(--night-navy);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  color: var(--dawn-amber); font-size: 12px;
}
.resource-card p { font-size: 13.5px; font-weight: 600; color: var(--night-navy); line-height: 1.4; }

/* ---------- INSTRUCTOR ---------- */
.instructor { background: var(--deep-teal); padding: 76px 0; color: var(--parchment); }
.instructor-grid { display: grid; grid-template-columns: 260px 1fr; gap: 44px; align-items: start; }
.instructor-grid img { width: 100%; height: auto; border-radius: 5px; }
.instructor h2 { font-size: 28px; color: var(--parchment); margin-bottom: 6px; line-height: 1.25; }
.instructor-title { font-size: 14px; color: var(--dawn-amber); margin-bottom: 18px; font-weight: 600; }
.instructor p { font-size: 15px; color: var(--morning-mist); line-height: 1.75; margin-bottom: 14px; }
.instructor-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.instructor-btns-light { margin-top: 8px; }
@media (max-width: 780px) { .instructor-grid { grid-template-columns: 1fr; gap: 28px; } .instructor-grid img { max-width: 220px; } }

/* ---------- CTA BAND ---------- */
.cta-band { padding: 72px 0; background: var(--parchment); }
.cta-band-card {
  background: var(--night-navy); border-radius: 6px; padding: 46px 40px; text-align: center;
}
.cta-band-card h2 { font-size: 30px; color: var(--parchment); margin-bottom: 14px; line-height: 1.3; }
.cta-band-card p { font-size: 15px; color: var(--morning-mist); max-width: 520px; margin: 0 auto 26px; }
@media (max-width: 640px) { .cta-band-card { padding: 34px 24px; } .cta-band-card h2 { font-size: 25px; } }

/* ---------- FAQ + ALT PATH ---------- */
.faq-section { background: var(--tint); padding: 76px 0; }
.alt-path {
  margin-top: 30px; background: var(--parchment); border: 1px dashed var(--morning-mist);
  border-radius: 4px; padding: 22px 26px; display: flex; align-items: center;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.alt-path .txt { flex: 1; min-width: 220px; }
.alt-path .txt strong { display: block; color: var(--night-navy); font-size: 14px; margin-bottom: 4px; }
.alt-path .txt span { font-size: 13px; color: var(--slate-blue); }

/* ---------- MORE COURSES / CROSS-SELL GRIDS ---------- */
.more-courses { padding: 76px 0; }
.more-head { text-align: center; margin-bottom: 36px; }
.more-head h2 { font-size: 30px; line-height: 1.3; }
.more-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 900px) { .more-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .more-grid { grid-template-columns: 1fr; } }
.more-grid-single { max-width: 340px; margin: 0 auto; }
.more-card {
  background: var(--parchment); border: 1px solid var(--hairline);
  border-top: 3px solid var(--dawn-amber); border-radius: 4px; padding: 22px 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.more-card h3 { font-size: 17px; line-height: 1.3; }
.more-card p { font-size: 13px; color: var(--slate-blue); line-height: 1.5; flex-grow: 1; }
.more-card-link { transition: border-color 0.15s ease; }
.more-card-link:hover { border-color: var(--dawn-amber); }

/* ---------- ADVISOR CARDS AS LINKS ---------- */
.adv-card-link { display: block; transition: border-color 0.15s ease, transform 0.15s ease; }
.adv-card-link:hover { border-color: var(--dawn-amber); transform: translateY(-2px); }
.adv-card .go {
  display: block; margin-top: 14px; font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--sunrise);
}
.portrait-adv { max-width: 320px; }
.portrait-adv img { border-radius: 6px; }

/* ---------- PILLAR PAGES ---------- */
.pillar-link { display: block; transition: background 0.15s ease; }
.pillar-link:hover { background: rgba(13,32,53,0.8); }
.pillar .go {
  display: block; margin-top: 14px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--dawn-amber);
}
.q-card {
  background: var(--tint); border-radius: 6px; padding: 30px 28px;
  border-left: 4px solid var(--dawn-amber);
}
.q-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 16px; }
.q-list li {
  font-family: 'Prata', Georgia, serif; font-size: 15.5px; color: var(--night-navy);
  line-height: 1.5; display: flex; gap: 11px; align-items: flex-start;
}
.q-list li .dot { color: var(--dawn-amber); flex-shrink: 0; font-family: 'Raleway', sans-serif; }
.value-card .btn { margin-top: 18px; }
.sec-foot { text-align: center; margin-top: 30px; }
.sec-foot a {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--dawn-amber);
}
.sec-dark .sec-foot a:hover, .sec-foot a:hover { color: var(--sunrise); }
.resource-more { border-left-color: var(--cloud-blue); background: var(--tint); }
.resource-more .r-icon { background: var(--cloud-blue); }
.resource-more p { color: var(--slate-blue); font-weight: 500; }

/* Centred card rows that keep full card width regardless of how many
   cards there are. Used on advisor pages and on pillar pages with a
   single course. Declared last so it wins over the base .more-grid
   column rules at the same specificity. */
.more-grid-centered,
.more-grid-single {
  grid-template-columns: repeat(auto-fit, minmax(280px, 330px));
  justify-content: center;
  max-width: none;
  margin: 0;
}
@media (max-width: 640px) {
  .more-grid-centered,
  .more-grid-single { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- eosIQ pricing card supporting bits ---------- */
.sub-card-note { font-size: 11.5px; color: var(--morning-mist); margin-top: 12px; }
.cmp-lead {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--slate-blue); text-align: center; margin: 34px 0 14px;
}

/* ============================================================
   NOTIFICATION BAND
   Amber band with dark text, so the embedded HubSpot form reads
   as part of the page rather than a white box dropped onto navy.
   ============================================================ */
.soon-band {
  background: var(--dawn-amber);
  background-image: radial-gradient(circle at 78% -20%, rgba(254,253,250,0.45), rgba(254,253,250,0) 62%),
                    radial-gradient(circle at 12% 120%, rgba(232,130,74,0.35), rgba(232,130,74,0) 58%);
  padding: 66px 0;
}
.soon-band-eyebrow { color: var(--night-navy) !important; opacity: 0.7; }
.soon-band-head {
  font-family: 'Prata', Georgia, serif; font-size: 32px; line-height: 1.25;
  color: var(--night-navy); margin-bottom: 12px; max-width: 640px;
}
.soon-band-sub {
  font-size: 16px; color: #4a3a1c; line-height: 1.65; max-width: 620px; margin-bottom: 28px;
}
.soon-band-form { max-width: 620px; }
.soon-band-note { font-size: 12.5px; color: #4a3a1c; margin-top: 16px; max-width: 620px; }
@media (max-width: 720px) {
  .soon-band { padding: 52px 0; }
  .soon-band-head { font-size: 26px; }
}

/* HubSpot form on the amber band */
.soon-band .hs-form-html label { color: var(--night-navy); }
.soon-band .hs-form-html .hs-form-required { color: #8a4b1a; }
.soon-band .hs-form-html .hs-field-desc,
.soon-band .hs-form-html .hs-richtext,
.soon-band .hs-form-html .legal-consent-container { color: #4a3a1c; }
.soon-band .hs-form-html input[type="text"],
.soon-band .hs-form-html input[type="email"],
.soon-band .hs-form-html .hs-input {
  background: var(--parchment); border-color: rgba(30,42,56,0.22); color: var(--night-navy);
}
.soon-band .hs-form-html input:focus { border-color: var(--night-navy); }
.soon-band .hs-form-html input::placeholder { color: var(--slate-blue); opacity: 0.65; }
.soon-band .hs-form-html input[type="submit"],
.soon-band .hs-form-html .hs-button {
  background: var(--night-navy); color: var(--parchment);
}
.soon-band .hs-form-html input[type="submit"]:hover,
.soon-band .hs-form-html .hs-button:hover { background: var(--slate-blue); }
.soon-band .hs-form-html .hs-error-msg,
.soon-band .hs-form-html .hs-error-msgs label { color: #7d1f14; }
