/* Turquoise Tiospaye — EQ Journey */
:root {
  --ink: #102026;
  --muted: #53666c;
  --paper: #f7f4ec;
  --card: #ffffff;
  --turquoise: #0b7778;
  --turquoise-dark: #07595b;
  --sun: #d79a20;
  --earth: #9f3f2c;
  --night: #172b35;
  --line: #d9dfdc;
  --focus: #111;
  --shadow: 0 18px 45px rgba(16, 32, 38, .11);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 8%, rgba(11,119,120,.12), transparent 24rem),
    radial-gradient(circle at 95% 16%, rgba(215,154,32,.11), transparent 28rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 100;
  background: #fff; padding: .8rem 1rem; border-radius: .5rem;
}
.skip-link:focus { top: 1rem; }
.site-header {
  max-width: 1240px; margin: 0 auto; padding: 1.1rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; }
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand strong { display: block; font-size: 1.05rem; letter-spacing: .02em; }
.brand small { color: var(--muted); }
.home-link { font-weight: 800; color: var(--turquoise-dark); }
main { width: min(1160px, calc(100% - 2rem)); margin: 0 auto; }
.hero {
  min-height: 570px; display: grid; grid-template-columns: 1.3fr .7fr;
  align-items: center; gap: clamp(2rem, 6vw, 6rem); padding: 4.5rem clamp(1rem, 5vw, 4rem);
  border-radius: 34px; color: #fff; overflow: hidden; position: relative;
  background:
    linear-gradient(115deg, rgba(5,54,57,.97), rgba(14,112,113,.88)),
    url("../img/sunset-1400.jpg") center/cover;
  box-shadow: var(--shadow);
}
.hero::after {
  content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%;
  right: -100px; top: -120px; border: 58px solid rgba(255,255,255,.07);
}
.eyebrow, .step-label {
  text-transform: uppercase; letter-spacing: .15em; font-size: .78rem; font-weight: 900;
}
.hero h1 { font-size: clamp(3.1rem, 8vw, 6.5rem); line-height: .9; margin: .4rem 0 1.2rem; }
.lead { font-size: clamp(1.05rem, 2vw, 1.35rem); max-width: 700px; }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.button {
  border: 0; border-radius: 999px; padding: .9rem 1.25rem; text-decoration: none;
  font-weight: 900; cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
}
.button.primary { background: var(--sun); color: #1d2423; }
.button.primary:hover { filter: brightness(1.06); transform: translateY(-1px); }
.button.secondary { background: transparent; color: inherit; border: 2px solid currentColor; }
.privacy-note { font-size: .88rem; opacity: .85; max-width: 650px; margin-top: 1.2rem; }
.journey-wheel {
  aspect-ratio: 1; border-radius: 50%; position: relative; display: grid; place-items: center;
  border: 2px solid rgba(255,255,255,.42); box-shadow: inset 0 0 0 26px rgba(255,255,255,.05);
}
.journey-wheel::before, .journey-wheel::after {
  content:""; position: absolute; inset: 17%; border-radius: 50%; border: 1px solid rgba(255,255,255,.3);
}
.journey-wheel::after { inset: 34%; background: rgba(215,154,32,.9); border: 0; }
.journey-wheel strong { z-index: 2; color: #182e2f; letter-spacing: .1em; }
.journey-wheel span { position: absolute; font-weight: 900; }
.journey-wheel span:nth-child(1) { top: 6%; }
.journey-wheel span:nth-child(2) { right: 0; }
.journey-wheel span:nth-child(3) { bottom: 6%; }
.journey-wheel span:nth-child(4) { left: 4%; }
.journey-nav {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: .7rem; margin: 1.2rem 0 3rem;
}
.journey-nav a {
  text-decoration: none; background: var(--card); padding: .8rem; border-radius: 14px;
  display: flex; align-items: center; gap: .65rem; font-weight: 800; box-shadow: 0 8px 20px rgba(16,32,38,.06);
}
.journey-nav span {
  width: 2rem; height: 2rem; display: grid; place-items: center; border-radius: 50%;
  background: var(--turquoise); color: #fff;
}
.panel {
  background: rgba(255,255,255,.94); border-radius: var(--radius); padding: clamp(1.25rem, 4vw, 3rem);
  margin: 0 0 2rem; box-shadow: var(--shadow); border: 1px solid rgba(16,32,38,.05);
  scroll-margin-top: 1rem;
}
.section-heading { max-width: 760px; margin-bottom: 2rem; }
.step-label { color: var(--earth); margin: 0; }
.section-heading h2 { font-size: clamp(2rem, 5vw, 3.3rem); line-height: 1.05; margin: .25rem 0 .7rem; }
.section-heading p:last-child { color: var(--muted); font-size: 1.05rem; }
.form-grid, .map-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.map-grid { grid-template-columns: repeat(2, 1fr); }
.field {
  display: grid; gap: .55rem; background: #f8faf8; border: 1px solid var(--line);
  padding: 1rem; border-radius: 16px; min-width: 0;
}
fieldset.field { margin: 0; }
.field.full { grid-column: 1 / -1; }
.field > span, legend { font-weight: 850; }
textarea, select, input[type="text"] {
  width: 100%; border: 1px solid #bdc9c5; border-radius: 10px; padding: .8rem;
  background: #fff; color: var(--ink);
}
textarea:focus, select:focus, input:focus, button:focus, a:focus {
  outline: 3px solid rgba(215,154,32,.55); outline-offset: 2px;
}
input[type="range"] { width: 100%; accent-color: var(--turquoise); }
.emotion-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: .55rem; }
.emotion-grid button {
  padding: .75rem .5rem; background: #fff; border: 1px solid #b9c8c4; border-radius: 999px;
  cursor: pointer; font-weight: 750;
}
.emotion-grid button.selected { background: var(--turquoise); color: #fff; border-color: var(--turquoise); }
.result-box {
  margin-top: 1.2rem; padding: 1.25rem; border-left: 6px solid var(--sun);
  background: #fff8e8; border-radius: 12px;
}
.pathway {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .6rem;
  padding: 1rem; margin-bottom: 1rem; border-radius: 16px; background: var(--night); color: #fff;
}
.pathway span { padding: .4rem .65rem; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; }
.scenario-stack { display: grid; gap: 1rem; }
.scenario {
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: #fbfcfa;
}
.scenario header { padding: 1.1rem 1.2rem; background: #eff6f3; }
.scenario h3 { margin: 0; }
.scenario p { margin: .3rem 0 0; }
.scenario-options { display: grid; gap: .7rem; padding: 1rem; }
.scenario-option {
  text-align: left; border: 1px solid #bfcac7; background: #fff; padding: .9rem; border-radius: 12px;
  cursor: pointer;
}
.scenario-option:hover { border-color: var(--turquoise); }
.scenario-feedback { margin: 0 1rem 1rem; padding: 1rem; border-radius: 12px; background: #eef7f4; }
.assessment-item {
  display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center;
  padding: 1rem 0; border-bottom: 1px solid var(--line);
}
.scale { display: flex; gap: .35rem; }
.scale label { display: grid; place-items: center; gap: .15rem; font-size: .72rem; }
.scale input { width: 1.2rem; height: 1.2rem; accent-color: var(--turquoise); }
.skill-bars { display: grid; gap: .75rem; margin: 1rem 0; }
.skill-row { display: grid; grid-template-columns: 145px 1fr 50px; align-items: center; gap: .7rem; }
.bar { height: 12px; border-radius: 99px; background: #dfe8e4; overflow: hidden; }
.bar span { display: block; height: 100%; background: var(--turquoise); border-radius: inherit; }
.pause-plan-output {
  margin-top: 2rem; background: #fff; border: 2px solid var(--turquoise); border-radius: 18px;
  padding: 2rem; box-shadow: var(--shadow);
}
.pause-plan-output header { text-align: center; border-bottom: 2px solid var(--sun); padding-bottom: 1rem; }
.pause-plan-output h3 { font-size: 2rem; margin: .2rem 0; }
.plan-section { margin: 1.4rem 0; }
.plan-section h4 { color: var(--turquoise-dark); margin-bottom: .3rem; }
.pause-plan-output footer { background: #eff7f5; padding: 1rem; border-radius: 12px; text-align: center; }
.closing { text-align: center; padding: 5rem 1rem; }
.closing h2 { font-size: clamp(2.2rem, 6vw, 4.2rem); line-height: 1; max-width: 800px; margin: 0 auto 1rem; }
.site-footer { background: var(--night); color: #fff; padding: 2rem 1rem; text-align: center; }
.small { font-size: .82rem; opacity: .75; }

@media (max-width: 850px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 3rem 1.2rem; }
  .journey-wheel { max-width: 360px; width: 90%; margin: 0 auto; }
  .journey-nav { grid-template-columns: 1fr 1fr; }
  .journey-nav a:last-child { grid-column: 1 / -1; }
  .emotion-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid, .map-grid { grid-template-columns: 1fr; }
  .assessment-item { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .brand small { display: none; }
  .site-header { padding-inline: .8rem; }
  main { width: min(100% - 1rem, 1160px); }
  .panel { padding: 1.15rem; }
  .journey-nav { grid-template-columns: 1fr; }
  .journey-nav a:last-child { grid-column: auto; }
  .scale { justify-content: space-between; }
  .skill-row { grid-template-columns: 1fr 46px; }
  .skill-row .bar { grid-column: 1 / -1; grid-row: 2; }
}
@media print {
  body * { visibility: hidden !important; }
  #pausePlanOutput, #pausePlanOutput * { visibility: visible !important; }
  #pausePlanOutput {
    position: absolute; inset: 0; margin: 0; border: 0; box-shadow: none; border-radius: 0;
  }
}
