/* ==========================================================================
   Visionary Support — landing page
   Brand: Gold Yellow #F4B400 · Flame Orange #F04E23 · Ivory White #F5F5F2
          Deep Charcoal #1A1A1A · Light Gray #D9D9D9
   Type:  Iceland (single weight — hierarchy comes from size, tracking, case)
   ========================================================================== */

:root {
  --gold:        #F4B400;
  --gold-soft:   #FDF3D6;
  --flame:       #F04E23;
  --flame-soft:  #FDE6DF;
  --ivory:       #F5F5F2;
  --charcoal:    #1A1A1A;
  --gray:        #D9D9D9;
  --white:       #FFFFFF;

  --ink:         var(--charcoal);
  --ink-mid:     #55554F;
  --ink-soft:    #8A8A82;
  --line:        var(--gray);
  --line-soft:   #E8E8E4;

  --font: 'Iceland', 'Trebuchet MS', system-ui, sans-serif;

  --shell:   1180px;
  --radius:  12px;
  --radius-sm: 8px;

  --shadow-sm: 0 1px 2px rgba(26, 26, 26, .05);
  --shadow-md: 0 10px 30px rgba(26, 26, 26, .07);
  --shadow-lg: 0 26px 60px rgba(26, 26, 26, .10);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------- reset & base */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font);
  /* Iceland renders small and condensed — everything is scaled up a notch */
  font-size: 20px;
  line-height: 1.65;
  letter-spacing: .012em;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: -.005em; }

p { margin: 0 0 1em; }

ul { margin: 0; padding: 0; list-style: none; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--charcoal);
  color: var(--ivory);
  padding: .6rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--flame);
  outline-offset: 3px;
}

/* --------------------------------------------------------- layout */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 28px;
}

.shell--narrow { max-width: 820px; }

.section { padding: 108px 0; }

.section--tint {
  background: var(--white);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.section__head { max-width: 640px; margin-bottom: 52px; }

.section__title {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  margin-bottom: .35em;
}

.section__lede {
  color: var(--ink-mid);
  font-size: 1.15rem;
  margin: 0;
}

.eyebrow {
  margin: 0 0 .8em;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--gold);
}

/* --------------------------------------------------------- top bar */

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245, 245, 242, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 1rem;
  letter-spacing: .04em;
}

.brand__name { font-size: 1.35rem; letter-spacing: .01em; }

.nav { display: flex; align-items: center; gap: 6px; }

.nav__link {
  padding: .45rem .95rem;
  border-radius: 999px;
  font-size: 1.1rem;
  text-decoration: none;
  color: var(--ink-mid);
  transition: background-color .2s var(--ease), color .2s var(--ease);
}

.nav__link:hover { color: var(--ink); background: var(--line-soft); }

.nav__link.is-current { background: var(--gold-soft); color: var(--ink); }

/* --------------------------------------------------------- hero */

.hero {
  position: relative;
  padding: 96px 0 104px;
  text-align: center;
  overflow: hidden;
}

/* Signature: the outlined word sitting behind the live console */
.ghost {
  margin: 0;
  font-size: clamp(6rem, 17vw, 15rem);
  line-height: .8;
  letter-spacing: .02em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gray);
  user-select: none;
  pointer-events: none;
}

.console {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  margin: clamp(-9rem, -11vw, -6rem) auto 0;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.console__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--charcoal);
  color: var(--ivory);
  font-size: .95rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.console__title { flex: 1; }

.console__clock { color: var(--gold); letter-spacing: .1em; }

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gray);
  flex: none;
}

.dot--live {
  background: var(--flame);
  box-shadow: 0 0 0 0 rgba(240, 78, 35, .55);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(240, 78, 35, .5); }
  70%  { box-shadow: 0 0 0 10px rgba(240, 78, 35, 0); }
  100% { box-shadow: 0 0 0 0 rgba(240, 78, 35, 0); }
}

.console__body { padding: 22px 20px 8px; }

.line {
  margin: 0 0 14px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  line-height: 1.5;
}

.line__who {
  display: block;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--ink-soft);
  margin-bottom: 2px;
}

.line--in  { background: var(--ivory); }
.line--out { background: var(--gold-soft); }
.line--sys { background: transparent; color: var(--ink-soft); font-size: .95rem; padding-left: 0; }

.console__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 20px;
  border-top: 1px solid var(--line-soft);
  background: #FCFCFA;
}

.console__meta { font-size: .95rem; color: var(--ink-mid); }
.console__meta strong { font-weight: 400; color: var(--ink); }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: .25rem .7rem;
  border-radius: 999px;
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--line-soft);
  color: var(--ink-mid);
}

.chip--live { background: var(--flame-soft); color: #A62F0F; }

.chip--live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--flame);
}

.hero__title {
  margin: 58px auto 0;
  font-size: clamp(3.2rem, 8vw, 6rem);
  letter-spacing: -.01em;
}

.hero__sub {
  max-width: 620px;
  margin: 22px auto 0;
  font-size: 1.2rem;
  color: var(--ink-mid);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

/* --------------------------------------------------------- buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  font-family: inherit;
  font-size: 1.15rem;
  letter-spacing: .04em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background-color .18s var(--ease);
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

.btn--primary:hover { background: #E8AB00; }

.btn--ghost { background: transparent; }
.btn--ghost:hover { background: var(--white); }

.btn--block { width: 100%; }

/* --------------------------------------------------------- status band */

.band {
  padding: 76px 0;
  background: var(--white);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  text-align: center;
}

.band .eyebrow { text-align: center; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}

.stat {
  padding: 30px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.stat--accent { border-color: var(--gold); background: #FFFDF6; }

.stat__num {
  display: block;
  font-size: 2.5rem;
  line-height: 1.1;
  color: var(--gold);
}

.stat--accent .stat__num { color: var(--charcoal); }

.stat__label {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
  color: var(--ink-mid);
  letter-spacing: .04em;
}

.band__note { margin: 0; color: var(--ink-mid); font-size: 1.05rem; }

.tag {
  display: inline-block;
  padding: .1rem .55rem;
  border-radius: 4px;
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tag--urgent { background: var(--flame); color: var(--white); }

/* --------------------------------------------------------- channel cards */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  display: flex;
  flex-direction: column;
  padding: 34px 30px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease),
              border-color .22s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.card__kicker {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: .2rem .7rem;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #8A6400;
  font-size: .88rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.card__title { font-size: 1.9rem; margin-bottom: .45em; }

.card__text { color: var(--ink-mid); font-size: 1.08rem; }

.card__list { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line-soft); }

.card__list li {
  position: relative;
  padding-left: 22px;
  font-size: 1.02rem;
  color: var(--ink-mid);
  margin-bottom: 5px;
}

.card__list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: .72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

/* --------------------------------------------------------- FAQ */

.faq { border-top: 1px solid var(--line); }

.qa { border-bottom: 1px solid var(--line); }

.qa__q {
  position: relative;
  display: block;
  padding: 26px 52px 26px 0;
  font-size: 1.45rem;
  cursor: pointer;
  list-style: none;
  transition: color .18s var(--ease);
}

.qa__q::-webkit-details-marker { display: none; }

.qa__q:hover { color: var(--gold); }

.qa__q::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--gold);
  transition: transform .22s var(--ease);
}

.qa[open] > .qa__q::after { content: "–"; }

.qa__a { padding: 0 60px 28px 0; }

.qa__a p { margin: 0; color: var(--ink-mid); font-size: 1.1rem; }

/* --------------------------------------------------------- ticket form */

.ticket {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.ticket__intro { padding-top: 6px; }

.ticket__contact {
  margin: 28px 0 0;
  font-size: 1.08rem;
  color: var(--ink-mid);
  line-height: 1.9;
}

.ticket__contact a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.form {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.field { margin: 0 0 18px; }

.label {
  display: block;
  margin-bottom: 7px;
  font-size: .98rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-mid);
}

.input {
  width: 100%;
  padding: .7rem .85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--ivory);
  color: var(--ink);
  font-family: inherit;
  font-size: 1.08rem;
  transition: border-color .18s var(--ease), background-color .18s var(--ease);
}

.input::placeholder { color: var(--ink-soft); }

.input:focus {
  background: var(--white);
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px var(--gold-soft);
}

.input--area { resize: vertical; min-height: 130px; line-height: 1.6; }

.input--file { padding: .55rem .6rem; }

.hint { display: block; margin-top: 6px; font-size: .95rem; color: var(--ink-soft); }

.form__status { margin: 14px 0 0; font-size: 1.02rem; min-height: 1.6em; }
.form__status.is-ok    { color: #1F7A3D; }
.form__status.is-error { color: var(--flame); }

/* --------------------------------------------------------- footer */

.footer {
  background: var(--white);
  border-top: 1px solid var(--line-soft);
  padding-top: 62px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 52px;
}

.footer__blurb {
  margin: 18px 0 0;
  max-width: 320px;
  color: var(--ink-mid);
  font-size: 1.05rem;
}

.footer__head {
  margin: 0 0 16px;
  font-size: .95rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.footer__col { display: flex; flex-direction: column; gap: 10px; }

.footer__col a {
  text-decoration: none;
  color: var(--ink-mid);
  font-size: 1.08rem;
  transition: color .18s var(--ease);
}

.footer__col a:hover { color: var(--gold); }

.footer__legal {
  padding: 22px 28px;
  border-top: 1px solid var(--line-soft);
}

.footer__legal p { margin: 0; font-size: .98rem; color: var(--ink-soft); }

/* --------------------------------------------------------- responsive */

@media (max-width: 940px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: 1fr; }
  .ticket { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  body { font-size: 19px; }
  .shell { padding: 0 20px; }
  .section { padding: 74px 0; }
  .hero { padding: 60px 0 78px; }

  .nav { display: none; }

  .ghost { -webkit-text-stroke-width: 1px; }
  .console { margin-top: clamp(-5rem, -13vw, -3rem); }
  .console__foot { flex-direction: column; align-items: flex-start; }
  .hero__title { margin-top: 44px; }

  .form { padding: 24px 20px; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .form__row .field { margin-bottom: 18px; }

  .qa__q { font-size: 1.3rem; padding-right: 44px; }
  .qa__a { padding-right: 0; }
}

/* --------------------------------------------------------- motion */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}