/* Florida IEP goal generator — white / yellow, teacher-facing */

:root {
  --gg-navy: #182743;
  --gg-ink: #182743;
  --gg-ink-soft: #374151;
  --gg-muted: #6b7280;
  --gg-yellow: #ffef4b;
  --gg-yellow-hover: #ffe820;
  --gg-yellow-deep: #e6d42a;
  --gg-white: #ffffff;
  --gg-wash: #f7f8fa;
  --gg-billboard: #f3f4f6;
  --gg-canvas: #182743;
  --gg-billboard-radius: 28px;
  --gg-line: #e2e5ea;
  --gg-line-strong: #d1d5db;
  --gg-chip: #eef1f6;
  --gg-chip-ink: #182743;
  --gg-warn-bg: #fff8e8;
  --gg-warn-ink: #6b4e12;
  --gg-max: 1180px;
  --gg-prose: 640px;
  --gg-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --gg-space-1: 8px;
  --gg-space-2: 12px;
  --gg-space-3: 16px;
  --gg-space-4: 24px;
  --gg-space-5: 32px;
  --gg-space-6: 40px;
  --gg-section-y: clamp(64px, 9vw, 112px);
  --gg-radius: 12px;
  --gg-radius-lg: 16px;
  --gg-sticky-bar-h: 72px;
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 22px;
  line-height: 1;
  display: inline-block;
  white-space: nowrap;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

body.gg-page {
  margin: 0;
  font-family: var(--gg-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gg-ink);
  background: var(--gg-white);
  -webkit-font-smoothing: antialiased;
}

.gg-page main h1,
.gg-page main h2,
.gg-page main h3,
.gg-page main h4 {
  font-family: var(--gg-font);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--gg-ink);
}

.gg-wrap {
  max-width: var(--gg-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  width: 100%;
}

.gg-prose {
  max-width: var(--gg-prose);
}

/* ——— Hero ——— */

.gg-crumbs {
  margin: 0 0 28px;
}

.gg-crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  color: var(--gg-muted);
}

.gg-crumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: var(--gg-line-strong);
}

.gg-crumbs a {
  color: var(--gg-muted);
  text-decoration: none;
}

.gg-crumbs a:hover {
  color: var(--gg-navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gg-hero {
  padding: clamp(40px, 7vh, 72px) 0 clamp(48px, 8vh, 80px);
  background: var(--gg-white);
}

.gg-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.gg-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 36rem;
}

.gg-kicker {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gg-muted);
}

.gg-kicker--on-dark {
  color: rgb(255 255 255 / 0.72);
}

.gg-hero h1 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 3.75rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.gg-hero__lede {
  margin: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 400;
  color: var(--gg-ink-soft);
  line-height: 1.65;
}

.gg-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.gg-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.gg-hero__trust li {
  position: relative;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gg-muted);
  padding-left: 18px;
}

.gg-hero__trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gg-yellow);
  box-shadow: 0 0 0 1px var(--gg-yellow-deep);
}

.gg-sample {
  margin: 0;
  padding: 22px 22px 18px;
  background: var(--gg-white);
  border: 1px solid var(--gg-line);
  border-radius: var(--gg-radius-lg);
  box-shadow: 0 1px 2px rgb(24 39 67 / 0.04), 0 16px 40px rgb(24 39 67 / 0.08);
}

.gg-sample__label {
  margin: 0 0 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gg-muted);
}

.gg-sample__cite {
  margin: 0 0 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gg-ink-soft);
}

.gg-sample__sentence {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gg-sample__chip {
  display: inline-block;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
}

.gg-sample__chip--time { background: #6b7280; }
.gg-sample__chip--condition { background: #1e4d8c; }
.gg-sample__chip--skill { background: var(--gg-navy); }
.gg-sample__chip--criterion { background: #b45309; }
.gg-sample__chip--measure { background: #334155; }

.gg-sample__note {
  margin: 14px 0 0;
  font-size: 0.8125rem;
  color: var(--gg-muted);
}

.gg-stats {
  border-top: 1px solid var(--gg-line);
  border-bottom: 1px solid var(--gg-line);
  background: var(--gg-white);
  padding: 28px 0;
}

.gg-stats__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px 24px;
}

.gg-stats__item strong {
  display: block;
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.gg-stats__item span {
  display: block;
  margin-top: 4px;
  font-size: 0.875rem;
  color: var(--gg-muted);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .gg-hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gg-hero__copy {
    max-width: 40rem;
  }

  .gg-stats__row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .gg-stats__row {
    grid-template-columns: 1fr;
  }
}

.gg-btn[hidden] {
  display: none !important;
}

.gg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--gg-font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  color: var(--gg-ink);
  background: var(--gg-yellow);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.gg-btn:hover {
  background: var(--gg-yellow-hover);
}

.gg-btn:focus-visible {
  outline: 2px solid var(--gg-navy);
  outline-offset: 3px;
}

.gg-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.gg-btn--ghost {
  background: var(--gg-white);
  border-color: var(--gg-line-strong);
}

.gg-btn--ghost:hover {
  background: var(--gg-wash);
}

.gg-btn--small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.9375rem;
}

.gg-btn--ghost-on-dark {
  background: transparent;
  border-color: rgb(255 255 255 / 0.45);
  color: #fff;
}

.gg-btn--ghost-on-dark:hover {
  background: rgb(255 255 255 / 0.08);
}

.gg-btn--icon {
  width: 48px;
  padding: 0;
}

.gg-btn--icon .gg-icon-check {
  display: none;
}

.gg-btn--icon.is-copied .gg-icon-copy {
  display: none;
}

.gg-btn--icon.is-copied .gg-icon-check {
  display: block;
}

/* ——— Generator ——— */

.gg-tool {
  --gg-nav-h: 57px;
  position: relative;
  height: calc(100svh - var(--gg-nav-h));
  padding: clamp(12px, 2vw, 24px);
  background: var(--gg-canvas);
  border-top: 0;
  border-bottom: 0;
  scroll-margin-top: var(--gg-nav-h);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.gg-tool__status {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  margin: 0;
  color: #fff;
}

.gg-tool__status[hidden] {
  display: none;
}

.gg-tool__head {
  display: none;
}

.gg-wizard {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 0;
  flex: 1;
  min-height: 0;
  max-width: none;
  margin: 0;
  align-items: stretch;
  background: var(--gg-billboard);
  border-radius: var(--gg-billboard-radius);
  overflow: hidden;
}

.gg-progress {
  background: transparent;
  border: 0;
  padding: 0 8px 0 clamp(20px, 3vw, 40px);
  position: relative;
  top: auto;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(24, 39, 67, 0.08);
  min-height: 0;
}

.gg-progress__tabs {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gg-progress__tabs::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: var(--gg-line);
  pointer-events: none;
}

.gg-progress__tabs > li {
  margin: 0;
  padding: 0;
}

.gg-progress__tab {
  appearance: none;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 8px 14px 0;
  font-family: var(--gg-font);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gg-muted);
  cursor: pointer;
  text-align: left;
  position: relative;
  z-index: 1;
}

.gg-progress__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--gg-line);
  background: var(--gg-billboard);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gg-muted);
  flex-shrink: 0;
}

.gg-progress__label {
  line-height: 1.2;
}

.gg-progress__tab.is-current {
  color: var(--gg-navy);
  font-weight: 700;
}

.gg-progress__tab.is-current .gg-progress__num {
  background: var(--gg-navy);
  border-color: var(--gg-navy);
  color: var(--gg-white);
}

.gg-progress__tab.is-done .gg-progress__num {
  background: var(--gg-yellow);
  border-color: var(--gg-yellow);
  color: var(--gg-navy);
}

.gg-progress__tab:disabled:not(.is-current) {
  cursor: default;
  opacity: 0.55;
}

.gg-progress__tab:focus-visible {
  outline: 2px solid var(--gg-navy);
  outline-offset: 2px;
}

.gg-panel {
  background: transparent;
  border: 0;
  border-radius: 0;
  min-height: 0;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.gg-step {
  min-height: 0;
  overflow: auto;
  padding: clamp(28px, 7vh, 72px) clamp(24px, 5vw, 72px) 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gg-wizard[data-q="terms"] .gg-step,
.gg-wizard[data-q="skill"] .gg-step,
.gg-wizard[data-q="access"] .gg-step,
.gg-wizard[data-q="review"] .gg-step,
.gg-wizard[data-q="student"] .gg-step,
.gg-wizard[data-q="quarters"] .gg-step,
.gg-wizard[data-q="worksheet"] .gg-step {
  justify-content: flex-start;
  padding-top: clamp(20px, 5vh, 48px);
}

.gg-step[hidden] {
  display: none;
}

.gg-step h3:focus {
  outline: none;
}

.gg-q {
  width: 100%;
  max-width: 36rem;
}

.gg-wizard[data-q="skill"] .gg-q,
.gg-wizard[data-q="access"] .gg-q,
.gg-wizard[data-q="worksheet"] .gg-q {
  max-width: 44rem;
}

.gg-wizard[data-q="review"] .gg-q {
  max-width: 56rem;
}

.gg-q[hidden] {
  display: none;
}

.gg-q__num {
  margin: 0 0 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gg-navy);
}

.gg-wizard__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  justify-content: flex-start;
  position: static;
  padding: 12px clamp(24px, 5vw, 72px) calc(20px + env(safe-area-inset-bottom));
  background: transparent;
  border-top: 0;
  border-radius: 0;
  z-index: 2;
}

.gg-wizard__enter {
  font-size: 0.8125rem;
  color: var(--gg-muted);
}

@media (pointer: coarse) {
  .gg-wizard__enter {
    display: none;
  }
}

@media (max-width: 800px) {
  .gg-tool {
    padding: 8px;
  }

  .gg-wizard {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 0;
    border-radius: 20px;
  }

  .gg-progress {
    position: static;
    padding: 10px 16px 0;
    display: block;
    border-right: 0;
  }

  .gg-progress__tabs {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }

  .gg-progress__tabs::before {
    left: 24px;
    right: 24px;
    top: 21px;
    bottom: auto;
    height: 2px;
    width: auto;
  }

  .gg-progress__tabs > li {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .gg-progress__tab {
    flex-direction: column;
    gap: 6px;
    width: auto;
    padding: 6px 4px;
    font-size: 0.6875rem;
    text-align: center;
  }

  .gg-progress__label {
    display: none;
  }

  .gg-step {
    padding: 16px 20px 8px;
    justify-content: flex-start;
  }

  .gg-wizard__nav {
    padding: 8px 20px calc(16px + env(safe-area-inset-bottom));
  }
}

.gg-step__label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.gg-step__num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gg-muted);
}

.gg-step h3 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3.6vw, 2.35rem);
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.gg-step__help {
  margin: 0 0 28px;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--gg-ink-soft);
  max-width: 34rem;
}

.gg-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gg-chips--stack {
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 10px;
  max-width: 28rem;
  counter-reset: gg-choice;
}

.gg-choice {
  appearance: none;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gg-line-strong);
  background: var(--gg-white);
  color: var(--gg-ink);
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  font-family: var(--gg-font);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
}

.gg-chips--stack .gg-choice {
  width: 100%;
  min-height: 56px;
  padding: 12px 16px;
  text-align: left;
  font-size: 1.0625rem;
  font-weight: 500;
  justify-content: flex-start;
}

.gg-chips--stack .gg-choice::before {
  counter-increment: gg-choice;
  content: counter(gg-choice, upper-alpha);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 12px;
  border: 1px solid var(--gg-line-strong);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gg-muted);
  flex-shrink: 0;
}

.gg-choice:hover {
  border-color: var(--gg-navy);
}

.gg-choice[aria-pressed="true"],
.gg-choice.is-on {
  background: var(--gg-navy);
  border-color: var(--gg-navy);
  color: var(--gg-white);
}

.gg-chips--stack .gg-choice[aria-pressed="true"]::before {
  background: var(--gg-yellow);
  border-color: var(--gg-yellow);
  color: var(--gg-navy);
}

.gg-choice:focus-visible {
  outline: 2px solid var(--gg-navy);
  outline-offset: 2px;
}

.gg-search {
  width: 100%;
  min-height: 48px;
  margin: 8px 0 16px;
  padding: 0 14px;
  border: 1px solid var(--gg-line-strong);
  border-radius: 8px;
  font-family: var(--gg-font);
  font-size: 1rem;
  color: var(--gg-ink);
  background: var(--gg-white);
}

.gg-search--solo {
  border: 0;
  border-bottom: 2px solid var(--gg-line-strong);
  border-radius: 0;
  min-height: 64px;
  padding: 8px 0;
  margin: 4px 0 28px;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  background: transparent;
}

.gg-search:focus,
.gg-search--solo:focus {
  outline: none;
  border-color: var(--gg-navy);
}

.gg-search--solo:focus {
  box-shadow: 0 2px 0 var(--gg-navy);
}

.gg-fields {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 28rem;
}

.gg-fields label {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gg-fields label span {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gg-muted);
}

.gg-fields .gg-search--solo {
  margin: 0 0 20px;
  min-height: 52px;
  font-size: 1.25rem;
}

.gg-fields--quarters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
  max-width: 36rem;
}

@media (max-width: 560px) {
  .gg-fields--quarters {
    grid-template-columns: 1fr;
  }
}

.gg-bench-list {
  max-height: min(420px, calc(100svh - 340px));
  min-height: 180px;
  overflow: auto;
  border: 1px solid var(--gg-line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}

.gg-bench {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 4px;
  width: 100%;
  padding: 0 6px 0 0;
  border-bottom: 1px solid var(--gg-line);
  background: var(--gg-white);
  font-family: var(--gg-font);
  color: var(--gg-ink);
}

.gg-bench:last-child {
  border-bottom: none;
}

.gg-bench:hover,
.gg-bench:focus-within {
  background: var(--gg-wash);
}

.gg-bench.is-selected {
  background: #fffce6;
  box-shadow: inset 3px 0 0 var(--gg-yellow-deep);
}

.gg-bench__pick {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 14px;
  align-items: center;
  min-width: 0;
  width: 100%;
  text-align: left;
  padding: 12px 8px 12px 14px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

.gg-bench__pick:focus-visible {
  outline: 2px solid var(--gg-navy);
  outline-offset: -2px;
}

.gg-bench__code {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gg-muted);
  white-space: nowrap;
}

.gg-bench__text {
  font-size: 0.9375rem;
  line-height: 1.45;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gg-bench__info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  padding: 0;
  border: 1px solid var(--gg-line);
  border-radius: 50%;
  background: var(--gg-white);
  color: var(--gg-muted);
  cursor: pointer;
}

.gg-bench__info:hover,
.gg-bench__info:focus-visible {
  border-color: var(--gg-navy);
  color: var(--gg-navy);
}

.gg-bench__info:focus-visible {
  outline: 2px solid var(--gg-navy);
  outline-offset: 2px;
}

.gg-bench__info.is-open {
  border-color: var(--gg-navy);
  background: var(--gg-navy);
  color: var(--gg-white);
}

.gg-empty {
  padding: 18px 14px;
  font-size: 0.9375rem;
  color: var(--gg-muted);
}

.gg-scope {
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--gg-wash);
  border-left: 3px solid var(--gg-yellow);
}

.gg-scope h4 {
  margin: 0 0 8px;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gg-muted);
}

.gg-scope p,
.gg-scope li {
  font-size: 0.875rem;
  color: var(--gg-ink-soft);
}

.gg-scope p {
  margin: 0 0 8px;
}

.gg-scope ul {
  margin: 0;
  padding-left: 1.1rem;
}

.gg-scope li + li {
  margin-top: 4px;
}

.gg-note {
  margin-top: 12px;
  padding: 12px 14px;
  background: var(--gg-warn-bg);
  color: var(--gg-warn-ink);
  font-size: 0.875rem;
}

.gg-note[hidden],
.gg-scope[hidden] {
  display: none;
}

.gg-field {
  margin-bottom: 20px;
}

.gg-field > label {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--gg-muted);
  margin-bottom: 8px;
}

.gg-field__note {
  margin: -2px 0 8px;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--gg-muted);
}

.gg-field input[type="text"] {
  width: 100%;
  max-width: 320px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--gg-line-strong);
  border-radius: 8px;
  font-family: var(--gg-font);
  font-size: 1rem;
}

.gg-field input[type="text"]:focus {
  outline: 2px solid var(--gg-navy);
  border-color: var(--gg-navy);
}

.gg-legal {
  margin: 8px 0 20px;
  padding: 0;
  background: transparent;
  border-left: 0;
}

.gg-terms {
  margin: 0 0 24px;
}

.gg-terms p {
  margin: 0 0 16px;
  font-size: 1.0625rem;
  color: var(--gg-ink-soft);
  line-height: 1.55;
}

.gg-terms p:last-child {
  margin-bottom: 0;
}

.gg-legal p {
  margin: 0 0 10px;
  font-size: 0.8125rem;
  color: var(--gg-muted);
  line-height: 1.55;
}

.gg-legal p:last-child {
  margin-bottom: 0;
}

.gg-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--gg-ink);
  cursor: pointer;
}

.gg-check input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--gg-navy);
}

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

.gg-domain__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  background: none;
  border: 0;
  font-family: var(--gg-font);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gg-ink);
  cursor: pointer;
  text-align: left;
}

.gg-domain__end {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.gg-domain__count {
  min-width: 1.25rem;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--gg-navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.25rem;
  text-align: center;
}

.gg-domain__chevron {
  flex-shrink: 0;
  color: var(--gg-muted);
  transition: transform 0.15s ease;
}

.gg-domain.is-open .gg-domain__chevron {
  transform: rotate(180deg);
}

.gg-domain__body {
  display: none;
  padding: 0 0 16px;
}

.gg-domain.is-open .gg-domain__body {
  display: block;
}

.gg-group {
  margin-bottom: 28px;
}

.gg-group:last-child {
  margin-bottom: 8px;
}

.gg-group__title {
  margin: 0 0 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gg-muted);
}

.gg-mod {
  font-size: 0.9375rem;
}

.gg-mod__label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 6px;
  margin: 0 -6px;
  border-radius: 8px;
  cursor: pointer;
}

.gg-mod__label:hover {
  background: #f6f7f9;
}

.gg-mod input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gg-mod__label::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 2px solid var(--gg-navy);
  border-radius: 4px;
  background-color: var(--gg-white);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
}

.gg-mod__label:has(input:checked)::before {
  background-color: var(--gg-navy);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3.5 8.5 6.5 11.5 12.5 4.5'/%3E%3C/svg%3E");
}

.gg-mod__label:has(input:focus-visible)::before {
  outline: 2px solid var(--gg-navy);
  outline-offset: 2px;
}

.gg-mod__label > span {
  display: flex;
  align-items: center;
  line-height: 1.25;
  color: var(--gg-ink);
}

.gg-tip {
  position: relative;
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
}

.gg-tip__btn {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--gg-line-strong);
  background: var(--gg-white);
  font-family: var(--gg-font);
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gg-muted);
  cursor: pointer;
  padding: 0;
  vertical-align: middle;
}

.gg-tip__btn:hover,
.gg-tip.is-open .gg-tip__btn {
  border-color: var(--gg-navy);
  color: var(--gg-navy);
}

.gg-tip__btn:focus-visible {
  outline: 2px solid var(--gg-navy);
  outline-offset: 2px;
}

.gg-tip__pop {
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  z-index: 6;
  width: min(280px, 70vw);
  padding: 10px 12px;
  background: var(--gg-navy);
  color: var(--gg-white);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.45;
  text-transform: none;
  letter-spacing: normal;
}

.gg-tip.is-open .gg-tip__pop {
  display: block;
}

.gg-selected {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  margin-bottom: 20px;
}

.gg-selected:empty {
  display: none;
}

.gg-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gg-chip);
  border-radius: 999px;
  padding: 6px 8px 6px 12px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.gg-tag button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--gg-muted);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0 4px;
}

/* ——— Preview ——— */

.gg-preview,
.gg-sched {
  background: var(--gg-wash);
  border: 1px solid var(--gg-line);
  border-radius: var(--gg-radius);
  display: flex;
  flex-direction: column;
  margin: 4px 0 16px;
}

.gg-preview__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--gg-line);
  background: var(--gg-white);
}

.gg-preview__bar h4 {
  margin: 0;
  font-size: 0.9375rem;
}

.gg-wizard[data-q="review"] .gg-preview__bar {
  display: none;
}

.gg-wizard[data-q="review"] .gg-preview,
.gg-wizard[data-q="review"] .gg-sched {
  background: var(--gg-white);
}

.gg-preview__cite {
  margin: 0;
  padding: 10px 16px 0;
  font-size: 0.75rem;
  color: var(--gg-muted);
}

.gg-preview__cite[hidden] {
  display: none;
}

.gg-sentence {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 8px;
  line-height: 1.55;
}

.gg-sentence.is-empty {
  color: var(--gg-muted);
  font-size: 0.9375rem;
}

.gg-pill {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  border-radius: 10px;
  padding: 8px 12px 8px 10px;
  font-family: var(--gg-font);
  font-size: 0.9375rem;
  line-height: 1.4;
  text-align: left;
  cursor: text;
  color: var(--gg-white);
  background: #3a4a66;
  max-width: 100%;
}

.gg-pill::before {
  content: "";
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  margin-top: 3px;
  background-color: currentColor;
  opacity: 0.8;
  pointer-events: none;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34a.996.996 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34a.996.996 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.gg-pill--time {
  background: #6b7280;
}

.gg-pill--condition {
  background: #1e4d8c;
}

.gg-pill--support {
  background: #0f766e;
}

.gg-pill--independence {
  background: var(--gg-yellow);
  color: var(--gg-navy);
}

.gg-pill--skill {
  background: var(--gg-navy);
}

.gg-pill--criterion {
  background: #b45309;
}

.gg-pill--measure {
  background: #334155;
}

.gg-pill:focus,
.gg-pill.is-editing {
  outline: 2px solid var(--gg-navy);
  outline-offset: 2px;
}

.gg-pill[hidden] {
  display: none;
}

.gg-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 4px;
  padding: 0 16px 8px;
}

.gg-legend__item {
  appearance: none;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  font-family: var(--gg-font);
  font-size: 0.75rem;
  color: var(--gg-muted);
  cursor: pointer;
  border-radius: 6px;
}

.gg-legend__item:hover,
.gg-legend__item.is-open {
  color: var(--gg-navy);
  background: var(--gg-white);
}

.gg-legend__item:focus-visible {
  outline: 2px solid var(--gg-navy);
  outline-offset: 2px;
}

.gg-legend i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}

.gg-legend i.gg-swatch--time { background: #6b7280; }
.gg-legend i.gg-swatch--condition { background: #1e4d8c; }
.gg-legend i.gg-swatch--support { background: #0f766e; }
.gg-legend i.gg-swatch--independence {
  background: var(--gg-yellow);
  box-shadow: inset 0 0 0 1px #c4b83a;
}
.gg-legend i.gg-swatch--skill { background: var(--gg-navy); }
.gg-legend i.gg-swatch--criterion { background: #b45309; }
.gg-legend i.gg-swatch--measure { background: #334155; }

.gg-legend__explain {
  margin: 0 16px 12px;
  padding: 10px 12px;
  background: var(--gg-white);
  border-left: 3px solid var(--gg-yellow);
  font-size: 0.875rem;
  color: var(--gg-ink-soft);
  line-height: 1.5;
}

.gg-legend__explain[hidden] {
  display: none;
}

.gg-preview__hint {
  margin: 0;
  padding: 0 16px 12px;
  font-size: 0.875rem;
  color: var(--gg-ink-soft);
}

.gg-preview__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px 16px;
  border-top: 1px solid var(--gg-line);
}

.gg-sched[hidden] {
  display: none;
}

.gg-sched__body {
  padding: 16px;
}

.gg-sched__dates {
  margin: 0 0 14px;
}

.gg-sched__dates-kicker {
  margin: 0 0 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gg-muted);
}

.gg-sched__date-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.gg-sched__date-grid label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gg-muted);
}

.gg-sched__date-grid input[type="date"] {
  min-height: 36px;
  padding: 0 8px;
  border: 1px solid var(--gg-line-strong);
  border-radius: 8px;
  font-family: var(--gg-font);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gg-ink);
  background: var(--gg-white);
}

.gg-sched__date-grid input[type="date"]:focus {
  outline: 2px solid var(--gg-navy);
  border-color: var(--gg-navy);
}

@media (max-width: 700px) {
  .gg-sched__date-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.gg-sched__mini {
  overflow-x: auto;
}

.gg-sched__row {
  display: grid;
  grid-template-columns: 5.5rem repeat(9, minmax(0, 1fr));
  gap: 4px;
  align-items: center;
  margin-bottom: 4px;
  min-width: 28rem;
}

.gg-sched__q {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gg-muted);
}

.gg-sched__week {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gg-muted);
  border: 1px solid transparent;
  line-height: 1.15;
}

.gg-sched__when {
  font-size: 0.625rem;
  font-weight: 600;
  opacity: 0.9;
}

.gg-sched__week.is-probe {
  background: var(--gg-yellow);
  color: var(--gg-navy);
  border-color: var(--gg-navy);
  font-weight: 700;
}

.gg-cart-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 14px 0 12px;
  border: 1px solid var(--gg-navy);
  background: var(--gg-yellow);
  color: var(--gg-navy);
  font-family: var(--gg-font);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(24, 39, 67, 0.18);
}

.gg-cart-fab[hidden] {
  display: none;
}

.gg-cart-fab__icon {
  display: block;
  flex-shrink: 0;
}

.gg-cart-fab__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--gg-navy);
  color: var(--gg-white);
  font-size: 0.75rem;
}

.gg-cart-fab.is-pulse {
  animation: gg-cart-pulse 0.55s ease;
}

@keyframes gg-cart-pulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.gg-cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 34;
  background: rgba(24, 39, 67, 0.35);
}

.gg-cart-backdrop[hidden] {
  display: none;
}

.gg-cart-shelf {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 35;
  width: min(400px, 100vw);
  padding: 20px 20px 28px;
  background: var(--gg-white);
  border-left: 1px solid var(--gg-line);
  box-shadow: -8px 0 32px rgba(24, 39, 67, 0.12);
  overflow: auto;
  transform: translateX(110%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.22s ease, visibility 0.22s ease;
}

.gg-cart-shelf.is-open {
  transform: none;
  visibility: visible;
  pointer-events: auto;
}

.gg-cart-shelf__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.gg-cart-shelf h3 {
  margin: 0;
  font-size: 1.0625rem;
}

.gg-cart-shelf__close {
  appearance: none;
  border: 0;
  background: transparent;
  width: 36px;
  height: 36px;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gg-muted);
  cursor: pointer;
}

.gg-cart-shelf ol {
  margin: 0 0 16px;
  padding-left: 1.2rem;
}

.gg-cart-shelf li {
  margin: 10px 0;
  font-size: 0.9375rem;
  line-height: 1.45;
}

.gg-cart-shelf__meta {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gg-muted);
  margin-bottom: 4px;
}

.gg-cart-shelf__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 960px) {
  .gg-tool:has([data-step="6"].is-active) .gg-cart-fab {
    bottom: 84px;
  }
}

/* ——— Content sections ——— */

#how-it-works,
#how-a-goal-works,
#why-florida,
#scope,
#faq {
  scroll-margin-top: 72px;
}

.gg-section {
  padding: var(--gg-section-y) 0;
  border-bottom: 1px solid var(--gg-line);
}

.gg-section--wash {
  background: var(--gg-wash);
}

.gg-section__head {
  margin-bottom: 36px;
  max-width: 40rem;
}

.gg-section__head .gg-kicker {
  margin-bottom: 10px;
}

.gg-section__head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
}

.gg-lead {
  margin: 0;
  color: var(--gg-ink-soft);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.gg-section__foot {
  margin: 28px 0 0;
  max-width: 40rem;
  color: var(--gg-ink-soft);
  font-size: 1rem;
}

.gg-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.gg-flow__item {
  padding: 0;
}

.gg-flow__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--gg-yellow);
  color: var(--gg-navy);
  font-size: 0.875rem;
  font-weight: 700;
}

.gg-flow__item h3 {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
}

.gg-flow__item p {
  margin: 0;
  color: var(--gg-ink-soft);
  font-size: 0.9375rem;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .gg-flow {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .gg-flow {
    grid-template-columns: 1fr;
  }
}

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

.gg-card {
  padding: 24px 22px;
  background: var(--gg-white);
  border: 1px solid var(--gg-line);
  border-radius: var(--gg-radius);
}

.gg-card h3 {
  margin: 0 0 10px;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.gg-card p {
  margin: 0;
  color: var(--gg-ink-soft);
  font-size: 0.9875rem;
  line-height: 1.55;
}

@media (max-width: 800px) {
  .gg-cards {
    grid-template-columns: 1fr;
  }
}

.gg-parts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gg-parts article {
  background: var(--gg-white);
  border: 1px solid var(--gg-line);
  border-radius: var(--gg-radius);
  padding: 22px 24px;
}

.gg-parts h3 {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
}

.gg-parts p {
  margin: 0;
  color: var(--gg-ink-soft);
  font-size: 0.9375rem;
  line-height: 1.55;
}

@media (max-width: 700px) {
  .gg-parts {
    grid-template-columns: 1fr;
  }
}

.gg-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gg-split__col {
  padding: 24px 26px;
  background: var(--gg-white);
  border: 1px solid var(--gg-line);
  border-radius: var(--gg-radius);
}

.gg-split__col h3 {
  margin: 0 0 14px;
  font-size: 1.125rem;
}

.gg-split__col ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--gg-ink-soft);
}

.gg-split__col li + li {
  margin-top: 10px;
}

@media (max-width: 800px) {
  .gg-split {
    grid-template-columns: 1fr;
  }
}

.gg-faq {
  max-width: 760px;
}

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

.gg-faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  background: none;
  border: 0;
  font-family: var(--gg-font);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gg-navy);
  cursor: pointer;
  text-align: left;
  letter-spacing: -0.01em;
}

.gg-faq__q:focus-visible {
  outline: 2px solid var(--gg-navy);
  outline-offset: 2px;
}

.gg-faq__icon {
  flex-shrink: 0;
  color: var(--gg-muted);
  transition: transform 0.2s ease;
}

.gg-faq__item.is-open .gg-faq__icon {
  transform: rotate(180deg);
}

.gg-faq__a {
  display: none;
  padding-bottom: 18px;
  color: var(--gg-ink-soft);
}

.gg-faq__item.is-open .gg-faq__a {
  display: block;
}

.gg-faq__a p {
  margin: 0;
}

.gg-faq__a a,
.gg-inline {
  color: var(--gg-navy);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.gg-cta {
  text-align: center;
  padding: var(--gg-section-y) 0;
  background: var(--gg-navy);
  color: #fff;
}

.gg-cta h2 {
  margin: 0 0 12px;
  color: #fff;
}

.gg-cta p {
  margin: 0 auto 28px;
  max-width: var(--gg-prose);
  color: rgb(255 255 255 / 0.82);
}

.gg-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.gg-status {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gg-muted);
}

.gg-status.is-ok {
  color: var(--gg-ink);
}

.gg-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 90;
  max-width: min(92vw, 360px);
  padding: 10px 18px;
  border-radius: 999px;
  background: rgb(24 39 67 / 0.92);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 8px 24px rgba(24, 39, 67, 0.18);
  pointer-events: none;
  opacity: 0;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.gg-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .gg-toast {
    transition: none;
  }
}

@media (max-width: 960px) {
  .gg-toast {
    bottom: calc(84px + env(safe-area-inset-bottom));
  }
}

/* Mobile copy bar */

.gg-mobile-copy {
  display: none;
}

@media (max-width: 960px) {
  .gg-tool:has([data-step="6"].is-active) .gg-mobile-copy {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    gap: 8px;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: var(--gg-white);
    border-top: 1px solid var(--gg-line);
  }

  .gg-tool:has([data-step="6"].is-active) .gg-mobile-copy .gg-btn {
    flex: 1;
  }
}

/* ——— Progress-monitoring worksheet ——— */

.gg-ws__sheet {
  width: 100%;
}

.gg-ws__who {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 0 0 28px;
  padding: 0;
}

.gg-ws__who div {
  margin: 0;
}

.gg-ws__who dt {
  margin: 0 0 2px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gg-muted);
}

.gg-ws__who dd {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--gg-navy);
}

.gg-ws__table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 28px;
  font-size: 0.875rem;
}

.gg-ws__table caption {
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gg-navy);
}

.gg-ws__table th,
.gg-ws__table td {
  border: 1px solid var(--gg-line);
  padding: 10px 6px;
  text-align: center;
}

.gg-ws__table thead th {
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--gg-wash);
}

.gg-ws__table tbody th {
  text-align: left;
  padding-left: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.gg-ws__domain th {
  text-align: left;
  background: var(--gg-wash);
  color: var(--gg-navy);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 10px 12px;
  white-space: normal;
}

.gg-ws__when th {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gg-ink-soft);
  background: var(--gg-white);
}

.gg-ws__off {
  background: #f3f4f6;
}

.gg-ws__probe {
  background: #fffde8;
}

.gg-ws__box {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--gg-navy);
  background: var(--gg-white);
  vertical-align: middle;
}

.gg-ws__block h3 {
  margin: 8px 0 4px;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--gg-navy);
}

.gg-ws__block .gg-ws__goal:first-of-type {
  border-top: 0;
  padding-top: 4px;
}

.gg-ws__goal {
  margin: 0 0 20px;
  padding-top: 12px;
  border-top: 1px solid var(--gg-line);
}

.gg-ws__goal h4 {
  margin: 0 0 8px;
  font-size: 0.9375rem;
}

.gg-ws__sentence {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.5;
}

.gg-ws__warn {
  margin: 8px 0 0;
  font-size: 0.8125rem;
  color: var(--gg-warn-ink);
  background: var(--gg-warn-bg);
  padding: 8px 10px;
  border-radius: 8px;
}

.gg-ws__again {
  margin: 8px 0 12px;
}

@media (max-width: 560px) {
  .gg-ws__who {
    grid-template-columns: 1fr;
  }
}

@media print {
  html.gg-print-ws-ready .fpa-site-nav,
  html.gg-print-ws-ready .fpa-site-footer,
  html.gg-print-ws-ready .fpa-site-skip,
  html.gg-print-ws-ready .gg-hero,
  html.gg-print-ws-ready .gg-stats,
  html.gg-print-ws-ready .gg-section,
  html.gg-print-ws-ready .gg-cta,
  html.gg-print-ws-ready .gg-cart-fab,
  html.gg-print-ws-ready .gg-cart-shelf,
  html.gg-print-ws-ready .gg-cart-backdrop,
  html.gg-print-ws-ready .gg-mobile-copy,
  html.gg-print-ws-ready .gg-progress,
  html.gg-print-ws-ready .gg-wizard__nav,
  html.gg-print-ws-ready .gg-ws__again,
  html.gg-print-ws-ready .gg-q__num,
  html.gg-print-ws-ready .gg-step__help,
  html.gg-print-ws-ready .gg-q[data-q="worksheet"] h3 {
    display: none !important;
  }

  html.gg-print-ws-ready .gg-tool {
    height: auto;
    overflow: visible;
    padding: 0;
    background: #fff;
  }

  html.gg-print-ws-ready .gg-wizard {
    display: block;
    border-radius: 0;
    overflow: visible;
    background: #fff;
  }

  html.gg-print-ws-ready .gg-panel,
  html.gg-print-ws-ready .gg-step[data-step="7"] {
    display: block;
    overflow: visible;
    padding: 0;
    min-height: 0;
  }

  html.gg-print-ws-ready .gg-q[data-q="worksheet"] {
    max-width: none;
  }

  html.gg-print-ws-ready .gg-ws__table {
    page-break-inside: avoid;
  }
}
