/* Consolidated entry point: bundled page-specific styles */

/* --- assessment.css (bundled) --- */

/* Shared admin-bar height variable used by both assessment and site layout. */
body.admin-bar {
  --admin-bar-height: 32px;
}

html:has(body.admin-bar) {
  margin-top: 0 !important;
  background: #ffffff;
  background-color: #ffffff;
}

body.admin-bar {
  margin-top: 0 !important;
}

body.admin-bar #wpadminbar {
  position: fixed;
  top: 0;
}

html:has(main.landing-page) {
  margin-top: 0 !important;
}

body.admin-bar:has(main.landing-page) {
  --admin-bar-height: 0px;
  margin-top: 0 !important;
  padding-top: calc(var(--nav-height, 80px) - var(--nav-offset, 0px));
  min-height: calc(100vh - (var(--nav-height, 80px) - var(--nav-offset, 0px)));
  min-height: calc(100dvh - (var(--nav-height, 80px) - var(--nav-offset, 0px)));
}

body.admin-bar:has(main.landing-page) .ttt-nav {
  top: 0;
}

body.admin-bar:has(main.landing-page) #wpadminbar {
  display: none !important;
}

@media (max-width: 782px) {
  body.admin-bar {
    --admin-bar-height: 46px;
  }

  /*
   * WordPress adds a front-end html margin for the admin bar. The theme
   * already offsets the fixed nav and page content with --admin-bar-height,
   * so keeping both on mobile creates a visible gap above the site header.
   */
  html {
    margin-top: 0 !important;
  }

  body.admin-bar {
    margin-top: 0 !important;
  }

  #wpadminbar {
    position: fixed;
    top: 0;
  }
}

#assessment-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
  /* room for the fixed categories/progress row under the nav */
  padding-top: calc(var(--progress-row-height, 64px) + var(--nav-offset, 0px) + var(--admin-bar-height, 0px) + 4px);
  box-sizing: border-box;
  position: relative;
  overflow-anchor: none;
}

html.ttt-assessment-scroll-root,
body.ttt-assessment-scroll-root {
  overflow-anchor: none;
}

/* === Typography === */
h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8rem;
}

#assessment-container h2,
#assessment-container p {
  margin-left: 5px;
  margin-right: 5px;
}

.question-text {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
  text-align: center;
}
.question-text__content {
  display: inline;
}
.question-text .question-glossary__toggle {
  margin-left: 8px;
  vertical-align: baseline;
}

/* === Question Blocks === */
.question-block {
  margin-bottom: 30px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  user-select: none;
  -webkit-user-select: none;
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.question-block.jump-target {
  outline-width: 3px;
  outline-style: solid;
  outline-color: var(--question-block-highlight-outline-color, rgba(52, 67, 102, 0.28));
  outline-offset: 0;
  transition: outline-color 0.2s ease;
}

/* Alternative question block style commented out 
    .question-block {
        margin-bottom: 30px;
        padding: 15px;
        border: 1px solid #ccc;
        border-radius: 4px;
    } */

.question-block p {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 10px;
  text-align: center;
}

.question-glossary__toggle {
  width: 1.75em;
  height: 1.75em;
  border-radius: 50%;
  border: 1px solid currentColor;
  background: transparent;
  color: currentColor;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
  padding: 0;
}

.question-glossary__toggle:hover {
  background: rgba(24, 36, 80, 0.08);
  color: currentColor;
  box-shadow: none;
}

.question-glossary__toggle:focus,
.question-glossary__toggle:focus-visible {
  background: transparent;
  color: currentColor;
  box-shadow: none;
  outline: none;
}

.question-glossary__popover {
  position: absolute;
  top: var(--popover-top, 70px);
  left: var(--popover-left, 0px);
  width: min(320px, calc(100% - 16px));
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #dfe7f3;
  box-shadow: 0 20px 45px rgba(31, 50, 81, 0.16);
  padding: 16px;
  z-index: 5;
}

.question-glossary__popover p {
  font-weight: 400;
}

.question-glossary__popover[hidden] {
  display: none !important;
}

.question-glossary__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 220px;
  overflow-y: auto;
}

.question-glossary__item {
  border-bottom: none;
  padding-bottom: 0;
}

.question-glossary__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.question-glossary__term {
  display: inline-flex;
  font-weight: 600;
  color: #182450;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.question-glossary__definition,
.question-glossary__example {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  text-align: left;
  font-weight: 400;
}

.question-glossary__example {
  color: #516089;
  font-style: italic;
}

.question-glossary__popover.is-open {
  animation: glossaryFade 0.18s ease;
}

.question-glossary__popover--above.is-open {
  animation-name: glossaryFadeUp;
}

@keyframes glossaryFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glossaryFadeUp {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Options and scales === */
.scale-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.options {
  --option-gap: clamp(8px, 3vw, 24px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: var(--option-gap);
  padding: 0 clamp(2px, 2vw, 10px);
  width: 100%;
  max-width: 520px;
  min-height: 50px;
  margin: 0 auto;
}
@media (max-width: 360px) {
  .options {
    --option-gap: clamp(4px, 1.2vw, 8px);
  }
}
@media (max-width: 340px) {
  .question-block {
    padding: 16px;
  }
  .question-text {
    font-size: 15px;
  }
  .question-block p {
    font-size: 1rem;
  }
  .scale-labels {
    font-size: 0.85rem;
  }
  .options {
    --option-gap: clamp(4px, 1vw, 8px);
  }
  .option-label {
    flex: 0 0 44px;
    min-width: 44px;
    max-width: 44px;
  }
  .checkbox-style {
    font-size: 0.85rem;
    border-radius: 8px;
  }
}
@media (max-width: 260px) {
  .options {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.option-label {
  flex: 0 0 50px;
  min-width: 50px;
  max-width: 50px;
  text-align: center;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}
.option-label *,
.checkbox-label *,
.checkbox-style {
  user-select: none;
  -webkit-user-select: none;
}

.checkbox-style {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #f9f9f9;
  font-weight: 600;
  font-size: clamp(0.9rem, 2.2vw, 1.05rem);
  user-select: none;
  transition:
    background-color 0.2s,
    color 0.2s,
    border-color 0.2s;
}

.option-label input[type="radio"] {
  display: none;
}

.option-label input[type="radio"]:checked + .checkbox-style {
  background-color: var(--btn-bg);
  color: var(--btn-fg);
  border-color: var(--btn-bg);
}

.theme-light-primary
  .option-label
  input[type="radio"]:checked
  + .checkbox-style {
  color: #182450;
  border-color: #3f4e72;
  box-shadow: 0 0 0 2px rgba(52, 67, 102, 0.35);
}

/* === Voting options === */
.vote-group {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  min-height: 42px;
  margin-top: 10px;
}

.vote-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

.vote-option input[type="radio"] {
  display: none;
}

.vote-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  min-width: 120px;
  min-height: 42px;
  box-sizing: border-box;
  white-space: nowrap;
  line-height: 1.2;
  border-radius: 12px;
  border: 1px solid #cfd6e5;
  background: #f1f1f1;
  color: #182450;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.vote-option:hover .vote-pill {
  background: rgba(0, 0, 0, 0.02);
  box-shadow: inset 0 0 0 2px var(--btn-bg);
}

.vote-option input[type="radio"]:checked + .vote-pill {
  background-color: var(--btn-bg);
  color: var(--btn-fg);
  border-color: var(--btn-bg);
  box-shadow: 0 0 0 2px rgba(52, 67, 102, 0.35);
}

.vote-option input[type="radio"]:focus-visible + .vote-pill {
  box-shadow: 0 0 0 3px rgba(52, 67, 102, 0.45);
}

.theme-light-primary .vote-option input[type="radio"]:checked + .vote-pill {
  color: #182450;
  border-color: #3f4e72;
}

.voting-intro,
.test-intro {
  text-align: center; /* centers inline content like <p> */
  margin: 20px auto 30px; /* add vertical spacing */
  font-size: 1.2rem; /* make slightly larger for readability */
  font-weight: 500;
  color: #182450; /* your navy text */
}

/* === Buttons === */
/* Navigation buttons container */
.navigation-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  margin-top: 15px;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.navigation-buttons__slot {
  display: flex;
  align-items: center;
}

.navigation-buttons__slot--left {
  flex: 1 1 0;
  justify-content: flex-start;
}

.navigation-buttons__slot--middle {
  flex: 0 1 auto;
  justify-content: center;
}

.navigation-buttons__slot--right {
  flex: 1 1 0;
  justify-content: flex-end;
}

.nav-buttons--top .navigation-buttons {
  margin-top: 4px;
  margin-bottom: 12px;
}

.nav-buttons--bottom .navigation-buttons {
  margin-top: 28px;
  margin-bottom: 24px;
}

body.sidebar-visible .navigation-buttons {
  pointer-events: none;
}

/* Use global .btn styles for nav buttons (classes added in template) */
/* Match header Dashboard size */
.navigation-buttons .btn,
#prev-page, #next-page, #complete-voting, #return-home {
  font-size: 1rem;
  padding: 10px 14px;
  border-radius: 12px;
}

/* General buttons (global) */
/* Avoid global button overrides; rely on global.css .btn family */

/* Mobile-Friendly button sizing */
@media screen and (max-width: 300px) {
  button {
    display: block;
    width: 100%;
    max-width: 250px;
    margin: 10px auto;
  }
}

/* Reset button */
.reset-button {
  display: block;
  margin: 8px auto 0;
  padding: 6px 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #9aa0a6;
  background: transparent;
  border: none;
  text-decoration: underline;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.reset-button:hover {
  opacity: 1;
  color: #6b6f75;
  text-decoration: underline;
}

/* === Sticky categories + progress row === */
#top-fixed-progress { position: fixed; top: calc(var(--nav-height, 60px) + var(--admin-bar-height, 0px)); left: 0; right: 0; width: 100%; z-index: 12000; display: flex; align-items: center; gap: 10px; padding: 4px 12px; background: #fff; border-bottom: 1px solid #ddd; flex-wrap: nowrap; justify-content: flex-start; min-height: var(--progress-row-height, 64px); overflow-x: auto; }
#top-fixed-progress .sidebar-toggle {
  /* Match Dashboard button sizing */
  flex: 0 0 auto;
  min-width: 90px;
  max-width: 150px;
  white-space: nowrap;
  padding: 8px 12px;
  font-size: 0.95rem;
  border-radius: 12px;
}
#top-fixed-progress .progress-label {
  font-size: 0.95rem;
  margin: 0;
  margin-top: 2px;
  flex: 0 0 auto;
  white-space: nowrap;
  text-align: center;
  font-weight: 600;
  color: #182450;
  text-shadow: 0 1px 0 rgba(255,255,255,0.6);
}
#top-fixed-progress #progress-bar {
  flex: 1 1 auto; /* allow it to shrink on narrow screens */
  min-width: 0; /* critical so it can actually shrink */
  height: 14px;
  background: #e6e6e6;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
#top-fixed-progress .progress-fill {
  width: var(--progress-fill-width, 0%);
  height: 100%;
  background: var(--progress-fill-color, var(--btn-bg));
  border-radius: 10px;
  box-shadow: var(--progress-fill-shadow, inset 0 0 0 1px rgba(0, 0, 0, 0.06));
}
/* === Sidebar panel === */
.sidebar {
  position: fixed;
  left: 0;
  top: calc(var(--nav-height, 60px) + var(--progress-row-height, 64px) + var(--admin-bar-height, 0px));
  bottom: 0;
  width: 250px;
  background: #f5f7fa;
  padding: 16px 12px 20px;
  border-right: 1px solid #ddd;
  overflow-y: auto;
  z-index: 10000;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.sidebar.show {
  transform: translateX(0);
}
.sidebar-open-toggle.active {
  background-color: var(--sidebar-toggle-active-bg, #cfd7ee);
  background-image: none;
  border-color: var(--sidebar-toggle-active-border, #cfd7ee);
  box-shadow: 0 0 0 1px var(--sidebar-toggle-active-border, rgba(52, 67, 102, 0.22));
}

/* === Sidebar category tiles === */
.sidebar-content h3 {
  margin: 0 0 12px;
}
.category-tile {
  /* Compact, card-like tiles with clearer hierarchy */
  background: #fff;
  border: 1px solid #e3e7ee;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 12px;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.category-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}
.category-tile h4 { margin: 0 0 8px; font-size: 1rem; font-weight: 700; color: #182450; }
.category-tile p { margin: 6px 0 0; font-size: 0.9rem; color: #445; }
.category-tile.active { border-color: var(--btn-bg); box-shadow: var(--category-tile-active-shadow, 0 0 0 2px rgba(0,0,0,0.02)), 0 8px 18px rgba(0,0,0,0.08); }
.category-bar {
  width: 100%;
  height: 8px;
  background-color: #e6e9ee;
  border-radius: 6px;
  overflow: hidden;
}
.category-fill {
  width: var(--category-fill-width, 0%);
  height: 100%;
  background-color: var(--category-fill-color, var(--btn-bg));
  border-radius: 5px;
  box-shadow: var(--category-fill-shadow, inset 0 0 0 1px rgba(0, 0, 0, 0.05));
}
.theme-light-primary .category-fill {
  --category-fill-shadow: inset 0 0 0 2px #c8cfd6;
}

/* === Modal (unanswered) === */
.modal-overlay,
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
}
.modal-overlay {
  display: flex;
  z-index: 10000;
}
.modal-overlay[hidden] {
  display: none !important;
}
.modal-overlay .modal-content,
.modal-box {
  background: #fff;
  width: min(92vw, 360px);
  max-width: 360px;
}
.modal-overlay .modal-content {
  padding: 24px 28px;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  text-align: center;
}
.modal-overlay .modal-buttons,
.modal-actions {
  display: flex;
  align-items: center;
}
.modal-overlay .modal-buttons {
  margin-top: 16px;
  justify-content: space-between;
  gap: 10px;
}
.modal-overlay .modal-buttons .btn {
  flex: 1;
}

.assessment-scroll-spacer {
  height: var(--assessment-scroll-spacer-height, 200px);
}
@media (max-width: 540px) {
  #top-fixed-progress .sidebar-toggle { flex-basis: auto; min-width: 110px; font-size: inherit; padding: 10px 14px; }
  #top-fixed-progress .progress-label {
    font-size: 0.9rem;
  }
}

#assessment-container > p:first-child {
  margin-top: 4px;
}

/* --- Voting selection UX improvements --- */
/* Remove lingering focus rings; highlight only when a box is selected */
.checkbox-label:focus,
.checkbox-label:focus-within { outline: none; box-shadow: none; }
.checkbox-label input[type="checkbox"]:focus,
.checkbox-label input[type="checkbox"]:focus-visible { outline: none; box-shadow: none; }

/* Selected state — keep highlight after click; none when unchecked */
.checkbox-label:has(input[type="checkbox"]:checked) {
  background: #fff;
  border-color: var(--btn-bg);
  box-shadow: inset 0 0 0 2px var(--btn-bg);
}

/* Make rank labels pop against varied backgrounds */
/* Stronger contrast for 1st/2nd/3rd text */
.order-label { font-weight: 800; text-shadow: 0 1px 0 rgba(255,255,255,0.8), 0 0 2px rgba(0,0,0,0.25); -webkit-text-stroke: 0.5px rgba(0,0,0,0.45); }
.theme-dark-primary .order-label { color:#fff; text-shadow: 0 1px 0 rgba(0,0,0,0.8); -webkit-text-stroke: 0.6px rgba(0,0,0,0.7); }
.theme-light-primary .order-label { color: #182450; text-shadow: 0 1px 0 rgba(255,255,255,0.85); -webkit-text-stroke: 0.6px rgba(255,255,255,0.85); }

/* --- user-homepage.css (bundled) --- */
/*
 * General Styles for User Homepage and Assessments
 * Combines and deduplicates styles from user-homepage and assessment.css
 * Applies to .dashboard, .modal, .member-list-item, buttons, and general layout
 */

/* Colors and base typography now come from global.css */

.dashboard {
  max-width: 900px;
  margin: auto;
  padding: 2.5rem clamp(1.5rem, 4vw, 3rem);
  background-color: #f9f9f9;
}

.dashboard h2,
.dashboard h3 {
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.dashboard p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1rem;
}

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

.member-list-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr); /* left (name) = content width, right (email+buttons) = flex/shrink */
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-card);
  background: var(--color-card-bg);
  border: 2px solid var(--member-border-color, rgba(24, 36, 80, 0.08));
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s;
  width: auto;
  max-width: 725px;
  margin: 0.5rem auto;
}
.member-list-item:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.member-left {
  /* grid lets the row auto-wrap progress/status under the name
     for that single row only, when the name runs long */
  display: grid;
  grid-auto-flow: column; /* try to place inline first */
  grid-auto-columns: max-content; /* name/status try to live on one line */
  align-items: center;
  gap: 0.5rem 0.75rem;
  min-width: 0;
}

.member-right {
  display: flex;
  flex-wrap: nowrap; /* default: stay inline on wide screens */
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  min-width: 0;
}

.member-right .member-email {
  font-style: italic;
  font-size: 0.9rem;
  color: #666;
  margin-right: 1.2rem;
  text-align: left;
  display: block;

  /* let email be the flexible, shrinkable part */
  flex: 1 1 auto;
  min-width: 0; /* required for ellipsis in flex/grid */
  max-width: none;

  /* ellipsis, not wrapping */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Default (desktop and larger): keep buttons together side by side */
.member-right .buttons-wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.4rem;
  flex: 0 0 auto; /* don’t let the button group stretch */
  margin-left: auto;
}

.member-right .buttons-wrap .btn-remind,
.member-right .buttons-wrap .btn-edit {
  flex: 0 0 auto; /* don’t stretch */
  white-space: nowrap;
  inline-size: max-content; /* stay at natural width */
}
.member-name-wrap {
  display: flex;
  align-items: center;
  flex: 0 0 auto; /* do not shrink the name container */
  min-width: 120px; /* tiny floor so it doesn't collapse */
}

.member-name-wrap strong {
  font-size: 1rem;
  margin-right: 0.5rem;
}

/* REPLACED: the old 360px block was making rows huge.
   Keep things compact and avoid column layout here. */
@media (max-width: 360px) {
  /* keep two columns; don't force left/right to 100% width */
  .member-list-item {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto;
  }
  /* ensure these don't get widened by generic .dashboard li rules */
  .member-list-item > .member-left,
  .member-list-item > .member-right {
    width: auto;
    margin-bottom: 0;
  }
  /* keep buttons on a row; wrapping handled above */
  .member-right {
    flex-direction: row;
    align-items: center;
  }
}
/* Wrap earlier to prevent overlaps */
@media (max-width: 640px) {
  /* ---------- LEFT: name on top, progress/status underneath ---------- */
  .member-left {
    display: grid;
    grid-template-columns: 1fr auto; /* name area + sized status/progress */
    grid-auto-flow: row;
    gap: 0.5rem 0.75rem;
    min-width: 0;
  }
  .member-name-wrap {
    grid-column: 1 / -1; /* full row for name */
    min-width: 0;
  }
  .status-label,
  .progress-wrap {
    grid-column: 1 / -1; /* force under the name */
    justify-self: start; /* change to 'end' if you prefer right-aligned */
  }

  /* ---------- RIGHT: email above buttons; buttons side-by-side ---------- */

  /* Button placement (SR left, Edit right) */
  .btn-remind {
    grid-column: 1;
  }
  .btn-edit {
    grid-column: 2;
  }

  /* Buttons keep natural size, don’t grow */
  .btn-remind,
  .btn-edit {
    inline-size: max-content;
    min-width: 0;
    white-space: nowrap;
  }

  /* RIGHT: email above; buttons sit together as a fixed-size block, flush right */
  .member-right {
    display: grid;
    justify-content: end; /* keep the right edge anchor */
    row-gap: 0.35rem;
    min-width: 0;
  }

  /* Email on its own row above buttons */
  .member-right .member-email {
    grid-column: 1 / -1;
    margin-right: 0;
    text-align: right;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
  }

  /* New wrapper keeps buttons side-by-side & compact regardless of email length */
  .member-right .buttons-wrap {
    grid-column: 1 / -1; /* full row below email */
    display: flex;
    justify-content: flex-end; /* glue the pair to the right edge */
    gap: 0.5rem;
  }

  .member-right .buttons-wrap .btn-remind,
  .member-right .buttons-wrap .btn-edit {
    inline-size: max-content; /* intrinsic width; never stretch */
    white-space: nowrap;
    flex: 0 0 auto;
  }
}

/* Progress Bar (match previous blue pill look) */
.progress-wrap {
  --member-progress-width: 100px;
  --member-progress-min-width: 80px;
  --member-progress-max-width: 110px;
  display: flex;
  align-items: center;
  min-width: var(--member-progress-min-width);
  max-width: var(--member-progress-max-width);
  flex: 0 0 var(--member-progress-width);
}
.progress-bar-container { background: #e6e6e6; border-radius: 12px; height: 22px; width: var(--member-progress-width); min-width: var(--member-progress-min-width); max-width: var(--member-progress-max-width); overflow: hidden; position: relative; display: flex; align-items: center; }
.progress-bar-fill { width: var(--progress-bar-fill-width, 0%); background: var(--progress-bar-fill-color, var(--btn-bg)) !important; height: 100%; border-radius: 12px; transition: width 0.3s; box-shadow: var(--progress-bar-fill-shadow, none); }
.theme-light-primary .progress-bar-fill { --progress-bar-fill-shadow: inset 0 0 0 2px #C8CFD6; }
/* Contrast-aware label color */
.theme-light-primary .progress-bar-label { color: #182450; text-shadow: 0 1px 0 rgba(255,255,255,0.6); }
.theme-dark-primary .progress-bar-label { color: #fff; text-shadow: 0 1px 0 rgba(0,0,0,0.15); }
.progress-bar-label {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  pointer-events: none;
}

.progress-bar-label.label-dark {
  color: #222;
}
.progress-bar-label.label-light {
  color: #fff;
}

.status-label {
  font-size: 0.9em;
  color: #444; /* was #888 */
  display: inline;
  margin-left: 0.5em;
  font-weight: 400;
  vertical-align: middle;
  flex: 0 0 100px; /* match previous inline flex sizing */
  min-width: 90px;
  max-width: 120px;
}

.status-label,
.progress-wrap {
  min-width: max-content; /* keep them tidy inline when there’s room */
  justify-self: start; /* change to 'end' if you prefer them right-aligned */
}

/* Buttons */
/* Generic button styling unified in global.css; keep page-specific buttons below */
.btn-reminder-active {
  background-color: var(--primary);
  color: #fff;
}
.btn-reminder-disabled {
  background-color: #ddd;
  color: #555;
  cursor: pointer;
  opacity: 0.5;
  /* Keep cooldown buttons clickable so the dashboard can explain why sending is blocked. */
  pointer-events: auto;
}

/* Smaller per-card buttons (only Send Reminder and Edit) */
.member-list-item .btn { background: #f3f3f3; color: #222; border: 1px solid #cfcfcf; border-radius: 10px; box-shadow: inset 0 -1px 0 rgba(0,0,0,0.06); padding: 5px 9px; height: 28px; }
.member-list-item .btn:hover { background: #e8e8e8; }
.member-list-item .btn:disabled, .member-list-item .btn.disabled { background: #ddd; color: #777; border-color: #d0d0d0; }
.btn-remind, .btn-edit { line-height: 1.1; }

/* Bigger primary CTAs */
.main-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}
.main-action-btn:disabled,
.main-action-btn.disabled {
  background: #d3dae5;
  border-color: #d3dae5;
  color: #6b7384;
  cursor: not-allowed;
}
.dashboard-page .btn-reminder-active {
  background-color: #e8eaee;
  color: #182450;
  border-color: #c8cfd6;
}
.dashboard-page .btn-reminder-active:hover {
  background-color: #dde2e8;
  color: #182450;
  border-color: #c8cfd6;
}
.test-page {
  display: contents;
}
.import-answers-link {
  background: transparent;
  border: none;
  color: #4a5c76;
  font-size: 0.85rem;
  font-weight: 400;
  text-decoration: underline;
  padding: 0.2rem 0.25rem;
  min-height: auto;
  cursor: pointer;
  align-self: center;
}
.import-answers-link:hover,
.import-answers-link:focus {
  color: #1f2a3d;
  text-decoration: underline;
}

#resumeTest,
#startTest,
#logout,
#backLaunch,
#viewResults {
  font-size: 1rem;
  padding: 0.75rem 1.35rem;
  border-radius: 16px;
}

/* Allow right side to wrap on very small screens to avoid overlap */
@media (max-width: 520px) {
  .member-right { flex-wrap: wrap; gap: 0.35rem; }
  .member-right .member-email { flex-basis: 100%; margin-right: 0; }
  .member-right .buttons-wrap { flex-basis: 100%; justify-content: flex-start; }
}

/* Modal Styles */
.modal {
  z-index: 1000;
  display: none;
  overflow-y: auto;
  padding: 1rem;
  box-sizing: border-box;
}
.modal[aria-hidden="false"] {
  display: flex;
}
.modal[hidden] {
  display: none !important;
}
.modal-box {
  padding: 2rem;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
}
.modal-box:focus {
  outline: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.modal-actions {
  margin-top: 1.5rem;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.modal-actions--centered {
  justify-content: center;
}
.modal-actions .btn {
  min-height: 48px;
  border-radius: 16px;
  padding: 0.75rem 1.35rem;
  font-weight: 600;
}
.modal-box h3 {
  margin-top: 0;
  font-size: 1.2rem;
}
.modal-box input[type="text"],
.modal-box input[type="email"],
.modal-box input[type="color"],
.modal-box textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.5rem;
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid #ccc;
}
.modal-box button {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.modal-box button:hover {
  opacity: 0.9;
}
.modal-box .danger {
  color: red;
  background: transparent;
}
.modal-box .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
}

/* Utility */
#shareTooltip {
  display: none;
  margin-top: 0.5rem;
  padding: 0.75rem;
  background: #f9f9f9;
  border-left: 4px solid #ccc;
  border-radius: 4px;
  font-size: 0.9rem;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Success/Info/Warning blocks */
.success-block {
  background: #e6ffed;
  padding: 1rem;
  border-left: 4px solid var(--success);
  margin-bottom: 2rem;
  border-radius: var(--border-radius);
}
.info-block {
  background: #f9f9f9;
  padding: 1rem;
  border-left: 4px solid #ccc;
  margin-bottom: 2rem;
  border-radius: var(--border-radius);
}

/* Admin divider styling for extra spacing and subtle separation */
.admin-divider {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  border: none;
  border-top: 2px solid #e0e0e0;
  width: 100%;
  background: transparent;
}

/* Ultra-small phones: stack to prevent any overlap */
@media (max-width: 350px) {
  .member-list-item { grid-template-columns: 1fr; align-items: center; text-align: center; padding: 0.75rem; }

  .member-left {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    gap: 0.4rem 0.6rem;
    justify-items: center;
  }

  .member-name-wrap { grid-column: 1 / -1; margin: 4px 0; }
  .status-label, .progress-wrap { grid-column: 1 / -1; justify-self: center; margin: 4px 0; }

  .member-right {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
    row-gap: 0.35rem;
    width: 100%;
  }
  .member-right .member-email { grid-column: 1 / -1; margin-right: 0; text-align: center; margin: 4px 0; }
  .member-right .buttons-wrap { grid-column: 1 / -1; display: flex; justify-content: center; align-items: center; gap: 0.5rem; margin: 4px 0; }

  /* Optional: allow the progress pill to grow a bit on stacked layout */
  .progress-wrap {
    --member-progress-width: 120px;
    --member-progress-min-width: 100px;
    --member-progress-max-width: 140px;
  }
}

/* Global Theme Styles: consolidated palette, layout, components */

/* Palette and design tokens */
:root {
  --progress-row-height: 64px;
  --page-card-section-space: clamp(2.4rem, 6vw, 4rem);

  --color-header-bg: #e9eef4;
  --color-page-bg: #f9f9f9;
  --color-footer-bg: var(--color-header-bg);
  --color-text: #182450; /* body text */

  --color-card-bg: #ffffff;
  --shadow-card: 0 2px 6px rgba(0, 0, 0, 0.06);
  --radius-card: 12px;

  --nav-border: #d8e4f0;

  --btn-bg: #4d92e3; /* primary blue */
  --btn-bg-hover: #3c7cc2;
  --btn-fg: #ffffff;

  --nav-offset: 8px;
  --container-max: 1200px;
  --xpad: 16px;
  --gap: 14px;

  --landing-navy: #182450;
  --landing-teal: #36bd85;
  --landing-coral: #ff6f61;
  --landing-amber: #ffb67a;
  --landing-soft-blue: #e6edf7;
  --landing-cream: #fdf7f0;
  --landing-slate: #4b5d7a;
  --landing-card-shadow: 0 12px 28px rgba(24, 36, 80, 0.06);

  --ttt-surface-bg: #ffffff;
  --ttt-border-subtle: rgba(24, 36, 80, 0.08);
  --ttt-border-regular: rgba(24, 36, 80, 0.12);
  --ttt-shadow-soft: 0 8px 24px rgba(24, 36, 80, 0.06);
  --ttt-shadow-medium: 0 10px 30px rgba(24, 36, 80, 0.08);
  --ttt-shadow-strong: 0 12px 28px rgba(24, 36, 80, 0.08);
  --ttt-shadow-xl: 0 15px 40px rgba(24, 36, 80, 0.08);
  --ttt-radius-md: 12px;
  --ttt-radius-lg: 16px;
  --ttt-radius-xl: 20px;
  --ttt-radius-2xl: 24px;

  --ttt-input-radius: 12px;
  --ttt-input-border-color: #c8cfd6;
  --ttt-input-padding: 0.85rem 1rem;
  --ttt-input-font-size: 1rem;
  --ttt-input-bg: #fff;
  --ttt-input-shadow: inset 0 1px 2px rgba(24, 36, 80, 0.04);
}

/* Base */
html {
  background: var(--color-header-bg);
  background-color: var(--color-header-bg);
}
body {
  background: transparent;
  background-color: transparent;
  overscroll-color: var(--color-header-bg) var(--color-header-bg);
  margin: 0;
  color: var(--color-text);
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  min-height: calc(100vh - (var(--nav-height, 80px) - var(--nav-offset, 0px)));
  min-height: calc(100dvh - (var(--nav-height, 80px) - var(--nav-offset, 0px)));
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 0;
}
body::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Keep short-page dead space on the page canvas, not footer canvas. */
  background: var(--color-page-bg);
  z-index: -1;
}

.ttt-surface,
.page-section-card,
.landing-card,
.landing-testimonial,
.ttt-accordion__item,
.ttt-step-guide .step-card,
.purchase-plan-grid,
.purchase-plan-card,
.ttt-auth-group-card,
.page-notice-banner,
.invite-notice-banner,
.purchase-alert,
.contact-details,
.form-success,
.contact-form__success,
.contact-form__error,
.analytics-card,
.redirect-card,
.unsubscribe-card {
  background: var(--ttt-surface-bg-color, var(--ttt-surface-bg));
  border-radius: var(--ttt-surface-radius-size, var(--ttt-radius-lg));
  border: 1px solid var(--ttt-surface-border-color, var(--ttt-border-regular));
  box-shadow: var(--ttt-surface-shadow-style, none);
}

#main-content {
  background: var(--color-page-bg);
  flex: 1 0 auto;
  width: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.clipboard-copy-buffer {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 16px;
  pointer-events: none;
}
a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-decoration-color: currentColor;
}
a:hover,
a:focus {
  text-decoration: underline;
}
a:focus {
  outline: none;
}
a:focus-visible {
  outline: none;
}
.ttt-nav a,
.ttt-menu a,
.site-footer a,
.footer-links a,
.footer-social a,
a.btn,
button.btn {
  text-decoration: none;
}
.landing-section p a,
.page-section-card a,
.page-intro a,
.purchase-follow-up a {
  text-decoration: underline;
}
.skip-link {
  position: absolute;
  left: 0;
  top: -40px;
  background: #ffffff;
  color: #182450;
  padding: 8px 12px;
  z-index: 2000;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.skip-link:focus {
  top: 0;
}
.noscript-warning {
  margin: 0;
  padding: 0.85rem 1rem;
  background: #fff4e6;
  color: #7b2b00;
  text-align: center;
  font-weight: 600;
  border-bottom: 1px solid #f0c9a2;
}
.noscript-warning p {
  margin: 0;
}

/* Cards */
.content-card,
.card {
  background: var(--color-card-bg);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  min-width: 0;
  padding: 0.85rem 1rem;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: clamp(0.95rem, 0.25vw + 0.9rem, 1.05rem);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.12s ease,
    box-shadow 0.12s ease;
}

/* Normalize native buttons/inputs to match .btn */
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
.button,
a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 0;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 600;
  line-height: 1.1;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.12s ease,
    box-shadow 0.12s ease;
}

.btn .btn-text {
  font-size: inherit;
  line-height: inherit;
}

.btn .spinner {
  width: 1rem;
  height: 1rem;
}

.btn:focus {
  outline: none;
  box-shadow: none;
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 111, 97, 0.35);
}
a.btn:focus-visible {
  box-shadow: none;
}
button::-moz-focus-inner {
  border: 0;
}
a.btn:focus {
  outline: none;
}

.btn-primary {
  background: var(--btn-bg);
  color: var(--btn-fg);
}
.btn-primary:hover {
  background: var(--btn-bg-hover);
  transform: translateY(-1px);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.22);
}

/* Fallback to accent for very light user colors */
.theme-light-primary .btn-primary {
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid #c8cfd6;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.03);
}

/* Keep secondary/success/danger for existing pages */
.btn-secondary {
  background: transparent;
  color: var(--btn-bg);
  border-color: var(--btn-bg);
}
.btn-secondary:hover {
  background: rgba(77, 146, 227, 0.08);
  color: var(--btn-bg);
  border-color: var(--btn-bg);
}
.btn-success {
  background: #28a745;
  color: #fff;
}
.btn-success:hover {
  background: #218838;
}
.btn-danger {
  background: #dc3545;
  color: #fff;
}
.btn-danger:hover {
  background: #c82333;
}

/* Per-card utilities: make only Send Reminder / Edit text smaller and not bold */
.btn.btn-remind,
.btn.btn-edit,
.member-list-item .btn-remind,
.member-list-item .btn-edit {
  font-weight: 400; /* override .btn default 600 */
  font-size: 0.8rem; /* smaller text just for these buttons */
  min-width: auto;
  min-height: 34px;
  padding: 0.35rem 0.8rem;
}

/* Header/Nav */
.ttt-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 14000;
  background: var(--color-header-bg);
  color: var(--color-text);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid var(--nav-border);
  backdrop-filter: blur(6px);
}
.ttt-row {
  margin: 0;
  width: 100%;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  padding: 10px var(--xpad);
  min-height: 64px;
  flex-wrap: nowrap;
}
.ttt-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ttt-logo {
  display: block;
  width: auto;
  height: clamp(60px, 6vw, 72px);
  max-width: none;
  object-fit: contain;
  flex-shrink: 0;
}
.ttt-primary-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.ttt-actions {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.4vw, 1.1rem);
  margin-left: auto;
  flex-wrap: nowrap;
}
.ttt-nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.8vw, 1.35rem);
}
.ttt-nav-links a,
.ttt-nav-link-form button {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #182450;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.ttt-nav-links a:hover,
.ttt-nav-links a:focus-visible,
.ttt-nav-link-form button:hover,
.ttt-nav-link-form button:focus-visible {
  color: var(--btn-bg);
  background: transparent;
  outline: none;
}
.ttt-action-buttons {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.ttt-action-buttons .btn {
  white-space: nowrap;
}
.ttt-logout-form {
  margin: 0;
}
.ttt-logout-form button {
  font: inherit;
  cursor: pointer;
}
.auth-inline-logout-form {
  display: inline-flex;
}

.ttt-menu-wrapper {
  display: none;
  position: relative;
  margin-left: 4px;
}
.ttt-menu-toggle {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid #c8cfd6;
  background: #e7ebf3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.ttt-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #1f2a3d;
  border-radius: 999px;
}
.ttt-menu-toggle:hover,
.ttt-menu-toggle:focus-visible {
  background: #d8dee9;
  border-color: #c8cfd6;
}
.ttt-menu-toggle:active {
  transform: translateY(1px);
}
.ttt-menu {
  position: absolute;
  right: 0;
  top: 120%;
  min-width: 240px;
  background: #ffffff;
  border: 1px solid #cfd6e6;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(24, 36, 80, 0.15);
  padding: 0.75rem 0;
  display: none;
  flex-direction: column;
  z-index: 20000;
}
.ttt-menu a {
  padding: 0.6rem 1.25rem;
  font-weight: 500;
  color: #182450;
}
.ttt-menu .ttt-logout-form button {
  width: 100%;
  padding: 0.6rem 1.25rem;
  border: 0;
  background: transparent;
  color: #182450;
  font-weight: 500;
  text-align: left;
}
.ttt-menu .ttt-menu-link--auth {
  display: none;
}
.ttt-menu a:hover,
.ttt-menu a:focus-visible,
.ttt-menu .ttt-logout-form button:hover,
.ttt-menu .ttt-logout-form button:focus-visible {
  background: #eef4ff;
}
.ttt-menu.open {
  display: flex;
}

@media (max-width: 820px) {
  .ttt-nav-links {
    display: none;
  }
  .ttt-menu-wrapper {
    display: block;
  }
}

@media (max-width: 600px) {
  .ttt-row {
    padding: 8px 12px;
    align-items: flex-start;
    row-gap: 0.5rem;
  }
  .ttt-primary-nav {
    flex: 0 0 auto;
    margin-left: auto;
    min-width: 0;
  }
  .ttt-actions {
    width: auto;
    gap: 0.5rem;
    flex-wrap: nowrap;
    justify-content: flex-end;
    min-width: 0;
  }
  .ttt-action-buttons {
    flex-wrap: nowrap;
    justify-content: flex-end;
    min-width: 0;
  }
  .ttt-menu-toggle {
    width: 46px;
    height: 46px;
  }
  .ttt-nav:not(.ttt-nav--dashboard-page) .ttt-action-buttons .btn-secondary {
    display: none;
  }
  .ttt-menu .ttt-menu-link--auth {
    display: block;
  }
}

.user-greeting-wrap {
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user-color-circle {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-left: 6px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  vertical-align: middle;
}

/* Ensure nav buttons keep theme styling regardless of other page CSS */
.ttt-nav .btn-primary {
  background: var(--btn-bg);
  color: var(--btn-fg);
}
.ttt-nav .btn-primary:hover {
  background: var(--btn-bg-hover);
}
.ttt-nav .btn-secondary {
  background: transparent;
  color: var(--btn-bg);
  border: 1px solid var(--btn-bg);
}
.ttt-nav .btn-secondary:hover {
  background: rgba(77, 146, 227, 0.08);
  border-color: var(--btn-bg);
}
.ttt-nav .btn {
  padding: 0.6rem 0.85rem;
  min-width: auto;
}

.spinner-border {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  vertical-align: text-bottom;
  border: 0.15em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: ttt-spinner-border 0.75s linear infinite;
}

.spinner-border.spinner-border-sm {
  width: 0.8rem;
  height: 0.8rem;
  border-width: 0.13em;
}

@keyframes ttt-spinner-border {
  to {
    transform: rotate(360deg);
  }
}

/* Layout spacing below fixed header */
body {
  padding-top: calc(var(--nav-height, 80px) - var(--nav-offset, 0px));
}

body.admin-bar {
  padding-top: calc(var(--nav-height, 80px) + var(--admin-bar-height, 0px) - var(--nav-offset, 0px));
  min-height: calc(100vh - (var(--nav-height, 80px) + var(--admin-bar-height, 0px) - var(--nav-offset, 0px)));
  min-height: calc(100dvh - (var(--nav-height, 80px) + var(--admin-bar-height, 0px) - var(--nav-offset, 0px)));
}

body.admin-bar .ttt-nav {
  top: var(--admin-bar-height, 0px);
}

.theme-light-primary #top-fixed-progress .progress-fill {
  --progress-fill-shadow:
    inset 0 0 0 2px #c8cfd6,
    0 1px 1px rgba(0, 0, 0, 0.04);
}

/* --- Together Test Landing Page --- */
.landing-page {
  font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: var(--color-text, var(--landing-navy));
  background: var(--color-page-bg, #f9f9f9);
  overflow-x: hidden;
  margin-top: calc(-1 * clamp(1.35rem, 2.2vw, 1.7rem));
}

.landing-wrapper {
  max-width: var(--container-max, 1200px);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.landing-section {
  padding: clamp(3rem, 8vw, 6rem) 0;
  scroll-margin-top: 96px;
}
.page-simple-section {
  --page-simple-section-space: clamp(1.5rem, 4.1vw, 2.5rem);
  padding-top: var(--page-simple-section-space);
  padding-bottom: var(--page-simple-section-space);
}

.landing-hero {
  min-height: calc(100vh - var(--nav-height, 80px));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(120deg, #f7fafe 0%, #eef4ff 48%, #e5edf8 100%);
}

.landing-hero .landing-wrapper {
  max-width: 1400px;
}

.landing-problem {
  background: #ffffff;
}

.landing-overview {
  background: #ffffff;
}

.landing-discover {
  background: #ffffff;
}

.landing-plan {
  background: #f6f9ff;
}

.landing-editions {
  background: var(--landing-cream);
}

.landing-comparison {
  background: #ffffff;
}

.landing-preview {
  background: #f4f7fb;
}

.landing-social {
  background: #ffffff;
}

.landing-faq {
  background: #ffffff;
}

.landing-cta-final {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(54, 189, 133, 0.15));
  text-align: center;
}

.landing-hero__grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: center;
  grid-template-columns: minmax(320px, 0.95fr) minmax(620px, 1.35fr);
}

.landing-hero__content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin-right: -72px;
  padding: clamp(1.1rem, 2vw, 1.8rem);
  border-radius: 22px;
  border: 1px solid rgba(24, 36, 80, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(24, 36, 80, 0.14);
}

.landing-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--landing-slate);
  margin-bottom: 0.75rem;
}

.landing-hero__subhead {
  font-size: 1.1875rem;
  line-height: 1.6;
  margin-bottom: 1.15rem;
}

.landing-hero .landing-cta {
  margin-top: 1rem;
}

.landing-hero__rotate-line {
  font-weight: 600;
  color: var(--landing-slate);
  margin-bottom: 1.5rem;
}

.landing-hero__rotate {
  display: inline-flex;
  overflow: hidden;
  height: 1.2em;
  vertical-align: bottom;
  margin-left: 0.35rem;
}

.landing-hero__rotate-inner {
  display: flex;
  flex-direction: column;
  animation: landingRotate 20s linear infinite;
}

.landing-hero__rotate-inner span {
  line-height: 1.2;
}

@keyframes landingRotate {
  0%,
  15% {
    transform: translateY(0);
  }
  20%,
  35% {
    transform: translateY(-20%);
  }
  40%,
  55% {
    transform: translateY(-40%);
  }
  60%,
  75% {
    transform: translateY(-60%);
  }
  80%,
  95% {
    transform: translateY(-80%);
  }
  100% {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-hero__rotate-inner {
    animation: none;
  }
}

.landing-hero__visual,
.landing-visual {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.landing-hero__visual {
  position: relative;
  max-width: none;
  margin: 0 -3rem 0 0;
  min-height: clamp(420px, 68vh, 720px);
  box-shadow: 0 24px 48px rgba(24, 36, 80, 0.18);
}

.landing-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(24, 36, 80, 0.2), rgba(24, 36, 80, 0.02) 40%, rgba(24, 36, 80, 0.15));
  pointer-events: none;
}

.landing-hero__poster,
.landing-visual__mockup,
.landing-preview__visual {
  width: 100%;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--landing-card-shadow);
}

.landing-hero__poster {
  padding-top: 125%;
  background:
    linear-gradient(160deg, rgba(54, 189, 133, 0.25), rgba(24, 36, 80, 0.7)),
    linear-gradient(45deg, #ffffff, #cad9ff);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.75rem;
}

.landing-hero__poster::before,
.landing-hero__poster::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.4;
}

.landing-hero__poster::before {
  width: 60%;
  height: 40%;
  top: 15%;
  left: 20%;
  background: rgba(255, 255, 255, 0.2);
}

.landing-hero__poster::after {
  width: 45%;
  height: 45%;
  bottom: 10%;
  right: 10%;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.landing-hero__people {
  display: grid;
  grid-template-columns: repeat(3, minmax(32px, 1fr));
  gap: 0.8rem;
  justify-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.landing-hero__person {
  width: clamp(38px, 6vw, 56px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--landing-coral);
  box-shadow: 0 8px 25px rgba(24, 36, 80, 0.18);
}

.landing-hero__person--one {
  background: #ff9b9f;
}

.landing-hero__person--two {
  background: #38d2c8;
}

.landing-hero__person--three {
  background: #ffe08f;
}

.landing-hero__person--four {
  background: #8da3ff;
}

.landing-hero__person--five {
  background: #f1a7ff;
}

.landing-hero__table {
  position: absolute;
  bottom: 18%;
  left: 10%;
  width: 80%;
  height: 16%;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  filter: blur(0.2px);
  box-shadow: inset 0 0 0 1px rgba(24, 36, 80, 0.08);
}

.landing-visual__mockup {
  padding-top: 70%;
  background: linear-gradient(135deg, rgba(24, 36, 80, 0.08), rgba(255, 255, 255, 0.9));
  display: flex;
  gap: 1.25rem;
  padding: 2rem;
}

.landing-visual__mockup--split::before,
.landing-visual__mockup--split::after {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(24, 36, 80, 0.08), rgba(24, 36, 80, 0.2));
}

.landing-visual__mockup--split::after {
  inset: 10% 10% 10% 52%;
  background: linear-gradient(200deg, rgba(54, 189, 133, 0.2), rgba(255, 255, 255, 0.6));
}

.landing-visual__scene {
  position: relative;
  flex: 1;
  border-radius: 20px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 2;
}

.landing-visual__scene--quiet {
  background: rgba(24, 36, 80, 0.4);
}

.landing-visual__scene--chatty {
  background: rgba(255, 255, 255, 0.85);
}

.landing-visual__scene span {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
}

.landing-visual__scene--chatty span {
  background: rgba(24, 36, 80, 0.15);
}

.landing-visual__mockup--report::before,
.landing-visual__mockup--report::after {
  content: "";
  position: absolute;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 12px 30px rgba(24, 36, 80, 0.12);
}

.landing-visual__mockup--report::before {
  inset: 12% 40% 12% 12%;
}

.landing-visual__mockup--report::after {
  inset: 20% 12% 20% 48%;
  background: rgba(24, 36, 80, 0.08);
}

.landing-report-page {
  position: relative;
  flex: 1;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(24, 36, 80, 0.1);
  z-index: 2;
}

.landing-report-page--left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.landing-report-page--right {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: rgba(24, 36, 80, 0.03);
}

.landing-report-bar {
  display: block;
  width: 60%;
  border-radius: 999px;
  background: rgba(24, 36, 80, 0.15);
  height: 12px;
}

.landing-report-bar--tall {
  width: 80%;
  height: 20px;
  background: rgba(54, 189, 133, 0.4);
}

.landing-report-bar--medium {
  width: 70%;
}

.landing-report-bar--short {
  width: 45%;
}

.landing-report-pill {
  width: 40%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 111, 97, 0.5);
  margin-top: 0.5rem;
}

.landing-report-heatmap {
  width: 100%;
  height: 80px;
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(54, 189, 133, 0.6), rgba(255, 182, 122, 0.6)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3) 1px, transparent 1px, transparent 16px);
}

.landing-report-lines {
  width: 100%;
  height: 40px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(24, 36, 80, 0.08) 60%, transparent 60%),
    linear-gradient(0deg, rgba(24, 36, 80, 0.12) 1px, transparent 1px);
  background-size: 100% 8px;
}

.landing-preview__visual {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  background: linear-gradient(160deg, #ffffff, #f0f5ff);
}

.landing-preview__visual span {
  display: block;
  height: 110px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(24, 36, 80, 0.08), rgba(54, 189, 133, 0.18));
  filter: blur(1px);
  opacity: 0.85;
}

.landing-preview__visual span:nth-child(2) {
  height: 140px;
  background: linear-gradient(135deg, rgba(255, 111, 97, 0.15), rgba(255, 182, 122, 0.35));
}

.landing-preview__visual span:nth-child(3) {
  height: 90px;
  background: linear-gradient(135deg, rgba(24, 36, 80, 0.12), rgba(255, 255, 255, 0.65));
}

.landing-hero__image,
.landing-section__image,
.page-hero__image,
.marketing-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  border: 1px solid rgba(24, 36, 80, 0.08);
  box-shadow: var(--landing-card-shadow);
  background: #ffffff;
}

.landing-hero .landing-hero__image {
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.page-hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
}

.page-hero__media {
  margin: 0;
}

.marketing-visual {
  margin: 1.5rem 0 0;
}

.marketing-page .page-hero {
  text-align: left;
}
.page-intro {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--landing-slate);
  margin-top: 0.75rem;
}
.page-hero--compact {
  padding-bottom: clamp(1.5rem, 5vw, 3rem);
}
.page-simple-section > .landing-wrapper > p,
.page-simple-section > .landing-wrapper > ul {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.page-simple-section > .landing-wrapper > ul {
  margin-top: 1rem;
}
.page-section-card p,
.page-section-card ul {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.page-section-card {
  --page-card-pad-block: clamp(1.5rem, 3.8vw, 2.25rem);
  --page-card-pad-inline: clamp(1.35rem, 3.4vw, 2.1rem);
  --ttt-surface-radius-size: var(--ttt-radius-2xl);
  --ttt-surface-border-color: var(--ttt-border-subtle);
  --ttt-surface-shadow-style: var(--ttt-shadow-xl);
  padding: var(--page-card-pad-block) var(--page-card-pad-inline);
  margin-bottom: clamp(0.85rem, 2.2vw, 1.35rem);
}
.page-section-card > :first-child,
.landing-card > :first-child,
.purchase-plan-card > :first-child,
.ttt-auth-group-card > :first-child,
.analytics-card > :first-child,
.analytics-subcard > :first-child,
.dashboard-page .group-settings-card > :first-child,
.redirect-card > :first-child,
.unsubscribe-card > :first-child {
  margin-top: 0;
}
.page-section-card h2,
.page-section-card h3,
.landing-card h2,
.landing-card h3,
.analytics-card h2,
.analytics-card h3,
.analytics-subcard h3,
.dashboard-page .group-settings-card h4,
.redirect-card h1,
.unsubscribe-card h1 {
  margin-top: 0;
}
.page-simple-section .page-section-card:last-child {
  margin-bottom: 0;
}
.page-section-card > :last-child,
.landing-card > :last-child,
.purchase-plan-card > :last-child,
.ttt-auth-group-card > :last-child,
.analytics-card > :last-child,
.analytics-subcard > :last-child,
.dashboard-page .group-settings-card > :last-child,
.redirect-card > :last-child,
.unsubscribe-card > :last-child {
  margin-bottom: 0;
}
.notice-banner-stack {
  display: grid;
  gap: 0.75rem;
  width: 100%;
  max-width: 860px;
  margin: 0 auto 1.25rem;
}
.auth-notice-stack--access {
  max-width: 680px;
}
.auth-notice-stack--invalid {
  max-width: 700px;
}
.auth-notice-stack--verify {
  max-width: 860px;
}
.page-notice-banner,
.invite-notice-banner,
.dashboard-page .info-banner,
.dashboard-page .declined-banner,
.join-page .join-conflict-banner,
.join-page .join-trial-banner,
.purchase-alert,
.purchase-confirm-status {
  --ttt-message-radius: var(--ttt-radius-lg);
  --ttt-message-pad-block: 0.85rem;
  --ttt-message-pad-inline: 1rem;
  border-radius: var(--ttt-message-radius);
  padding: var(--ttt-message-pad-block) var(--ttt-message-pad-inline);
  line-height: 1.45;
}
.page-notice-banner,
.invite-notice-banner,
.dashboard-page .info-banner,
.join-page .join-conflict-banner,
.join-page .join-trial-banner {
  font-weight: 600;
}
.page-notice-banner,
.invite-notice-banner {
  --ttt-surface-radius-size: var(--ttt-radius-lg);
  --ttt-surface-border-color: transparent;
  --ttt-surface-shadow-style: var(--ttt-shadow-medium);
  text-align: center;
  width: calc(100% - 2rem);
  max-width: var(--container-max);
  margin: 0.75rem auto;
}
.notice-banner-stack .page-notice-banner,
.notice-banner-stack .invite-notice-banner {
  width: 100%;
  max-width: none;
  margin: 0;
}
.page-notice-banner {
  background: #fff6df;
  border-color: rgba(160, 117, 35, 0.28);
  color: #5a3d1b;
}
.invite-notice-banner {
  background: #ffecec;
  border-color: rgba(162, 36, 36, 0.28);
  color: #7b1f1f;
}
.page-section-stack {
  display: grid;
  gap: 1.25rem;
}
.page-section-stack .page-section-card {
  margin-bottom: 0;
}
.page-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.purchase-alert {
  --ttt-surface-radius-size: var(--ttt-radius-lg);
  --ttt-surface-border-color: rgba(255, 111, 97, 0.2);
  --ttt-surface-bg-color: rgba(255, 111, 97, 0.08);
  --ttt-message-pad-block: 1rem;
  --ttt-message-pad-inline: 1.25rem;
  margin-bottom: 1.25rem;
}
.purchase-owner-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.purchase-confirm-layout > .page-section-card {
  --auth-card-max-width: 700px;
}
.purchase-confirm-card {
  padding: clamp(1.1rem, 2.2vw, 1.7rem);
}
.purchase-confirm-card--hero h1 {
  margin-top: 0;
}
.purchase-confirm-order-ref {
  margin-top: 0.35rem;
  color: #4a5768;
  font-size: 0.95rem;
}
.owner-choice__other {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.25s ease, opacity 0.25s ease;
}
.owner-choice__other.is-visible {
  max-height: 160px;
  margin-top: 0.5rem;
  opacity: 1;
}
.purchase-upsell-form {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.purchase-confirm-status {
  --ttt-message-radius: var(--ttt-radius-md);
  --ttt-message-pad-block: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  border: 1px solid transparent;
}
.purchase-confirm-status--success {
  background: #e8f8f0;
  border-color: #9ad5b1;
  color: #184f32;
}
.purchase-confirm-status--error {
  background: #ffecec;
  border-color: rgba(255, 111, 97, 0.36);
  color: #8a2222;
}
.purchase-confirm-email-sent {
  margin: 0 0 0.8rem;
  color: #4a5768;
}
.purchase-confirm-email-grid {
  align-items: end;
}
.purchase-confirm-card .form-field input[readonly] {
  background: #f6f8fb;
  color: #4a5768;
  border-color: #d6deea;
}
.purchase-follow-up {
  margin-top: 0.5rem;
}
.ttt-purchase-confirm {
  min-height: calc(100vh - var(--nav-height, 80px));
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 42%, var(--ttt-home-panel) 100%);
}
.ttt-purchase-confirm__hero {
  padding: clamp(2.6rem, 6vw, 5rem) 0 clamp(2.2rem, 5vw, 4rem);
}
.ttt-purchase-confirm__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(21rem, 0.72fr);
  gap: clamp(1.6rem, 5vw, 4rem);
  align-items: center;
}
.ttt-purchase-confirm__copy h1 {
  max-width: 10ch;
  margin: 0 0 0.8rem;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  color: var(--ttt-home-ink);
  font-size: clamp(2.9rem, 6vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}
.ttt-purchase-confirm__copy,
.ttt-purchase-confirm__summary,
.ttt-purchase-confirm__panel {
  min-width: 0;
}
.ttt-purchase-confirm__lede {
  max-width: 34rem;
  margin: 0 0 1.45rem;
  color: #3d4667;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.55;
  overflow-wrap: anywhere;
}
.ttt-purchase-confirm__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.ttt-purchase-confirm__summary,
.ttt-purchase-confirm__panel {
  border: 1px solid var(--ttt-home-line);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--ttt-home-shadow);
}
.ttt-purchase-confirm__summary {
  position: relative;
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 1.8rem);
}
.ttt-purchase-confirm__summary::after {
  content: "";
  position: absolute;
  right: -4.5rem;
  bottom: -5rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: rgba(var(--ttt-home-group-green-rgb), 0.1);
  pointer-events: none;
}
.ttt-purchase-confirm__summary > * {
  position: relative;
  z-index: 1;
}
.ttt-purchase-confirm__success-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(var(--ttt-home-group-green-rgb), 0.25);
  border-radius: 50%;
  background: rgba(var(--ttt-home-group-green-rgb), 0.12);
  color: var(--ttt-home-group-green);
}
.ttt-purchase-confirm__success-mark svg {
  width: 1.35rem;
  height: 1.35rem;
}
.ttt-purchase-confirm__summary > p {
  margin: 0 0 0.45rem;
  color: var(--ttt-home-blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ttt-purchase-confirm__summary h2,
.ttt-purchase-confirm__panel h2,
.ttt-purchase-confirm__steps h2 {
  margin: 0;
  color: var(--ttt-home-ink);
  letter-spacing: 0;
}
.ttt-purchase-confirm__summary h2 {
  max-width: 100%;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.02;
  text-align: left;
  overflow-wrap: anywhere;
}
.ttt-purchase-confirm__summary dl {
  display: grid;
  gap: 0.85rem;
  margin: 1.35rem 0 0;
}
.ttt-purchase-confirm__summary dl div {
  display: grid;
  gap: 0.18rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(var(--ttt-home-blue-rgb), 0.14);
}
.ttt-purchase-confirm__summary dt {
  color: #63708d;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ttt-purchase-confirm__summary dd {
  margin: 0;
  color: #17245c;
  font-size: 0.92rem;
  font-weight: 850;
  overflow-wrap: anywhere;
}
.ttt-purchase-confirm__next,
.ttt-purchase-confirm__message-section {
  padding: 0 0 clamp(2.8rem, 6vw, 5rem);
}
.ttt-purchase-confirm__next-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(23rem, 1fr);
  gap: clamp(1.2rem, 4vw, 2.5rem);
  align-items: start;
}
.ttt-purchase-confirm__steps {
  padding: clamp(1.15rem, 3vw, 1.65rem) 0;
}
.ttt-purchase-confirm__steps h2 {
  max-width: 12ch;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.03;
}
.ttt-purchase-confirm__steps ol {
  display: grid;
  gap: 1rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}
.ttt-purchase-confirm__steps li {
  display: grid;
  grid-template-columns: 2.15rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
}
.ttt-purchase-confirm__steps li > span {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  background: var(--ttt-home-blue);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(var(--ttt-home-blue-rgb), 0.16);
}
.ttt-purchase-confirm__steps strong {
  display: block;
  color: #17245c;
  font-size: 0.98rem;
  line-height: 1.25;
}
.ttt-purchase-confirm__steps p {
  margin: 0.22rem 0 0;
  color: var(--ttt-home-muted);
  line-height: 1.5;
}
.ttt-purchase-confirm__panel {
  padding: clamp(1.1rem, 2.5vw, 1.55rem);
}
.ttt-purchase-confirm__message-wrap {
  max-width: 46rem;
}
.ttt-purchase-confirm__panel h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 900;
  line-height: 1.12;
}
.ttt-purchase-confirm__panel p {
  color: #314171;
  line-height: 1.55;
}
.ttt-purchase-confirm__panel > p:first-of-type {
  margin-top: 0;
}
.ttt-purchase-confirm .purchase-owner-form {
  margin-top: 1.15rem;
}
.ttt-purchase-confirm .purchase-confirm-email-sent {
  display: grid;
  gap: 0.18rem;
  margin: 0.9rem 0 0;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(var(--ttt-home-blue-rgb), 0.16);
  border-radius: 0.55rem;
  background: var(--ttt-home-soft-blue);
  color: #17245c;
}
.ttt-purchase-confirm .purchase-confirm-email-sent strong {
  color: #63708d;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ttt-purchase-confirm .purchase-confirm-email-grid {
  grid-template-columns: 1fr;
}
.ttt-purchase-confirm .form-field input {
  border-color: var(--ttt-home-line);
  border-radius: 0.55rem;
}
.ttt-purchase-confirm .purchase-owner-form .btn-primary,
.ttt-purchase-confirm #resendEmailForm .btn-primary {
  align-self: start;
  min-height: 2.65rem;
  padding-inline: 1.2rem;
  border: 1px solid var(--ttt-home-blue);
  border-radius: 12px;
  background: var(--ttt-home-blue);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}
.ttt-purchase-confirm .purchase-owner-form .btn-primary:hover,
.ttt-purchase-confirm #resendEmailForm .btn-primary:hover {
  border-color: var(--btn-bg-hover, #3c7cc2);
  background: var(--btn-bg-hover, #3c7cc2);
}
@media (max-width: 860px) {
  .ttt-purchase-confirm__grid,
  .ttt-purchase-confirm__next-grid {
    grid-template-columns: 1fr;
  }
  .ttt-purchase-confirm__copy h1,
  .ttt-purchase-confirm__lede {
    max-width: 100%;
  }
  .ttt-purchase-confirm__steps {
    padding-top: 0;
  }
}
@media (max-width: 560px) {
  .ttt-purchase-confirm__hero {
    padding-top: 2rem;
  }
  .ttt-purchase-confirm__actions,
  .ttt-purchase-confirm__actions .ttt-home-btn {
    width: 100%;
  }
  .ttt-purchase-confirm__summary h2,
  .ttt-purchase-confirm__steps h2 {
    max-width: none;
  }
}
.ttt-purchase-confirm__receipt-section {
  padding: clamp(2rem, 6vw, 4.6rem) 0 clamp(2.8rem, 7vw, 5.5rem);
}
.ttt-purchase-confirm__receipt-wrap {
  max-width: 760px;
}
.ttt-purchase-confirm__receipt {
  display: grid;
  justify-items: center;
  padding: clamp(1.45rem, 4vw, 2.3rem);
  border: 1px solid var(--ttt-home-line);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 48px rgba(var(--ttt-home-blue-rgb), 0.08);
  text-align: center;
}
.ttt-purchase-confirm__top-status {
  width: 100%;
  max-width: 34rem;
  margin: 0 0 1.2rem;
  text-align: left;
}
.ttt-purchase-confirm__receipt .ttt-purchase-confirm__success-mark {
  margin: 0 0 1rem;
}
.ttt-purchase-confirm__receipt .ttt-home-kicker {
  margin-bottom: 0.65rem;
}
.ttt-purchase-confirm__receipt h1 {
  max-width: 31rem;
  margin: 0 0 0.75rem;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  color: var(--ttt-home-ink);
  font-size: clamp(2.75rem, 4.35vw, 4.15rem);
  line-height: 0.98;
  letter-spacing: 0;
}
.ttt-purchase-confirm__receipt .ttt-purchase-confirm__lede {
  max-width: 34rem;
  margin-bottom: 1.35rem;
}
.ttt-purchase-confirm__details {
  display: grid;
  width: 100%;
  max-width: 34rem;
  margin: 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(var(--ttt-home-blue-rgb), 0.14);
  border-bottom: 1px solid rgba(var(--ttt-home-blue-rgb), 0.14);
  text-align: left;
}
.ttt-purchase-confirm__details div {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr);
  gap: 1rem;
  align-items: baseline;
  min-width: 0;
  padding: 0.55rem 0;
}
.ttt-purchase-confirm__details div + div {
  border-top: 1px solid rgba(var(--ttt-home-blue-rgb), 0.1);
}
.ttt-purchase-confirm__details dt {
  color: #63708d;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ttt-purchase-confirm__details dd {
  margin: 0;
  color: #17245c;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.ttt-purchase-confirm__email-help {
  width: 100%;
  max-width: 34rem;
  margin-top: 1.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(var(--ttt-home-blue-rgb), 0.14);
  text-align: left;
}
.ttt-purchase-confirm__email-title {
  margin: 0 0 0.25rem;
  color: var(--ttt-home-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: left;
}
.ttt-purchase-confirm__email-help > p {
  margin: 0 0 0.85rem;
  color: var(--ttt-home-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: left;
}
.ttt-purchase-confirm__email-help .purchase-owner-form {
  display: block;
  margin-top: 0;
}
.ttt-purchase-confirm__email-help .form-field {
  display: grid;
  gap: 0.35rem;
}
.ttt-purchase-confirm__email-help .form-field label {
  gap: 0.35rem;
}
.ttt-purchase-confirm__email-help .form-field__hint {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
}
.ttt-purchase-confirm__email-controls {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}
.ttt-purchase-confirm__email-controls input {
  min-width: 0;
}
.ttt-purchase-confirm__email-help .purchase-owner-form .btn-primary {
  justify-self: start;
  width: auto;
  min-width: 9.5rem;
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 700px) {
  .ttt-purchase-confirm__receipt {
    justify-items: stretch;
    text-align: left;
  }
  .ttt-purchase-confirm__receipt .ttt-purchase-confirm__success-mark {
    justify-self: start;
  }
  .ttt-purchase-confirm__receipt h1,
  .ttt-purchase-confirm__receipt .ttt-purchase-confirm__lede {
    max-width: 100%;
  }
  .ttt-purchase-confirm__receipt h1 {
    font-size: clamp(2.25rem, 10.2vw, 3.2rem);
  }
  .ttt-purchase-confirm__details {
    max-width: none;
  }
  .ttt-purchase-confirm__details div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
    padding: 0;
  }
  .ttt-purchase-confirm__details div + div {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(var(--ttt-home-blue-rgb), 0.14);
    border-left: 0;
  }
  .ttt-purchase-confirm__email-help {
    max-width: none;
  }
  .ttt-purchase-confirm__email-help .purchase-owner-form .btn-primary {
    justify-self: stretch;
    width: 100%;
    margin-bottom: 0;
  }
}
.pricing-status {
  grid-column: 1 / -1;
  font-weight: 600;
  color: rgba(255, 111, 97, 1);
}
.purchase-form {
  --ttt-input-padding: 0.65rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.purchase-form__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.purchase-form label {
  font-weight: 600;
  color: var(--landing-navy);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.purchase-plan-grid {
  --ttt-surface-radius-size: 18px;
  --ttt-surface-border-color: var(--ttt-border-regular);
  padding: 1rem;
}
.purchase-plan-grid legend {
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: var(--landing-navy);
}
.purchase-plan-grid__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}
.purchase-plan-card,
.ttt-auth-group-card {
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.purchase-plan-card input[type="radio"],
.ttt-auth-group-card__radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.purchase-plan-card {
  --ttt-surface-radius-size: var(--ttt-radius-lg);
  --ttt-surface-border-color: rgba(24, 36, 80, 0.15);
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-weight: 600;
  color: var(--landing-navy);
  position: relative;
}
.purchase-plan-card__name {
  font-size: 1rem;
}
.purchase-form button[type="submit"] {
  align-self: flex-start;
  width: min(100%, 360px);
}
.purchase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1.5rem;
  align-items: start;
}
.purchase-layout.purchase-layout--single {
  grid-template-columns: minmax(0, 1fr);
}
.auth-layout.purchase-layout--single {
  justify-items: center;
}
.auth-layout.purchase-layout--single > .page-section-card {
  width: 100%;
  max-width: var(--auth-card-max-width, 700px);
  margin-left: auto;
  margin-right: auto;
}
.auth-card--access {
  --auth-card-max-width: 680px;
}
.auth-card--access h1 {
  margin-top: 0;
}
.auth-access-options {
  display: grid;
  gap: 1.1rem;
}
.auth-access-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #5f6f86;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.auth-access-divider::before,
.auth-access-divider::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: rgba(20, 58, 102, 0.14);
}
.auth-form-note {
  margin: 0;
  color: #5a6a81;
  font-size: 0.95rem;
}
.auth-code-form input[name="signin_code"] {
  letter-spacing: 0.16em;
  font-variant-numeric: tabular-nums;
}
.auth-card--invalid {
  --auth-card-max-width: 700px;
}
.auth-card--continue h1 {
  margin-top: 0;
  text-align: center;
}
.auth-card--continue {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: fit-content;
  max-width: min(100%, 100%);
  margin-left: auto;
  margin-right: auto;
}
.auth-card--continue .page-intro {
  text-align: center;
}
.auth-card--continue .purchase-form {
  width: 100%;
  align-items: center;
}
.auth-card--continue .auth-form-actions {
  width: 100%;
}
.auth-card--continue .purchase-form button[type="submit"] {
  width: 100%;
  max-width: none;
}
.auth-form-actions {
  display: flex;
  justify-content: center;
}
.auth-card--verify {
  --auth-card-max-width: 860px;
}
.auth-card--verify-single {
  --auth-card-max-width: 760px;
}
.auth-card--group-select {
  --auth-card-max-width: 760px;
}
.card-page-section {
  --page-simple-section-space: var(--page-card-section-space);
}
.card-page-section .page-section-card {
  margin-bottom: 0;
}
.purchase-layout > .page-section-card {
  margin-bottom: 0;
}
.printed-book-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}
.printed-book-card {
  display: grid;
  gap: 1rem;
}
.printed-book-card__title {
  margin: 0;
}
.printed-book-card__lead,
.printed-book-card__foot,
.purchase-form__microcopy {
  color: #5a6a81;
}
.purchase-form__microcopy {
  margin: -0.1rem 0 0;
  font-size: 0.92rem;
}
.purchase-page-simple {
  background: #ffffff;
  color: #07145f;
}
.purchase-simple-section {
  --page-simple-section-space: clamp(1.5rem, 4vw, 3.25rem);
}
.purchase-simple-shell {
  max-width: min(100%, 1180px);
  margin: 0 auto;
}
.purchase-simple-card {
  --ttt-surface-radius-size: 0;
  --ttt-surface-border-color: transparent;
  --ttt-surface-shadow-style: none;
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  background: #edf5ff;
}
.purchase-simple-card::before,
.purchase-simple-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: clamp(170px, 22vw, 320px);
  aspect-ratio: 1;
  border: clamp(14px, 2vw, 28px) solid rgba(52, 127, 214, 0.08);
  border-radius: 44% 56% 48% 52%;
  transform: rotate(-18deg);
}
.purchase-simple-card::before {
  left: clamp(-150px, -8vw, -80px);
  top: clamp(-90px, -5vw, -40px);
}
.purchase-simple-card::after {
  right: clamp(-160px, -7vw, -70px);
  bottom: clamp(-150px, -8vw, -80px);
  transform: rotate(24deg);
}
.purchase-simple-card > * {
  position: relative;
  z-index: 1;
}
.purchase-simple-card h2 {
  margin: 0 0 0.55rem;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  line-height: 1.05;
  color: #07145f;
  letter-spacing: 0;
  text-align: center;
}
.purchase-simple-card > p {
  max-width: 40rem;
  margin: 0 auto 1.5rem;
  color: #07145f;
  text-align: center;
}
.purchase-form--minimal {
  gap: 1.25rem;
  max-width: none;
  margin: 0;
}
.purchase-offer-block {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: clamp(1.5rem, 4vw, 3.2rem);
  align-items: center;
}
.purchase-offer__intro {
  display: grid;
  gap: 0.85rem;
}
.purchase-offer__eyebrow,
.purchase-offer__label {
  margin: 0;
  color: #5d6f90;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.purchase-offer__intro h1 {
  margin: 0;
  max-width: 10ch;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.95;
  color: #07145f;
  letter-spacing: 0;
}
.purchase-offer__intro h1 em {
  display: inline-block;
  color: #347fd6;
  font-style: italic;
  font-weight: 400;
}
.purchase-offer__intro > p:last-child {
  max-width: 34rem;
  margin: 0;
  color: #07145f;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.45;
}
.purchase-offer__checkout {
  display: grid;
  gap: 1rem;
  padding: clamp(1.1rem, 2.6vw, 1.65rem);
  border: 1px solid rgba(52, 127, 214, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(7, 20, 95, 0.08);
}
.purchase-offer__summary {
  display: grid;
  gap: 0.45rem;
}
.purchase-offer__title {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.08;
  color: #07145f;
  text-align: left;
}
.purchase-offer__price {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.55rem);
  font-weight: 800;
  color: #07145f;
}
.purchase-offer__price span {
  margin-left: 0.35rem;
  font-size: 0.98rem;
  font-weight: 700;
  color: #5d6f90;
}
.purchase-offer__copy {
  margin: 0;
  max-width: 36rem;
  color: #07145f;
  line-height: 1.5;
}
.purchase-offer__steps {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #07145f;
  font-weight: 600;
}
.purchase-offer__steps li {
  display: grid;
  grid-template-columns: 1.2rem minmax(0, 1fr);
  gap: 0.55rem;
  align-items: start;
}
.purchase-offer__steps li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.43rem;
  border-radius: 50%;
  background: #347fd6;
}
.purchase-offer__sale {
  margin: 0;
  color: #1d5d3e;
  font-weight: 700;
}
.purchase-primary-button {
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  background: #4d92e3;
  color: #ffffff;
}
.purchase-form--minimal .purchase-primary-button {
  align-self: stretch;
  width: 100%;
}
.purchase-legal-microcopy {
  margin: -0.25rem 0 0;
  color: #5d6f90;
  font-size: 0.88rem;
  text-align: center;
}
.purchase-offers-catalog {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.purchase-offers-catalog__group {
  margin: 1.35rem 0 0.75rem;
  color: #07145f;
  text-align: center;
}
.purchase-offers-catalog__item {
  padding: 1.1rem;
  border: 1px solid rgba(52, 127, 214, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
}
.purchase-offers-catalog__item h3,
.purchase-offers-catalog__item p {
  margin-top: 0;
}
.purchase-offers-catalog__price {
  color: #07145f;
  font-weight: 800;
}
.purchase-offers-catalog__bullets {
  margin: 0.75rem 0 1rem;
  padding-left: 1.15rem;
  color: #31415f;
}
.purchase-offers-catalog__bullets li + li {
  margin-top: 0.35rem;
}
.purchase-simple-divider {
  height: 1px;
  background: rgba(20, 58, 102, 0.14);
}
.purchase-free-button {
  width: auto;
  min-width: 0;
}
.purchase-form--minimal .btn-secondary {
  background: #e7ebf3;
  color: #1f2a3d;
  border-color: #c8cfd6;
}
.purchase-form--minimal .btn-secondary:hover {
  background: #d8dee9;
  color: #1f2a3d;
  border-color: #c8cfd6;
}
.purchase-free-block {
  display: grid;
  justify-items: center;
}
.purchase-free-button.is-preferred {
  box-shadow: 0 0 0 3px rgba(20, 58, 102, 0.1);
}
.purchase-free-button {
  padding-inline: 1.2rem;
}
.purchase-email-step[hidden] {
  display: none !important;
}
.purchase-email-step {
  display: grid;
  gap: 0.85rem;
}
.purchase-email-step.is-visible {
  animation: tttPurchaseEmailReveal 0.18s ease-out;
}
@media (max-width: 900px) {
  .purchase-simple-card {
    padding-inline: clamp(1.2rem, 5vw, 2rem);
  }
  .purchase-offer-block {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .purchase-offer__intro {
    justify-items: center;
  }
  .purchase-offer__intro h1 {
    max-width: 12ch;
  }
  .purchase-offer__intro > p:last-child,
  .purchase-offer__copy {
    margin-left: auto;
    margin-right: auto;
  }
  .purchase-offer__title {
    text-align: center;
  }
  .purchase-offer__steps {
    text-align: left;
  }
}
@keyframes tttPurchaseEmailReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.purchase-page-simple {
  --purchase-ink: #06145f;
  --purchase-blue: var(--btn-bg, #4d92e3);
  --purchase-heading-blue: #347fd6;
  --purchase-soft-blue: #f2f7fd;
  --purchase-panel-blue: #f7fbff;
  --purchase-line: #d8e7f8;
  --purchase-muted: #34436d;
  --purchase-shadow: 0 18px 44px rgba(12, 32, 105, 0.09);
  --purchase-scribble: url("data:image/svg+xml,%3Csvg viewBox='0 0 520 520' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M42 265C112 178 222 65 278 118c58 56-89 149-162 244c-35 46-12 86 42 45c84-64 164-250 277-184c72 42-14 162-112 229' fill='none' stroke='%234d92e3' stroke-width='16' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 46%, #ffffff 100%);
  color: var(--purchase-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.purchase-simple-section {
  --page-simple-section-space: clamp(1.5rem, 4vw, 3rem);
}
.purchase-simple-shell {
  max-width: min(100% - 2rem, 980px);
}
.purchase-simple-card {
  --ttt-surface-radius-size: 0;
  --ttt-surface-border-color: transparent;
  --ttt-surface-shadow-style: none;
  overflow: visible;
  padding: 0;
  background: transparent;
}
.purchase-simple-card::before,
.purchase-simple-card::after {
  display: none;
}
.purchase-funnel {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: none;
  margin: 0;
  position: relative;
}
.purchase-funnel::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: clamp(11.75rem, 17vw, 13.5rem);
  left: 50%;
  width: 100vw;
  height: calc(100% - clamp(11.75rem, 17vw, 13.5rem) + 2.5rem);
  transform: translateX(-50%);
  border-block: 1px solid rgba(216, 231, 248, 0.72);
  background: #f2f7fd;
}
.purchase-funnel::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: clamp(11.75rem, 17vw, 13.5rem);
  left: 50%;
  width: 100vw;
  height: calc(100% - clamp(11.75rem, 17vw, 13.5rem) + 2.5rem);
  transform: translateX(-50%);
  background:
    left max(1.5rem, calc(50vw - 33rem)) top 2.25rem / clamp(9rem, 17vw, 14rem) no-repeat var(--purchase-scribble),
    right max(1.5rem, calc(50vw - 34rem)) bottom 5rem / clamp(10rem, 18vw, 15rem) no-repeat var(--purchase-scribble);
  opacity: 0.08;
  pointer-events: none;
}
.purchase-funnel > * {
  position: relative;
  z-index: 1;
}
.purchase-funnel__hero {
  display: grid;
  gap: 1.15rem;
  justify-items: center;
  margin-bottom: clamp(0.65rem, 1.5vw, 1.25rem);
  text-align: center;
}
.purchase-funnel__hero h1 {
  max-width: 740px;
  margin: 0;
  color: var(--purchase-ink);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(2.5rem, 5.7vw, 4.65rem);
  line-height: 1;
  letter-spacing: 0;
}
.purchase-funnel__hero h1 em {
  color: var(--purchase-heading-blue);
  font-style: italic;
  font-weight: 500;
}
.purchase-funnel__hero p {
  max-width: 670px;
  margin: 0;
  color: var(--purchase-muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  font-weight: 500;
  line-height: 1.5;
}
.purchase-funnel__checkout-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1fr);
  gap: clamp(1.6rem, 4vw, 2.75rem);
  align-items: stretch;
  padding: clamp(1.45rem, 3.2vw, 2.25rem);
  border: 1px solid rgba(216, 231, 248, 0.86);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--purchase-shadow);
  overflow: hidden;
  position: relative;
}
.purchase-funnel__checkout-card > * {
  position: relative;
  z-index: 1;
}
.purchase-funnel__checkout-card .purchase-offer__summary {
  align-content: start;
  gap: 0.72rem;
  justify-items: start;
  text-align: left;
}
.purchase-funnel__checkout-card .purchase-offer__meta {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 0.05rem;
  color: var(--purchase-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.purchase-funnel__checkout-card .purchase-offer__meta strong {
  padding: 0.22rem 0.52rem;
  border-radius: 999px;
  background: var(--purchase-soft-blue);
  color: var(--purchase-blue);
}
.purchase-funnel__checkout-card .purchase-offer__label {
  justify-self: start;
  padding: 0.26rem 0.58rem;
  border-radius: 0.4rem;
  background: var(--purchase-ink);
  color: #ffffff;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}
.purchase-funnel__checkout-card .purchase-offer__title {
  margin: 0;
  color: var(--purchase-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.9rem, 3.1vw, 2.45rem);
  font-weight: 800;
  line-height: 1.12;
  text-align: left;
}
.purchase-funnel__checkout-card .purchase-offer__price {
  color: var(--purchase-ink);
  font-size: clamp(1.72rem, 3vw, 2.18rem);
  line-height: 1;
  text-align: left;
}
.purchase-funnel__checkout-card .purchase-offer__price span {
  color: var(--purchase-muted);
}
.purchase-funnel__checkout-card .purchase-offer__copy {
  max-width: 20rem;
  color: var(--purchase-muted);
  line-height: 1.5;
  text-align: left;
}
.purchase-funnel__checkout-card .purchase-offer__steps {
  gap: 0.7rem;
  margin-top: 0.6rem;
  color: var(--purchase-ink);
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.42;
}
.purchase-funnel__checkout-card .purchase-offer__steps li {
  grid-template-columns: 1.05rem minmax(0, 1fr);
}
.purchase-funnel__checkout-card .purchase-offer__steps li::before {
  width: 0.54rem;
  height: 0.54rem;
  margin-top: 0.45rem;
  background: var(--purchase-blue);
}
.purchase-funnel__checkout-card .purchase-offer__checkout {
  align-content: center;
  gap: 1.05rem;
  padding: 0 0 0 clamp(1.25rem, 3vw, 2.05rem);
  border: 0;
  border-left: 1px solid rgba(12, 32, 105, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.purchase-funnel__checkout-card .form-field {
  margin: 0;
}
.purchase-funnel__checkout-card .form-field label {
  color: var(--purchase-ink);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.purchase-funnel__checkout-card .form-field label span {
  margin-left: 0.25rem;
  color: var(--purchase-muted);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.purchase-funnel__checkout-card .form-field input {
  min-height: 3.45rem;
  border-color: rgba(12, 32, 105, 0.16);
  border-radius: 0.5rem;
  color: var(--purchase-ink);
}
.purchase-funnel__checkout-card .form-field input:focus {
  border-color: var(--purchase-blue);
  box-shadow: 0 0 0 3px rgba(77, 146, 227, 0.16);
}
.purchase-funnel__checkout-card .purchase-primary-button {
  min-height: 3.45rem;
  border-radius: 0.5rem;
  background: var(--purchase-blue);
  border-color: var(--purchase-blue);
  color: #ffffff;
  font-weight: 800;
}
.purchase-funnel__checkout-card .purchase-primary-button:hover {
  background: var(--btn-bg-hover, #3c7cc2);
  border-color: var(--btn-bg-hover, #3c7cc2);
}
.purchase-funnel__trust {
  display: grid;
  gap: 0.58rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--purchase-muted);
  font-size: 0.88rem;
  line-height: 1.4;
}
.purchase-funnel__trust li {
  display: grid;
  grid-template-columns: 1.35rem minmax(0, 1fr);
  gap: 0.45rem;
  align-items: start;
}
.purchase-funnel__trust i {
  color: var(--purchase-ink);
}
.purchase-funnel__checkout-card .purchase-legal-microcopy {
  margin: 0.15rem 0 0;
  color: var(--purchase-muted);
  font-size: 0.84rem;
  line-height: 1.42;
  text-align: left;
}
.purchase-funnel__checkout-card .purchase-legal-microcopy a,
.purchase-funnel__reassurance a {
  color: var(--purchase-blue);
  font-weight: 800;
  text-decoration: none;
}
.purchase-funnel__quote {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: clamp(1.35rem, 3vw, 2rem) clamp(1.35rem, 3vw, 2.2rem);
  border: 0;
  border-left: 0.28rem solid rgba(77, 146, 227, 0.3);
  border-radius: 0.5rem;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(12, 32, 105, 0.06);
  overflow: hidden;
  position: relative;
}
.purchase-funnel__quote::before,
.purchase-funnel__quote::after {
  content: '"';
  position: absolute;
  color: rgba(77, 146, 227, 0.32);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  pointer-events: none;
}
.purchase-funnel__quote::before {
  top: clamp(1rem, 2.2vw, 1.35rem);
  left: clamp(1.45rem, 3vw, 2rem);
}
.purchase-funnel__quote::after {
  right: clamp(1.45rem, 3vw, 2rem);
  bottom: clamp(0.4rem, 1.4vw, 0.7rem);
  transform: rotate(180deg);
}
.purchase-funnel__quote blockquote {
  position: relative;
  margin: 0;
  padding: 0 clamp(2.4rem, 5vw, 3.2rem);
  color: var(--purchase-ink);
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
  font-weight: 500;
  line-height: 1.48;
}
.purchase-funnel__quote figcaption {
  margin-left: clamp(2.4rem, 5vw, 3.2rem);
  color: var(--purchase-muted);
  font-size: 0.9rem;
  font-weight: 700;
}
.purchase-funnel__reassurance {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.15rem;
  align-items: center;
  padding: clamp(1.15rem, 2.6vw, 1.5rem);
  border: 1px solid rgba(216, 231, 248, 0.9);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.92);
}
.purchase-funnel__reassurance > div {
  display: grid;
  gap: 0.12rem;
}
.purchase-funnel__reassurance-icon {
  display: grid;
  place-items: center;
  width: 3.85rem;
  height: 3.85rem;
  border-radius: 999px;
  background: var(--purchase-soft-blue);
  color: var(--purchase-ink);
  font-size: 1.75rem;
}
.landing-page .purchase-funnel__reassurance h2 {
  margin: 0;
  color: var(--purchase-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
  text-align: left;
}
.landing-page .purchase-funnel__reassurance p {
  margin: 0;
  color: var(--purchase-muted);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.landing-page .purchase-funnel__reassurance a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.purchase-page-simple {
  background: #ffffff;
}

.purchase-page-simple .purchase-simple-section {
  --page-simple-section-space: clamp(2.45rem, 5vw, 4.35rem);
  background: #ffffff;
}

.purchase-page-simple .purchase-simple-card {
  background: transparent;
}

.purchase-page-simple .purchase-funnel__hero h1 {
  max-width: 13.5em;
}

.purchase-page-simple .purchase-funnel {
  gap: clamp(1.2rem, 2.6vw, 2rem);
}

.purchase-page-simple .purchase-funnel__hero {
  margin-bottom: 0;
}

.purchase-page-simple .purchase-funnel::before,
.purchase-page-simple .purchase-funnel::after {
  content: none;
}

.purchase-page-simple .purchase-funnel__checkout-card,
.purchase-page-simple .purchase-funnel__quote,
.purchase-page-simple .purchase-funnel__reassurance,
.purchase-page-simple .purchase-offers-catalog__item {
  border-color: rgba(var(--ttt-home-blue-rgb), 0.16);
  background: #ffffff;
  box-shadow: 0 22px 54px rgba(var(--ttt-home-blue-rgb), 0.1);
}

.purchase-page-simple .purchase-funnel__checkout-card .purchase-offer__meta strong,
.purchase-page-simple .purchase-funnel__reassurance-icon {
  background: #eaf4ff;
  color: var(--ttt-home-blue);
}

.purchase-page-simple .purchase-funnel__checkout-card .purchase-offer__label {
  background: var(--ttt-home-blue);
}

.purchase-page-simple .purchase-funnel__quote {
  border-left-color: rgba(var(--ttt-home-blue-rgb), 0.34);
}

.purchase-page-simple .purchase-funnel__quote::before,
.purchase-page-simple .purchase-funnel__quote::after {
  color: rgba(var(--ttt-home-blue-rgb), 0.14);
}

@media (max-width: 820px) {
  .purchase-funnel::before {
    top: 15rem;
    height: calc(100% - 15rem + 2rem);
  }
  .purchase-funnel::after {
    top: 15rem;
    height: calc(100% - 15rem + 2rem);
    background:
      left -4rem top 1.5rem / 11rem no-repeat var(--purchase-scribble),
      right -4.5rem bottom 4rem / 12rem no-repeat var(--purchase-scribble);
  }
  .purchase-funnel__checkout-card {
    grid-template-columns: 1fr;
  }
  .purchase-funnel__checkout-card .purchase-offer__checkout {
    padding: clamp(1rem, 4vw, 1.35rem) 0 0;
    border-left: 0;
    border-top: 1px solid rgba(12, 32, 105, 0.1);
  }
  .purchase-funnel__checkout-card .purchase-offer__title,
  .purchase-funnel__checkout-card .purchase-legal-microcopy {
    text-align: left;
  }
}
@media (max-width: 520px) {
  .purchase-simple-shell {
    max-width: min(100% - 1rem, 980px);
  }
  .purchase-funnel__checkout-card,
  .purchase-funnel__quote,
  .purchase-funnel__reassurance {
    border-radius: 0.45rem;
  }
  .purchase-funnel__checkout-card .purchase-primary-button {
    justify-self: center;
    width: min(100%, 23rem);
  }
  .purchase-funnel__quote blockquote {
    padding-right: 0;
  }
  .purchase-funnel__reassurance {
    align-items: start;
  }
}
.printed-book-offer-grid {
  display: grid;
  gap: 0.85rem;
}
.printed-book-offer {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(24, 36, 80, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(247, 249, 253, 0.96) 0%, rgba(255, 255, 255, 1) 100%);
}
.printed-book-offer h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}
.printed-book-offer p {
  margin: 0;
}
.purchase-alert--success {
  border-color: rgba(61, 138, 84, 0.22);
  background: rgba(236, 247, 239, 0.92);
}
.auth-access-form button[type="submit"] {
  align-self: center;
  width: min(100%, 220px);
  max-width: 100%;
  display: block;
  margin: 0.15rem auto 0;
}
.auth-code-form button[type="submit"] {
  align-self: center;
  width: min(100%, 260px);
  max-width: 100%;
  display: block;
  margin: 0.15rem auto 0;
}
.access-notice-stack {
  margin-top: 0;
  margin-bottom: 1rem;
}
.ttt-auth-group-list {
  display: grid;
  gap: 0.65rem;
}
.ttt-auth-group-card {
  display: block;
  --ttt-surface-radius-size: 14px;
  --ttt-surface-border-color: #dbe3f2;
  border-width: 2px;
  padding: 0.7rem 0.85rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.ttt-auth-group-card--single {
  cursor: default;
}
.auth-verify-form--single button[type="submit"] {
  align-self: center;
  width: min(100%, 220px);
  max-width: 100%;
}
.ttt-auth-group-card:hover,
.ttt-auth-group-card:focus-within,
.ttt-auth-group-card.is-selected {
  border-color: rgba(77, 146, 227, 1);
  box-shadow: 0 7px 16px rgba(24, 36, 80, 0.1);
  background: #f8fbff;
}
.ttt-group-select-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.ttt-group-select-card .ttt-auth-group-card__row {
  flex: 1;
}
.ttt-group-select-card__meta {
  margin-top: 0.2rem;
}
.ttt-group-stage-track {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.4rem;
}
.ttt-group-stage-chip,
.ttt-group-select-members__summary,
.ttt-auth-group-members-mobile__summary {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(24, 36, 80, 0.2);
  font-weight: 600;
}
.ttt-group-stage-chip,
.ttt-group-select-members__summary,
.ttt-auth-group-members-mobile__summary,
.ttt-group-member-role {
  border-radius: 999px;
}

.ttt-group-stage-chip {
  padding: 0.16rem 0.5rem;
  font-size: 0.7rem;
  line-height: 1;
  color: #5a6a81;
  background: #ffffff;
}
.ttt-group-stage-chip.is-complete {
  border-color: rgba(77, 146, 227, 0.36);
  background: rgba(77, 146, 227, 0.1);
  color: #1f4f8a;
}
.ttt-group-stage-chip.is-current {
  border-color: rgba(77, 146, 227, 0.68);
  background: rgba(77, 146, 227, 0.16);
  color: #182450;
}
.ttt-group-select-members,
.ttt-auth-group-members-mobile {
  margin-top: 0.55rem;
}
.ttt-group-select-members__summary,
.ttt-auth-group-members-mobile__summary {
  cursor: pointer;
  list-style: none;
  justify-content: space-between;
  --ttt-accordion-indicator-color: currentColor;
  gap: 0.3rem;
  padding: 0.3rem 0.65rem;
  font-size: 0.78rem;
}
.ttt-group-select-members__summary,
.ttt-auth-group-members-mobile__summary,
.ttt-group-member-role {
  background: #f4f7fc;
  color: #182450;
}
.ttt-group-select-members summary::-webkit-details-marker,
.ttt-auth-group-members-mobile summary::-webkit-details-marker {
  display: none;
}

.ttt-group-select-members__summary::after,
.ttt-auth-group-members-mobile__summary::after {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  margin-left: 0.2rem;
  flex: 0 0 auto;
  border-right: 2px solid var(--ttt-accordion-indicator-color, currentColor);
  border-bottom: 2px solid var(--ttt-accordion-indicator-color, currentColor);
  transform: translateY(-0.08rem) rotate(45deg);
  transition: transform 0.2s ease;
}

.ttt-group-select-members[open] .ttt-group-select-members__summary::after,
.ttt-auth-group-members-mobile[open] .ttt-auth-group-members-mobile__summary::after {
  transform: translateY(0.08rem) rotate(-135deg);
}
.ttt-group-select-members__list,
.ttt-auth-group-members-mobile__list {
  margin-top: 0.55rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.ttt-group-select-members__list {
  gap: 0.32rem 0.6rem;
}
.ttt-group-select-members__list .ttt-auth-member {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}
.ttt-group-member-role {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.08rem 0.36rem;
  border: 1px solid rgba(24, 36, 80, 0.24);
  font-size: 0.62rem;
  line-height: 1;
  letter-spacing: 0.02em;
  vertical-align: middle;
}
.ttt-auth-group-card__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 235px);
  gap: 0.7rem;
  align-items: start;
}
.ttt-auth-group-card__radio {
  width: 1px;
  height: 1px;
}
.ttt-auth-group-card__body {
  flex: 1;
  min-width: 0;
}
.ttt-auth-group-card__title,
.ttt-auth-group-card__unnamed {
  font-size: 1rem;
  line-height: 1.3;
  color: #182450;
}
.ttt-auth-group-card__title {
  display: block;
}
.ttt-auth-group-card__unnamed {
  margin: 0;
}
.ttt-auth-group-meta {
  margin-top: 0.2rem;
  font-size: 0.82rem;
  font-weight: 400;
}
.ttt-auth-group-meta--primary,
.ttt-auth-member--admin,
.ttt-auth-member--current {
  font-weight: 700;
}
.ttt-auth-group-meta--secondary {
  margin-top: 0.1rem;
  color: #5a6a81;
}
.ttt-auth-group-members-inline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.25rem;
  justify-items: start;
  align-content: start;
  text-align: left;
}
.ttt-auth-member {
  font-size: 0.72rem;
  line-height: 1.25;
  color: #40546f;
  font-weight: 400;
  padding: 0.05rem 0;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ttt-auth-member--admin,
.ttt-auth-member--current {
  color: #182450;
}
.ttt-auth-member--muted {
  color: #63748b;
}
.ttt-auth-group-members-mobile {
  display: none;
  width: 100%;
}
.ttt-auth-group-members-mobile__list {
  gap: 0.25rem 0.5rem;
}
@media (max-width: 680px) {
  .ttt-auth-group-card__row {
    grid-template-columns: 1fr;
  }
  .ttt-auth-group-members-inline {
    display: none;
  }
  .ttt-auth-group-members-mobile {
    display: block;
  }
  .ttt-auth-group-members-mobile__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ttt-group-select-members__list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.purchase-summary-card {
  position: relative;
}
.purchase-checkout-panel {
  display: grid;
  gap: 1rem;
}
.purchase-checkout-panel h2 {
  margin: 0;
}
.purchase-checkout-panel__lead,
.purchase-code-panel__intro {
  margin: 0;
  color: var(--landing-slate);
}
.purchase-checkout-panel__list {
  display: grid;
  gap: 0.75rem;
}
.purchase-checkout-panel__list p {
  margin: 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(24, 36, 80, 0.08);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(247, 249, 253, 0.92) 0%, rgba(255, 255, 255, 1) 100%);
}
.purchase-checkout-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}
.purchase-checkout-panel__actions .btn {
  width: min(100%, 320px);
}
.purchase-checkout-panel__actions .btn.btn--deemphasized {
  opacity: 0.88;
}
.purchase-checkout-panel__actions .btn.is-preferred {
  box-shadow: 0 10px 24px rgba(24, 36, 80, 0.12);
}
.purchase-code-panel {
  margin-top: 1.35rem;
  border-top: 1px solid rgba(24, 36, 80, 0.08);
  padding-top: 1.15rem;
}
.purchase-code-panel summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--landing-navy);
  list-style: none;
}
.purchase-code-panel summary::-webkit-details-marker {
  display: none;
}
.purchase-code-panel summary::after {
  content: "Show";
  margin-left: 0.5rem;
  font-size: 0.85rem;
  color: var(--landing-slate);
}
.purchase-code-panel[open] summary::after {
  content: "Hide";
}
.purchase-code-panel__body {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}
.purchase-form__grid--single {
  grid-template-columns: minmax(0, 1fr);
}
.purchase-summary-card--checkout {
  display: grid;
  gap: 0.9rem;
}
.purchase-summary-card--checkout h2,
.purchase-summary-card--checkout h3,
.purchase-summary-card--checkout p {
  margin: 0;
}
.purchase-summary__note {
  margin-top: 0.75rem;
  color: var(--landing-slate);
  font-size: 0.95rem;
}
.purchase-summary__link,
.join-page .join-intro__link {
  font-weight: 600;
  color: var(--landing-navy);
}
.purchase-summary__link {
  display: inline-block;
  margin-top: 0.75rem;
}
.contact-details,
.form-success,
.contact-form__success,
.contact-form__error,
.join-page .join-success {
  --ttt-feedback-pad-block: 1rem;
  --ttt-feedback-pad-inline: 1.25rem;
  --ttt-feedback-margin-bottom: 1.5rem;
  padding: var(--ttt-feedback-pad-block) var(--ttt-feedback-pad-inline);
  margin-bottom: var(--ttt-feedback-margin-bottom);
}
.contact-details {
  --ttt-surface-radius-size: var(--ttt-radius-lg);
  --ttt-surface-border-color: transparent;
  --ttt-surface-bg-color: var(--landing-cream);
}
.contact-details p {
  margin: 0 0 0.5rem;
}
.contact-details p:last-child {
  margin-bottom: 0;
}
@media (max-width: 540px) {
  .purchase-form button[type="submit"] {
    width: 100%;
  }
  .purchase-free-button,
  .purchase-primary-button {
    width: 100%;
    max-width: none;
  }
  .purchase-checkout-panel__actions .btn {
    width: 100%;
  }
  .auth-access-form button[type="submit"] {
    width: min(100%, 220px);
  }
  .auth-code-form button[type="submit"] {
    width: min(100%, 260px);
  }
}
@media (max-width: 960px) {
  .purchase-layout {
    grid-template-columns: 1fr;
  }
  .printed-book-layout {
    grid-template-columns: 1fr;
  }
}
.purchase-plan-card__meta {
  font-size: 0.9rem;
  color: var(--landing-slate);
  font-weight: 500;
}
.purchase-plan-card.is-selected {
  border-color: var(--landing-teal);
  box-shadow: 0 8px 18px rgba(24, 36, 80, 0.08);
}
.form-status {
  min-height: 1.25rem;
  color: var(--landing-slate);
  font-size: 0.95rem;
}
.form-status.is-error {
  color: #c0392b;
}
.form-hint {
  font-size: 0.85rem;
  color: var(--landing-slate);
}
.form-error {
  color: #c0392b;
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
}
.form-success,
.contact-form__success {
  --ttt-feedback-pad-inline: 1rem;
  --ttt-feedback-margin-bottom: 1.25rem;
  --ttt-surface-radius-size: var(--ttt-radius-md);
  --ttt-surface-border-color: #9ad5b1;
  --ttt-surface-bg-color: #e8f8f0;
  color: #184f32;
}
.tgt-cookie-banner {
  position: fixed;
  z-index: 1200;
  right: clamp(14px, 3vw, 24px);
  bottom: clamp(14px, 3vw, 24px);
  width: min(320px, calc(100vw - 28px));
  max-width: 320px;
  background: #4a5568;
  color: #fff;
  padding: 0.75rem 0.8rem 0.72rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  overflow: hidden;
}
.tgt-cookie-banner[hidden],
.tgt-cookie-banner.is-dismissed {
  display: none !important;
}
.tgt-cookie-banner--compact {
  max-width: 360px;
}
.tgt-cookie-banner--compact .tgt-cookie-banner__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.86rem;
}
.tgt-cookie-banner--compact .tgt-cookie-banner__text strong {
  font-size: 0.94rem;
  line-height: 1.25;
}
.tgt-cookie-banner__text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.32;
}
.tgt-cookie-banner__text p a {
  color: #fff;
  text-decoration: underline;
  white-space: nowrap;
}
.tgt-cookie-banner__actions,
.ttt-step-guide .step-card__actions-row,
.dashboard-page .share-field__actions {
  display: flex;
  flex-wrap: wrap;
}
.tgt-cookie-banner__actions {
  gap: 0.35rem;
}
.tgt-cookie-banner .btn {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
}
.tgt-cookie-banner .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}
@media (max-width: 640px) {
  .tgt-cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    max-width: none;
    padding: 0.82rem;
    border-radius: 15px;
  }

  .tgt-cookie-banner .btn {
    min-width: 0;
  }
}

@media (min-width: 641px) {
  .tgt-cookie-banner {
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    max-width: none;
    padding: 1rem clamp(1.25rem, 2.5vw, 2.25rem);
    border-radius: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
    border-right: 0;
    box-shadow: 0 -18px 48px rgba(15, 23, 42, 0.34);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .tgt-cookie-banner--compact {
    max-width: none;
  }

  .tgt-cookie-banner__text {
    flex: 1 1 auto;
    min-width: 0;
  }

  .tgt-cookie-banner__actions {
    flex: 0 0 auto;
    flex-wrap: nowrap;
  }

  .tgt-cookie-banner .btn {
    flex: 0 0 auto;
    min-width: 9.5rem;
  }
}

.landing-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.landing-grid--split {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.landing-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.landing-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
}

.landing-list--check li::before {
  content: "✓";
  color: var(--landing-teal);
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}

.landing-list--plain {
  margin: 0.5rem 0 0;
}

.landing-list--plain li {
  padding-left: 1.25rem;
}

.landing-list--plain li::before {
  content: "•";
  color: var(--landing-slate);
  left: 0;
  font-weight: 700;
}

.landing-section__intro {
  max-width: 560px;
  color: var(--landing-slate);
  margin-bottom: 2rem;
}

.landing-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.landing-step {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: var(--landing-card-shadow);
}

.landing-step__icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(54, 189, 133, 0.15);
  color: var(--landing-teal);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.landing-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.landing-card {
  --ttt-surface-radius-size: var(--ttt-radius-2xl);
  --ttt-surface-border-color: var(--ttt-border-subtle);
  --ttt-surface-shadow-style: var(--ttt-shadow-medium);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.landing-card__label {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--landing-slate);
}

.landing-card__note {
  font-size: 0.875rem;
  color: var(--landing-slate);
  margin-top: auto;
}

.landing-card__cta {
  margin-top: 0.75rem;
}

.landing-card__cta .btn {
  width: 100%;
  text-align: center;
}

.landing-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: var(--landing-soft-blue);
  color: var(--landing-navy);
}

.landing-card--comparison {
  min-height: 100%;
}

.landing-card--highlight {
  border: 1px solid rgba(54, 189, 133, 0.35);
  background: linear-gradient(180deg, #ffffff, #f8fffb);
}

.landing-comparison__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.landing-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.landing-testimonial {
  --ttt-surface-radius-size: var(--ttt-radius-xl);
  --ttt-surface-border-color: var(--ttt-border-subtle);
  --ttt-surface-shadow-style: var(--ttt-shadow-strong);
  padding: 1.5rem;
}

.landing-testimonial__quote {
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.7;
}

.landing-testimonial__meta {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--landing-slate);
  margin-top: 1rem;
}

.ttt-accordion {
  display: grid;
  gap: 1rem;
}

.ttt-accordion__item {
  --ttt-surface-radius-size: 18px;
  --ttt-surface-border-color: var(--ttt-border-regular);
  --ttt-surface-shadow-style: 0 12px 30px rgba(24, 36, 80, 0.06);
  padding: 0 1.25rem;
}

.ttt-accordion--landing {
  margin-top: 2rem;
}

.ttt-accordion--landing .ttt-accordion__item {
  --ttt-surface-radius-size: var(--ttt-radius-xl);
  --ttt-surface-shadow-style: var(--ttt-shadow-soft);
  padding: 0.5rem 1.25rem;
}

.ttt-accordion__item summary {
  cursor: pointer;
  list-style: none;
  --ttt-accordion-indicator-color: var(--landing-teal);
  font-weight: 600;
  padding: 0.9rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--landing-navy);
}

.ttt-accordion__item summary::-webkit-details-marker {
  display: none;
}

.ttt-accordion__item summary::after {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  flex: 0 0 auto;
  border-right: 2px solid var(--ttt-accordion-indicator-color, currentColor);
  border-bottom: 2px solid var(--ttt-accordion-indicator-color, currentColor);
  transform: translateY(-0.08rem) rotate(45deg);
  transition: transform 0.2s ease;
}

.ttt-accordion__item[open] summary::after {
  transform: translateY(0.08rem) rotate(-135deg);
}

.ttt-accordion__item p,
.ttt-accordion__item ul {
  margin: 0 0 1rem;
  color: var(--landing-slate);
}

.landing-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.landing-cta__btn {
  min-width: 180px;
  text-align: center;
}

.landing-hero__trust {
  font-size: 0.95rem;
  color: var(--landing-slate);
  margin-top: 1rem;
}

@media (max-width: 640px) {
  .landing-cta {
    flex-direction: column;
  }

  .landing-cta__btn {
    width: 100%;
  }
}

@media (max-width: 780px) {
  .landing-hero__grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: left;
  }
  .landing-hero__content,
  .landing-hero__visual {
    width: 100%;
  }
  .landing-hero__content {
    margin-right: 0;
    max-width: none;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .landing-hero__subhead {
    margin-bottom: 0.85rem;
  }
  .landing-hero__visual {
    order: 2;
    max-width: none;
    margin: 0.75rem 0 0;
    min-height: 300px;
    box-shadow: none;
  }
  .landing-hero__content {
    order: 1;
  }

  .landing-hero .landing-hero__image {
    max-height: none;
  }

  .landing-hero__visual::after {
    background: linear-gradient(180deg, rgba(24, 36, 80, 0.1), rgba(24, 36, 80, 0.08));
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.pricing-price {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.pricing-meta {
  margin-top: -0.25rem;
  color: var(--landing-slate);
  font-size: 0.95rem;
}

.page-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 640px;
}
.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  border-radius: var(--ttt-input-radius);
  border: 1px solid var(--ttt-input-border-color);
  padding: var(--ttt-input-padding);
  font-size: var(--ttt-input-font-size);
  font-family: inherit;
  background: var(--ttt-input-bg);
  box-shadow: var(--ttt-input-shadow);
}
.form-field.has-error input,
.form-field.has-error textarea {
  border-color: #f06a6a;
  box-shadow: inset 0 1px 2px rgba(240, 106, 106, 0.25);
}
.form-field__error {
  color: #c0392b;
  font-size: 0.88rem;
  margin-top: 0.35rem;
}
.form-field__hint,
.input-note {
  font-size: 0.85rem;
  color: #4a5768;
  margin-top: 0.35rem;
}
.form-field--hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.contact-form__error {
  --ttt-surface-radius-size: var(--ttt-radius-lg);
  --ttt-surface-border-color: rgba(255, 111, 97, 0.35);
  --ttt-surface-bg-color: #ffecec;
}

.marketing-signup {
  --marketing-signup-border: rgba(var(--ttt-home-blue-rgb), 0.14);
  --marketing-signup-bg: linear-gradient(135deg, #ffffff 0%, #f6f9ff 54%, #fff9ef 100%);
  border: 1px solid var(--marketing-signup-border);
  border-radius: 0.9rem;
  background: var(--marketing-signup-bg);
  box-shadow: 0 22px 60px rgba(12, 28, 84, 0.13);
}

.marketing-signup--panel {
  padding: clamp(1.4rem, 2.8vw, 2rem);
  display: grid;
  gap: 1rem;
}

.marketing-signup--public {
  --marketing-signup-bg: #ffffff;
  padding: clamp(1.1rem, 2.6vw, 1.45rem);
  display: grid;
  justify-items: center;
  gap: clamp(0.85rem, 1.8vw, 1.15rem);
  align-items: center;
  text-align: center;
}

.marketing-signup__content {
  display: grid;
  gap: 0.45rem;
  max-width: 34rem;
}

.marketing-signup__title {
  margin: 0;
  text-align: inherit;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  color: var(--ttt-home-ink);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.marketing-signup__copy,
.marketing-signup__note {
  margin: 0;
  color: #3d4667;
}

.marketing-signup__copy {
  font-size: 0.98rem;
  line-height: 1.45;
}

.marketing-signup__note {
  font-size: inherit;
  line-height: inherit;
  white-space: nowrap;
  margin-left: 0.35rem;
}

.marketing-signup__form {
  display: grid;
  grid-template-columns: minmax(12rem, 22rem) auto;
  gap: 0.75rem;
  align-items: end;
  justify-self: center;
  width: min(100%, 34rem);
}

.marketing-signup__fields {
  min-width: 0;
}

.marketing-signup__fields .form-field {
  margin: 0;
}

.marketing-signup__fields input[type="email"] {
  width: 100%;
  max-width: 22rem;
  margin-bottom: 0;
  border-color: rgba(var(--ttt-home-blue-rgb), 0.18);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.92);
}

.marketing-signup__submit {
  width: 100%;
  min-width: 10rem;
}

.marketing-signup__actions {
  align-self: end;
}

.ttt-public-marketing-signup {
  padding: clamp(2rem, 5vw, 3.25rem) 0;
  background: #ffffff;
  background-image: none;
}

.ttt-public-marketing-signup .ttt-home-wrap {
  width: min(100% - 2rem, 1110px);
}

.ttt-public-marketing-signup .marketing-signup,
.landing-marketing-signup .marketing-signup {
  max-width: 46rem;
  margin: 0 auto;
}

.ttt-public-marketing-signup .marketing-signup__content {
  justify-items: center;
  text-align: center;
}

.ttt-public-marketing-signup .marketing-signup__form {
  grid-template-columns: minmax(12rem, 22rem) auto;
  width: min(100%, 34rem);
}

.ttt-public-marketing-signup .marketing-signup__fields input[type="email"] {
  max-width: none;
}

.ttt-public-marketing-signup .marketing-signup__submit {
  width: auto;
  min-width: 10rem;
}

@media (max-width: 780px) {
  .marketing-signup__form,
  .marketing-signup__fields {
    grid-template-columns: 1fr;
    justify-self: stretch;
    width: 100%;
  }

  .marketing-signup__fields input[type="email"] {
    max-width: none;
  }

  .marketing-signup__note {
    white-space: normal;
    margin-left: 0;
  }

}

.site-footer {
  background: var(--color-footer-bg);
  color: var(--color-text);
  border-top: 1px solid var(--nav-border);
  margin-top: auto;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

.footer-wrapper {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 3rem clamp(1.25rem, 3vw, 2rem) 2rem;
}
.footer-bar {
  border: none;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
  grid-template-areas: "center explore legal";
  gap: 2rem;
  padding: 0;
  align-items: start;
}
.footer-left,
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer-center {
  position: static;
  transform: none;
  text-align: center;
  grid-area: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-center .footer-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-left {
  grid-area: explore;
  text-align: left;
}
.footer-right {
  grid-area: legal;
  text-align: left;
}
.footer-left .footer-links,
.footer-right .footer-links {
  align-items: flex-start;
}

@media (max-width: 960px) {
  .footer-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "center center"
      "center center"
      "explore legal";
  }
  .footer-left,
  .footer-right {
    text-align: center;
    align-items: center;
  }
  .footer-left .footer-links,
  .footer-right .footer-links {
    align-items: center;
  }
}

@media (max-width: 640px) {
  .footer-bar {
    grid-template-columns: 1fr;
    grid-template-areas:
      "center"
      "explore"
      "legal";
  }
}

.footer-logo img {
  width: min(100%, 170px);
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 640px) {
  .footer-logo img {
    width: min(100%, 150px);
  }
}
.footer-tagline {
  margin: 0.75rem auto 0;
  max-width: 32ch;
  font-size: 0.95rem;
  color: #182450;
  text-align: center;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.footer-links a {
  color: #182450;
  opacity: 1;
}
.footer-links a:hover,
.footer-links a:focus {
  opacity: 1;
}
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
  justify-content: center;
  align-self: center;
}
.footer-social a {
  font-size: 1.4rem;
  color: #182450;
}
.footer-heading {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: #182450;
}
.copyright {
  color: #182450;
  text-align: center;
  margin-top: 0.45rem;
  font-size: 0.88rem;
}

/* === Together Test Landing — Enhancements === */

/* Slightly larger, more premium typography */
.landing-page h1 {
  font-size: clamp(2.4rem, 3.4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.landing-page h2 {
  font-size: clamp(1.75rem, 2.6vw, 2.1rem);
  margin-bottom: 0.75rem;
}

.landing-page p {
  font-size: 1.02rem;
  line-height: 1.7;
}

/* Hero mockup that looks like a real product (laptop + booklet) */
.landing-hero__poster--mockup {
  padding-top: 70%;
  background:
    linear-gradient(145deg, #1f2a3d 0%, #3a4f7a 45%, #ffffff 100%);
}

.landing-hero__poster--mockup::before,
.landing-hero__poster--mockup::after {
  content: "";
  position: absolute;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  background: #ffffff;
}

/* “Laptop screen” */
.landing-hero__poster--mockup::before {
  inset: 14% 40% 18% 10%;
}

/* “Printed booklet” */
.landing-hero__poster--mockup::after {
  inset: 26% 10% 12% 52%;
  background: linear-gradient(
    135deg,
    rgba(24, 36, 80, 0.08),
    rgba(255, 111, 97, 0.18)
  );
}

/* Editions icons — simple but scannable */
.landing-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  background: rgba(24, 36, 80, 0.06);
}

/* Friends: overlapping circles vibe */
.landing-card__icon--friends {
  background: radial-gradient(circle at 30% 40%, #36bd85 0, #36bd85 40%, transparent 42%),
              radial-gradient(circle at 70% 60%, #ff6f61 0, #ff6f61 40%, transparent 42%),
              rgba(24, 36, 80, 0.04);
}

/* Family: simple house silhouette */
.landing-card__icon--family {
  background:
    linear-gradient(to top, #ffb67a 0, #ffb67a 50%, transparent 50%),
    linear-gradient(45deg, transparent 48%, #182450 50%, #182450 55%, transparent 57%);
}

/* Couples: interlocking shapes */
.landing-card__icon--couples {
  background:
    radial-gradient(circle at 35% 50%, rgba(255,111,97,0.9) 0, rgba(255,111,97,0.9) 45%, transparent 47%),
    radial-gradient(circle at 65% 50%, rgba(54,189,133,0.9) 0, rgba(54,189,133,0.9) 45%, transparent 47%);
}

/* Teams: stacked tiles */
.landing-card__icon--teams {
  background:
    linear-gradient(#182450 0 0) left 6px top 8px / 12px 12px,
    linear-gradient(#182450 0 0) center top 8px / 12px 12px,
    linear-gradient(#182450 0 0) right 6px top 8px / 12px 12px,
    linear-gradient(#36bd85 0 0) center bottom 6px / 22px 12px;
  background-repeat: no-repeat;
  background-color: rgba(24, 36, 80, 0.04);
}

/* Strangers: dotted group outline */
.landing-card__icon--strangers {
  background-image:
    radial-gradient(circle at 30% 40%, #182450 0, #182450 18%, transparent 19%),
    radial-gradient(circle at 70% 40%, #182450 0, #182450 18%, transparent 19%),
    radial-gradient(circle at 50% 70%, #182450 0, #182450 22%, transparent 23%);
  background-color: rgba(24, 36, 80, 0.02);
}

/* Intro text in comparison section slightly lighter and constrained */
.landing-comparison .landing-section__intro {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
}

/* Make hero CTA stack nicely on mobile (you already had most of this, but ensure it applies here) */
@media (max-width: 640px) {
  .landing-hero {
    min-height: auto;
    padding-top: 1.2rem;
    padding-bottom: 1.35rem;
  }

  .landing-hero__visual {
    min-height: 240px;
  }

  .landing-hero .landing-cta {
    margin-top: 0.8rem;
    gap: 0.65rem;
  }

  .landing-hero .landing-cta__btn {
    min-height: 44px;
    padding-top: 0.72rem;
    padding-bottom: 0.72rem;
    font-size: 0.98rem;
  }
}

@media (max-width: 480px) {
  .landing-wrapper {
    padding-left: clamp(1.15rem, 5vw, 1.35rem);
    padding-right: clamp(1.15rem, 5vw, 1.35rem);
  }

  .landing-hero {
    padding-top: 0.9rem;
    padding-bottom: 1rem;
  }

  .landing-hero__content {
    padding-top: 0.15rem;
  }

  .landing-hero .landing-eyebrow {
    margin-bottom: 0.45rem;
    letter-spacing: 0.14em;
  }

  .landing-page h1 {
    font-size: clamp(1.95rem, 8.8vw, 2.35rem);
    line-height: 1.08;
    margin-bottom: 0.7rem;
  }

  .landing-hero__subhead {
    font-size: 1rem;
    line-height: 1.45;
    margin-bottom: 0.7rem;
  }

  .landing-hero__visual {
    margin-top: 0.55rem;
    min-height: 205px;
  }
}
.pricing-summary {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: rgba(24, 36, 80, 0.85);
}

/* Analytics dashboard */
.analytics-page {
  background: #f6f8fb;
  color: #0f1d3b;
}

.analytics-hero {
  padding: 64px 0 40px;
  background: #101d3b;
  color: #fff;
  text-align: center;
}

.analytics-hero .container {
  max-width: 900px;
  margin: 0 auto;
}

.analytics-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.analytics-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.hero-copy {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.analytics-admin-section {
  padding: 32px 0;
}

.analytics-admin-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: none;
  border: 1px solid #e0e6f1;
  max-width: 960px;
  margin: 0 auto;
}

.analytics-admin-card h2 {
  margin: 0 0 0.5rem;
}

.analytics-admin-card form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  margin-top: 1rem;
}

.analytics-admin-card input[type="password"],
.analytics-admin-card input[type="text"],
.analytics-admin-card select {
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  border: 1px solid #d1d7e2;
  min-width: 240px;
}

.analytics-admin-card select[multiple] {
  min-width: 280px;
  min-height: 140px;
}

.analytics-exclude-table-wrap {
  min-width: 320px;
  max-height: 260px;
  overflow: auto;
  border: 1px solid #d1d7e2;
  border-radius: 10px;
  background: #fff;
  padding: 8px;
}

.analytics-exclude-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
}

.analytics-exclude-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.analytics-exclude-table th,
.analytics-exclude-table td {
  padding: 0.4rem 0.45rem;
  border-bottom: 1px solid #e5e9f2;
  text-align: left;
}

.analytics-admin-card .form-error {
  color: #b42318;
  font-size: 0.9rem;
  margin: 0;
}

.analytics-section {
  padding: 24px 0;
}

.analytics-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 24px;
}
.analytics-tab {
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #1f2937;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.analytics-tab[aria-selected="true"],
.analytics-tab.is-active {
  background: #0f766e;
  border-color: #0f766e;
  color: #ffffff;
}
.analytics-tab:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.3);
  outline-offset: 2px;
}

.analytics-accordion {
  background: #fff;
  border: 1px solid #e0e6f1;
  border-radius: 18px;
  overflow: hidden;
}

.analytics-accordion summary {
  list-style: none;
  cursor: pointer;
  --ttt-accordion-indicator-color: #5a6585;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  color: #0f1d3b;
  background: #fff;
}

.analytics-accordion summary::-webkit-details-marker {
  display: none;
}

.analytics-accordion summary::after {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  flex: 0 0 auto;
  border-right: 2px solid var(--ttt-accordion-indicator-color, currentColor);
  border-bottom: 2px solid var(--ttt-accordion-indicator-color, currentColor);
  transform: translateY(-0.08rem) rotate(45deg);
  transition: transform 0.2s ease;
}

.analytics-accordion[open] summary::after {
  transform: translateY(0.08rem) rotate(-135deg);
}

.accordion-title {
  font-size: 1.05rem;
}

.accordion-meta {
  font-size: 0.9rem;
  color: #5a6585;
  font-weight: 500;
}

.accordion-body {
  padding: 0 24px 24px;
  border-top: 1px solid #e5e9f2;
}

.analytics-card {
  --ttt-surface-bg-color: #fff;
  --ttt-surface-radius-size: 14px;
  --ttt-surface-border-color: #e5e9f2;
  --ttt-surface-shadow-style: none;
  padding: 24px;
  margin-bottom: 20px;
}

.analytics-card-header,
.analytics-subcard-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.analytics-card-header {
  gap: 1rem;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.analytics-filters,
.analytics-compare-controls,
.analytics-export {
  display: flex;
  flex-wrap: wrap;
}

.analytics-note,
.analytics-member-empty {
  font-size: 0.9rem;
  color: #5a6585;
}

.analytics-note,
.analytics-definitions {
  margin-bottom: 1rem;
}

.analytics-sort-hint,
.analytics-summary-card .summary-note,
.analytics-inline-meta,
.analytics-inline-stat {
  font-size: 0.85rem;
  color: #5a6585;
}

.analytics-filters select {
  border-radius: 10px;
  border: 1px solid #d1d7e2;
  padding: 0.4rem 0.6rem;
}

.analytics-filters,
.analytics-compare-controls,
.analytics-subcard-header,
.dashboard-page .participant-card-header {
  align-items: center;
  gap: 0.75rem;
}
.analytics-compare-controls {
  margin-top: 0.75rem;
}

.analytics-compare-controls .analytics-note {
  margin: 0;
}

.analytics-compare-cell {
  min-width: 160px;
  font-size: 0.88rem;
  line-height: 1.35;
  white-space: normal;
}

.insufficient-toggle,
.analytics-member-option {
  display: flex;
  align-items: center;
}

.insufficient-toggle {
  font-size: 0.9rem;
  gap: 0.4rem;
}

.analytics-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.analytics-summary-card,
.analytics-subcard,
.dashboard-page .group-settings-card,
.analytics-definitions {
  --ttt-secondary-card-bg: #f8f9fc;
  --ttt-secondary-card-radius: 14px;
  --ttt-secondary-card-pad-block: 1rem;
  --ttt-secondary-card-pad-inline: 1rem;
  background: var(--ttt-secondary-card-bg);
  border-radius: var(--ttt-secondary-card-radius);
  padding: var(--ttt-secondary-card-pad-block) var(--ttt-secondary-card-pad-inline);
}

.analytics-summary-card {
  --ttt-secondary-card-bg: #f7f9fc;
  --ttt-secondary-card-pad-block: 18px;
  --ttt-secondary-card-pad-inline: 18px;
  box-shadow: none;
  border: 1px solid #e2e7f1;
}

.analytics-summary-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  text-transform: none;
  color: #0f1d3b;
}

.analytics-summary-card .value {
  font-size: 0.98rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.analytics-summary-card .summary-note {
  margin: 0;
}

.analytics-summary-card .timing-paired-line {
  margin: 0 0 0.15rem;
}

.analytics-table-wrap,
.telemetry-table-wrap {
  overflow: auto;
  height: min(56vh, 460px);
  min-height: 180px;
  max-height: 88vh;
  border: 1px solid #e5e9f2;
  border-radius: 12px;
  background: #fff;
  resize: both;
}

.analytics-card table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.95rem;
}

.analytics-card th,
.analytics-card td {
  padding: 0.75rem;
  border-bottom: 1px solid #e5e9f2;
  text-align: left;
}

.analytics-card th {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 3;
  box-shadow: 0 2px 0 rgba(15, 29, 59, 0.08);
}

.analytics-card th:first-child {
  left: 0;
  z-index: 5;
}

.analytics-card td:first-child {
  position: sticky;
  left: 0;
  background: #fff;
  z-index: 2;
}

.analytics-card tbody tr:hover td:first-child {
  background: #f7f9fc;
}

.analytics-card th .col-group {
  display: block;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: #7c829b;
}

.analytics-card th .col-label {
  display: block;
  font-size: 0.95rem;
  color: #0f1d3b;
  font-weight: 600;
}

.analytics-card th.is-sortable {
  cursor: pointer;
  user-select: none;
}

.analytics-card th.is-sortable .col-label::after {
  content: " ↕";
  font-size: 0.85em;
  color: #7c829b;
}

.analytics-card th.is-sortable.sort-asc .col-label::after {
  content: " ↑";
  color: #0f1d3b;
}

.analytics-card th.is-sortable.sort-desc .col-label::after {
  content: " ↓";
  color: #0f1d3b;
}

.analytics-card tbody tr:hover {
  background: #f7f9fc;
}

.analytics-card tbody tr.empty td {
  text-align: center;
  color: #7c829b;
}
.analytics-card .row-note {
  font-size: 0.85rem;
  color: #a14400;
  margin-top: 0.25rem;
}
.analytics-card tbody tr.insufficient {
  opacity: 0.85;
}

.telemetry-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.telemetry-card {
  background: #101d3b;
  color: #fff;
  border-radius: 14px;
  padding: 18px;
}

.telemetry-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.telemetry-value {
  font-size: 1.8rem;
  margin: 0;
}

.telemetry-label {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.analytics-admin-card .admin-row {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.analytics-admin-card .admin-actions {
  display: flex;
  gap: 0.65rem;
  align-items: stretch;
  flex-direction: column;
  justify-content: flex-start;
}

.analytics-admin-card .admin-scope-left,
.analytics-admin-card .admin-scope-right {
  min-width: 0;
  width: 100%;
}

.analytics-admin-card .admin-scope-left {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.analytics-admin-card .admin-scope-right > label {
  display: block;
  margin-bottom: 0.45rem;
}

.analytics-admin-card .admin-actions label,
.analytics-admin-card .admin-actions select,
.analytics-admin-card .admin-actions button {
  width: 100%;
}

.analytics-exclude-table-wrap {
  overflow: visible;
  max-height: none;
}

.analytics-member-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 0.75rem;
}

.analytics-member-option {
  gap: 0.45rem;
  padding: 0.35rem 0.45rem;
  border: 1px solid #e2e7f1;
  border-radius: 8px;
  background: #fff;
}

.analytics-member-option input[type="checkbox"] {
  margin: 0;
}

.analytics-member-name {
  font-size: 0.9rem;
  color: #0f1d3b;
  line-height: 1.25;
}

@media (max-width: 980px) {
  .analytics-admin-card .admin-row {
    grid-template-columns: 1fr;
  }

  .analytics-admin-card .admin-scope-left {
    max-width: none;
  }

  .analytics-member-grid {
    grid-template-columns: 1fr;
  }
}

.analytics-export {
  gap: 0.5rem;
  justify-content: flex-end;
}

.analytics-note {
  margin: 0;
}

.analytics-definitions {
  --ttt-secondary-card-bg: #f7f9fc;
  --ttt-secondary-card-radius: 12px;
  --ttt-secondary-card-pad-block: 0.85rem;
  --ttt-secondary-card-pad-inline: 1rem;
  border: 1px solid #e2e7f1;
}

.analytics-definitions dl {
  display: grid;
  grid-template-columns: minmax(120px, 180px) 1fr;
  gap: 0.35rem 0.75rem;
  margin: 0;
}

.analytics-definitions dt {
  font-weight: 600;
  color: #0f1d3b;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.analytics-definitions dd {
  margin: 0;
  font-size: 0.9rem;
  color: #4d5673;
}

#measureTable td:nth-child(2),
#measureTable th:nth-child(2),
#measureTable td:nth-child(8),
#measureTable th:nth-child(8) {
  background: #f0f4fa;
}

#measureTable td:nth-child(4),
#measureTable th:nth-child(4),
#measureTable td:nth-child(5),
#measureTable th:nth-child(5),
#measureTable td:nth-child(6),
#measureTable th:nth-child(6),
#measureTable td:nth-child(7),
#measureTable th:nth-child(7) {
  background: #f8fbff;
}

#votingTable td:nth-child(3),
#votingTable th:nth-child(3),
#votingTable td:nth-child(11),
#votingTable th:nth-child(11) {
  background: #f0f4fa;
}

#votingTable td:nth-child(5),
#votingTable th:nth-child(5),
#votingTable td:nth-child(6),
#votingTable th:nth-child(6),
#votingTable td:nth-child(7),
#votingTable th:nth-child(7),
#votingTable td:nth-child(8),
#votingTable th:nth-child(8),
#votingTable td:nth-child(9),
#votingTable th:nth-child(9),
#votingTable td:nth-child(10),
#votingTable th:nth-child(10) {
  background: #f8fbff;
}

.analytics-multi-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.analytics-subcard {
  --ttt-secondary-card-radius: 12px;
}

.analytics-subcard h3 {
  margin-top: 0;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: #5a6585;
}

.analytics-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.analytics-list li {
  padding: 0.25rem 0;
  font-size: 0.95rem;
}

.analytics-inline-meta,
.analytics-inline-stat {
  display: block;
  margin-top: 0.15rem;
}

.analytics-note--tight {
  margin-bottom: 0.5rem;
}

.analytics-mini-heading {
  margin: 0.75rem 0 0.5rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: #5a6585;
}

.analytics-mini-heading--spaced {
  margin-top: 1rem;
}

.analytics-card--spaced {
  margin-top: 1rem;
}

/* Together Test step guide */
.ttt-step-guide {
  --step-accent: var(--btn-bg, #4d92e3);
  width: min(100%, 780px);
  margin: 1rem auto 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.85rem;
  align-items: stretch;
  justify-items: center;
}

.ttt-step-guide .step-card {
  --ttt-surface-radius-size: var(--ttt-radius-xl);
  --ttt-surface-border-color: var(--ttt-border-regular);
  --ttt-surface-shadow-style: 0 10px 25px rgba(15, 32, 68, 0.08);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
  align-self: stretch;
}

.ttt-step-guide .step-card.state-active {
  border-color: var(--step-accent);
  box-shadow: 0 18px 38px rgba(15, 32, 68, 0.14);
}

.ttt-step-guide .step-card__header {
  --ttt-accordion-indicator-color: rgba(24, 36, 80, 0.75);
  padding: 0.6rem 1.15rem;
  font-weight: 700;
  color: #1d253c;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  border: none;
  background: transparent;
  width: 100%;
  cursor: default;
  position: relative;
}

.ttt-step-guide .step-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e7eaf4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
  color: #8b93ab;
}

.ttt-step-guide .step-card__icon--complete,
.ttt-step-guide .step-card__icon--pending {
  background: #e7eaf4;
  color: #8b93ab;
}

.ttt-step-guide .step-card.state-active .step-card__icon {
  background: rgba(255, 111, 97, 0.16);
  background: color-mix(in srgb, var(--step-accent) 22%, white);
  color: var(--step-accent);
}

.ttt-step-guide .step-card__heading-text {
  line-height: 1.2;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  font-weight: 700;
}

.ttt-step-guide .step-card__heading-text::before {
  content: attr(data-step-prefix);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  opacity: 0.65;
  margin-bottom: 0.15rem;
}

.ttt-step-guide .step-card.state-active .step-card__heading-text {
  color: var(--step-accent);
}

.ttt-step-guide .step-card.state-active .step-card__header {
  --ttt-accordion-indicator-color: var(--step-accent);
}

.ttt-step-guide .step-card__chevron {
  width: 0.68rem;
  height: 0.68rem;
  display: none;
  margin-left: auto;
  margin-right: 0.05rem;
  flex: 0 0 auto;
  align-self: center;
  border-right: 2px solid var(--ttt-accordion-indicator-color, currentColor);
  border-bottom: 2px solid var(--ttt-accordion-indicator-color, currentColor);
  transform: translateY(-0.08rem) rotate(45deg);
  transition: transform 0.2s ease;
}

.ttt-step-guide .step-card[data-expanded="true"] .step-card__chevron {
  transform: translateY(0.08rem) rotate(-135deg);
}

.ttt-step-guide.step-guide--accordion .step-card__header {
  cursor: pointer;
}

.ttt-step-guide.step-guide--accordion .step-card__chevron {
  display: inline-flex;
}

.ttt-step-guide.step-guide--accordion .step-card__body {
  display: none;
  max-height: none;
  opacity: 1;
  transform: none;
  transition: none;
}

.ttt-step-guide.step-guide--accordion .step-card[data-expanded="true"] .step-card__body {
  display: flex;
}

.ttt-step-guide .step-card__body {
  padding: 0 1.15rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  text-align: left;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  transition:
    max-height 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.ttt-step-guide .step-card[data-expanded="true"] .step-card__body {
  max-height: 5000px;
  opacity: 1;
  transform: translateY(0);
}

.ttt-step-guide .step-card__body[data-disabled="true"] {
  opacity: 0.75;
}

.ttt-step-guide .step-card__description {
  margin: 0;
  color: #4a5768;
  font-size: 0.95rem;
  line-height: 1.5;
  white-space: pre-line;
}

.ttt-step-guide .step-card__status {
  margin: 0.4rem 0 0;
  font-weight: 600;
  color: var(--step-accent);
  text-align: left;
}

.ttt-step-guide .step-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ttt-step-guide .step-card__section {
  padding-top: 0.25rem;
}

.ttt-step-guide .step-card__section + .step-card__section {
  border-top: 1px solid rgba(24, 36, 80, 0.08);
  padding-top: 0.75rem;
}

.ttt-step-guide .step-card__section-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: rgba(24, 36, 80, 0.75);
}

.ttt-step-guide .step-card__helper {
  margin: 0 0 0.5rem;
  color: #4a5768;
  font-size: 0.95rem;
}

.ttt-step-guide .step-card__actions-row {
  gap: 0.5rem 0.75rem;
  align-items: center;
}

.ttt-step-guide .step-card__actions-row .import-answers-link {
  font-size: 0.9rem;
  text-decoration: underline;
  color: #4a5768;
  background: none;
  border: none;
  padding: 0;
}

.ttt-step-guide .step-card__actions-row .import-answers-link[disabled] {
  opacity: 0.45;
}

.ttt-step-guide .step-card__note {
  margin: 0;
  font-size: 0.9rem;
  color: #5a6480;
}

.ttt-step-guide .step-card__list {
  margin: 0 0 0.75rem 1.15rem;
  padding: 0;
  color: #5a6480;
  font-size: 0.9rem;
}

.ttt-step-guide .step-card__actions .share-field {
  margin-top: 0.35rem;
}

.ttt-step-guide .step-card__actions .btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}


.hero-warning {
  margin-top: 1rem;
  min-height: 1.25rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-warning.is-error {
  color: #ffb4b4;
}

@media (max-width: 900px) {
  .ttt-step-guide {
    grid-template-columns: 1fr;
  }

  .ttt-step-guide .step-card__header {
    cursor: pointer;
  }

  .ttt-step-guide .step-card__chevron {
    display: inline-flex;
  }

  .ttt-step-guide .step-card__body {
    display: none;
  }

  .ttt-step-guide .step-card[data-expanded="true"] .step-card__body {
    display: flex;
  }
}

@media (max-width: 700px) {
  .analytics-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .analytics-admin-card form {
    flex-direction: column;
    align-items: stretch;
  }

  .analytics-hero {
    padding: 48px 0 32px;
  }
}

/* Dashboard page styles (scoped) */
.dashboard-page .dashboard {
  --dashboard-card-width: 650px;
  max-width: 100%;
  margin: 0;
  align-self: stretch;
}

.dashboard-page .dashboard-hero {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}

.dashboard-page .dashboard-hero h2 {
  margin-bottom: 0;
}

.dashboard-page .dashboard-group-switch {
  width: 100%;
  max-width: var(--dashboard-card-width);
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.dashboard-page .dashboard-group-switch__label {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.35;
  color: #4a5768;
}

.dashboard-page .dashboard-group-switch__link {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1e2d4f;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.dashboard-page .dashboard-group-switch__link:hover,
.dashboard-page .dashboard-group-switch__link:focus-visible {
  color: #0f1a31;
}

.dashboard-page .group-section,
.dashboard-page .dashboard-steps,
.dashboard-page .steps-title {
  width: 100%;
  max-width: var(--dashboard-card-width);
  margin-left: auto;
  margin-right: auto;
}

.dashboard-page .group-section {
  margin-top: 1.5rem;
}

.dashboard-page .dashboard-steps {
  justify-items: stretch;
}

.dashboard-page .group-title-row,
.dashboard-page .group-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.dashboard-page .group-title-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.dashboard-page .group-footer {
  margin-top: 1.25rem;
}

.dashboard-page .group-name-input {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dashboard-page .group-name-input input[type="text"] {
  flex: 1;
}

.dashboard-page .group-name-input .field-char-count {
  font-size: 0.85rem;
  color: #4a5768;
}

.dashboard-page .reminder-modal-field {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.dashboard-page .reminder-modal-field.is-hidden {
  display: none;
}

.dashboard-page .group-section .member-list,
.dashboard-page .group-section #groupListReadOnly,
.dashboard-page .group-section .group-editor,
.dashboard-page .group-section .member-list-item {
  width: 100%;
  max-width: 100%;
}

.dashboard-page .group-section .member-list-item {
  background: #fff;
  box-shadow: 0 10px 25px rgba(15, 32, 68, 0.08);
}

.dashboard-page .dashboard-steps .step-card,
.dashboard-page .dashboard-steps .step-card__description,
.dashboard-page .dashboard-steps .step-card__status,
.dashboard-page .dashboard-steps .step-card__actions-row,
.dashboard-page .step-card__aligned,
.dashboard-page .step-card__panel,
.dashboard-page .step-card__callout {
  width: 100%;
  max-width: 100%;
}

.dashboard-page .dashboard-steps .step-card {
  margin-left: auto;
  margin-right: auto;
  justify-self: stretch;
  box-sizing: border-box;
}

.dashboard-page .dashboard-steps .step-card__actions-row,
.dashboard-page .step-card__aligned,
.dashboard-page .step-card__panel,
.dashboard-page .step-card__callout {
  margin-left: 0;
  margin-right: 0;
}

.dashboard-page .step-card__panel,
.dashboard-page .step-card__callout {
  box-sizing: border-box;
}

.dashboard-page .step-card__panel {
  background: #f7f9fe;
  border: 1px solid rgba(24, 36, 80, 0.08);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
}

.dashboard-page .step-card__panel--invite {
  padding: 1rem 1.05rem 1.05rem;
  border-color: rgba(24, 36, 80, 0.12);
  background: linear-gradient(180deg, #fbfcff 0%, #f6f8fd 100%);
}

.dashboard-page .step-card__panel--launch {
  padding: 1rem 1.05rem 0.8rem;
  border-color: rgba(24, 36, 80, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fe 100%);
}

.dashboard-page .step-card__panel--invite + .step-card__panel--launch {
  margin-top: 1.4rem;
}

.dashboard-page .step-card__panel--spaced {
  margin-top: 0.75rem;
}

.dashboard-page .step-card__note--lead {
  margin-bottom: 0.7rem;
  font-size: 0.98rem;
  line-height: 1.45;
}

.dashboard-page .step-card__actions-row {
  margin-top: 0.75rem;
}

.dashboard-page .step-card__test-nudge {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 0;
}

.dashboard-page .step-card__test-nudge .nudge-organizer {
  flex: 0 0 auto;
}

.dashboard-page .step-card__test-nudge .step-card__note {
  margin: 0;
  flex: 1 1 auto;
}

.dashboard-page .step-card__review-warning {
  margin-bottom: 0;
}

.dashboard-page .step-card__launch-header {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  justify-content: space-between;
}

.dashboard-page .step-card__launch-header .step-card__section-label {
  margin-bottom: 0;
}

.dashboard-page .step-card__launch-status {
  margin: 0;
  flex: 0 0 auto;
  color: #5a6480;
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 400;
  text-align: right;
  white-space: nowrap;
}

.dashboard-page .step-card__launch-status span {
  display: inline-block;
}

.dashboard-page .step-card__launch-actions {
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

.dashboard-page .step-card__launch-actions .main-action-btn {
  flex: 0 0 auto;
  margin: 0 auto;
}

.dashboard-page .step-card__test-actions {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-height: 0;
}

.dashboard-page .step-card__test-footer {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
}

.dashboard-page .step-card__test-footer .main-action-btn,
.dashboard-page .step-card__test-footer .import-answers-link {
  align-self: center;
}

.dashboard-page .dashboard-steps .step-card__actions-row .import-answers-link {
  margin-top: 0.15rem;
  text-align: center;
}

.dashboard-page .step-card__test-footer .import-answers-link {
  width: 100%;
}

.dashboard-page .step-card__review-actions {
  justify-content: center;
}

.dashboard-page .step-card__panel--launch .step-card__launch-actions {
  margin-top: 0.75rem;
  min-height: 0;
}

.dashboard-page .step-card__actions-row + .step-card__note,
.dashboard-page .step-card__actions-row + .step-card__callout,
.dashboard-page .step-card__note + .step-card__actions-row,
.dashboard-page .step-card__note + .step-card__note,
.dashboard-page .step-card__note + .step-card__callout {
  margin-top: 0.5rem;
}

.dashboard-page .step-card__section > .step-card__callout {
  margin-top: 0.5rem;
}

@media (max-width: 700px) {
  .dashboard-page .step-card__launch-header {
    flex-direction: column;
    align-items: stretch;
  }

  .dashboard-page .step-card__launch-status {
    text-align: left;
  }

  .dashboard-page .step-card__launch-actions {
    align-items: stretch;
    justify-content: center;
  }

  .dashboard-page .step-card__test-footer {
    width: 100%;
  }
}

.dashboard-page .step-card__callout {
  background: #fff7e8;
  border: 1px solid rgba(255, 182, 122, 0.6);
  border-radius: 12px;
  padding: 0.65rem 0.85rem;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  color: #5a3d1b;
}

.dashboard-page .dashboard-steps .step-card__actions-row {
  justify-content: flex-start;
}

.dashboard-page .dashboard-steps .step-card__review-actions {
  justify-content: center;
}

.dashboard-page .modal-actions {
  justify-content: center;
}

.dashboard-page #editModal .modal-actions {
  flex-wrap: wrap;
}

.dashboard-page #editModal .edit-modal-field {
  display: block;
  width: 100%;
}

.dashboard-page #editModal .edit-modal-field[hidden] {
  display: none !important;
}

.dashboard-page #editModal .edit-modal-field--color {
  margin-bottom: 0.35rem;
}

.dashboard-page #editModal .edit-modal-field--marketing {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  padding-top: 0.35rem;
}

.dashboard-page #editModal .edit-modal-field--marketing input[type="checkbox"] {
  width: auto;
  margin-right: 0.55rem;
  margin-bottom: 0;
  vertical-align: middle;
}

.dashboard-page #editModal .edit-modal-actions .btn {
  flex: 1 1 0;
  min-width: 0;
}

.dashboard-page #editModal .edit-modal-remove-row .btn {
  min-height: 48px;
  border-radius: 16px;
  padding: 0.75rem 1.35rem;
  font-weight: 600;
}

.dashboard-page #editModal .edit-modal-remove-row {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.dashboard-page #editModal .edit-modal-remove-row[hidden] {
  display: none !important;
}

.dashboard-page #editModal #removeInModal {
  flex: 0 0 auto;
  width: auto;
  min-width: fit-content;
  white-space: nowrap;
}

.dashboard-page #editModal input[type="color"] {
  -webkit-appearance: none;
  appearance: none;
  width: 72px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #cfd6e6;
  padding: 0;
  background: #fff;
  cursor: pointer;
}

.dashboard-page #editModal input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 0;
}

.dashboard-page #editModal input[type="color"]::-webkit-color-swatch,
.dashboard-page #editModal input[type="color"]::-moz-color-swatch {
  border: none;
  border-radius: 8px;
}

.dashboard-page .self-section {
  margin-bottom: 1.5rem;
  padding-top: 0.5rem;
  scroll-margin-top: 120px;
}

.dashboard-page .self-section .member-list,
.dashboard-page .member-editor-list,
.dashboard-page .launch-participants {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dashboard-page .share-field {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.75rem;
  width: 100%;
  margin-top: 1rem;
}

.dashboard-page .share-field--invite {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 10rem;
  align-items: stretch;
}

.dashboard-page .share-field textarea {
  flex: 1 1 58%;
  width: 100%;
  max-width: none;
  min-height: 6.5rem;
  padding: 0.7rem 0.8rem;
  border-radius: 8px;
  border: 1px solid #cfd6e6;
  background: #f9fbff;
  resize: none;
  font-size: 0.95rem;
  line-height: 1.45;
  overflow: hidden;
  white-space: pre-wrap;
}

.dashboard-page .share-field--invite textarea {
  min-height: 8rem;
  font-size: 0.92rem;
  line-height: 1.5;
  padding: 0.85rem 0.95rem;
}

.dashboard-page .share-field__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  width: min(100%, 11rem);
  gap: 0.5rem;
}

.dashboard-page .share-field__actions--invite {
  justify-content: center;
  align-self: stretch;
}

.dashboard-page .share-field__actions .btn {
  width: 100%;
  white-space: nowrap;
  min-height: 2.75rem;
  padding-left: 0.9rem;
  padding-right: 0.9rem;
}

@media (max-width: 700px) {
  .dashboard-page .share-field {
    flex-direction: column;
    align-items: stretch;
  }

  .dashboard-page .share-field__actions {
    width: 100%;
    flex-direction: row;
  }

  .dashboard-page .share-field--invite {
    grid-template-columns: 1fr;
  }

  .dashboard-page .share-field__actions .btn {
    flex: 1 1 auto;
  }
}

.dashboard-page .launch-list-note {
  margin: 0.75rem 0 0;
  color: #5a6480;
  font-size: 0.9rem;
}

.dashboard-page .dashboard .member-list-item {
  min-height: 50px;
}

.dashboard-page .dashboard .member-list-item[draggable="true"] {
  cursor: grab;
}

.dashboard-page .member-self-dummy {
  background: var(--color-card-bg);
  cursor: pointer;
}

.dashboard-page .dummy-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0.75rem;
}

.dashboard-page .member-self-dummy:focus {
  outline: 2px solid #4f46e5;
  outline-offset: 2px;
}

.dashboard-page .self-inline,
.dashboard-page .self-jump-inline {
  font-size: 0.9rem;
  color: #4a5768;
  font-weight: 600;
}

.dashboard-page .self-inline {
  margin-left: 0.35rem;
}

.dashboard-page .self-jump-inline {
  margin-left: auto;
  text-align: right;
  cursor: pointer;
}

.dashboard-page .group-editor {
  margin-top: 1.25rem;
  border: 1px solid #e1e8f0;
  border-radius: 12px;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 10px 25px rgba(24, 36, 80, 0.08);
}

.dashboard-page .member-editor-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dashboard-page .participant-card {
  border: 1px solid var(--participant-border, #dfe7f5);
  border-radius: 10px;
  padding: 1rem;
  background: var(--participant-tint, #f9fbff);
  max-height: var(--participant-card-max-height, none);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    max-height 0.3s ease,
    padding-top 0.3s ease,
    padding-bottom 0.3s ease,
    opacity 0.3s ease;
  overflow: hidden;
}

.dashboard-page .participant-card.self-card {
  border-color: var(--participant-border, #cdd6f5);
  background: var(--participant-tint, #f4f7ff);
}

.dashboard-page .group-name-card {
  margin-bottom: 1rem;
}

.dashboard-page .participant-card.dragging {
  opacity: 0.85;
  box-shadow: 0 12px 24px rgba(24, 36, 80, 0.15);
}

.dashboard-page .participant-card.removing {
  opacity: 0;
  --participant-card-max-height: 0px;
  padding-top: 0;
  padding-bottom: 0;
}

.dashboard-page .participant-card-header {
  display: flex;
  margin-bottom: 0.75rem;
}

.dashboard-page .participant-card-body {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.dashboard-page .participant-field {
  flex: 1 1 calc(50% - 1rem);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.dashboard-page .group-name-card .participant-field {
  flex: 1 1 100%;
  min-width: 100%;
}

@media (max-width: 700px) {
  .dashboard-page .participant-card-body {
    flex-direction: column;
  }

  .dashboard-page .participant-card-body .participant-field {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

.dashboard-page .participant-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
}

.dashboard-page .participant-field .req {
  color: #b42318;
  font-size: 0.8rem;
}

.dashboard-page .participant-card input {
  border: 1px solid #cfd6e6;
  border-radius: 6px;
  padding: 0.5rem;
  font-size: 0.95rem;
}

.dashboard-page .input-error-text {
  font-size: 0.85rem;
  color: #b42318;
  margin-top: 0.25rem;
  display: none;
}

.dashboard-page .input-error-text.active,
.dashboard-page .launch-success-banner.is-visible {
  display: block;
}

.dashboard-page .participant-card input.input-error {
  border-color: #c53d28;
  color: #c53d28;
}

.dashboard-page .participant-card .self-note {
  font-size: 0.85rem;
  color: #4a5768;
  font-weight: 600;
}

.dashboard-page .add-participant {
  margin-top: 1rem;
}

.dashboard-page .edit-mode-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.dashboard-page .decline-link {
  background: none;
  border: none;
  color: #b42318;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 0.35rem 0.5rem;
}

.dashboard-page .info-banner {
  background: #eef5ff;
  border: 1px solid #a3c4ff;
  color: #1a3e72;
  width: 100%;
  max-width: var(--dashboard-card-width);
  box-sizing: border-box;
  margin: 0 auto 1.25rem;
  text-align: center;
}

.dashboard-page .import-modal-description {
  margin-bottom: 0.85rem;
  color: #4a4f63;
  line-height: 1.4;
}

.dashboard-page .share-results-status {
  min-height: 1.35rem;
  margin: 0.85rem 0 0;
  color: #4a4f63;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

.dashboard-page .share-results-status.is-working {
  color: #1a3e72;
}

.dashboard-page .share-results-status.is-success {
  color: #21643a;
}

.dashboard-page .share-results-status.is-error {
  color: #8a1f1f;
}

.dashboard-page .import-token-input {
  width: 100%;
  border: 1px solid #c8cfd6;
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
  font-size: 1rem;
  margin-top: 0.25rem;
}

.dashboard-page .import-token-input:focus {
  outline: 2px solid var(--btn-bg);
  border-color: var(--btn-bg);
}

.dashboard-page .import-source-loading {
  margin-bottom: 0.65rem;
}

.dashboard-page .import-source-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-height: 280px;
  overflow-y: auto;
  margin-bottom: 0.75rem;
}

.dashboard-page .import-source-option {
  display: flex;
  gap: 0.65rem;
  border: 1px solid #d5dce6;
  border-radius: 10px;
  background: #f8fafc;
  padding: 0.65rem 0.7rem;
  cursor: pointer;
}

.dashboard-page .import-source-option:hover {
  border-color: #a5b7d1;
  background: #f1f6ff;
}

.dashboard-page .import-source-option.is-disabled {
  background: #f7f7f8;
  border-color: #dfe3ea;
  cursor: not-allowed;
  opacity: 0.9;
}

.dashboard-page .import-source-option.is-disabled:hover {
  border-color: #dfe3ea;
  background: #f7f7f8;
}

.dashboard-page .import-source-radio {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.dashboard-page .import-source-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.dashboard-page .import-source-heading {
  font-weight: 700;
  color: #1f2a3d;
}

.dashboard-page .import-source-meta {
  font-size: 0.86rem;
  color: #4f5d73;
}

.dashboard-page .import-source-measures {
  margin: 0;
  padding-left: 1rem;
  color: #435067;
  font-size: 0.85rem;
}

.dashboard-page .import-source-reason {
  font-size: 0.84rem;
  color: #8b2f2f;
  line-height: 1.35;
}

.dashboard-page .import-source-empty {
  margin-top: 0.3rem;
}

.dashboard-page .import-answers-note {
  margin-top: 0.45rem;
}

.dashboard-page .group-settings-section {
  margin-top: 0.9rem;
}

.dashboard-page .group-settings-card {
  border: 1px solid #d4dde8;
  --ttt-secondary-card-bg: #f8fbff;
  --ttt-secondary-card-pad-block: 0.95rem;
  margin-top: 0.5rem;
}

.dashboard-page .group-settings-card h4 {
  margin: 0 0 0.35rem;
  color: #20293a;
}

.dashboard-page .group-settings-card p {
  margin: 0;
}

.dashboard-page .group-settings-intro {
  font-size: 0.92rem;
  color: #465369;
  margin-bottom: 0.65rem !important;
}

.dashboard-page .settings-toggle-row {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
  color: #233147;
  font-size: 0.92rem;
}

.dashboard-page .settings-toggle-row input[type="checkbox"] {
  margin-top: 0.2rem;
}

.dashboard-page .settings-interval-row {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0.1rem 0 0.65rem;
  color: #233147;
  font-size: 0.92rem;
}

.dashboard-page .settings-interval-row label {
  line-height: 1.35;
}

.dashboard-page .settings-interval-row select {
  width: 100%;
  max-width: 22rem;
  min-height: 2.65rem;
  border-radius: 10px;
  border: 1px solid #c8d2df;
  background: #fff;
  color: #233147;
  padding: 0.45rem 0.7rem;
}

.dashboard-page .group-settings-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
  justify-content: center;
}

.dashboard-page .group-settings-actions .settings-status {
  margin: 0;
  min-height: 1rem;
}

.dashboard-page .group-settings-actions .settings-status.is-success {
  color: #157347;
}

.dashboard-page .group-settings-card--modal {
  margin-top: 0.75rem;
}

.dashboard-page .group-settings-card-danger {
  background: #fff6f6;
  border-color: #f3c6c6;
}

.dashboard-page .edit-mode-danger {
  margin-top: 0.75rem;
  display: flex;
  justify-content: flex-end;
}

.dashboard-page .delete-group-button {
  color: #b42318;
  border-color: #f1c0bd;
}

.dashboard-page #deleteGroupConfirmInput {
  width: 100%;
}

.dashboard-page .launch-success-banner {
  display: none;
}

.dashboard-page .logged-link-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: fit-content;
  max-width: min(100%, var(--dashboard-card-width));
  margin-left: auto;
  margin-right: auto;
}

.dashboard-page .declined-banner {
  background: #fff4ed;
  border: 1px solid #f3c4a3;
  color: #8a4f1d;
  --ttt-message-pad-block: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.dashboard-page .member-declined {
  opacity: 0.75;
  border-style: dashed !important;
}

.dashboard-page .btn-dismiss-declined {
  margin-left: 0.5rem;
}

.dashboard-page .conflict-error {
  color: #b42318;
  font-weight: 600;
}

@media (max-width: 520px) {
  .dashboard-page #editModal .modal-box {
    width: min(94vw, 360px);
  }

  .dashboard-page #editModal .edit-modal-actions .btn {
    flex-basis: 100%;
    width: 100%;
  }

  .dashboard-page #editModal .edit-modal-remove-row {
    justify-content: stretch;
  }

  .dashboard-page #editModal #removeInModal {
    min-width: 0;
    width: 100%;
    white-space: normal;
  }
}

.dashboard-page .launch-list-wrapper {
  max-height: 260px;
  overflow-y: auto;
  border: 1px solid #e7ecf2;
  border-radius: 8px;
  padding: 0 0.5rem;
  margin-bottom: 1rem;
  background: #fff;
}

.dashboard-page .launch-participant-count {
  font-weight: 400;
  margin: 0.75rem 0 0.5rem;
}

.dashboard-page .launch-participants li {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  border-bottom: 1px solid #e7ecf2;
  font-weight: 600;
}

.dashboard-page .launch-participants li.ready {
  color: #1d7a3c;
}

.dashboard-page .launch-participants li.pending {
  color: #b42318;
}

.dashboard-page .launch-warning {
  background: #fff7ed;
  border-left: 4px solid #f59e0b;
  padding: 0.5rem 0.75rem;
  margin: 0.35rem 0;
  color: #92400e;
  font-size: 0.95rem;
}

.dashboard-page .launch-warning.pending-warning {
  border-left-color: #f97316;
}

/* Join group page styles (scoped) */
.join-page .join-shell {
  --join-content-max: 520px;
  background: #fff;
}

.join-page .join-group-wrapper {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.join-page .join-shell .join-intro,
.join-page .join-intro__link,
.join-page .join-shell h1,
.join-page .join-card,
.join-page .join-form-section__header,
.join-page .join-form,
.join-page .join-form .form-field,
.join-page .join-form .form-field__input-wrap,
.join-page .join-form .form-checks,
.join-page .join-form-section {
  width: 100%;
  max-width: var(--join-content-max);
  margin-left: auto;
  margin-right: auto;
}

.join-page .join-shell .join-intro,
.join-page .join-form-section__header {
  margin-bottom: 1.25rem;
}

.join-page .join-shell .join-intro {
  font-size: 1.05rem;
}

.join-page .join-intro__link,
.join-page .join-about__link {
  display: inline-flex;
  font-weight: 600;
}

.join-page .join-intro__link,
.join-page .join-about__link,
.join-page .join-form .checkbox span a,
.join-page .join-sample-result-link {
  text-decoration: underline;
}
.join-page .join-intro__link {
  margin: 0.35rem auto 1.5rem;
}

.join-page .join-shell h1 {
  margin-top: 0;
  text-align: center;
}

.join-page .join-card {
  margin-top: 2.25rem;
}

.join-page .join-shell.page-section-card,
.join-page .join-about {
  padding: var(--page-card-pad-block) var(--page-card-pad-inline);
}

.join-page .join-about {
  border-radius: 18px;
  background: #f4f7fd;
  border: 1px solid rgba(24, 36, 80, 0.08);
  scroll-margin-top: 140px;
}

.join-page .join-about .step-card {
  background: #fff;
}

.join-page .join-about .step-card__list {
  list-style: disc;
  padding-left: 1.1rem;
}

.join-page .join-about__title,
.join-page .join-form-section__title {
  color: var(--landing-navy);
}

.join-page .join-about__title {
  margin: 0 0 0.6rem;
  font-weight: 600;
}

.join-page .join-about__copy {
  margin-bottom: 0.5rem;
}

.join-page .join-about__link {
  margin: 0.35rem 0 0.9rem;
}

.join-page .join-organizer-note {
  margin: 0.4rem 0 0;
  text-align: center;
  width: 100%;
}

.join-page .join-form-section__title {
  font-size: 1.35rem;
  margin: 0;
}

.join-page .join-form-section__header {
  margin-bottom: 0.35rem;
}

.join-page .join-form,
.join-page .join-form-section,
.join-page .join-form .form-field {
  display: flex;
  flex-direction: column;
}

.join-page .join-form,
.join-page .join-form-section {
  align-items: center;
}

.join-page .join-form {
  gap: 1rem;
}

.join-page .join-form .form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.join-page .join-form .form-field--color {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem 1rem;
}

.join-page .join-form .form-field--char-count input[type="text"] {
  padding-right: 3.4rem;
}

.join-page .join-form .form-field__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.join-page .join-form .field-char-count {
  position: absolute;
  right: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  color: #7a8299;
  pointer-events: none;
  font-weight: 600;
}

.join-page .join-form input[type="text"],
.join-page .join-form input[type="email"],
.join-page .join-form input[type="color"] {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #cfd9e3;
  padding: 0.65rem 0.85rem;
  font-size: 1rem;
}

.join-page .join-form input[type="color"] {
  height: 48px;
  padding: 0.2rem;
  max-width: 160px;
  margin-top: 0.35rem;
  justify-self: center;
  cursor: pointer;
}

.join-page .join-form .form-field--conflict input[type="text"] {
  border-color: #d9534f;
  box-shadow: 0 0 0 1px rgba(217, 83, 79, 0.2);
}

.join-page .join-form .form-field__conflict {
  color: #d9534f;
  font-weight: 600;
  margin-top: 0.35rem;
}

.join-page .join-errors,
.join-page .join-error-summary,
.join-page .join-form .form-field__error,
.join-page .join-form .form-field__conflict {
  border: 1px solid #f0b5b5;
  background: #fff4f4;
}

.join-page .join-errors,
.join-page .join-error-summary {
  border-radius: 12px;
}

.join-page .join-errors {
  padding: 0.75rem 1rem;
  margin-top: 1rem;
}

.join-page .join-error-summary {
  color: #7d1f1f;
  padding: 0.8rem 1rem;
  margin: 0 0 1rem;
  font-weight: 600;
  text-align: center;
}

.join-page .join-errors ul {
  margin: 0;
  padding-left: 1.25rem;
}

.join-page .join-success {
  --ttt-feedback-pad-inline: 1rem;
  --ttt-feedback-margin-bottom: 0;
  background: #e6ffed;
  border: 1px solid #9fe5b0;
  border-radius: 12px;
  font-weight: 600;
}

.join-page .join-shell .form-field__hint {
  font-size: 0.9rem;
  color: #5b627b;
  margin: 0 0 0.35rem;
}

.join-page .join-form .form-field__hint {
  font-size: 0.82rem;
  margin: 0.2rem 0 0.45rem;
}

.join-page .join-conflict-banner,
.join-page .join-trial-banner {
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
}

.join-page .join-conflict-banner {
  background: #fff3cd;
  border: 1px solid #f0c36d;
  color: #7a4c00;
}

.join-page .join-trial-banner {
  background: #e9f5ff;
  border: 1px solid #b9d8f2;
  color: #244566;
}

.join-page .join-form .form-field--checkbox .checkbox {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-weight: 500;
  line-height: 1.45;
  width: 100%;
  min-width: 0;
}

.join-page .join-form .form-field--checkbox input[type="checkbox"] {
  margin: 0.2rem 0 0;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.join-page .join-form .form-field--checkbox .checkbox span {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
}

.join-page .join-form .form-checks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.join-page .join-form .form-checks .form-field--checkbox {
  margin: 0;
}

.join-page .join-form .form-checks .form-field__error {
  margin-left: 0;
}

.join-page .join-error-summary,
.join-page .join-form .form-field__error,
.join-page .join-form .form-field__conflict {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-self: center;
}
.join-page .join-form .form-field__error,
.join-page .join-form .form-field__conflict {
  border-radius: 10px;
  padding: 0.5rem 0.65rem;
}
.join-page .join-form .form-field__error {
  color: #7d1f1f;
  font-size: 0.85rem;
}

.join-page .join-form .form-field__error.is-hidden,
.join-page .join-form .form-field__conflict.is-hidden {
  display: none;
}

.join-page .join-browser-recovery-form.is-hidden {
  display: none;
}

.join-page .join-pending-list {
  display: grid;
  gap: 0.45rem;
  margin: 0.75rem 0 1rem;
  padding: 0;
  list-style: none;
}

.join-page .join-pending-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  justify-content: space-between;
  border: 1px solid #d9e3ef;
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  background: #fbfdff;
}

.join-page .join-pending-list span {
  color: #5f6f86;
}

.join-page .join-pending-recovery__fallback--secondary {
  margin-top: 1.25rem;
  border-top: 1px solid #d9e3ef;
  padding-top: 1.25rem;
}

.join-page .join-required-legend {
  width: 100%;
  text-align: left;
  margin: 0.15rem 0 0.1rem;
}


.join-page .join-steps,
.join-page .join-steps .step-card,
.join-page .join-steps .step-card__body,
.join-page .join-steps .step-card__description {
  width: 100%;
}

.join-page .join-form-section {
  margin-top: 2rem;
}

.join-page .join-form .btn.btn-primary {
  width: 100%;
  max-width: 280px;
  align-self: center;
}

@media (min-width: 720px) {
  .join-page .join-form .form-field--color {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .join-page .join-form .form-field--color label,
  .join-page .join-form .form-field--color .form-field__hint,
  .join-page .join-form .form-field--color .form-field__error {
    grid-column: 1;
  }

  .join-page .join-form .form-field--color input[type="color"] {
    grid-column: 2;
    grid-row: 1 / span 2;
    justify-self: end;
    margin-top: 0;
    width: 140px;
    min-width: 120px;
  }
}
/* Legacy redirect and unsubscribe page styles (centralized) */
.edit-group-redirect {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.unsubscribe-wrapper {
  max-width: 640px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.redirect-card,
.unsubscribe-card {
  max-width: 600px;
  text-align: center;
  --ttt-surface-bg-color: #fff;
  --ttt-surface-border-color: #e1e8f0;
  --ttt-surface-radius-size: 12px;
  --ttt-surface-shadow-style: 0 15px 30px rgba(24, 36, 80, 0.12);
  padding: 2rem;
}

.redirect-card h1,
.unsubscribe-card h1 {
  margin-bottom: 0.75rem;
}

.redirect-card p,
.unsubscribe-card p {
  font-size: 1.05rem;
  color: #4a5768;
  margin-bottom: 1.5rem;
}

/* --- public-homepage-design-system.css (consolidated) --- */
/* Public homepage and marketing design system. */

@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/npm/@fontsource/caveat@5.2.6/files/caveat-latin-400-normal.woff2") format("woff2");
}

:root {
  --ttt-home-ink: #06145f;
  --ttt-home-blue: var(--btn-bg, #4d92e3);
  --ttt-home-blue-rgb: 77, 146, 227;
  --ttt-home-heading-blue: #347fd6;
  --ttt-home-coral: var(--landing-coral, #ff6f61);
  --ttt-home-group-green: #55ad44;
  --ttt-home-group-green-rgb: 101, 178, 77;
  --ttt-home-soft-blue: #f2f7fd;
  --ttt-home-panel: #f3f8fe;
  --ttt-home-line: #d8e7f8;
  --ttt-home-muted: #34436d;
  --ttt-home-shadow: 0 20px 52px rgba(12, 32, 105, 0.11);
  --ttt-home-scribble: url("data:image/svg+xml,%3Csvg viewBox='0 0 520 520' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M42 265C112 178 222 65 278 118c58 56-89 149-162 244c-35 46-12 86 42 45c84-64 164-250 277-184c72 42-14 162-112 229' fill='none' stroke='%234d92e3' stroke-width='16' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --ttt-home-icon-eye: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 12s3.5-6 10-6 10 6 10 6-3.5 6-10 6-10-6-10-6Z' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='12' r='2.7' fill='none' stroke='black' stroke-width='2.2'/%3E%3C/svg%3E");
  --ttt-home-icon-loop: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17 2l4 4-4 4M21 6H9a6 6 0 0 0-5.8 4.5M7 22l-4-4 4-4M3 18h12a6 6 0 0 0 5.8-4.5' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --ttt-home-icon-spark: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 2l-1.7 6.3L5 10l6.3 1.7L13 18l1.7-6.3L21 10l-6.3-1.7L13 2ZM6 16l-.8 2.8L2.5 19.5l2.7.7L6 23l.8-2.8 2.7-.7-2.7-.7L6 16Z' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --ttt-home-icon-users: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='7' r='3' fill='none' stroke='black' stroke-width='2.2'/%3E%3Cpath d='M3.5 20c.8-3.8 3-5.7 5.5-5.7s4.7 1.9 5.5 5.7M16 5.2a2.7 2.7 0 0 1 0 5.1M17.5 14.7c1.7.7 2.9 2.4 3.5 5.3' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --ttt-home-icon-chat: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 11.5a7.8 7.8 0 0 1-8.2 7.7 9 9 0 0 1-3.4-.7L3 21l2.2-5.2A7.4 7.4 0 0 1 4 11.5 7.8 7.8 0 0 1 12.5 4 7.8 7.8 0 0 1 21 11.5Z' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --ttt-home-icon-check: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='9' fill='none' stroke='black' stroke-width='2.2'/%3E%3Cpath d='M8 12.4l2.5 2.5L16.5 9' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --ttt-home-icon-question: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.5 8.2c.4-2.3 2.1-3.7 4.3-3.5 2 .2 3.5 1.6 3.3 3.7-.2 2.5-3.5 3-4 5.7' fill='none' stroke='black' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 19h.01' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round'/%3E%3C/svg%3E");
  --ttt-home-icon-flag: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 21V4.5M5 5c3-1.8 5.5 1.4 8.5-.2 1.5-.8 3-.8 5.5.3v9.5c-2.5-1.1-4-1.1-5.5-.3-3 1.6-5.5-1.6-8.5.2' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

#main-content.ttt-home {
  background: #ffffff;
}

html,
body {
  background-color: #ffffff;
}

html {
  scroll-padding-top: 5.6rem;
}

.ttt-home {
  overflow: hidden;
  color: var(--ttt-home-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.ttt-home-wrap {
  width: min(100% - 2rem, 1110px);
  margin-inline: auto;
}

.ttt-home section[id] {
  scroll-margin-top: 5.6rem;
}

.ttt-home h1,
.ttt-home h2,
.ttt-home h3,
.ttt-home p {
  margin-top: 0;
}

.ttt-home h1,
.ttt-home h2 {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  color: var(--ttt-home-ink);
  letter-spacing: 0;
}

.ttt-home em {
  color: var(--ttt-home-heading-blue);
  font-style: italic;
  font-weight: 500;
}

.ttt-home-icon {
  display: block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
}

.ttt-home-eyebrow,
.ttt-home-kicker {
  margin-bottom: 0.75rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ttt-home-eyebrow {
  color: #64708a;
}

.ttt-home-kicker {
  color: var(--ttt-home-blue);
}

.ttt-home-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.ttt-home-cta-stack {
  display: inline-grid;
  justify-items: center;
}

.ttt-home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0 1.35rem;
  border: 1px solid var(--ttt-home-blue);
  border-radius: 12px !important;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.12s ease,
    box-shadow 0.12s ease;
}

.ttt-home-btn:focus-visible {
  outline: none;
}

.ttt-home-btn--primary {
  background: var(--ttt-home-blue);
  color: #ffffff;
}

.ttt-home-btn--primary:hover {
  background: var(--btn-bg-hover, #3c7cc2);
  border-color: var(--btn-bg-hover, #3c7cc2);
  color: #ffffff;
  transform: translateY(-1px);
}

.ttt-home-btn--secondary {
  background: transparent;
  color: var(--ttt-home-blue);
}

.ttt-home-btn--secondary:hover {
  background: rgba(var(--ttt-home-blue-rgb), 0.08);
  color: var(--ttt-home-blue);
  transform: translateY(-1px);
}

.ttt-home-note {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  margin: 1.35rem 0 0;
  color: #17245c;
  font-size: 0.82rem;
  line-height: 1.3;
}

.ttt-home-actions + .ttt-home-note {
  margin-top: 0.58rem;
}

.ttt-home-note .ttt-home-icon {
  color: var(--ttt-home-blue);
  font-size: 1rem;
}

.ttt-home-hero {
  padding: 2.2rem 0 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.ttt-home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(27rem, 1.14fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  padding-left: clamp(0.35rem, 1.35vw, 1rem);
}

.ttt-home-hero__copy h1 {
  max-width: 31rem;
  margin-bottom: 0.7rem;
  font-size: clamp(2.85rem, 4.9vw, 4.7rem);
  line-height: 0.96;
}

.ttt-home-rotator {
  display: inline-block;
  width: var(--rotator-width, 3.35em);
  min-width: 0;
  overflow: visible;
  color: var(--ttt-home-heading-blue);
  font-style: italic;
  font-weight: 500;
  text-align: left;
  vertical-align: -0.035em;
  white-space: nowrap;
  transform-origin: 50% 60%;
  transition:
    width 360ms cubic-bezier(0.22, 0.9, 0.24, 1),
    opacity 180ms ease,
    transform 180ms ease;
  will-change: width, opacity, transform;
}

.ttt-home-rotator--measure {
  width: auto !important;
  min-width: 0 !important;
  opacity: 0 !important;
  transform: none !important;
  transition: none !important;
  will-change: auto !important;
}

.ttt-home-rotator.is-switching {
  opacity: 0;
  transform: rotateX(70deg) translateY(-0.08em);
}

.ttt-home-lede {
  max-width: 28rem;
  margin-bottom: 1.35rem;
  color: #3d4667;
  font-size: 1.05rem;
  line-height: 1.5;
}

.ttt-home-hero__visual {
  position: relative;
  min-height: 20rem;
}

.ttt-home-hero__visual > img {
  width: 100%;
  aspect-ratio: 1.68;
  border-radius: 0.55rem;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--ttt-home-shadow);
}

.ttt-home-reveal-card {
  position: absolute;
  left: -2.4rem;
  bottom: -0.65rem;
  width: min(13rem, 46%);
  padding: 0.95rem;
  border: 1px solid rgba(var(--ttt-home-blue-rgb), 0.18);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(12, 32, 105, 0.18);
}

.ttt-home-reveal-card p {
  margin-bottom: 0.6rem;
  color: #546082;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ttt-home-reveal-card strong {
  display: inline-flex;
  margin-bottom: 0.7rem;
  padding: 0.26rem 0.5rem;
  border-radius: 999px;
  background: var(--ttt-home-soft-blue);
  color: var(--ttt-home-blue);
  font-size: 0.65rem;
  font-weight: 900;
}

.ttt-home-reveal-card span {
  display: block;
  color: #1d2a5d;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.25;
}

.ttt-home-reveal-card b {
  display: block;
  margin-top: 0.35rem;
  color: #0f1f64;
  font-size: 0.78rem;
}

.ttt-home-avatar-row {
  display: flex;
  margin-top: 0.6rem;
}

.ttt-home-avatar-row i {
  width: 1.26rem;
  height: 1.26rem;
  margin-left: -0.22rem;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(var(--ttt-home-blue-rgb), 0.94), rgba(255, 180, 92, 0.88)),
    var(--ttt-home-line);
}

.ttt-home-avatar-row i:first-child {
  margin-left: 0;
}

.ttt-home-same {
  padding: 0 0 2.35rem;
}

.ttt-home-same__panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  max-width: none;
  min-height: 20.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 3.2rem 1.3rem;
  border-radius: 0;
  background: var(--ttt-home-panel);
  text-align: center;
}

.ttt-home-same__panel::before,
.ttt-home-same__panel::after,
.ttt-home-steps::before,
.ttt-home-steps::after,
.ttt-home-faq > .ttt-home-wrap::before,
.ttt-home-faq > .ttt-home-wrap::after,
.ttt-home-final__card::before,
.ttt-home-final__card::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: clamp(18rem, 34vw, 32rem);
  aspect-ratio: 1;
  background: center / contain no-repeat var(--ttt-home-scribble);
  opacity: 0.095;
  pointer-events: none;
}

.ttt-home-same__panel::before {
  top: -5rem;
  left: -7rem;
  transform: rotate(-9deg);
}

.ttt-home-same__panel::after {
  right: -5.5rem;
  bottom: -7rem;
  transform: rotate(174deg) scale(1.08);
}

.ttt-home-same__panel > *,
.ttt-home-steps > *,
.ttt-home-faq > .ttt-home-wrap > *,
.ttt-home-final__card > * {
  position: relative;
  z-index: 1;
}

.ttt-home-same h2 {
  max-width: 55rem;
  margin-bottom: 1.05rem;
  font-size: clamp(2.15rem, 3.8vw, 3.45rem);
  line-height: 1.02;
}

.ttt-home-same h2 em {
  font-size: 1em;
}

@media (min-width: 1120px) {
  .ttt-home-wide-break {
    display: block;
  }
}

.ttt-home-script-line {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  color: var(--ttt-home-blue);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-style: italic;
}

.ttt-home-script-line span {
  position: relative;
  padding: 0 clamp(0.85rem, 2.2vw, 1.5rem);
}

.ttt-home-script-line span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 1.1rem;
  background: rgba(var(--ttt-home-blue-rgb), 0.32);
  transform: translateY(-50%);
}

@media (max-width: 720px) {
  .ttt-home-script-line {
    align-items: center;
    flex-direction: column;
    gap: 0.35rem;
  }

  .ttt-home-script-line span {
    padding: 0;
  }

  .ttt-home-script-line span + span::before {
    content: none;
  }
}

.ttt-home-same p,
.ttt-home-break p {
  margin-bottom: 0;
  color: #263569;
  font-size: 1rem;
  line-height: 1.5;
}

.ttt-home-break {
  padding: 0.9rem 0 2.35rem;
}

.ttt-home-break h2 em {
  color: var(--ttt-home-coral);
}

.ttt-home-centered {
  text-align: center;
}

.ttt-home-break h2 {
  margin-bottom: 0.45rem;
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  line-height: 1.03;
}

.ttt-home-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 13rem));
  gap: clamp(1rem, 5vw, 4rem);
  justify-content: center;
  margin-top: 2rem;
}

.ttt-home-mini-grid div {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-align: left;
}

.ttt-home-mini-grid .ttt-home-icon {
  width: 4rem;
  height: 4rem;
  padding: 1.05rem;
  border-radius: 999px;
  background: var(--ttt-home-soft-blue);
  color: var(--ttt-home-blue);
}

.ttt-home-mini-grid span {
  color: #1a275f;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
}

.ttt-home-reveal-trust {
  display: flex;
  justify-content: center;
  gap: 0.85rem 1.15rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.ttt-home-reveal-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: #253764;
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1.3;
}

.ttt-home-reveal-trust .ttt-home-icon {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--ttt-home-blue);
}

.ttt-home-final > .ttt-home-wrap {
  width: 100%;
  max-width: none;
}

.ttt-home-final__card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  border: 1px solid var(--ttt-home-line);
  background:
    radial-gradient(circle at 96% 94%, rgba(var(--ttt-home-blue-rgb), 0.09), transparent 28%),
    linear-gradient(135deg, var(--ttt-home-panel), #ffffff);
  box-shadow: 0 16px 44px rgba(12, 32, 105, 0.08);
}

.ttt-home-final__card h2,
.ttt-home-faq h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.02;
}

.ttt-home-final__card p {
  color: #263569;
  font-size: 0.98rem;
  line-height: 1.5;
}

.ttt-home-steps {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 2.75rem 0 3rem;
  background: var(--ttt-home-panel);
}

.ttt-home-steps::before {
  top: -7rem;
  left: -9rem;
  transform: rotate(-16deg);
}

.ttt-home-steps::after {
  right: -8rem;
  bottom: -8rem;
  transform: rotate(162deg) scale(1.05);
}

.ttt-home-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3.2rem);
  align-items: start;
}

.ttt-home-steps__intro {
  grid-column: 1 / -1;
  max-width: 36rem;
  margin-inline: auto;
  text-align: center;
}

.ttt-home-steps__intro h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.ttt-home-steps__intro p,
.ttt-home-step p {
  margin-bottom: 0;
  color: #1f2e66;
  line-height: 1.35;
}

.ttt-home-steps__intro p {
  font-size: 0.98rem;
  line-height: 1.45;
}

.ttt-home-step p {
  font-size: 0.9rem;
}

.ttt-home-step {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.ttt-home-step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -1.65rem;
  top: 1.75rem;
  width: 1.45rem;
  height: 1.45rem;
  background: #9fb0d9;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h14M13 6l6 6l-6 6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h14M13 6l6 6l-6 6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  color: #9fb0d9;
}

.ttt-home-step__number {
  position: absolute;
  top: -0.28rem;
  left: calc(50% - 2rem);
  display: inline-grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: var(--ttt-home-blue);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
}

.ttt-home-step i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.1rem;
  height: 4.1rem;
  margin-bottom: 0.68rem;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ttt-home-blue);
  font-size: 1.85rem;
  box-shadow: 0 8px 24px rgba(var(--ttt-home-blue-rgb), 0.11);
}

.ttt-home-step h3 {
  margin-bottom: 0.3rem;
  color: #06145f;
  font-size: 0.9rem;
  font-weight: 900;
}

.ttt-home-social {
  padding: 2.25rem 0 3rem;
  text-align: center;
}

.ttt-home-social__intro h2 {
  margin-bottom: 1.55rem;
  font-size: clamp(1.75rem, 3.9vw, 3.35rem);
  line-height: 1.05;
  white-space: nowrap;
}

.ttt-home-social__intro h2 em {
  font-size: 1em;
}

.ttt-home-faq-link .ttt-home-icon,
.ttt-home-help span .ttt-home-icon {
  width: 1em;
  height: 1em;
}

.ttt-home-testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: stretch;
}

.ttt-home-testimonial {
  min-height: 11.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.15rem;
  border: 1px solid var(--ttt-home-line);
  border-radius: 0.5rem;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(12, 32, 105, 0.08);
  text-align: center;
}

.ttt-home-testimonial__head {
  display: block;
  margin-bottom: 0.75rem;
}

.ttt-home-testimonial__head span {
  display: none;
}

.ttt-home-testimonial p {
  margin-bottom: 0;
  color: #18265f;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.45;
}

.ttt-home-testimonial__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.ttt-home-testimonial b {
  display: block;
  margin: 0;
  color: #06145f;
  font-size: 0.78rem;
}

.ttt-home-testimonial small {
  display: inline-flex;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: var(--ttt-home-soft-blue);
  color: var(--ttt-home-blue);
  font-size: 0.68rem;
  font-weight: 800;
}

.ttt-home-faq {
  padding: 3.4rem 0 4.2rem;
  background: #ffffff;
  text-align: center;
}

.ttt-home-faq > .ttt-home-wrap {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  max-width: none;
  padding: clamp(2rem, 4vw, 3.25rem) max(1.25rem, calc((100vw - 760px) / 2 + 1.25rem));
  border-radius: 0;
  background: var(--ttt-home-panel);
}

.ttt-home-faq > .ttt-home-wrap::before {
  top: -8rem;
  left: -8rem;
  transform: rotate(-18deg) scale(0.9);
}

.ttt-home-faq > .ttt-home-wrap::after {
  right: -8rem;
  bottom: -8rem;
  transform: rotate(166deg);
}

.ttt-home-faq-grid {
  columns: 2 29rem;
  column-gap: 1rem;
  max-width: 760px;
  margin: 2rem auto 0;
}

.ttt-home-faq-item {
  display: flex;
  flex-direction: column;
  min-height: 5.1rem;
  padding: 0;
  border: 1px solid var(--ttt-home-line);
  border-radius: 0.65rem;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(12, 32, 105, 0.07);
  text-align: left;
  break-inside: avoid;
  margin-bottom: 1rem;
}

.ttt-home-faq-toggle {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
  width: 100%;
  min-height: 4.7rem;
  padding: 0.9rem 1.1rem;
  border: 0;
  border-radius: 0.65rem;
  background: transparent;
  color: inherit;
  text-align: left;
}

.ttt-home-faq-toggle > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: var(--ttt-home-soft-blue);
  color: var(--ttt-home-blue);
  font-size: 1.2rem;
  box-shadow: 0 8px 20px rgba(var(--ttt-home-blue-rgb), 0.08);
}

.ttt-home-faq-toggle strong {
  margin: 0;
  color: #06145f;
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.32;
}

.ttt-home-faq-toggle > i {
  display: inline-flex;
  color: var(--ttt-home-blue);
  transition: transform 0.2s ease;
}

.ttt-home-faq-toggle > i .ttt-home-icon {
  width: 1.05rem;
  height: 1.05rem;
}

.ttt-home-faq-item p {
  max-height: 0;
  overflow: hidden;
  margin: 0 1.1rem 0 4.9rem;
  opacity: 0;
  color: #2a3a70;
  font-size: 0.9rem;
  line-height: 1.5;
  transition:
    max-height 0.28s ease,
    margin 0.28s ease,
    opacity 0.22s ease;
}

.ttt-home-faq-item.is-open p {
  max-height: 7rem;
  margin: -0.25rem 1.1rem 1rem 4.9rem;
  opacity: 1;
}

.ttt-home-faq-item.is-open .ttt-home-faq-toggle > i {
  transform: rotate(180deg);
}

.ttt-home-faq-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  min-height: 3.65rem;
  padding: 0 1.7rem;
  color: var(--ttt-home-blue);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
}

.ttt-home-help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: auto;
  min-height: 0;
  padding: 0;
  background: transparent;
  color: #14286b;
  font-size: 0.86rem;
  text-decoration: none;
}

.ttt-home-help .ttt-home-icon {
  color: var(--ttt-home-blue);
}

.ttt-home-help span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--ttt-home-blue);
  font-weight: 800;
}

.ttt-home-final {
  padding: 1.55rem 0 2.5rem;
}

.ttt-home-final__card {
  grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  min-height: 24rem;
  padding: clamp(2rem, 5vw, 4rem) max(1.35rem, calc((100vw - 1110px) / 2 + clamp(2rem, 5vw, 4rem)));
  border: 0;
  border-radius: 0;
  background: var(--ttt-home-panel);
  box-shadow: none;
}

.ttt-home-final__card::before {
  top: -8rem;
  left: -8rem;
  transform: rotate(-18deg);
}

.ttt-home-final__card::after {
  right: -9rem;
  bottom: -8rem;
  transform: rotate(168deg) scale(1.05);
}

.ttt-home-final__card h2 {
  max-width: 31rem;
}

.ttt-home-final__card > img {
  width: 100%;
  aspect-ratio: 1.55;
  border-radius: 0.75rem;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 16px 40px rgba(12, 32, 105, 0.12);
}

.ttt-home-audience {
  margin: 0 0 4.4rem;
  text-align: center;
}

.ttt-home-audience p {
  margin-bottom: 1.2rem;
  color: #1f2e66;
  font-size: 1rem;
}

.ttt-home-audience strong {
  color: var(--ttt-home-blue);
}

.ttt-home-audience > div {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 4vw, 3rem);
  flex-wrap: wrap;
  margin-bottom: 0;
}

.ttt-home-audience span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #18265f;
  font-size: 0.82rem;
  font-weight: 700;
}

.ttt-home-audience .ttt-home-icon {
  color: #06145f;
  font-size: 1.15rem;
}

.ttt-sample {
  background:
    radial-gradient(circle at 14% 8%, rgba(var(--ttt-home-blue-rgb), 0.08), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 46%, #ffffff 100%);
}

.ttt-sample-hero {
  padding: clamp(2.4rem, 6vw, 5.2rem) 0 clamp(3rem, 7vw, 5.8rem);
}

.ttt-sample-hero--simple {
  padding: clamp(1.9rem, 4vw, 3.5rem) 0 clamp(2rem, 4vw, 3.6rem);
}

.ttt-sample-hero__grid,
.ttt-sample-split {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(2rem, 5vw, 4.4rem);
  align-items: center;
}

.ttt-sample-hero--simple .ttt-sample-hero__grid {
  display: block;
  max-width: 48rem;
  text-align: center;
}

.ttt-sample-hero__copy h1 {
  max-width: 34rem;
  margin-bottom: 0.85rem;
  font-size: clamp(2.7rem, 5.4vw, 5rem);
  line-height: 0.94;
}

.ttt-sample-hero--simple .ttt-sample-hero__copy h1 {
  margin-right: auto;
  margin-left: auto;
}

.ttt-sample-hero__copy .ttt-home-lede {
  max-width: 33rem;
  margin-bottom: 1.35rem;
}

.ttt-sample-hero--simple .ttt-home-lede {
  margin-right: auto;
  margin-left: auto;
}

.ttt-sample-hero--simple .ttt-home-actions {
  justify-content: center;
}

.ttt-sample-hero--montage {
  padding-bottom: clamp(2.6rem, 5vw, 4.6rem);
}

.ttt-sample-hero--montage .ttt-sample-hero__grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.12fr);
}

.ttt-sample-montage {
  position: relative;
  min-height: clamp(21rem, 36vw, 31rem);
}

.ttt-sample-montage__card {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--ttt-home-line);
  border-radius: 1.25rem;
  background: #ffffff;
  box-shadow: 0 22px 56px rgba(12, 32, 105, 0.14);
}

.ttt-sample-montage__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.ttt-sample-montage__card figcaption {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  padding: 0.42rem 0.64rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ttt-home-ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(12, 32, 105, 0.1);
}

.ttt-sample-montage__card--summary {
  top: 0;
  left: 0;
  width: 50%;
  height: 70%;
}

.ttt-sample-montage__card--member {
  right: 0;
  top: 17%;
  z-index: 2;
  width: 56%;
  height: 46%;
}

.ttt-sample-montage__card--trait {
  left: 14%;
  bottom: 0;
  z-index: 3;
  width: 68%;
  height: 42%;
}

.ttt-sample-section {
  padding: clamp(3.4rem, 7vw, 6.2rem) 0;
  background: #ffffff;
}

.ttt-sample-section--blue {
  background: var(--ttt-home-panel);
}

.ttt-sample-copy h2,
.ttt-sample-centered h2,
.ttt-sample-final h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 0.98;
}

.ttt-sample-copy p,
.ttt-sample-centered p,
.ttt-sample-final p {
  margin-bottom: 0;
  color: var(--ttt-home-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.ttt-sample-centered {
  max-width: 42rem;
  margin: 0 auto clamp(1.65rem, 4vw, 2.6rem);
  text-align: center;
}

.ttt-sample-story {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: center;
}

.ttt-sample-story--reverse {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
}

.ttt-sample-caption {
  display: inline-flex;
  width: fit-content;
  margin-top: 1rem;
  padding: 0.5rem 0.72rem;
  border: 1px solid rgba(var(--ttt-home-blue-rgb), 0.16);
  border-radius: 999px;
  background: rgba(var(--ttt-home-blue-rgb), 0.06);
  color: #17245c;
  font-size: 0.84rem;
  font-weight: 800;
}

.ttt-sample-frame,
.ttt-sample-card {
  border: 1px solid var(--ttt-home-line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--ttt-home-shadow);
}

.ttt-sample-frame {
  margin: 0;
  padding: clamp(0.8rem, 1.7vw, 1.15rem);
  border-radius: 1.55rem;
}

.ttt-sample-frame__bar {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  height: 1.65rem;
  padding: 0 0.82rem;
  border-radius: 999px;
  background: var(--ttt-home-soft-blue);
}

.ttt-sample-frame__bar span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #c9d8ec;
}

.ttt-sample-frame__bar span:nth-child(2) {
  background: var(--ttt-home-blue);
}

.ttt-sample-frame__bar span:nth-child(3) {
  background: #ffb45c;
}

.ttt-sample-crop {
  position: relative;
  margin-top: 0.85rem;
  overflow: hidden;
  border: 1px solid var(--ttt-home-line);
  border-radius: 1.15rem;
  background: #ffffff;
}

.ttt-sample-crop::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5rem;
  pointer-events: none;
  background: linear-gradient(rgba(255, 255, 255, 0), #ffffff);
}

.ttt-sample-crop img,
.ttt-sample-card img {
  display: block;
  width: 100%;
  height: auto;
}

.ttt-sample-crop--member,
.ttt-sample-crop--member-summary {
  max-height: clamp(27rem, 48vw, 38rem);
}

.ttt-sample-crop--group-summary {
  max-height: clamp(28rem, 52vw, 42rem);
}

.ttt-sample-crop--group-read {
  max-height: clamp(30rem, 48vw, 38rem);
}

.ttt-sample-crop--member-read {
  max-height: clamp(18rem, 29vw, 25rem);
}

.ttt-sample-card--radar {
  width: min(100%, 34rem);
  justify-self: center;
}

.ttt-sample-vote-stack {
  display: grid;
  gap: 1rem;
}

.ttt-sample-vote-card {
  padding: clamp(1rem, 2.2vw, 1.45rem);
  border: 1px solid rgba(95, 198, 214, 0.42);
  border-radius: 1.1rem;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(12, 32, 105, 0.08);
}

.ttt-sample-vote-card:nth-child(2) {
  border-color: rgba(118, 107, 255, 0.3);
}

.ttt-sample-vote-card span {
  display: block;
  margin-bottom: 0.35rem;
  color: #62708f;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ttt-sample-vote-card h3 {
  max-width: 24rem;
  margin: 0 0 0.9rem;
  color: var(--ttt-home-ink);
  font-size: clamp(1.08rem, 1.5vw, 1.38rem);
  line-height: 1.15;
}

.ttt-sample-vote-card div {
  overflow: hidden;
  height: 0.76rem;
  border-radius: 999px;
  background: rgba(var(--ttt-home-blue-rgb), 0.09);
}

.ttt-sample-vote-card b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #5fc6d6, var(--ttt-home-blue));
}

.ttt-sample-vote-card__bar--wide {
  width: 72%;
}

.ttt-sample-vote-card__bar--medium {
  width: 58%;
}

.ttt-sample-vote-card small {
  display: block;
  margin-top: 0.62rem;
  color: var(--ttt-home-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.ttt-sample-facet-grid,
.ttt-sample-achievements {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
}

.ttt-sample-facet-grid {
  align-content: center;
}

.ttt-sample-facet-grid span,
.ttt-sample-achievements span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--ttt-home-line);
  border-radius: 0.85rem;
  background: #ffffff;
  color: var(--ttt-home-ink);
  font-weight: 900;
  line-height: 1.15;
  box-shadow: 0 12px 30px rgba(12, 32, 105, 0.06);
}

.ttt-sample-facet-grid span {
  flex: 1 1 12rem;
}

.ttt-sample-achievements {
  margin-top: 1.15rem;
}

.ttt-sample-achievements span {
  min-height: 2.35rem;
  padding: 0.5rem 0.75rem;
  border-color: rgba(var(--ttt-home-blue-rgb), 0.16);
  color: #17245c;
  font-size: 0.84rem;
}

.ttt-sample-compare__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 1.7rem);
  align-items: stretch;
}

.ttt-sample-compare-card {
  display: flex;
  flex-direction: column;
}

.ttt-sample-compare-card img {
  flex: 1 1 auto;
  object-fit: contain;
}

.ttt-sample-compare__connector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(34rem, 72vw);
  margin: clamp(1.45rem, 3vw, 2.1rem) auto 0.65rem;
  color: var(--ttt-home-blue);
  text-align: center;
}

.ttt-sample-compare__arrow {
  display: block;
  width: 1em;
  color: rgba(var(--ttt-home-blue-rgb), 0.78);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
}

.ttt-sample-compare__result {
  margin-top: 0;
}

.ttt-sample-card {
  overflow: hidden;
  border-radius: 1.35rem;
}

.ttt-sample-card {
  padding: clamp(0.9rem, 1.8vw, 1.2rem);
}

.ttt-sample-card--image {
  margin: 0;
}

.ttt-sample-card--wide img {
  object-fit: contain;
}

.ttt-sample-trait-guide .ttt-sample-centered {
  max-width: 48rem;
}

.ttt-sample-card--trait-header {
  max-width: 58rem;
  margin: 0 auto;
}

.ttt-sample-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.82rem;
  margin-bottom: 0.95rem;
  border-bottom: 1px solid var(--ttt-home-line);
}

.ttt-sample-card__header h3 {
  margin-bottom: 0;
  color: var(--ttt-home-ink);
  font-size: clamp(1rem, 0.4vw + 0.95rem, 1.2rem);
  line-height: 1.15;
}

.ttt-sample-card__header span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.42rem 0.64rem;
  border: 1px solid rgba(var(--ttt-home-blue-rgb), 0.2);
  border-radius: 999px;
  background: var(--ttt-home-soft-blue);
  color: var(--ttt-home-blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.ttt-sample-split--reverse {
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
}

.ttt-sample-facts {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.ttt-sample-facts span {
  display: grid;
  gap: 0.12rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--ttt-home-line);
  border-radius: 1rem;
  background: #ffffff;
  color: var(--ttt-home-muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.ttt-sample-facts strong {
  color: var(--ttt-home-ink);
}

.ttt-sample-similarity-facts {
  gap: 0.82rem;
}

.ttt-sample-similarity-facts span {
  position: relative;
  min-height: 4.7rem;
  padding: 0.95rem 1rem 0.95rem 3.05rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(var(--ttt-home-blue-rgb), 0.06));
  box-shadow: 0 14px 36px rgba(var(--ttt-home-blue-rgb), 0.08);
}

.ttt-sample-similarity-facts span::before {
  content: "";
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  width: 0.74rem;
  height: 0.74rem;
  border-radius: 999px;
  background: #44b86a;
  box-shadow: 0 0 0 0.35rem rgba(68, 184, 106, 0.14);
}

.ttt-sample-similarity-facts span:nth-child(2)::before {
  background: #f18383;
  box-shadow: 0 0 0 0.35rem rgba(241, 131, 131, 0.16);
}

.ttt-sample-similarity-facts span:nth-child(3)::before {
  background: #ffb45c;
  box-shadow: 0 0 0 0.35rem rgba(255, 180, 92, 0.18);
}

.ttt-sample-similarity-facts strong {
  font-size: 1.02rem;
  line-height: 1.15;
}

.ttt-sample-similarity-facts em {
  color: var(--ttt-home-muted);
  font-style: normal;
  font-size: 0.86rem;
  line-height: 1.3;
}

.ttt-sample-final {
  padding: clamp(3.2rem, 7vw, 5.8rem) 0;
  background:
    linear-gradient(180deg, #ffffff 0%, var(--ttt-home-panel) 100%);
}

.ttt-sample-final__panel {
  position: relative;
  max-width: 880px;
  margin-inline: auto;
  overflow: hidden;
  padding: clamp(1.7rem, 4vw, 3.2rem);
  border: 1px solid rgba(var(--ttt-home-blue-rgb), 0.18);
  border-radius: 1.55rem;
  background:
    radial-gradient(circle at 12% 0%, rgba(var(--ttt-home-blue-rgb), 0.13), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(95, 198, 214, 0.16), transparent 26%),
    #ffffff;
  box-shadow: var(--ttt-home-shadow);
  text-align: center;
}

.ttt-sample-final__panel::before {
  content: "";
  position: absolute;
  inset: auto auto -4.8rem -4.6rem;
  width: 12rem;
  height: 12rem;
  border-radius: 999px;
  background: rgba(var(--ttt-home-blue-rgb), 0.06);
  pointer-events: none;
}

.ttt-sample-final__panel .ttt-home-eyebrow {
  margin-bottom: 0.8rem;
}

.ttt-sample-final__panel h2 {
  max-width: 38rem;
  margin-right: auto;
  margin-left: auto;
}

.ttt-sample-final__panel > p:not(.ttt-home-eyebrow) {
  max-width: 42rem;
  margin-right: auto;
  margin-left: auto;
}

.ttt-sample-final .ttt-home-actions {
  margin-top: 1.25rem;
  justify-content: center;
}

@media (max-width: 980px) {
  .ttt-home-hero__grid,
  .ttt-home-final__card {
    grid-template-columns: 1fr;
  }

  .ttt-home-hero__visual {
    width: min(100%, 42rem);
    min-height: 0;
    margin-right: auto;
    margin-left: auto;
  }

  .ttt-home-reveal-card {
    left: 1rem;
    bottom: 1rem;
    width: min(13rem, calc(100% - 2rem));
  }
}

@media (max-width: 860px) {
  .ttt-home section[id] {
    scroll-margin-top: 5rem;
  }

  .ttt-home-hero__grid,
  .ttt-home-final__card,
  .ttt-sample-hero__grid,
  .ttt-sample-story,
  .ttt-sample-story--reverse,
  .ttt-sample-split,
  .ttt-sample-split--reverse,
  .ttt-home-hero__grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding-left: 0;
  }

  .ttt-home-hero__copy {
    text-align: center;
  }

  .ttt-sample-hero__copy,
  .ttt-sample-copy,
  .ttt-sample-centered {
    text-align: center;
  }

  .ttt-sample-caption,
  .ttt-sample-card--radar {
    margin-right: auto;
    margin-left: auto;
  }

  .ttt-sample-story--reverse .ttt-sample-copy {
    order: -1;
  }

  .ttt-sample-hero--montage .ttt-sample-hero__grid {
    grid-template-columns: 1fr;
  }

  .ttt-sample-montage {
    width: min(100%, 34rem);
    margin-right: auto;
    margin-left: auto;
  }

  .ttt-sample-facet-grid,
  .ttt-sample-achievements {
    justify-content: center;
  }

  .ttt-home-hero__copy h1,
  .ttt-home-lede,
  .ttt-sample-hero__copy h1,
  .ttt-sample-hero__copy .ttt-home-lede {
    margin-right: auto;
    margin-left: auto;
  }

  .ttt-home-actions,
  .ttt-sample-final .ttt-home-actions {
    justify-content: center;
  }

  .ttt-home-steps__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ttt-home-testimonial-row {
    grid-template-columns: 1fr;
    max-width: 32rem;
    margin-right: auto;
    margin-left: auto;
  }

  .ttt-home-final__card {
    text-align: center;
  }

  .ttt-home-final__card h2,
  .ttt-home-final__card p,
  .ttt-home-final__card .ttt-home-note {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

}

@media (max-width: 760px) {
  .ttt-home-wrap {
    width: min(100% - 2rem, 1110px);
  }

  .ttt-home-hero {
    padding-top: 1.1rem;
  }

  .ttt-home-hero__copy h1 {
    max-width: 26rem;
    font-size: clamp(2.45rem, 11vw, 3.45rem);
  }

  .ttt-home-hero__visual {
    min-height: 0;
  }

  .ttt-home-hero__visual > img {
    aspect-ratio: 1.15;
  }

  .ttt-home-reveal-card {
    left: 0.8rem;
    bottom: 0.8rem;
    width: min(12rem, calc(100% - 1.6rem));
  }

  .ttt-home-same__panel {
    min-height: 17rem;
    padding: 2.3rem 1rem;
  }

  .ttt-home-mini-grid,
  .ttt-home-faq-grid {
    grid-template-columns: 1fr;
  }

  .ttt-home-faq-grid {
    columns: 1;
  }

  .ttt-sample-compare__grid {
    grid-template-columns: 1fr;
    max-width: 34rem;
    margin-right: auto;
    margin-left: auto;
  }

  .ttt-sample-compare__connector {
    width: min(15rem, 68vw);
  }

  .ttt-sample-compare__arrow {
    font-size: 2.4rem;
  }

  .ttt-sample-hero {
    padding-top: 1.4rem;
  }

  .ttt-sample-crop--member,
  .ttt-sample-crop--member-summary {
    max-height: 27rem;
  }

  .ttt-sample-crop--group-summary {
    max-height: 29rem;
  }

  .ttt-sample-card__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .ttt-home-mini-grid {
    max-width: 21rem;
    gap: 1rem;
  }

  .ttt-home-testimonial {
    min-height: 0;
  }

  .ttt-home-testimonial__meta {
    margin-top: 1.15rem;
  }

  .ttt-home-steps__grid {
    gap: 1.8rem;
  }

  .ttt-home-step:not(:last-child)::after {
    display: none;
  }

  .ttt-home-step__number {
    left: calc(50% - 2.2rem);
  }

  .ttt-home-final__card {
    padding: 1.35rem;
  }

  .ttt-home-faq > .ttt-home-wrap {
    width: 100%;
    padding: 1.25rem 1rem;
  }

  .ttt-home-faq-item {
    grid-template-columns: 3rem 1fr;
    gap: 0.8rem;
  }

  .ttt-home-faq-link {
    width: 100%;
    min-height: 4.3rem;
    flex-wrap: wrap;
    padding: 0.8rem 1rem;
  }

  .ttt-home-help {
    flex-wrap: wrap;
  }
}

@media (max-width: 460px) {
  .ttt-home-actions {
    align-items: stretch;
  }

  .ttt-home-note {
    display: flex;
    width: fit-content;
    max-width: 18rem;
    margin-right: auto;
    margin-left: auto;
    justify-content: flex-start;
    text-align: left;
  }

  .ttt-home-btn {
    width: 100%;
  }

  .ttt-home-same h2,
  .ttt-home-break h2,
  .ttt-home-final__card h2,
  .ttt-home-faq h2 {
    font-size: clamp(1.85rem, 10vw, 2.7rem);
  }

  .ttt-home-script-line {
    gap: 0.6rem 1.2rem;
  }

  .ttt-sample-hero__copy h1,
  .ttt-sample-copy h2,
  .ttt-sample-centered h2,
  .ttt-sample-final h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .ttt-sample-montage {
    min-height: 23rem;
  }

  .ttt-sample-montage__card--summary {
    width: 56%;
  }

  .ttt-sample-montage__card--member {
    width: 52%;
  }

  .ttt-sample-montage__card--trait {
    left: 5%;
    width: 90%;
  }

  .ttt-sample-montage__card figcaption {
    font-size: 0.62rem;
  }

  .ttt-sample-vote-card h3 {
    max-width: none;
  }

  .ttt-sample-section {
    padding: 3rem 0;
  }

  .ttt-home-social__intro h2 {
    font-size: clamp(1.35rem, 7vw, 1.85rem);
  }
}

/* What Happens in the Reveal preview page. */
.ttt-inside {
  --ttt-inside-purple: #7a6cff;
  --ttt-inside-purple-soft: #f7f6ff;
  --ttt-inside-coral: var(--ttt-home-coral);
  --ttt-inside-coral-soft: #fff4f4;
  --ttt-inside-amber: var(--landing-amber, #ffb67a);
  --ttt-inside-amber-strong: #ffb45c;
  --ttt-inside-amber-soft: #fff7ed;
  --ttt-inside-green: #55ad44;
  --ttt-inside-green-soft: #f4fbf1;
  --ttt-inside-em-color: var(--ttt-home-heading-blue);
  background: #ffffff;
}

.ttt-inside-hero,
.ttt-inside-section,
.ttt-inside-final {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.ttt-inside-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4.4rem);
  align-items: center;
}

.ttt-inside-hero__copy h1,
.ttt-inside-section-head h2,
.ttt-inside-copy h2,
.ttt-inside-final h2 {
  margin: 0 0 0.8rem;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  color: var(--ttt-home-ink);
  font-size: clamp(2.45rem, 5vw, 4.7rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.ttt-inside-hero__copy h1 {
  text-wrap: balance;
}

.ttt-inside-hero__copy h1 em,
.ttt-inside-copy h2 em,
.ttt-inside-section-head h2 em,
.ttt-inside-compare h2 em,
.ttt-inside-final h2 em {
  color: var(--ttt-inside-em-color);
  font-style: italic;
  font-weight: 500;
}

.ttt-inside-hero__copy .ttt-home-lede {
  max-width: 35rem;
}

.ttt-inside-trust {
  display: inline-flex;
  margin: 1rem 0 0;
  padding: 0.48rem 0.72rem;
  border: 1px solid rgba(var(--ttt-home-blue-rgb), 0.16);
  border-radius: 999px;
  background: var(--ttt-home-soft-blue);
  color: #17245c;
  font-size: 0.86rem;
  font-weight: 850;
}

.ttt-inside-collage {
  position: relative;
  min-height: clamp(35rem, 44vw, 42rem);
  margin: 0;
}

.ttt-inside-preview-card,
.ttt-inside-vote-card,
.ttt-inside-pattern-card,
.ttt-inside-person-card,
.ttt-inside-group-card,
.ttt-inside-trait-card {
  border: 1px solid var(--ttt-home-line);
  border-radius: 1.05rem;
  background: #ffffff;
  box-shadow: 0 22px 54px rgba(12, 32, 105, 0.12);
}

.ttt-inside-preview-card {
  position: absolute;
  padding: clamp(1rem, 2vw, 1.35rem);
  color: #17245c;
}

.ttt-inside-preview-card span,
.ttt-inside-vote-card span,
.ttt-inside-pattern-card > span,
.ttt-inside-person-card__head span,
.ttt-inside-group-card > span,
.ttt-inside-final__card span {
  display: inline-flex;
  margin-bottom: 0.6rem;
  color: var(--ttt-home-blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ttt-inside-preview-card h2,
.ttt-inside-vote-card h3,
.ttt-inside-pattern-card h3,
.ttt-inside-person-card h3 {
  margin: 0;
  color: var(--ttt-home-ink);
  line-height: 1.08;
}

.ttt-inside-preview-card p,
.ttt-inside-preview-card dd,
.ttt-inside-vote-card p,
.ttt-inside-pattern-card p,
.ttt-inside-person-card p,
.ttt-inside-group-card p {
  color: var(--ttt-home-muted);
  line-height: 1.45;
}

.ttt-inside-preview-card--vote {
  top: 0.4rem;
  left: 2%;
  z-index: 3;
  width: min(18.5rem, 45%);
  background: #ffffff;
  transform: rotate(-3deg);
}

.ttt-inside-preview-card--vote h2 {
  max-width: 14rem;
  margin-bottom: 1rem;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.ttt-inside-preview-card--vote strong {
  display: block;
  color: var(--ttt-home-ink);
  font-size: 1.8rem;
}

.ttt-inside-preview-card--vote p {
  margin: 0.1rem 0 0;
  font-weight: 800;
}

.ttt-inside-preview-card--pattern {
  top: 5.4rem;
  right: 0;
  z-index: 4;
  width: min(24rem, 55%);
  background: #ffffff;
}

.ttt-inside-preview-card--pattern h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.ttt-inside-preview-card--pattern dl {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0;
}

.ttt-inside-preview-card--pattern dt {
  color: var(--ttt-home-ink);
  font-weight: 900;
}

.ttt-inside-preview-card--pattern dd {
  margin: 0.16rem 0 0;
}

.ttt-inside-preview-card--pattern strong {
  color: #5f4eff;
}

.ttt-inside-preview-card--person {
  bottom: 4.4rem;
  left: 0;
  z-index: 2;
  width: min(16.5rem, 43%);
  background: #ffffff;
  transform: rotate(2deg);
}

.ttt-inside-preview-card--person h2 {
  font-size: 1.4rem;
}

.ttt-inside-preview-card--person strong {
  display: block;
  margin-top: 0.2rem;
  color: var(--ttt-home-ink);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ttt-inside-preview-card--person p {
  margin: 0.55rem 0 0;
}

.ttt-inside-preview-card--group {
  right: 0;
  bottom: 0.7rem;
  z-index: 1;
  width: min(19.5rem, 47%);
  background: #ffffff;
  transform: rotate(-1.5deg);
}

.ttt-inside-preview-card--group p {
  margin: 0.35rem 0;
}

.ttt-inside-preview-card--group strong {
  color: var(--ttt-home-ink);
}

.ttt-inside-section--soft {
  --ttt-inside-em-color: var(--ttt-home-heading-blue);
  background: #ffffff;
}

.ttt-inside-section[data-tgt-section="Reveal Vote Moment"] {
  --ttt-inside-em-color: var(--ttt-inside-coral);
  background: #ffffff;
}

.ttt-inside-section[data-tgt-section="Reveal Pattern Moment"] {
  --ttt-inside-em-color: var(--ttt-home-heading-blue);
  background: #ffffff;
}

.ttt-inside-section[data-tgt-section="Reveal Pattern Depth"] {
  --ttt-inside-em-color: var(--ttt-inside-purple);
  background: #ffffff;
}

.ttt-inside-section[data-tgt-section="Reveal Person Summary"] {
  --ttt-inside-em-color: var(--ttt-home-group-green);
  background: #ffffff;
}

.ttt-inside-section[data-tgt-section="Reveal Group Dynamic"] {
  --ttt-inside-em-color: var(--ttt-inside-coral);
  background: #ffffff;
}

.ttt-inside-section[data-tgt-section="Reveal Free Versus Full"] {
  --ttt-inside-em-color: var(--ttt-inside-purple);
  background: #ffffff;
}

.ttt-inside-section-head {
  max-width: 45rem;
  margin: 0 auto clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
}

.ttt-inside-section-head h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.ttt-inside-section-head p,
.ttt-inside-section-note,
.ttt-inside-copy p,
.ttt-inside-final p,
.ttt-inside-compare p {
  color: var(--ttt-home-muted);
  line-height: 1.52;
}

.ttt-inside-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.ttt-inside-split--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
}

.ttt-inside-copy {
  max-width: 34rem;
}

.ttt-inside-copy h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.ttt-inside-copy p {
  margin: 0 0 0.9rem;
  font-size: clamp(1rem, 1.45vw, 1.12rem);
}

.ttt-inside-copy strong {
  color: var(--ttt-home-ink);
}

.ttt-inside-vote-card {
  max-width: 32rem;
  padding: clamp(1.3rem, 3vw, 2rem);
  background: #ffffff;
}

.ttt-inside-vote-card h3 {
  margin-bottom: clamp(1.7rem, 4vw, 2.4rem);
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
}

.ttt-inside-vote-card div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ttt-home-line);
}

.ttt-inside-vote-card strong {
  color: var(--ttt-home-ink);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 0.9;
}

.ttt-inside-vote-card em {
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 184, 77, 0.24);
  color: #955d00;
  font-style: normal;
  font-weight: 900;
}

.ttt-inside-pattern-card {
  padding: clamp(1.2rem, 3vw, 1.8rem);
  background: #ffffff;
}

.ttt-inside-pattern-card h3 {
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.ttt-inside-pattern-card div {
  margin-top: 0.9rem;
  padding: 0.95rem;
  border: 1px solid var(--ttt-home-line);
  border-radius: 0.85rem;
  background: #ffffff;
}

.ttt-inside-pattern-card h4 {
  margin: 0 0 0.35rem;
  color: var(--ttt-home-ink);
  font-size: 0.92rem;
}

.ttt-inside-pattern-card p {
  margin: 0;
}

.ttt-inside-pattern-card__read {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-color: var(--ttt-home-line) !important;
  background: #ffffff !important;
}

.ttt-inside-pattern-card__read h4 {
  margin: 0;
}

.ttt-inside-pattern-card__read strong {
  color: var(--ttt-inside-purple);
  font-size: 1.12rem;
}

.ttt-inside-trait-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.6vw, 1rem);
}

.ttt-inside-trait-card {
  min-height: 10.25rem;
  padding: clamp(1rem, 2vw, 1.25rem);
  background: #ffffff;
}

.ttt-inside-trait-card:nth-child(1) {
  --ttt-card-accent-rgb: 77, 146, 227;
}

.ttt-inside-trait-card:nth-child(2) {
  --ttt-card-accent-rgb: 85, 173, 68;
}

.ttt-inside-trait-card:nth-child(3) {
  --ttt-card-accent-rgb: 255, 184, 77;
}

.ttt-inside-trait-card:nth-child(4) {
  --ttt-card-accent-rgb: 122, 108, 255;
}

.ttt-inside-trait-card:nth-child(5) {
  --ttt-card-accent-rgb: 255, 123, 100;
}

.ttt-inside-trait-card h3,
.ttt-inside-compare h3 {
  margin: 0 0 0.45rem;
  color: var(--ttt-home-ink);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.14;
}

.ttt-inside-trait-card p,
.ttt-inside-compare p {
  margin: 0;
  font-size: 0.94rem;
}

.ttt-inside-section-note {
  max-width: 42rem;
  margin: clamp(1.2rem, 3vw, 1.8rem) auto 0;
  text-align: center;
}

.ttt-inside-person-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  background: #ffffff;
}

.ttt-inside-person-card__head {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--ttt-home-line);
}

.ttt-inside-person-card__head h3 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.ttt-inside-person-card__head strong {
  display: block;
  margin: 0.2rem 0;
  color: var(--ttt-home-ink);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ttt-inside-person-card__head p {
  margin: 0;
  font-weight: 750;
}

.ttt-inside-person-card blockquote {
  margin: 0;
  padding: 1rem;
  border-left: 0.22rem solid var(--ttt-home-line);
  border-radius: 0.8rem;
  background: #ffffff;
  color: #17245c;
  line-height: 1.55;
}

.ttt-inside-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ttt-inside-chip-row span {
  padding: 0.42rem 0.62rem;
  border-radius: 999px;
  background: rgba(var(--ttt-chip-rgb, 77, 146, 227), 0.11);
  color: var(--ttt-chip-color, var(--ttt-home-blue));
  font-size: 0.78rem;
  font-weight: 900;
}

.ttt-inside-chip-row span:nth-child(2) {
  --ttt-chip-rgb: 85, 173, 68;
  --ttt-chip-color: var(--ttt-home-group-green);
}

.ttt-inside-chip-row span:nth-child(3) {
  --ttt-chip-rgb: 255, 184, 77;
  --ttt-chip-color: #956000;
}

.ttt-inside-chip-row span:nth-child(4) {
  --ttt-chip-rgb: 122, 108, 255;
  --ttt-chip-color: var(--ttt-inside-purple);
}

.ttt-inside-group-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  background: #ffffff;
}

.ttt-inside-group-card__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.ttt-inside-group-card__grid div,
.ttt-inside-group-card__takeaway {
  padding: 0.9rem;
  border: 1px solid var(--ttt-home-line);
  border-radius: 0.85rem;
  background: #ffffff;
}

.ttt-inside-group-card small {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--ttt-home-muted);
  font-weight: 850;
}

.ttt-inside-group-card strong {
  color: var(--ttt-home-ink);
  line-height: 1.28;
}

.ttt-inside-group-card__takeaway {
  border-color: var(--ttt-home-line);
  background: #ffffff;
}

.ttt-inside-group-card__takeaway p {
  margin: 0.55rem 0 0;
}

.ttt-inside-compare {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  border: 1px solid var(--ttt-home-line);
  border-radius: 1.1rem;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(12, 32, 105, 0.07);
}

.ttt-inside-compare h2 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  color: var(--ttt-home-ink);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1;
}

.ttt-inside-compare article {
  padding: 1rem;
  border: 1px solid var(--ttt-home-line);
  border-radius: 0.85rem;
  background: #ffffff;
}

.ttt-inside-compare article:nth-of-type(2) {
  border-color: var(--ttt-home-line);
  background: #ffffff;
}

.ttt-inside-compare__punchline {
  grid-column: 1 / -1;
  margin: 0.1rem 0 0;
  padding: 0.8rem 1rem;
  border: 1px solid var(--ttt-home-line);
  border-radius: 0.85rem;
  background: #ffffff;
  color: #17245c;
  text-align: center;
}

.ttt-inside-compare__punchline strong {
  color: var(--ttt-home-ink);
}

.ttt-inside-final {
  --ttt-inside-em-color: var(--ttt-home-heading-blue);
  background: #ffffff;
}

.ttt-inside-final__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.5fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid var(--ttt-home-line);
  border-radius: 1.15rem;
  background: #ffffff;
  box-shadow: var(--ttt-home-shadow);
}

.ttt-inside-final h2 {
  max-width: 40rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.ttt-inside-final .ttt-home-actions {
  margin-top: 1.2rem;
}

.ttt-inside-final__card {
  padding: 1.2rem;
  border: 1px solid var(--ttt-home-line);
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(12, 32, 105, 0.09);
}

.ttt-inside-final__card strong {
  display: block;
  color: var(--ttt-home-ink);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  line-height: 1.14;
}

@media (max-width: 1040px) {
  .ttt-inside-trait-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .ttt-inside-hero__grid,
  .ttt-inside-split,
  .ttt-inside-split--reverse,
  .ttt-inside-final__panel {
    grid-template-columns: 1fr;
  }

  .ttt-inside-hero__copy,
  .ttt-inside-final__panel {
    text-align: center;
  }

  .ttt-inside-hero__copy .ttt-home-lede,
  .ttt-inside-copy,
  .ttt-inside-trust {
    margin-right: auto;
    margin-left: auto;
  }

  .ttt-inside-hero__copy .ttt-home-actions,
  .ttt-inside-final .ttt-home-actions {
    justify-content: center;
  }

  .ttt-inside-compare {
    grid-template-columns: 1fr;
  }

  .ttt-inside-collage {
    min-height: 46rem;
  }

  .ttt-inside-preview-card--vote,
  .ttt-inside-preview-card--pattern,
  .ttt-inside-preview-card--person,
  .ttt-inside-preview-card--group {
    width: min(100%, 28rem);
  }

  .ttt-inside-preview-card--pattern {
    top: 8.8rem;
  }

  .ttt-inside-preview-card--person {
    top: 24.8rem;
    bottom: auto;
  }

  .ttt-inside-preview-card--group {
    bottom: 0;
  }
}

@media (max-width: 560px) {
  .ttt-inside-hero,
  .ttt-inside-section,
  .ttt-inside-final {
    padding: 2.6rem 0;
  }

  .ttt-inside-hero__copy h1 {
    font-size: clamp(2.25rem, 12vw, 3.25rem);
  }

  .ttt-inside-section-head h2,
  .ttt-inside-copy h2,
  .ttt-inside-final h2 {
    font-size: clamp(1.9rem, 10vw, 2.85rem);
  }

  .ttt-inside-collage {
    display: grid;
    gap: 0.75rem;
    min-height: 0;
  }

  .ttt-inside-preview-card {
    position: static;
    width: 100%;
    transform: none;
  }

  .ttt-inside-trait-grid,
  .ttt-inside-group-card__grid {
    grid-template-columns: 1fr;
  }

  .ttt-inside-trait-card {
    min-height: 0;
  }
}

/* Homepage middle-section redesign. */
.ttt-home-perspectives {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2.3rem, 4vw, 3.3rem);
  background:
    linear-gradient(180deg, rgba(var(--ttt-home-blue-rgb), 0.035), transparent 44%),
    #ffffff;
  text-align: center;
}

.ttt-home-perspectives__intro {
  max-width: 48rem;
  margin: 0 auto clamp(1.8rem, 4vw, 3rem);
}

.ttt-home-perspectives__intro h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(3rem, 6vw, 5.35rem);
  line-height: 0.84;
}

.ttt-home-perspectives__intro h2 em {
  display: inline-block;
  color: var(--ttt-home-group-green);
  font-size: 0.92em;
}

.ttt-home-perspectives__intro p {
  margin-bottom: 0;
  color: #1d2b63;
  font-size: clamp(0.95rem, 1.5vw, 1.12rem);
  font-weight: 650;
  line-height: 1.45;
}

.ttt-home-perspectives__stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(15rem, 18.5rem) minmax(16rem, 1fr) minmax(15rem, 18.5rem);
  gap: clamp(1.6rem, 4vw, 3.2rem);
  align-items: center;
}

.ttt-home-perspectives__stage::before,
.ttt-home-perspectives__stage::after {
  content: "";
  position: absolute;
  top: 43%;
  z-index: 0;
  width: clamp(2.1rem, 4vw, 3.3rem);
  border-top: 2px dotted rgba(16, 31, 86, 0.54);
}

.ttt-home-perspectives__stage::before {
  left: calc(27% - 1rem);
}

.ttt-home-perspectives__stage::after {
  right: calc(27% - 1rem);
}

.ttt-home-perspectives__stage > * {
  position: relative;
  z-index: 1;
}

.ttt-home-perspective-card {
  min-height: 25.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1.45rem 1.45rem;
  border: 1px solid rgba(var(--ttt-home-blue-rgb), 0.28);
  border-radius: 0.7rem;
  background:
    radial-gradient(circle at 0% 86%, rgba(var(--ttt-home-blue-rgb), 0.1), transparent 33%),
    linear-gradient(180deg, rgba(var(--ttt-home-blue-rgb), 0.045), rgba(255, 255, 255, 0.96));
  box-shadow: 0 15px 42px rgba(12, 32, 105, 0.06);
}

.ttt-home-perspective-card--group {
  border-color: rgba(101, 178, 77, 0.28);
  background:
    radial-gradient(circle at 100% 90%, rgba(101, 178, 77, 0.1), transparent 33%),
    linear-gradient(180deg, rgba(101, 178, 77, 0.055), rgba(255, 255, 255, 0.96));
}

.ttt-home-perspective-card__badge {
  position: absolute;
  top: -1.55rem;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.1rem;
  height: 4.1rem;
  border: 1px solid rgba(var(--ttt-home-blue-rgb), 0.28);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ttt-home-blue);
  font-size: 1.75rem;
  transform: translateX(-50%);
}

.ttt-home-perspective-card--group .ttt-home-perspective-card__badge {
  border-color: rgba(101, 178, 77, 0.34);
  color: #55ad44;
}

.ttt-home-perspective-card h3,
.ttt-home-venn__caption h3 {
  margin-bottom: 0.55rem;
  color: var(--ttt-home-ink);
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.16;
}

.ttt-home-perspective-card p,
.ttt-home-venn__caption p {
  margin: 0 auto 1.3rem;
  color: #263764;
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.45;
}

.ttt-home-mini-report {
  width: 100%;
  margin-top: auto;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(var(--ttt-home-blue-rgb), 0.22);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 32px rgba(12, 32, 105, 0.08);
  text-align: left;
}

.ttt-home-mini-report--group {
  border-color: rgba(101, 178, 77, 0.24);
}

.ttt-home-mini-report small {
  display: block;
  color: var(--ttt-home-blue);
  font-size: 0.72rem;
  font-weight: 900;
}

.ttt-home-mini-report--group small {
  color: #48a842;
}

.ttt-home-mini-report strong {
  display: block;
  margin: 0.18rem 0 0.55rem;
  color: #152565;
  font-size: 0.78rem;
  font-weight: 900;
}

.ttt-home-mini-report span {
  display: grid;
  grid-template-columns: 4.7rem 1fr;
  gap: 0.55rem;
  align-items: center;
  margin-top: 0.42rem;
}

.ttt-home-mini-report b {
  color: #1b2d63;
  font-size: 0.64rem;
  font-weight: 850;
}

.ttt-home-mini-report i {
  position: relative;
  display: block;
  height: 0.38rem;
  overflow: hidden;
  border-radius: 999px;
  background: #dce6fb;
}

.ttt-home-mini-report i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  border-radius: inherit;
  background: var(--ttt-home-blue);
}

.ttt-home-mini-report--group span {
  grid-template-columns: 1.4rem 1fr;
}

.ttt-home-mini-report--group b::before {
  content: "";
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  border: 1.6px solid #46a641;
  border-radius: 999px;
}

.ttt-home-mini-report--group i {
  background: #dfeade;
}

.ttt-home-mini-report--group i::after {
  background: #59ae47;
}

.ttt-home-mini-people {
  display: flex;
  gap: 0.42rem;
  margin: 0.45rem 0 0.65rem;
}

.ttt-home-mini-people i {
  display: block;
  width: 0.68rem;
  height: 0.68rem;
  border: 1.6px solid #4ba945;
  border-radius: 999px;
}

.ttt-home-venn {
  display: grid;
  justify-items: center;
  gap: 1.45rem;
}

.ttt-home-venn__circles {
  position: relative;
  width: min(20rem, 100%);
  height: 10.8rem;
}

.ttt-home-venn__circle {
  position: absolute;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 10.8rem;
  height: 10.8rem;
  border-radius: 999px;
}

.ttt-home-venn__circle {
  border: 2px solid currentColor;
  font-size: 3.1rem;
}

.ttt-home-venn__circle--self {
  left: 1.3rem;
  background: rgba(var(--ttt-home-blue-rgb), 0.12);
  color: var(--ttt-home-blue);
}

.ttt-home-venn__circle--group {
  right: 1.3rem;
  background: rgba(101, 178, 77, 0.13);
  color: #58ad45;
}

.ttt-home-venn__caption {
  max-width: 20rem;
}

.ttt-home-venn__caption::before {
  content: "";
  display: block;
  width: 1.15rem;
  height: 2.25rem;
  margin: -0.35rem auto 0.75rem;
  border-left: 2px solid #14225f;
}

.ttt-home-reveal-trust {
  margin-top: 1.35rem;
}

.ttt-home-moments {
  padding: clamp(2.8rem, 5vw, 4rem) 0 clamp(2.3rem, 4.5vw, 3.6rem);
  background:
    linear-gradient(90deg, rgba(255, 178, 69, 0.09), rgba(255, 246, 235, 0.84) 48%, rgba(255, 178, 69, 0.07)),
    #fffaf3;
}

.ttt-home-moments__hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(26rem, 1.22fr);
  gap: clamp(2rem, 5vw, 4.2rem);
  align-items: center;
}

.ttt-home-moments__copy h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(2.6rem, 5vw, 4.15rem);
  line-height: 0.98;
  text-align: center;
}

.ttt-home-moments__copy h2 em {
  color: #f06423;
}

.ttt-home-moments__copy p {
  max-width: 29rem;
  margin-right: auto;
  margin-bottom: 0.52rem;
  margin-left: auto;
  color: #18265f;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.42;
  text-align: center;
}

.ttt-home-moments__visual {
  position: relative;
  min-height: 0;
  padding: 0;
}

.ttt-home-moments__visual img {
  display: block;
  width: min(37rem, 100%);
  margin-left: auto;
  aspect-ratio: 1.55;
  border-radius: 0.75rem;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 18px 46px rgba(12, 32, 105, 0.16);
}

.ttt-home-moments__visual::before,
.ttt-home-moments__visual::after {
  content: none;
}

.ttt-home-reaction-bubble {
  position: absolute;
  z-index: 2;
  max-width: 14rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(var(--ttt-home-blue-rgb), 0.24);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.96);
  color: #0f1f64;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.25;
  box-shadow: 0 16px 36px rgba(12, 32, 105, 0.11);
}

.ttt-home-reaction-bubble--top {
  top: 0;
  left: 34%;
  background: #f0edff;
}

.ttt-home-reaction-bubble--left {
  left: 0;
  bottom: 3rem;
  background: #fff9e8;
  border-color: rgba(255, 178, 69, 0.38);
}

.ttt-home-reaction-bubble--right {
  right: 0;
  bottom: 1.6rem;
  background: #f2fbef;
  border-color: rgba(101, 178, 77, 0.3);
}

.ttt-home-moment-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(2rem, 4vw, 3.2rem);
}

.ttt-home-moment-item {
  min-height: 11.25rem;
  padding: 0.35rem 1.2rem 0;
  text-align: left;
}

.ttt-home-moment-item + .ttt-home-moment-item {
  border-left: 1px solid rgba(236, 129, 65, 0.28);
}

.ttt-home-moment-item > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.8rem;
  height: 3.8rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(var(--ttt-home-blue-rgb), 0.12);
  color: var(--ttt-home-blue);
  font-size: 1.55rem;
}

.ttt-home-moment-item--orange > span {
  background: rgba(255, 112, 64, 0.14);
  color: #ee5e31;
}

.ttt-home-moment-item--sky > span {
  background: rgba(86, 173, 232, 0.14);
  color: #338bd6;
}

.ttt-home-moment-item--yellow > span {
  background: rgba(255, 202, 62, 0.22);
  color: #d89400;
}

.ttt-home-moment-item--green > span {
  background: rgba(101, 178, 77, 0.16);
  color: #4fa447;
}

.ttt-home-moment-item--blue > span {
  background: rgba(101, 178, 77, 0.16);
  color: #4fa447;
}

.ttt-home-moment-item--sky > span {
  background: rgba(118, 107, 255, 0.13);
  color: #766bff;
}

.ttt-home-moment-item h3 {
  margin-bottom: 0.45rem;
  color: var(--ttt-home-ink);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.16;
  text-align: center;
}

.ttt-home-moment-item p {
  margin-bottom: 0;
  color: #1f2e66;
  font-size: 0.84rem;
  line-height: 1.42;
}

.ttt-home-social {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 5vw, 4.2rem);
  background: #ffffff;
}

.ttt-home-testimonial-row {
  max-width: 58rem;
  margin: 0 auto;
  gap: 1.25rem;
}

.ttt-home-testimonial {
  position: relative;
  min-height: 13.2rem;
  overflow: hidden;
  padding: 1.55rem 1.45rem 1.25rem;
  border-radius: 0.55rem;
  box-shadow: 0 16px 38px rgba(12, 32, 105, 0.1);
}

.ttt-home-testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 0.28rem;
  background: var(--testimonial-accent, var(--ttt-home-blue));
}

.ttt-home-testimonial::after {
  content: "\201D";
  position: absolute;
  right: 1.1rem;
  bottom: -1rem;
  color: rgba(var(--ttt-home-blue-rgb), 0.08);
  font-family: Georgia, serif;
  font-size: 6.5rem;
  line-height: 1;
  pointer-events: none;
}

.ttt-home-testimonial--blue {
  --testimonial-accent: var(--ttt-home-group-green);
}

.ttt-home-testimonial--green {
  --testimonial-accent: var(--ttt-home-group-green);
  transform: translateY(0.45rem);
}

.ttt-home-testimonial--orange {
  --testimonial-accent: var(--ttt-home-group-green);
}

.ttt-home-social .ttt-home-testimonial small,
.ttt-home-testimonial--green small {
  background: #eaf8e6;
  color: #348b38;
}

.ttt-home-testimonial p {
  position: relative;
  z-index: 1;
  color: #14235f;
  font-size: 0.8rem;
  font-weight: 850;
}

.ttt-home-testimonial__head::before {
  content: "\201C";
  display: block;
  height: 1.7rem;
  color: rgba(var(--ttt-home-blue-rgb), 0.1);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.7;
}

.ttt-home-steps {
  padding: clamp(2.2rem, 4vw, 3.1rem) 0 clamp(2.5rem, 4vw, 3.35rem);
  background:
    linear-gradient(180deg, rgba(var(--ttt-home-blue-rgb), 0.08), rgba(var(--ttt-home-blue-rgb), 0.045)),
    #f2f7ff;
  text-align: center;
}

.ttt-home-steps::before,
.ttt-home-steps::after {
  content: none;
}

.ttt-home-steps__intro {
  max-width: none;
  margin-bottom: 1.5rem;
}

.ttt-home-steps__intro h2 {
  margin-bottom: 0;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.06;
}

.ttt-home-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4.25rem);
  align-items: stretch;
}

.ttt-home-step {
  min-height: 12rem;
  justify-items: start;
  padding: 2.15rem 1.5rem 1.35rem;
  border: 1px solid rgba(var(--ttt-home-blue-rgb), 0.19);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 32px rgba(12, 32, 105, 0.07);
  text-align: left;
}

.ttt-home-step:not(:last-child)::after {
  right: -3.15rem;
  top: 50%;
  width: 2rem;
  height: 1rem;
  background: transparent;
  border-top: 2px dotted #8a9abf;
  -webkit-mask: none;
  mask: none;
  transform: translateY(-50%);
}

.ttt-home-step__number {
  top: 1.15rem;
  left: 1.45rem;
  width: 2.2rem;
  height: 2.2rem;
  background: #d8d2ff;
  color: #2436d6;
  font-size: 1.05rem;
}

.ttt-home-step i {
  position: absolute;
  top: 1.15rem;
  right: 1.35rem;
  width: 4.8rem;
  height: 4.8rem;
  margin: 0;
  background: rgba(116, 125, 255, 0.1);
  color: #6176f6;
  box-shadow: none;
  transform: rotate(-9deg);
}

.ttt-home-step h3 {
  margin-top: 4.15rem;
  font-size: 1rem;
}

.ttt-home-faq {
  padding: 0;
  background: #f5f4ff;
  text-align: left;
}

.ttt-home-faq__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(24rem, 1.28fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: 100%;
  max-width: none;
  padding: clamp(2.2rem, 5vw, 4rem) max(1.25rem, calc((100vw - 1110px) / 2 + 1.25rem));
  border: 1px solid rgba(129, 128, 245, 0.18);
  border-right: 0;
  border-left: 0;
  background:
    radial-gradient(circle at 12% 28%, rgba(116, 125, 255, 0.1), transparent 18rem),
    linear-gradient(180deg, #f7f6ff, #f2f5ff);
}

.ttt-home-faq__copy {
  max-width: 25rem;
}

.ttt-home-faq__copy h1,
.ttt-home-faq__copy h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.02;
}

.ttt-home-faq__copy > p:not(.ttt-home-help) {
  margin-bottom: 1.3rem;
  color: #34436d;
  font-size: 0.98rem;
  line-height: 1.45;
}

.ttt-home-faq-link {
  display: inline-flex;
  width: fit-content;
  min-height: 2.75rem;
  margin-bottom: 1.25rem;
  padding: 0 1.1rem;
  border: 1px solid rgba(116, 125, 255, 0.24);
  border-radius: 0.5rem;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(12, 32, 105, 0.06);
}

.ttt-home-help {
  display: block;
  color: #283667;
  font-size: 0.82rem;
  line-height: 1.4;
}

.ttt-home-help a {
  color: #5b6def;
  font-weight: 900;
  text-decoration: none;
}

.ttt-home-faq-grid {
  display: grid;
  columns: auto;
  gap: 0;
  max-width: 40rem;
  margin: 0;
}

.ttt-home-faq-item {
  min-height: 0;
  margin: 0;
  border-color: rgba(129, 128, 245, 0.18);
  border-radius: 0;
  box-shadow: none;
}

.ttt-home-faq-item:first-child {
  border-radius: 0.5rem 0.5rem 0 0;
}

.ttt-home-faq-item:last-child {
  border-radius: 0 0 0.5rem 0.5rem;
}

.ttt-home-faq-item + .ttt-home-faq-item {
  border-top: 0;
}

.ttt-home-faq-toggle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 3.65rem;
  padding: 0.85rem 1.15rem;
  border-radius: inherit;
}

.ttt-home-faq-toggle strong {
  font-size: 0.92rem;
  font-weight: 900;
}

.ttt-home-faq-item p {
  max-height: 0;
  margin: 0 1.15rem;
  font-size: 0.86rem;
}

.ttt-home-faq-item.is-open p {
  max-height: 8rem;
  margin: -0.35rem 1.15rem 1rem;
}

.ttt-faq-page__hero,
.ttt-faq-page__section {
  position: relative;
  overflow: hidden;
}

.ttt-faq-page__hero {
  padding-block: clamp(3.25rem, 7vw, 5.75rem);
  background: #ffffff;
}

.ttt-faq-page__section {
  padding-block: clamp(2.5rem, 6vw, 5rem);
  background: #f4f2ff;
}

.ttt-faq-page__section::before,
.ttt-faq-page__section::after {
  content: none;
}

.ttt-faq-page__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  width: min(calc(100% - 2rem), 58rem);
}

.ttt-faq-page .ttt-faq-page__copy {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.ttt-faq-page .ttt-faq-page__copy h1 {
  font-size: clamp(2.25rem, 4.4vw, 3.75rem);
  line-height: 0.98;
}

.ttt-faq-page .ttt-faq-page__copy h1 em {
  color: #766bff;
}

.ttt-faq-page .ttt-faq-page__copy > p:not(.ttt-home-help) {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.ttt-faq-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
}

.ttt-faq-page .ttt-faq-page__actions .ttt-home-btn--primary,
.ttt-faq-page .ttt-faq-page__actions .ttt-home-btn--secondary {
  border-color: #766bff;
  background: #766bff;
  color: #ffffff;
}

.ttt-faq-page .ttt-faq-page__actions .ttt-home-btn--primary:hover,
.ttt-faq-page .ttt-faq-page__actions .ttt-home-btn--primary:focus-visible,
.ttt-faq-page .ttt-faq-page__actions .ttt-home-btn--secondary:hover,
.ttt-faq-page .ttt-faq-page__actions .ttt-home-btn--secondary:focus-visible {
  border-color: #6256e8;
  background: #6256e8;
  color: #ffffff;
  transform: translateY(-2px);
}

.ttt-faq-page .ttt-home-help a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.ttt-faq-page .ttt-home-help a::after {
  content: "";
  width: 0.78em;
  height: 0.78em;
  background: currentColor;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 50% 65%, 0 65%, 0 35%, 50% 35%);
  transition: transform 0.18s ease;
}

.ttt-faq-page .ttt-home-help a:hover::after,
.ttt-faq-page .ttt-home-help a:focus-visible::after {
  transform: translateX(0.18rem);
}

.ttt-faq-page__list {
  max-width: none;
  gap: clamp(1.1rem, 2.5vw, 1.5rem);
}

.ttt-faq-page__group {
  display: grid;
  gap: 0;
}

.ttt-faq-page__group-title {
  margin: 0 0 0.55rem 0.35rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #766bff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.ttt-faq-page__group .ttt-faq-page__item {
  border-radius: 0;
}

.ttt-faq-page__group .ttt-faq-page__item:first-of-type {
  border-radius: 0.5rem 0.5rem 0 0;
}

.ttt-faq-page__group .ttt-faq-page__item:last-of-type {
  border-radius: 0 0 0.5rem 0.5rem;
}

@media (max-width: 980px) {
  .ttt-home-perspectives__stage,
  .ttt-home-moments__hero,
  .ttt-home-faq__panel {
    grid-template-columns: 1fr;
  }

  .ttt-home-perspectives__stage {
    max-width: 34rem;
    margin-inline: auto;
  }

  .ttt-home-perspectives__stage::before,
  .ttt-home-perspectives__stage::after {
    content: none;
  }

  .ttt-home-perspective-card {
    min-height: 0;
  }

  .ttt-home-moments__copy,
  .ttt-home-faq__copy {
    max-width: 38rem;
    margin-inline: auto;
    text-align: center;
  }

  .ttt-home-moments__visual {
    max-width: 42rem;
    margin-inline: auto;
  }

  .ttt-home-moments__visual img {
    margin-inline: auto;
  }

  .ttt-home-moment-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
  }

  .ttt-home-moment-item,
  .ttt-home-moment-item + .ttt-home-moment-item {
    min-height: 0;
    padding: 0;
    border-left: 0;
    text-align: center;
  }

  .ttt-home-moment-item:last-child {
    grid-column: 1 / -1;
    max-width: 18rem;
    margin-inline: auto;
  }

  .ttt-home-faq-link {
    margin-right: auto;
    margin-left: auto;
  }

  .ttt-home-faq-grid {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .ttt-home-perspectives__intro h2 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .ttt-home-venn__circles {
    width: min(18rem, 100%);
    height: 9.5rem;
  }

  .ttt-home-venn__circle {
    width: 9.5rem;
    height: 9.5rem;
    font-size: 2.4rem;
  }

  .ttt-home-venn__circle--self {
    left: 0.4rem;
  }

  .ttt-home-venn__circle--group {
    right: 0.4rem;
  }

  .ttt-home-moments__visual {
    min-height: 0;
    padding: 0;
  }

  .ttt-home-moment-list,
  .ttt-home-steps__grid {
    grid-template-columns: 1fr;
  }

  .ttt-home-moment-item:last-child {
    grid-column: auto;
  }

  .ttt-home-testimonial--green {
    transform: none;
  }

  .ttt-home-step:not(:last-child)::after {
    content: none;
  }

  .ttt-home-step {
    min-height: 0;
  }
}

@media (max-width: 460px) {
  .ttt-home-perspective-card {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .ttt-home-mini-report span {
    grid-template-columns: 4.2rem 1fr;
  }

  .ttt-home-moments__copy h2,
  .ttt-home-faq__copy h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .ttt-home-moments__visual {
    min-height: 27rem;
  }

  .ttt-home-faq__panel {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

/* Homepage visual-scale refinement against the approved mockup. */
.ttt-home-hero {
  padding: clamp(1.55rem, 3vw, 2.2rem) 0 clamp(1.55rem, 3vw, 2.05rem);
}

.ttt-home-hero__copy h1 {
  font-size: clamp(2.75rem, 4.35vw, 4.15rem);
  line-height: 0.98;
}

.ttt-home-lede {
  font-size: 0.98rem;
  line-height: 1.48;
}

.ttt-home-same {
  padding-bottom: 1.85rem;
}

.ttt-home-same__panel {
  min-height: 17.25rem;
  padding-top: 2.45rem;
  padding-bottom: 2.45rem;
}

.ttt-home-same h2,
.ttt-home-break h2 {
  font-size: clamp(2.2rem, 3.3vw, 3.25rem);
}

.ttt-home-script-line {
  margin-bottom: 1.45rem;
  font-size: clamp(1.08rem, 1.65vw, 1.32rem);
}

.ttt-home-break {
  padding: 0.7rem 0 1.9rem;
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 111, 97, 0.11), transparent 18rem),
    linear-gradient(180deg, #ffffff 0%, rgba(255, 247, 245, 0.8) 100%);
}

.ttt-home-mini-grid {
  margin-top: 1.55rem;
}

.ttt-home-mini-grid .ttt-home-icon {
  width: 3.2rem;
  height: 3.2rem;
  padding: 0.82rem;
  background: rgba(255, 111, 97, 0.13);
  color: var(--ttt-home-coral);
}

.ttt-home-perspectives {
  padding-top: clamp(2.05rem, 4vw, 3rem);
  padding-bottom: clamp(2.05rem, 4vw, 3rem);
}

.ttt-home-perspectives__intro {
  margin-bottom: clamp(1.55rem, 3vw, 2.25rem);
}

.ttt-home-perspectives__intro h2 {
  font-size: clamp(2.9rem, 4.8vw, 4.6rem);
  line-height: 0.86;
}

.ttt-home-perspectives__intro p {
  font-size: 0.98rem;
  font-weight: 650;
}

.ttt-home-perspectives__stage {
  grid-template-columns: minmax(14rem, 17.2rem) minmax(15rem, 0.9fr) minmax(14rem, 17.2rem);
  gap: clamp(1.3rem, 3vw, 2.45rem);
  max-width: 980px;
  margin-inline: auto;
}

.ttt-home-perspective-card {
  min-height: 20.5rem;
  padding: 2.7rem 1.25rem 1.25rem;
}

.ttt-home-perspective-card__badge {
  width: 3.65rem;
  height: 3.65rem;
  top: -1.35rem;
  font-size: 1.5rem;
}

.ttt-home-perspective-card h3,
.ttt-home-venn__caption h3 {
  font-size: 1rem;
}

.ttt-home-perspective-card p,
.ttt-home-venn__caption p {
  font-size: 0.78rem;
}

.ttt-home-mini-report {
  padding: 0.82rem 0.9rem;
}

.ttt-home-mini-report span {
  margin-top: 0.33rem;
}

.ttt-home-venn__circles {
  width: 17rem;
  height: 9.35rem;
}

.ttt-home-venn__circle {
  width: 9.35rem;
  height: 9.35rem;
}

.ttt-home-venn__circle {
  font-size: 2.55rem;
}

.ttt-home-venn__caption::before {
  height: 1.85rem;
  margin-bottom: 0.55rem;
}

.ttt-home-reveal-trust span {
  font-size: 0.76rem;
}

.ttt-home-moments {
  padding-top: clamp(2.4rem, 4vw, 3.35rem);
  padding-bottom: clamp(2.35rem, 4vw, 3.25rem);
}

.ttt-home-moments__hero {
  grid-template-columns: minmax(24rem, 0.92fr) minmax(30rem, 1.08fr);
  gap: clamp(2rem, 4vw, 3.5rem);
}

.ttt-home-moments__copy h2 {
  font-size: clamp(2.55rem, 4vw, 3.45rem);
  line-height: 1.02;
}

.ttt-home-moments__copy p {
  font-size: 0.96rem;
}

.ttt-home-moments__visual {
  min-height: 17rem;
  padding-top: 0;
}

.ttt-home-moments__visual img {
  width: min(36rem, 100%);
}

.ttt-home-reaction-bubble {
  max-width: 13rem;
  padding: 0.72rem 0.9rem;
  font-size: 0.92rem;
}

.ttt-home-moment-list {
  margin-top: clamp(1.85rem, 3.4vw, 2.7rem);
}

.ttt-home-moment-item {
  min-height: 9.4rem;
}

.ttt-home-moment-item > span {
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 0.82rem;
  font-size: 1.32rem;
}

.ttt-home-moment-item h3 {
  font-size: 0.92rem;
}

.ttt-home-moment-item p {
  font-size: 0.78rem;
}

.ttt-home-social {
  padding-top: clamp(2.35rem, 4vw, 3.25rem);
  padding-bottom: clamp(2.4rem, 4vw, 3.35rem);
  background:
    radial-gradient(circle at 10% 14%, rgba(var(--ttt-home-group-green-rgb), 0.12), transparent 18rem),
    radial-gradient(circle at 92% 88%, rgba(var(--ttt-home-group-green-rgb), 0.1), transparent 16rem),
    linear-gradient(180deg, #ffffff 0%, rgba(244, 251, 241, 0.88) 100%);
}

.ttt-home-social__intro h2 {
  margin-bottom: 1.35rem;
  font-size: clamp(2.25rem, 3.55vw, 3.2rem);
}

.ttt-home-social__intro h2 em {
  color: var(--ttt-home-group-green);
}

.ttt-home-testimonial {
  min-height: 11.8rem;
  padding: 1.35rem 1.25rem 1.12rem;
  border-color: rgba(var(--ttt-home-group-green-rgb), 0.24);
  box-shadow: 0 16px 38px rgba(36, 112, 44, 0.09);
}

.ttt-home-testimonial p {
  font-size: 0.75rem;
}

.ttt-home-steps {
  padding-top: clamp(2rem, 3.5vw, 2.75rem);
  padding-bottom: clamp(2.1rem, 3.5vw, 2.9rem);
}

.ttt-home-steps__intro h2 {
  font-size: clamp(1.8rem, 2.55vw, 2.35rem);
}

.ttt-home-step {
  min-height: 11rem;
  padding: 1.9rem 1.35rem 1.18rem;
}

.ttt-home-step i {
  width: 4.15rem;
  height: 4.15rem;
  font-size: 1.55rem;
}

.ttt-home-step h3 {
  margin-top: 3.65rem;
}

.ttt-home-faq__panel {
  padding-top: clamp(2.35rem, 4.5vw, 3.4rem);
  padding-bottom: clamp(2.45rem, 4.5vw, 3.6rem);
}

.ttt-home-faq__copy h2 {
  font-size: clamp(2rem, 3vw, 2.65rem);
  line-height: 1.02;
}

.ttt-home-faq-toggle {
  min-height: 3.25rem;
}

.ttt-home-final__card h2 {
  font-size: clamp(2.2rem, 3.6vw, 3.25rem);
}

@media (max-width: 980px) {
  .ttt-home-moments__hero {
    grid-template-columns: 1fr;
  }

  .ttt-home-moments__copy h2 {
    max-width: 34rem;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 760px) {
  .ttt-home-hero__copy h1 {
    font-size: clamp(2.25rem, 10.2vw, 3.2rem);
  }

  .ttt-home-perspectives__intro h2 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }

  .ttt-home-perspective-card {
    min-height: 0;
  }

  .ttt-home-moments__copy h2 {
    font-size: clamp(2.15rem, 9vw, 3rem);
  }
}

/* Homepage typography consistency pass. Hero stays largest; section headers align. */
.ttt-home-same h2,
.ttt-home-break h2,
.ttt-home-perspectives__intro h2,
.ttt-home-moments__copy h2,
.ttt-home-social__intro h2,
.ttt-home-steps__intro h2,
.ttt-home-faq__copy h2,
.ttt-home-final__card h2 {
  font-size: clamp(2.2rem, 3.3vw, 3.25rem);
  line-height: 1.02;
}

.ttt-home-lede,
.ttt-home-same p,
.ttt-home-break p,
.ttt-home-perspectives__intro p,
.ttt-home-perspective-card p,
.ttt-home-venn__caption p,
.ttt-home-reveal-trust span,
.ttt-home-moments__copy p,
.ttt-home-reaction-bubble,
.ttt-home-moment-item p,
.ttt-home-testimonial p,
.ttt-home-steps__intro p,
.ttt-home-step p,
.ttt-home-faq__copy > p:not(.ttt-home-help),
.ttt-home-faq-item p,
.ttt-home-final__card p,
.ttt-home-note {
  font-weight: 400;
}

.ttt-home-perspectives__intro p,
.ttt-home-moments__copy p,
.ttt-home-reaction-bubble,
.ttt-home-testimonial p,
.ttt-home-step p,
.ttt-home-faq__copy > p:not(.ttt-home-help),
.ttt-home-final__card p {
  color: #263569;
  font-size: 0.98rem;
  line-height: 1.48;
}

.ttt-home-perspective-card p,
.ttt-home-venn__caption p,
.ttt-home-moment-item p,
.ttt-home-faq-item p {
  color: #314171;
  font-size: 0.84rem;
  line-height: 1.45;
}

.ttt-home-reveal-trust span,
.ttt-home-note {
  color: #253764;
  font-size: 0.82rem;
  line-height: 1.35;
}

.ttt-home-perspectives__intro h2 {
  line-height: 1.02;
}

.ttt-home-reaction-bubble,
.ttt-home-testimonial p {
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.48;
}

@media (max-width: 760px) {
  .ttt-home-same h2,
  .ttt-home-break h2,
  .ttt-home-perspectives__intro h2,
  .ttt-home-moments__copy h2,
  .ttt-home-social__intro h2,
  .ttt-home-steps__intro h2,
  .ttt-home-faq__copy h2,
  .ttt-home-final__card h2 {
    font-size: clamp(1.95rem, 9vw, 2.8rem);
  }
}

/* Perspectives responsive layout and Venn icon cleanup. */
.ttt-home-venn__circle i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
}

.ttt-home-venn__circle--self i {
  transform: translateX(-1.05rem);
}

.ttt-home-venn__circle--group i {
  transform: translateX(1.05rem);
}

.ttt-home-venn__spark {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  color: #f06423;
  font-size: 1.45rem;
  transform: translate(-50%, -50%);
}

@media (max-width: 980px) {
  .ttt-home-perspectives__stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 46rem;
  }

  .ttt-home-perspective-card--self {
    order: 1;
  }

  .ttt-home-perspective-card--group {
    order: 2;
  }

  .ttt-home-venn {
    grid-column: 1 / -1;
    order: 3;
  }
}

@media (max-width: 560px) {
  .ttt-home-perspectives__stage {
    grid-template-columns: 1fr;
    max-width: 24rem;
  }

  .ttt-home-venn {
    grid-column: auto;
  }

  .ttt-home-venn__circle--self i {
    transform: translateX(-0.9rem);
  }

  .ttt-home-venn__circle--group i {
    transform: translateX(0.9rem);
  }
}

/* Browser-comment refinement pass. */
@media (min-width: 981px) {
  .ttt-home-perspectives__intro {
    max-width: 62rem;
  }

  .ttt-home-perspectives__intro h2 {
    white-space: nowrap;
  }
}

.ttt-home-perspectives__stage::before,
.ttt-home-perspectives__stage::after {
  content: none;
}

.ttt-home-perspective-card {
  overflow: visible;
  justify-content: flex-start;
  min-height: 0;
}

.ttt-home-mini-report {
  margin-top: 1.25rem;
}

@media (min-width: 981px) {
  .ttt-home-perspective-card--self::after,
  .ttt-home-perspective-card--group::after {
    content: "";
    position: absolute;
    top: 50%;
    z-index: 0;
    width: clamp(4.25rem, 7vw, 5.4rem);
    border-top: 2px dotted rgba(16, 31, 86, 0.48);
    transform: translateY(-50%);
  }

  .ttt-home-perspective-card--self::after {
    right: calc(clamp(4.25rem, 7vw, 5.4rem) * -1);
  }

  .ttt-home-perspective-card--group::after {
    left: calc(clamp(4.25rem, 7vw, 5.4rem) * -1);
  }
}

.ttt-home-venn__caption {
  position: relative;
  padding-top: 2.2rem;
}

.ttt-home-venn__caption::before {
  position: absolute;
  top: -0.2rem;
  left: 50%;
  height: 1.85rem;
  margin: 0;
  transform: translateX(-50%);
}

.ttt-home-venn__caption::after {
  content: "";
  position: absolute;
  top: 1.42rem;
  left: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid #14225f;
  border-bottom: 2px solid #14225f;
  transform: translateX(-50%) rotate(45deg);
}

.ttt-home-reveal-trust {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
}

.ttt-home-moments {
  background:
    linear-gradient(90deg, rgba(255, 178, 69, 0.035), rgba(255, 250, 243, 0.58) 48%, rgba(255, 178, 69, 0.03)),
    #fffdf8;
}

.ttt-home-moments__copy {
  max-width: 34rem;
}

.ttt-home-moments__copy p {
  max-width: 23rem;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.ttt-home-moment-item > span {
  display: flex;
  margin-right: auto;
  margin-left: auto;
}

.ttt-home-testimonial-row {
  align-items: stretch;
}

.ttt-home-testimonial,
.ttt-home-testimonial--green,
.ttt-home-testimonial--orange {
  min-height: 12rem;
  border-top: 1px solid rgba(var(--ttt-home-group-green-rgb), 0.24);
  transform: none;
}

.ttt-home-testimonial::before {
  content: "\201C";
  top: 0.75rem;
  right: auto;
  left: 50%;
  width: auto;
  height: auto;
  background: transparent;
  color: rgba(var(--ttt-home-group-green-rgb), 0.13);
  font-family: Georgia, serif;
  font-size: 4.8rem;
  line-height: 1;
  transform: translateX(-50%);
}

.ttt-home-testimonial::after {
  right: 1.3rem;
  bottom: 0.2rem;
  color: rgba(var(--ttt-home-group-green-rgb), 0.13);
  font-size: 4.8rem;
}

.ttt-home-testimonial__head::before {
  content: none;
}

.ttt-home-audience--social {
  max-width: 58rem;
  margin: 1.6rem auto 0;
  padding: 1.05rem 1rem;
  border-top: 1px solid rgba(var(--ttt-home-blue-rgb), 0.13);
}

.ttt-home-audience--social p {
  margin-bottom: 0.85rem;
}

.ttt-home-steps__grid {
  gap: clamp(1.5rem, 4vw, 3.2rem);
}

.ttt-home-step {
  min-height: 0;
  display: grid;
  justify-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.ttt-home-step:not(:last-child)::after {
  right: -1.65rem;
  top: 1.75rem;
  width: 1.45rem;
  height: 1.45rem;
  background: #9fb0d9;
  border: 0;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h14M13 6l6 6l-6 6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h14M13 6l6 6l-6 6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  transform: none;
}

.ttt-home-step__number {
  position: static;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 0.55rem;
}

.ttt-home-step i {
  position: static;
  width: 4.1rem;
  height: 4.1rem;
  margin-bottom: 0.68rem;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(var(--ttt-home-blue-rgb), 0.11);
  transform: none;
}

.ttt-home-step h3 {
  margin-top: 0;
}

.ttt-home-faq__panel {
  background-color: #f3edff;
  background:
    radial-gradient(circle at 12% 28%, rgba(151, 129, 255, 0.13), transparent 18rem),
    radial-gradient(circle at 88% 76%, rgba(151, 129, 255, 0.12), transparent 18rem),
    linear-gradient(180deg, #f7f1ff, #f2ecff);
}

.ttt-home-faq,
.ttt-home-faq > .ttt-home-faq__panel {
  background-color: #f3edff;
  background-image:
    radial-gradient(circle at 12% 28%, rgba(151, 129, 255, 0.13), transparent 18rem),
    radial-gradient(circle at 88% 76%, rgba(151, 129, 255, 0.12), transparent 18rem),
    linear-gradient(180deg, #f7f1ff, #f2ecff);
}

.ttt-home-faq > .ttt-home-faq__panel::before,
.ttt-home-faq > .ttt-home-faq__panel::after {
  content: none;
}

.ttt-home-faq-link {
  border-color: rgba(129, 118, 255, 0.28);
  color: #766bff;
}

.ttt-home-faq-link .ttt-home-icon,
.ttt-home-help a {
  color: #766bff;
}

.ttt-home-faq-toggle > i {
  color: #766bff;
}

@media (max-width: 980px) {
  .ttt-home-perspective-card--self::after,
  .ttt-home-perspective-card--group::after,
  .ttt-home-step:not(:last-child)::after {
    content: none;
  }
}

/* Browser-comment refinements: flatten panels, align arrows, and tighten icon treatments. */
.ttt-home-same {
  overflow: hidden;
  background: var(--ttt-home-panel);
}

.ttt-home-same__panel {
  background: transparent;
}

.ttt-home-final {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--ttt-home-panel);
}

.ttt-home-final > .ttt-home-wrap {
  width: min(100% - 2rem, 1110px);
  max-width: 1110px;
}

.ttt-home-final__card {
  min-height: clamp(24rem, 42vw, 30rem);
  padding: clamp(3.8rem, 7vw, 5.6rem) 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

@media (min-width: 981px) {
  .ttt-home-perspective-card--self::after,
  .ttt-home-perspective-card--group::after {
    top: 38%;
    width: 1.45rem;
    height: 1.45rem;
    border: 0;
    background: rgba(16, 31, 86, 0.48);
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h14M13 6l6 6l-6 6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h14M13 6l6 6l-6 6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
    transform: translateY(-50%);
  }

  .ttt-home-perspective-card--self::after {
    right: -2.85rem;
  }

  .ttt-home-perspective-card--group::after {
    left: -2.85rem;
    transform: translateY(-50%) rotate(180deg);
  }
}

.ttt-home-venn__caption {
  padding-top: 1.85rem;
}

.ttt-home-venn__caption::before,
.ttt-home-venn__caption::after {
  content: none;
}

.ttt-home-venn__arrow {
  position: absolute;
  top: -0.25rem;
  left: 50%;
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  color: #14225f;
  transform: translateX(-50%);
}

.ttt-home-venn__arrow .ttt-home-icon {
  width: 100%;
  height: 100%;
  stroke-width: 2.15;
}

.ttt-home-venn__spark {
  color: var(--ttt-home-group-green);
  font-size: 2.08rem;
  filter: drop-shadow(0 1px 3px rgba(var(--ttt-home-group-green-rgb), 0.34));
}

.ttt-home-step {
  position: relative;
  padding-top: 0.6rem;
}

.ttt-home-step__number {
  position: absolute;
  top: 0;
  left: calc(50% - 2.4rem);
  z-index: 2;
  margin: 0;
}

.ttt-home-step i {
  margin-top: 1.25rem;
}

.ttt-home-faq,
.ttt-home-faq > .ttt-home-faq__panel,
.ttt-home-faq__panel {
  background: #f4f2ff;
  background-image: none;
}

.ttt-faq-page .ttt-faq-page__section {
  background-color: #f4f2ff;
  background-image:
    url("data:image/svg+xml,%3Csvg width='118' height='142' viewBox='0 0 118 142' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M27 44c2-22 18-36 40-33 20 3 33 18 30 38-4 27-35 27-39 56' fill='none' stroke='%23766bff' stroke-width='10' stroke-linecap='round' stroke-linejoin='round' opacity='.16'/%3E%3Cpath d='M51 130h.2' fill='none' stroke='%23766bff' stroke-width='13' stroke-linecap='round' opacity='.16'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='104' height='126' viewBox='0 0 104 126' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23 39c2-18 15-29 33-27 17 2 28 15 25 31-3 22-28 23-32 47' fill='none' stroke='%23766bff' stroke-width='8' stroke-linecap='round' stroke-linejoin='round' opacity='.12'/%3E%3Cpath d='M43 113h.2' fill='none' stroke='%23766bff' stroke-width='11' stroke-linecap='round' opacity='.12'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='86' height='104' viewBox='0 0 86 104' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 32c2-15 13-23 27-21 14 2 23 12 20 25-3 18-23 18-26 38' fill='none' stroke='%23766bff' stroke-width='7' stroke-linecap='round' stroke-linejoin='round' opacity='.1'/%3E%3Cpath d='M36 93h.2' fill='none' stroke='%23766bff' stroke-width='9' stroke-linecap='round' opacity='.1'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='92' height='92' viewBox='0 0 92 92' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M46 19v54M19 46h54' fill='none' stroke='%23766bff' stroke-width='8' stroke-linecap='round' opacity='.1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position:
    max(1rem, calc(50% - 39rem)) 42%,
    min(calc(100% - 2rem), calc(50% + 35rem)) 13%,
    max(1rem, calc(50% - 37rem)) 86%,
    min(calc(100% - 2rem), calc(50% + 36rem)) 78%;
  background-size:
    clamp(4.6rem, 9vw, 7.6rem) auto,
    clamp(3.8rem, 7vw, 6rem) auto,
    clamp(3.2rem, 6vw, 5rem) auto,
    clamp(3.2rem, 6vw, 5rem) auto;
}

.ttt-home-testimonial::before {
  top: 0.75rem;
  left: 1.25rem;
  transform: none;
}

/* Browser-comment refinements: FAQ cleanup, hover consistency, and medium-width balance. */
.ttt-home-wrap a:hover,
.ttt-home-wrap a:focus,
.ttt-home-wrap a:focus-visible,
.ttt-home-btn:hover,
.ttt-home-btn:focus,
.ttt-home-btn:focus-visible,
.ttt-home-faq-link:hover,
.ttt-home-faq-link:focus,
.ttt-home-faq-link:focus-visible,
.ttt-home-help a:hover,
.ttt-home-help a:focus,
.ttt-home-help a:focus-visible {
  text-decoration: none;
}

.ttt-home-break {
  padding-top: clamp(1.45rem, 3vw, 2.25rem);
  padding-bottom: clamp(2.1rem, 4vw, 3.2rem);
}

.ttt-home-perspective-card,
.ttt-home-mini-report {
  box-shadow: 0 15px 42px rgba(12, 32, 105, 0.06);
}

.ttt-home-perspective-card--group {
  box-shadow: 0 15px 42px rgba(26, 93, 38, 0.06);
}

.ttt-home-venn__spark {
  filter: drop-shadow(0 1px 3px rgba(var(--ttt-home-group-green-rgb), 0.34));
}

.ttt-home-faq__copy {
  display: grid;
  justify-items: start;
}

.ttt-home-faq-link {
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0 1.35rem;
  border: 1px solid #766bff;
  border-radius: 12px !important;
  background: transparent;
  color: #766bff;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: none;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.12s ease,
    box-shadow 0.12s ease;
}

.ttt-home-faq-link:hover {
  background: rgba(118, 107, 255, 0.08);
  border-color: #766bff;
  color: #766bff;
  transform: translateY(-1px);
}

.ttt-home-help {
  margin: 0;
}

.ttt-home-help a {
  display: inline-flex;
  align-items: center;
  gap: 0.18rem;
  color: #766bff;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.ttt-home-help a .ttt-home-icon {
  width: 0.88em;
  height: 0.88em;
}

.ttt-home-audience--social {
  position: relative;
  margin-top: 2.05rem;
  padding-top: 1.35rem;
  border-top: 0;
}

.ttt-home-audience--social::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 75%;
  height: 1px;
  background: rgba(var(--ttt-home-blue-rgb), 0.13);
  transform: translateX(-50%);
}

@media (max-width: 980px) and (min-width: 761px) {
  .ttt-home-testimonial-row {
    max-width: 38rem;
  }
}

@media (max-width: 980px) {
  .ttt-home-faq__copy {
    justify-items: center;
  }
}

/* Browser-comment refinements: tablet spacing and section cleanup. */
.ttt-home-same {
  padding-bottom: 0;
}

.ttt-home-break {
  padding-top: clamp(2.05rem, 4vw, 3.2rem);
  padding-bottom: clamp(2.45rem, 5vw, 3.9rem);
}

.ttt-home-faq__panel,
.ttt-home-faq > .ttt-home-faq__panel {
  border: 0;
}

.ttt-home-audience--social {
  margin-top: 2.55rem;
  padding-top: 1.75rem;
}

.ttt-home-audience--social p {
  margin-bottom: 1rem;
}

.ttt-home-step {
  padding-top: 0.35rem;
}

.ttt-home-step__number {
  top: 0.72rem;
  left: calc(50% - 2.85rem);
}

.ttt-home-step i {
  margin-top: 1.55rem;
}

@media (max-width: 980px) and (min-width: 761px) {
  .ttt-home-hero__visual {
    width: 100%;
    max-width: none;
    margin-right: auto;
    margin-left: auto;
  }

  .ttt-home-hero__visual > img {
    aspect-ratio: 1.62;
    object-position: center;
  }

  .ttt-home-reveal-card {
    left: 0.75rem;
    bottom: 0.75rem;
    width: min(10.5rem, calc(100% - 1.5rem));
    padding: 0.75rem;
  }

  .ttt-home-reveal-card p {
    font-size: 0.54rem;
  }

  .ttt-home-reveal-card strong {
    font-size: 0.58rem;
  }

  .ttt-home-reveal-card span {
    font-size: 0.62rem;
  }

  .ttt-home-reveal-card b {
    font-size: 0.7rem;
  }

  .ttt-home-avatar-row i {
    width: 1.05rem;
    height: 1.05rem;
  }

  .ttt-home-testimonial-row {
    max-width: 26rem;
  }
}

/* Browser-comment refinements: note spacing, FAQ help placement, and blue steps. */
.ttt-home-hero .ttt-home-actions + .ttt-home-note,
.ttt-home-final__card .ttt-home-actions + .ttt-home-note {
  margin-top: 1.05rem;
}

.ttt-home-final__card .ttt-home-note {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: #253764;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.3;
}

.ttt-home-final__card .ttt-home-note .ttt-home-icon {
  color: var(--ttt-home-blue);
  font-size: 1rem;
}

.ttt-home-faq__panel > .ttt-home-help {
  grid-column: 2;
  margin-top: 0.6rem;
}

.ttt-home-step__number {
  background: var(--ttt-home-blue);
  color: #ffffff;
}

.ttt-home-step i {
  color: var(--ttt-home-blue);
}

@media (max-width: 980px) {
  .ttt-home-faq__panel > .ttt-home-help {
    grid-column: 1;
    justify-self: center;
    text-align: center;
  }

  .ttt-home-faq__copy {
    max-width: min(100%, 54rem);
  }

  .ttt-home-faq__copy h2 {
    max-width: 54rem;
  }
}

.ttt-home-faq__copy h2 em {
  color: #766bff;
  font-style: italic;
  font-weight: 500;
}

.ttt-home-audience--social strong {
  color: var(--ttt-home-group-green);
}

.ttt-home-final__card > div {
  display: grid;
  justify-items: center;
  text-align: center;
}

.ttt-home-final__card .ttt-home-actions {
  justify-content: center;
  width: 100%;
}

.ttt-home-final__card .ttt-home-note {
  justify-content: center;
  width: 100%;
  text-align: center;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-faq__panel {
  position: relative;
  overflow: hidden;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-faq__panel::before,
.ttt-home:not(.ttt-faq-page) .ttt-home-faq__panel::after {
  content: "";
  position: absolute;
  z-index: 0;
  display: block;
  aspect-ratio: 1;
  background: rgba(118, 107, 255, 0.1);
  -webkit-mask: var(--ttt-home-icon-question) center / contain no-repeat;
  mask: var(--ttt-home-icon-question) center / contain no-repeat;
  pointer-events: none;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-faq__panel::before {
  left: clamp(1rem, 9vw, 7rem);
  bottom: 14%;
  width: clamp(3.7rem, 6vw, 5.4rem);
  transform: rotate(-9deg);
}

.ttt-home:not(.ttt-faq-page) .ttt-home-faq__panel::after {
  top: 13%;
  right: clamp(1rem, 8vw, 6.4rem);
  width: clamp(3.2rem, 5vw, 4.7rem);
  transform: rotate(8deg);
}

/* Homepage section color rhythm and restrained decorative marks. */
.ttt-home-hero,
.ttt-home-same,
.ttt-home-break,
.ttt-home-perspectives,
.ttt-home-moments,
.ttt-home-social,
.ttt-home-steps,
.ttt-home-faq,
.ttt-home-final {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.ttt-home-hero::before,
.ttt-home-hero::after,
.ttt-home-same::before,
.ttt-home-same::after,
.ttt-home-break::before,
.ttt-home-break::after,
.ttt-home-perspectives::before,
.ttt-home-perspectives::after,
.ttt-home-moments::before,
.ttt-home-moments::after,
.ttt-home-social::before,
.ttt-home-social::after,
.ttt-home-faq::before,
.ttt-home-faq::after,
.ttt-home-final::before,
.ttt-home-final::after,
.ttt-home-steps__grid::before,
.ttt-home-steps__grid::after {
  content: "";
  position: absolute;
  z-index: 0;
  display: block;
  width: var(--ttt-section-mark-size, clamp(4.5rem, 8vw, 7.5rem));
  aspect-ratio: 1;
  background: var(--ttt-section-mark-color, rgba(var(--ttt-home-blue-rgb), 0.12));
  -webkit-mask: var(--ttt-section-mark-icon, var(--ttt-home-icon-spark)) center / contain no-repeat;
  mask: var(--ttt-section-mark-icon, var(--ttt-home-icon-spark)) center / contain no-repeat;
  opacity: var(--ttt-section-mark-opacity, 1);
  pointer-events: none;
}

.ttt-home-hero > *,
.ttt-home-same > *,
.ttt-home-break > *,
.ttt-home-perspectives > *,
.ttt-home-moments > *,
.ttt-home-social > *,
.ttt-home-steps > *,
.ttt-home-faq > *,
.ttt-home-final > * {
  position: relative;
  z-index: 1;
}

.ttt-home-same__panel::before,
.ttt-home-same__panel::after,
.ttt-home-steps::before,
.ttt-home-steps::after,
.ttt-home-final__card::before,
.ttt-home-final__card::after {
  content: none;
}

.ttt-home-hero {
  background: #ffffff;
}

.ttt-home-hero::before,
.ttt-home-hero::after {
  content: none;
}

.ttt-home-same::before {
  --ttt-section-mark-icon: var(--ttt-home-icon-loop);
  --ttt-section-mark-color: rgba(var(--ttt-home-blue-rgb), 0.1);
  top: 18%;
  right: clamp(1.4rem, 9vw, 7.6rem);
  transform: rotate(12deg);
}

.ttt-home-same::after {
  --ttt-section-mark-icon: var(--ttt-home-icon-loop);
  --ttt-section-mark-color: rgba(var(--ttt-home-blue-rgb), 0.08);
  left: clamp(1.4rem, 8vw, 6.5rem);
  bottom: 15%;
  width: clamp(3.8rem, 6vw, 5.6rem);
  transform: rotate(-16deg) scaleX(-1);
}

.ttt-home-break::before {
  --ttt-section-mark-icon: var(--ttt-home-icon-spark);
  --ttt-section-mark-color: rgba(255, 111, 97, 0.14);
  top: 16%;
  right: clamp(1.5rem, 10vw, 8.2rem);
  transform: rotate(13deg);
}

.ttt-home-break::after {
  --ttt-section-mark-icon: var(--ttt-home-icon-spark);
  --ttt-section-mark-color: rgba(255, 111, 97, 0.09);
  left: clamp(1rem, 9vw, 7.4rem);
  bottom: 17%;
  width: clamp(3.75rem, 6vw, 5.4rem);
  transform: rotate(-18deg);
}

.ttt-home-perspectives {
  background: #ffffff;
}

.ttt-home-perspectives::before {
  --ttt-section-mark-icon: var(--ttt-home-icon-eye);
  --ttt-section-mark-color: rgba(var(--ttt-home-blue-rgb), 0.09);
  top: 14%;
  left: clamp(1.2rem, 7vw, 5.8rem);
  transform: rotate(-10deg);
}

.ttt-home-perspectives::after {
  --ttt-section-mark-icon: var(--ttt-home-icon-users);
  --ttt-section-mark-color: rgba(var(--ttt-home-group-green-rgb), 0.1);
  right: clamp(1.2rem, 8vw, 6.6rem);
  bottom: 12%;
  transform: rotate(9deg);
}

.ttt-home-moments::before,
.ttt-home-moments::after {
  content: none;
}

.ttt-home-social {
  background: #f4fbf1;
}

.ttt-home-social::before {
  --ttt-section-mark-icon: var(--ttt-home-icon-users);
  --ttt-section-mark-color: rgba(var(--ttt-home-group-green-rgb), 0.13);
  top: 13%;
  right: clamp(1.2rem, 8vw, 6.4rem);
  transform: rotate(-7deg);
}

.ttt-home-social::after {
  --ttt-section-mark-icon: var(--ttt-home-icon-chat);
  --ttt-section-mark-color: rgba(var(--ttt-home-group-green-rgb), 0.1);
  left: clamp(1rem, 7vw, 5.8rem);
  bottom: 16%;
  width: clamp(4rem, 7vw, 6.4rem);
  transform: rotate(11deg);
}

.ttt-home-steps {
  background: #f2f7ff;
}

.ttt-home-steps__grid {
  position: relative;
  z-index: 1;
}

.ttt-home-steps__grid::before,
.ttt-home-steps__grid::after {
  content: none;
}

.ttt-home-faq::before {
  --ttt-section-mark-icon: var(--ttt-home-icon-question);
  --ttt-section-mark-color: rgba(118, 107, 255, 0.12);
  top: 18%;
  left: clamp(1rem, 8vw, 6.8rem);
  transform: rotate(-8deg);
}

.ttt-home-faq::after {
  --ttt-section-mark-icon: var(--ttt-home-icon-chat);
  --ttt-section-mark-color: rgba(118, 107, 255, 0.09);
  right: clamp(1.2rem, 8vw, 6.6rem);
  bottom: 16%;
  width: clamp(3.7rem, 6vw, 5.7rem);
  transform: rotate(10deg);
}

.ttt-home-final {
  background: var(--ttt-home-panel);
}

.ttt-home-final::before,
.ttt-home-final::after {
  content: none;
}

.ttt-home-moments__hero::before,
.ttt-home-testimonial-row::before {
  content: "";
  position: absolute;
  z-index: 0;
  display: block;
  aspect-ratio: 1;
  background: var(--ttt-section-mark-color, rgba(var(--ttt-home-blue-rgb), 0.08));
  -webkit-mask: var(--ttt-section-mark-icon, var(--ttt-home-icon-spark)) center / contain no-repeat;
  mask: var(--ttt-section-mark-icon, var(--ttt-home-icon-spark)) center / contain no-repeat;
  pointer-events: none;
}

.ttt-home-moments__hero,
.ttt-home-testimonial-row {
  position: relative;
  z-index: 1;
}

.ttt-home-moments__hero::before {
  content: none;
}

.ttt-home-testimonial-row::before {
  --ttt-section-mark-icon: var(--ttt-home-icon-users);
  --ttt-section-mark-color: rgba(var(--ttt-home-group-green-rgb), 0.09);
  left: 50%;
  bottom: -2.2rem;
  width: clamp(3rem, 4.8vw, 4.6rem);
  transform: translateX(-50%) rotate(11deg);
}

/* Browser-comment refinements: balanced cards, testimonials, and FAQ columns. */
@media (max-width: 980px) {
  .ttt-home-perspectives__stage {
    align-items: stretch;
  }

  .ttt-home-perspective-card {
    height: 100%;
  }

  .ttt-home-venn {
    align-self: center;
  }
}

@media (max-width: 760px) {
  .ttt-home-testimonial-row {
    max-width: min(100% - 2rem, 22rem);
  }
}

@media (min-width: 981px) {
  .ttt-home-perspectives__stage {
    align-items: stretch;
  }

  .ttt-home-venn {
    align-self: center;
  }

  .ttt-home-faq__panel {
    grid-template-columns: minmax(28rem, 0.98fr) minmax(27rem, 1.02fr);
    gap: clamp(2rem, 3vw, 2.8rem);
  }

  .ttt-home-faq__copy {
    grid-column: 1;
    grid-row: 1;
    max-width: 40rem;
  }

  .ttt-home-faq__copy h2 {
    max-width: 40rem;
  }

  .ttt-home-faq-grid {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .ttt-home-faq__panel > .ttt-home-help {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
    margin-top: -0.4rem;
  }
}

@media (max-width: 980px) {
  .ttt-home-faq__panel > .ttt-home-help {
    grid-row: auto;
  }
}

/* Browser-comment refinements: responsive icon scale and centered mobile break grid. */
.ttt-home-mini-grid .ttt-home-icon {
  width: clamp(4rem, 6vw, 5.15rem);
  height: clamp(4rem, 6vw, 5.15rem);
  padding: clamp(1rem, 1.55vw, 1.32rem);
}

.ttt-home-moment-item > span {
  width: clamp(4.4rem, 6.4vw, 5.35rem);
  height: clamp(4.4rem, 6.4vw, 5.35rem);
  font-size: clamp(1.7rem, 2.4vw, 2.05rem);
}

@media (max-width: 760px) {
  .ttt-home-mini-grid {
    width: fit-content;
    max-width: min(100%, 26rem);
    margin-right: auto;
    margin-left: auto;
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: start;
  }

  .ttt-home-mini-grid div {
    justify-content: flex-start;
  }
}

/* Browser-comment refinement: let final CTA line art breathe past the panel. */
.ttt-home-final {
  overflow: visible;
  isolation: isolate;
}

.ttt-home-final__card {
  overflow: visible;
}

.ttt-home-final__card::before,
.ttt-home-final__card::after {
  pointer-events: none;
}

/* Shared public page surface aligned to the current homepage. */
.ttt-public-page {
  background: #ffffff;
  color: var(--ttt-home-ink);
}

.ttt-public-page.landing-page {
  margin-top: 0;
}

.ttt-public-hero {
  padding: clamp(2rem, 5vw, 4.5rem) 0 clamp(2.4rem, 5vw, 4rem);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.ttt-public-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
  gap: clamp(1.8rem, 4vw, 3.4rem);
  align-items: center;
}

.ttt-public-hero--simple {
  text-align: center;
}

.ttt-public-hero--simple .ttt-home-wrap {
  display: grid;
  justify-items: center;
}

.ttt-public-hero h1,
.ttt-public-page .page-hero h1 {
  max-width: 11ch;
  margin: 0 0 0.75rem;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  color: var(--ttt-home-ink);
  font-size: clamp(2.8rem, 5.4vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.ttt-public-hero h1 em,
.ttt-public-page .page-hero h1 em {
  color: var(--ttt-home-heading-blue);
  font-style: italic;
  font-weight: 500;
}

.ttt-public-lede,
.ttt-public-page .page-hero p,
.ttt-public-copy p {
  color: #3d4667;
  font-size: 1.02rem;
  line-height: 1.55;
}

.ttt-public-lede {
  max-width: 31rem;
  margin: 0 0 1.35rem;
}

.ttt-public-hero--simple .ttt-public-lede {
  max-width: 34rem;
  text-align: center;
}

.ttt-public-hero__grid > img {
  width: 100%;
  aspect-ratio: 1.58;
  border-radius: 0.55rem;
  object-fit: cover;
  box-shadow: var(--ttt-home-shadow);
}

.ttt-public-section {
  padding: clamp(2.8rem, 6vw, 4.8rem) 0;
}

.ttt-public-section--compact {
  padding-top: clamp(1.2rem, 3vw, 2.2rem);
}

.ttt-public-section--soft {
  position: relative;
  overflow: hidden;
  background: var(--ttt-home-panel);
}

.ttt-public-section-head {
  max-width: 42rem;
  margin: 0 auto 1.8rem;
  text-align: center;
}

.ttt-public-section-head h2,
.ttt-public-cta__panel h2 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  color: var(--ttt-home-ink);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.ttt-public-card-grid {
  display: grid;
  gap: 1rem;
}

.ttt-public-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ttt-public-card {
  padding: clamp(1.15rem, 2.4vw, 1.7rem);
  border: 1px solid var(--ttt-home-line);
  border-radius: 0.55rem;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(12, 32, 105, 0.06);
}

.ttt-public-card h2,
.ttt-public-card h3,
.ttt-public-page .page-section-card h2,
.ttt-public-page .page-section-card h3 {
  margin: 0 0 0.55rem;
  color: #06145f;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0;
}

.ttt-public-card p,
.ttt-public-card li,
.ttt-public-page .page-section-card p,
.ttt-public-page .page-section-card li {
  color: #314171;
  line-height: 1.55;
}

.ttt-public-card > :last-child,
.ttt-public-page .page-section-card > :last-child {
  margin-bottom: 0;
}

.ttt-public-cta__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 3.5rem);
  align-items: center;
}

.ttt-public-narrow {
  max-width: 760px;
  text-align: center;
}

.ttt-public-narrow h2 {
  margin: 0 auto 0.9rem;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  color: var(--ttt-home-ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.ttt-public-copy {
  display: grid;
  gap: 0.8rem;
}

.ttt-public-copy p {
  margin: 0;
}

.ttt-public-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.ttt-public-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(var(--ttt-home-blue-rgb), 0.2);
  border-radius: 999px;
  background: var(--ttt-home-soft-blue);
  color: #17245c;
  font-size: 0.84rem;
  font-weight: 800;
}

.ttt-about-belief .ttt-home-same__panel {
  padding-right: clamp(1rem, 3vw, 2rem);
  padding-left: clamp(1rem, 3vw, 2rem);
}

.ttt-about-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
}

.ttt-about-split article {
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(var(--ttt-home-blue-rgb), 0.14);
  border-radius: 0.6rem;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(12, 32, 105, 0.045);
}

.ttt-about-split h2,
.ttt-about-close h2 {
  margin: 0 0 0.85rem;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  color: var(--ttt-home-ink);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.ttt-about-split p:not(.ttt-home-kicker),
.ttt-about-close p {
  color: #314171;
  font-size: 1rem;
  line-height: 1.6;
}

.ttt-about-split p:last-child {
  margin-bottom: 0;
}

.ttt-about-values .ttt-public-card-grid--three {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ttt-about-note {
  text-align: left;
}

.ttt-about-note h2,
.ttt-about-note .ttt-home-kicker {
  text-align: center;
}

.ttt-about-close {
  padding-top: clamp(1.8rem, 4vw, 3rem);
  text-align: center;
}

.ttt-about-close p {
  margin-bottom: 1.25rem;
}

.ttt-public-cta {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.ttt-public-cta__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border: 1px solid var(--ttt-home-line);
  background:
    radial-gradient(circle at 96% 94%, rgba(var(--ttt-home-blue-rgb), 0.09), transparent 28%),
    linear-gradient(135deg, var(--ttt-home-panel), #ffffff);
}

.ttt-public-auth-section {
  min-height: calc(100vh - var(--nav-height, 80px));
  padding: clamp(2rem, 6vw, 5rem) 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 42%, var(--ttt-home-panel) 100%);
}

.ttt-public-auth-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(23rem, 0.75fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.ttt-public-auth-grid--single {
  grid-template-columns: minmax(0, 42rem);
  justify-content: center;
}

.ttt-public-auth-card h1,
.ttt-public-auth-card h2 {
  margin: 0 0 0.55rem;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  color: var(--ttt-home-ink);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.ttt-public-auth-card .page-intro,
.ttt-public-auth-card > p {
  color: #3d4667;
  line-height: 1.5;
}

.ttt-public-auth-card .form-field input {
  border-color: var(--ttt-home-line);
  border-radius: 0.55rem;
}

.ttt-public-auth-card .auth-access-options {
  margin-top: 1rem;
}

.ttt-public-auth-card .btn-primary {
  background: var(--ttt-home-blue);
  color: #ffffff;
}

.ttt-public-auth-card .btn-secondary {
  color: var(--ttt-home-blue);
  border-color: var(--ttt-home-blue);
}

.ttt-public-contact-shell {
  max-width: 740px;
}

.ttt-public-page[data-page-id="contact-page"] .ttt-public-hero,
.ttt-public-page[data-page-id="contact-page"] .ttt-public-section--compact {
  background: #ffffff;
  background-image: none;
}

.ttt-public-page[data-page-id="contact-page"] .ttt-public-hero {
  padding-bottom: clamp(1.8rem, 4vw, 2.8rem);
}

.ttt-public-page[data-page-id="contact-page"] .ttt-public-section--compact {
  padding-top: 0;
}

.ttt-public-page[data-page-id="contact-page"] .ttt-public-hero h1 {
  max-width: min(100%, 18ch);
}

.ttt-public-page[data-page-id="contact-page"] .ttt-public-hero h1 br {
  display: block;
}

.ttt-public-contact-card {
  display: grid;
  gap: 1.25rem;
  box-shadow: 0 24px 64px rgba(12, 28, 84, 0.18), 0 8px 22px rgba(12, 28, 84, 0.08);
}

.ttt-public-contact-card .page-form {
  max-width: none;
}

.ttt-contact-primary-grid,
.ttt-contact-optional-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.ttt-public-contact-card .page-form button[type="submit"] {
  align-self: center;
  width: min(100%, 220px);
}

.ttt-public-contact-meta {
  display: grid;
  gap: 0.35rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(var(--ttt-home-blue-rgb), 0.14);
  text-align: center;
}

.ttt-public-contact-meta p {
  margin: 0;
  color: #314171;
}

.ttt-public-contact-meta a {
  color: var(--ttt-home-blue);
  font-weight: 800;
}

.ttt-public-contact-card .form-field__optional,
.ttt-public-contact-card .form-field__help {
  color: #5a6685;
  font-size: 0.9rem;
  font-weight: 500;
}

.ttt-public-contact-card .form-field__help {
  margin: 0.35rem 0 0;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .ttt-contact-primary-grid,
  .ttt-contact-optional-grid {
    grid-template-columns: 1fr;
  }
}

.ttt-public-page .page-hero {
  padding: clamp(2.2rem, 5vw, 4.2rem) 0 clamp(1.6rem, 4vw, 3rem);
  background: #ffffff;
}

.ttt-public-page .page-hero .landing-wrapper {
  max-width: 1110px;
}

.ttt-public-page .page-hero h1 {
  max-width: 13ch;
}

.ttt-public-page .page-hero p {
  max-width: 58rem;
}

.ttt-public-page .page-section-stack {
  max-width: 900px;
  gap: 0.95rem;
}

.ttt-public-page .page-section-card {
  padding: clamp(1rem, 2.2vw, 1.45rem);
  border-color: var(--ttt-home-line);
  border-radius: 0.55rem;
  box-shadow: 0 10px 30px rgba(12, 32, 105, 0.04);
}

@media (max-width: 860px) {
  .ttt-public-hero__grid,
  .ttt-public-cta__panel,
  .ttt-public-auth-grid,
  .ttt-about-split {
    grid-template-columns: 1fr;
  }

  .ttt-public-card-grid--three,
  .ttt-about-values .ttt-public-card-grid--three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .ttt-public-hero h1,
  .ttt-public-page .page-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.25rem);
  }

  .ttt-public-section,
  .ttt-public-auth-section,
  .ttt-public-cta {
    padding-right: 0;
    padding-left: 0;
  }

  .ttt-public-auth-card,
  .ttt-public-card {
    padding: 1rem;
  }
}

/* Standalone FAQ page review overrides. Keep these after homepage FAQ rules. */
.ttt-faq-page .ttt-faq-page__panel {
  grid-template-columns: 1fr;
  justify-items: stretch;
  gap: clamp(1.8rem, 4vw, 2.8rem);
  width: min(calc(100% - 2rem), 68rem);
  padding: 0;
  background: transparent;
  background-image: none;
}

.ttt-faq-page .ttt-home-faq,
.ttt-faq-page .ttt-faq-page__section {
  background: #ffffff;
  background-image: none;
}

.ttt-faq-page .ttt-home-faq__panel {
  border-color: transparent;
}

.ttt-faq-page .ttt-home-faq::before,
.ttt-faq-page .ttt-home-faq::after,
.ttt-faq-page .ttt-faq-page__section::before,
.ttt-faq-page .ttt-faq-page__section::after,
.ttt-faq-page .ttt-faq-page__panel::before,
.ttt-faq-page .ttt-faq-page__panel::after,
.ttt-faq-page .ttt-faq-page__list::before,
.ttt-faq-page .ttt-faq-page__list::after {
  content: none;
}

.ttt-faq-page .ttt-faq-page__copy {
  grid-column: 1;
  grid-row: auto;
  justify-self: center;
  justify-items: center;
  width: 100%;
  max-width: 61rem;
  padding: clamp(1.75rem, 4vw, 3.25rem) clamp(1rem, 3vw, 2rem);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ttt-faq-page .ttt-faq-page__copy h1,
.ttt-faq-page .ttt-faq-page__copy > p {
  max-width: 48rem;
}

.ttt-faq-page .ttt-faq-page__list {
  position: relative;
  grid-column: 1;
  grid-row: auto;
  justify-self: center;
  width: min(100%, 46rem);
  padding: clamp(1.2rem, 3vw, 1.65rem);
  border-radius: 0.6rem;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(33, 31, 95, 0.15);
}

.ttt-faq-page .ttt-faq-page__group {
  background: transparent;
}

.ttt-faq-page .ttt-faq-page__actions .ttt-home-btn--secondary {
  background: #ffffff;
  color: #766bff;
  box-shadow: inset 0 0 0 1px #766bff;
}

.ttt-faq-page .ttt-faq-page__actions .ttt-home-btn--secondary:hover,
.ttt-faq-page .ttt-faq-page__actions .ttt-home-btn--secondary:focus-visible {
  background: rgba(118, 107, 255, 0.08);
  color: #766bff;
}

@media (max-width: 760px) {
  .ttt-faq-page .ttt-faq-page__copy {
    padding: 2rem 1rem;
  }
}

/* Homepage-specific restoration after the standalone FAQ page split. */
.ttt-home:not(.ttt-faq-page) .ttt-home-faq__panel {
  align-items: center;
  box-sizing: border-box;
  padding: clamp(1.55rem, 2.6vw, 2rem) clamp(1.25rem, 4vw, 3.5rem);
}

.ttt-home:not(.ttt-faq-page) .ttt-home-faq__copy {
  align-self: center;
  justify-items: center;
  max-width: 30rem;
  text-align: center;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-faq__copy h2 {
  font-size: clamp(2rem, 3.2vw, 2.85rem);
}

.ttt-home:not(.ttt-faq-page) .ttt-home-faq__copy .ttt-home-help {
  margin-top: clamp(0.65rem, 1.35vw, 0.95rem);
}

.ttt-home:not(.ttt-faq-page) .ttt-home-faq-grid {
  align-self: center;
  width: 100%;
  max-width: none;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-moment-list {
  width: min(100%, 1110px);
  margin-right: auto;
  margin-left: auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ttt-home:not(.ttt-faq-page) .ttt-home-reveal-cta {
  justify-content: center;
  margin-top: clamp(0.95rem, 2vw, 1.35rem);
}

.ttt-home:not(.ttt-faq-page) .ttt-home-perspective-card {
  width: 100%;
}

@media (max-width: 980px) {
  .ttt-home:not(.ttt-faq-page) .ttt-home-perspectives__stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: min(100%, 46rem);
    gap: clamp(1.85rem, 4vw, 2.4rem);
  }

  .ttt-home:not(.ttt-faq-page) .ttt-home-venn {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 28rem);
  }

  .ttt-home:not(.ttt-faq-page) .ttt-home-faq__panel {
    grid-template-columns: 1fr;
  }

  .ttt-home:not(.ttt-faq-page) .ttt-home-moment-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ttt-home:not(.ttt-faq-page) .ttt-home-moment-item:last-child {
    grid-column: auto;
    max-width: none;
  }

  .ttt-home:not(.ttt-faq-page) .ttt-home-testimonial-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: min(100% - 2rem, 44rem);
  }

  .ttt-home:not(.ttt-faq-page) .ttt-home-testimonial:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 21rem);
  }
}

@media (max-width: 760px) {
  .ttt-home:not(.ttt-faq-page) .ttt-home-perspectives__stage {
    grid-template-columns: 1fr;
    max-width: min(100%, 24rem);
  }

  .ttt-home:not(.ttt-faq-page) .ttt-home-venn {
    grid-column: auto;
  }

  .ttt-home:not(.ttt-faq-page) .ttt-home-testimonial-row {
    grid-template-columns: 1fr;
    max-width: min(100% - 2rem, 22rem);
  }

  .ttt-home:not(.ttt-faq-page) .ttt-home-testimonial:last-child {
    grid-column: auto;
    width: 100%;
  }
}

@media (min-width: 981px) {
  .ttt-home:not(.ttt-faq-page) .ttt-home-perspectives__stage {
    grid-template-columns: minmax(16rem, 1fr) minmax(18rem, 0.94fr) minmax(16rem, 1fr);
  }

  .ttt-home:not(.ttt-faq-page) .ttt-home-faq__panel {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(1.5rem, 2.6vw, 2.35rem);
  }

  .ttt-home:not(.ttt-faq-page) .ttt-home-faq__copy {
    grid-row: 1 / span 2;
    align-content: start;
    box-sizing: border-box;
    min-height: 100%;
    padding-top: 3.05rem;
  }
}

.ttt-home:not(.ttt-faq-page) .ttt-home-faq__panel {
  background-color: #f4f2ff;
  background-image:
    url("data:image/svg+xml,%3Csvg width='118' height='142' viewBox='0 0 118 142' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M27 44c2-22 18-36 40-33 20 3 33 18 30 38-4 27-35 27-39 56' fill='none' stroke='%23766bff' stroke-width='10' stroke-linecap='round' stroke-linejoin='round' opacity='.13'/%3E%3Cpath d='M51 130h.2' fill='none' stroke='%23766bff' stroke-width='13' stroke-linecap='round' opacity='.13'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='104' height='126' viewBox='0 0 104 126' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23 39c2-18 15-29 33-27 17 2 28 15 25 31-3 22-28 23-32 47' fill='none' stroke='%23766bff' stroke-width='8' stroke-linecap='round' stroke-linejoin='round' opacity='.11'/%3E%3Cpath d='M43 113h.2' fill='none' stroke='%23766bff' stroke-width='11' stroke-linecap='round' opacity='.11'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='86' height='104' viewBox='0 0 86 104' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 32c2-15 13-23 27-21 14 2 23 12 20 25-3 18-23 18-26 38' fill='none' stroke='%23766bff' stroke-width='7' stroke-linecap='round' stroke-linejoin='round' opacity='.09'/%3E%3Cpath d='M36 93h.2' fill='none' stroke='%23766bff' stroke-width='9' stroke-linecap='round' opacity='.09'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position:
    max(1rem, calc(50% - 33rem)) clamp(10.8rem, 18vw, 12.8rem),
    min(calc(100% - 2rem), calc(50% + 32rem)) clamp(2.75rem, 5vw, 4rem),
    min(calc(100% - 2rem), calc(50% + 26rem)) clamp(14rem, 23vw, 16.5rem);
  background-size:
    clamp(4.4rem, 8vw, 7.4rem) auto,
    clamp(3.8rem, 7vw, 5.8rem) auto,
    clamp(3.1rem, 5vw, 4.6rem) auto;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-faq__panel::before,
.ttt-home:not(.ttt-faq-page) .ttt-home-faq__panel::after {
  content: none;
}

/* Homepage FAQ: keep the question list compact and place help after the list when stacked. */
.ttt-home:not(.ttt-faq-page) .ttt-home-faq-grid {
  width: min(100%, 31rem);
  max-width: 31rem;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-faq__panel > .ttt-home-help {
  justify-self: center;
  margin-top: 1.05rem;
}

@media (min-width: 981px) {
  .ttt-home:not(.ttt-faq-page) .ttt-home-faq__panel {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 31rem);
    gap: clamp(1.35rem, 2.1vw, 2.15rem);
    max-width: 68rem;
  }

  .ttt-home:not(.ttt-faq-page) .ttt-home-faq-grid {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
  }

  .ttt-home:not(.ttt-faq-page) .ttt-home-faq__copy {
    grid-row: 1;
  }

  .ttt-home:not(.ttt-faq-page) .ttt-home-faq__panel > .ttt-home-help {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    margin-top: 1.35rem;
    text-align: center;
  }
}

@media (max-width: 980px) {
  .ttt-home:not(.ttt-faq-page) .ttt-home-faq-grid {
    grid-column: auto;
    grid-row: auto;
    justify-self: center;
    order: 2;
  }

  .ttt-home:not(.ttt-faq-page) .ttt-home-faq__panel > .ttt-home-help {
    grid-column: auto;
    grid-row: auto;
    justify-self: center;
    order: 3;
    text-align: center;
  }
}

@media (min-width: 761px) and (max-width: 980px) {
  .ttt-home:not(.ttt-faq-page) .ttt-home-testimonial,
  .ttt-home:not(.ttt-faq-page) .ttt-home-testimonial:last-child {
    min-height: 16.5rem;
  }
}

@media (max-width: 760px) {
  .ttt-home:not(.ttt-faq-page) .ttt-home-testimonial,
  .ttt-home:not(.ttt-faq-page) .ttt-home-testimonial:last-child {
    min-height: 14.1rem;
  }
}

/* Homepage text system: keep public landing copy in a small set of buckets. */
.ttt-home:not(.ttt-faq-page) {
  --ttt-home-section-title-size: clamp(2.2rem, 3.3vw, 3.25rem);
  --ttt-home-section-title-size-mobile: clamp(2.05rem, 8.6vw, 2.85rem);
  --ttt-home-section-copy-width: 34rem;
  --ttt-home-card-copy-width: 14rem;
  --ttt-home-step-copy-width: 10.75rem;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-btn {
  text-align: center;
  white-space: normal;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-same h2,
.ttt-home:not(.ttt-faq-page) .ttt-home-break h2,
.ttt-home:not(.ttt-faq-page) .ttt-home-perspectives__intro h2,
.ttt-home:not(.ttt-faq-page) .ttt-home-moments__copy h2,
.ttt-home:not(.ttt-faq-page) .ttt-home-full-reveal__copy h2,
.ttt-home:not(.ttt-faq-page) .ttt-home-social__intro h2,
.ttt-home:not(.ttt-faq-page) .ttt-home-steps__intro h2,
.ttt-home:not(.ttt-faq-page) .ttt-home-faq__copy h2,
.ttt-home:not(.ttt-faq-page) .ttt-home-final__card h2 {
  max-width: 42rem;
  margin-right: auto;
  margin-left: auto;
  font-size: var(--ttt-home-section-title-size);
  line-height: 1.02;
  text-align: center;
  white-space: normal;
  text-wrap: balance;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-hero__copy h1 {
  text-wrap: balance;
}

.ttt-home-heading-line {
  display: block;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-final__card h2 em {
  color: var(--ttt-home-heading-blue);
  font-style: italic;
  font-weight: 500;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-perspectives__intro h2 {
  line-height: 0.94;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-lede,
.ttt-home:not(.ttt-faq-page) .ttt-home-same p,
.ttt-home:not(.ttt-faq-page) .ttt-home-break p,
.ttt-home:not(.ttt-faq-page) .ttt-home-perspectives__intro p,
.ttt-home:not(.ttt-faq-page) .ttt-home-moments__copy p,
.ttt-home:not(.ttt-faq-page) .ttt-home-full-reveal__copy > p,
.ttt-home:not(.ttt-faq-page) .ttt-home-steps__intro p,
.ttt-home:not(.ttt-faq-page) .ttt-home-faq__copy > p:not(.ttt-home-help),
.ttt-home:not(.ttt-faq-page) .ttt-home-final__card > div > p:not(.ttt-home-note) {
  max-width: var(--ttt-home-section-copy-width);
  margin-right: auto;
  margin-left: auto;
  color: #263569;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.48;
  text-align: center;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-perspectives__intro p br {
  display: none;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-script-line,
.ttt-home:not(.ttt-faq-page) .ttt-home-mini-grid {
  max-width: 46rem;
  margin-right: auto;
  margin-left: auto;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-mini-grid span {
  font-size: 1rem;
  line-height: 1.22;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-perspective-card p,
.ttt-home:not(.ttt-faq-page) .ttt-home-venn__caption p,
.ttt-home:not(.ttt-faq-page) .ttt-home-moment-item p,
.ttt-home:not(.ttt-faq-page) .ttt-home-testimonial p,
.ttt-home:not(.ttt-faq-page) .ttt-home-step p {
  max-width: var(--ttt-home-card-copy-width);
  margin-right: auto;
  margin-left: auto;
  color: #314171;
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-step p {
  max-width: var(--ttt-home-step-copy-width);
}

.ttt-home:not(.ttt-faq-page) .ttt-home-faq-item p {
  color: #314171;
  font-size: 0.84rem;
  line-height: 1.45;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-reveal-trust span,
.ttt-home:not(.ttt-faq-page) .ttt-home-note,
.ttt-home:not(.ttt-faq-page) .ttt-home-audience span {
  font-size: 0.82rem;
  line-height: 1.35;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-testimonial-row {
  width: min(100%, 58rem);
  max-width: 58rem;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-testimonial {
  min-height: 13.4rem;
  min-width: 0;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-testimonial::before,
.ttt-home:not(.ttt-faq-page) .ttt-home-testimonial::after {
  content: none;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-testimonial__head {
  width: 100%;
  margin-bottom: 0.75rem;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-testimonial p {
  position: relative;
  max-width: 16rem;
  margin-top: 1.55rem;
  margin-bottom: 2.75rem;
  padding-right: 0.35rem;
  padding-left: 0.35rem;
  overflow-wrap: anywhere;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-testimonial p::before,
.ttt-home:not(.ttt-faq-page) .ttt-home-testimonial p::after {
  position: absolute;
  color: rgba(var(--ttt-home-group-green-rgb), 0.13);
  font-family: Georgia, serif;
  font-size: 4.8rem;
  line-height: 1;
  pointer-events: none;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-testimonial p::before {
  content: "\201C";
  top: -1.55rem;
  left: 0;
  transform: translateX(-58%);
}

.ttt-home:not(.ttt-faq-page) .ttt-home-testimonial p::after {
  content: "\201D";
  top: calc(100% - 0.08rem);
  right: 0;
  transform: translateX(58%);
}

.ttt-home:not(.ttt-faq-page) .ttt-home-testimonial__meta {
  margin-top: auto;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-testimonial small,
.ttt-home:not(.ttt-faq-page) .ttt-home-audience span {
  width: auto;
  max-width: 100%;
  white-space: normal;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-audience > div {
  max-width: 48rem;
  margin-right: auto;
  margin-left: auto;
}

.ttt-home-full-reveal {
  --ttt-home-full-reveal-purple: #766bff;
  --ttt-home-full-reveal-purple-rgb: 118, 107, 255;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  background: #f4f2ff;
}

.ttt-home-full-reveal__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(24rem, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2.5rem, 5vw, 4.75rem);
  align-items: center;
  overflow: hidden;
  min-height: clamp(26rem, 34vw, 31rem);
  padding: clamp(2.25rem, 4.2vw, 3.35rem) 0;
}

.ttt-home-full-reveal__copy {
  position: relative;
  z-index: 2;
  max-width: 31rem;
  text-align: left;
}

.ttt-home-full-reveal__copy h2 {
  max-width: 30rem;
  margin: 0 0 1.1rem;
  font-size: clamp(2.15rem, 3vw, 2.95rem);
  font-weight: 700;
  text-align: left;
}

.ttt-home-full-reveal__copy h2 em {
  color: var(--ttt-home-full-reveal-purple);
  font-style: italic;
}

.ttt-home-full-reveal__copy > p {
  max-width: 30rem;
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.ttt-home-full-reveal__actions {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 0.85rem;
  align-items: center;
  justify-content: center;
  margin-top: 1.55rem;
}

.ttt-home-full-reveal__actions .ttt-home-btn--primary {
  border-color: var(--ttt-home-full-reveal-purple);
  background: var(--ttt-home-full-reveal-purple);
  color: #ffffff;
}

.ttt-home-full-reveal__actions .ttt-home-btn--primary:hover,
.ttt-home-full-reveal__actions .ttt-home-btn--primary:focus-visible {
  border-color: #6558ea;
  background: #6558ea;
  color: #ffffff;
}

.ttt-home-full-reveal__actions .ttt-home-btn--secondary {
  border-color: var(--ttt-home-full-reveal-purple);
  color: var(--ttt-home-full-reveal-purple);
}

.ttt-home-full-reveal__actions .ttt-home-btn--secondary:hover,
.ttt-home-full-reveal__actions .ttt-home-btn--secondary:focus-visible {
  background: rgba(var(--ttt-home-full-reveal-purple-rgb), 0.09);
  color: var(--ttt-home-full-reveal-purple);
}

.ttt-home-full-reveal__cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.35rem, 2.45vw, 2rem);
  align-items: end;
  justify-self: center;
  width: min(100%, 35.5rem);
  min-height: clamp(18rem, 27vw, 23rem);
  padding-top: clamp(5.85rem, 7vw, 6.75rem);
  padding-right: 0.75rem;
  box-sizing: border-box;
  transform: translateX(-0.7rem);
}

.ttt-home-full-reveal-card {
  position: relative;
  min-width: 0;
}

.ttt-home-full-reveal-card p {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 2.55rem);
  width: max-content;
  max-width: 10rem;
  margin: 0;
  color: var(--ttt-home-ink);
  font-family: "Caveat", "Bradley Hand", "Segoe Print", cursive;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 400;
  line-height: 1.05;
  text-align: left;
  transform: translateX(-50%) rotate(-3deg);
}

.ttt-home-full-reveal-card span {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.1rem);
  color: #8b73ff;
  font-family: "Caveat", "Bradley Hand", "Segoe Print", cursive;
  font-size: clamp(1.9rem, 2.8vw, 2.45rem);
  line-height: 1;
  transform: translateX(-50%) rotate(8deg);
}

.ttt-home-full-reveal-card > div {
  aspect-ratio: 0.84;
  min-height: clamp(11.4rem, 16.2vw, 14.1rem);
  border: 1px solid rgba(122, 107, 255, 0.16);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 26px rgba(28, 31, 76, 0.1);
}

.ttt-home-full-reveal-card--one {
  transform: translateY(0.55rem) rotate(-1.25deg);
}

.ttt-home-full-reveal-card--two {
  z-index: 2;
  transform: translateY(0.15rem);
}

.ttt-home-full-reveal-card--three {
  transform: translate(-0.1rem, 0.55rem) rotate(0.35deg);
}

.ttt-home-full-reveal-card--one span {
  left: 43%;
  bottom: calc(100% + 0.18rem);
  transform: translateX(-50%) rotate(-7deg);
}

.ttt-home-full-reveal-card--two span {
  bottom: calc(100% + 0.28rem);
  transform: translateX(-50%) rotate(5deg);
}

.ttt-home-full-reveal-card--three span {
  left: 46%;
  bottom: calc(100% + 0.2rem);
  transform: translateX(-50%) rotate(-11deg);
}

.ttt-home-full-reveal-card--two p {
  transform: translateX(-50%) rotate(2deg);
}

.ttt-home-full-reveal-card--three p {
  transform: translateX(-50%) rotate(-1deg);
}

@media (max-width: 980px) {
  .ttt-home-full-reveal__panel {
    grid-template-columns: 1fr;
    gap: clamp(2.25rem, 5vw, 3.25rem);
    text-align: center;
  }

  .ttt-home-full-reveal__copy {
    max-width: 36rem;
    margin: 0 auto;
    text-align: center;
  }

  .ttt-home-full-reveal__copy h2,
  .ttt-home-full-reveal__copy > p {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .ttt-home-full-reveal__actions {
    justify-content: center;
  }

  .ttt-home-full-reveal__cards {
    justify-self: center;
    max-width: 44rem;
    margin: 0 auto;
    padding-right: 0;
    transform: none;
  }

  .ttt-home:not(.ttt-faq-page) .ttt-home-moments__copy {
    max-width: 42rem;
    text-align: center;
  }

  .ttt-home:not(.ttt-faq-page) .ttt-home-moment-list {
    width: 100%;
    max-width: min(100%, 44rem);
  }

  .ttt-home:not(.ttt-faq-page) .ttt-home-testimonial-row {
    width: min(100%, 30rem);
    max-width: 30rem;
  }
}

@media (max-width: 760px) {
  .ttt-home-full-reveal__panel {
    padding-top: 2rem;
    padding-bottom: 2.65rem;
  }

  .ttt-home-full-reveal__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 25rem);
    gap: 0.65rem;
    margin-right: auto;
    margin-left: auto;
  }

  .ttt-home:not(.ttt-faq-page) .ttt-home-full-reveal__actions .ttt-home-btn {
    min-height: 2.9rem;
    padding-right: 0.6rem;
    padding-left: 0.6rem;
    font-size: clamp(0.62rem, 2.1vw, 0.72rem);
    white-space: nowrap;
  }

  .ttt-home-full-reveal__cards {
    grid-template-columns: 1fr;
    gap: 6.35rem;
    width: min(100%, 18rem);
    min-height: 0;
    padding-top: 4.1rem;
  }

  .ttt-home-full-reveal-card,
  .ttt-home-full-reveal-card--one,
  .ttt-home-full-reveal-card--two,
  .ttt-home-full-reveal-card--three {
    transform: none;
  }

  .ttt-home-full-reveal-card p {
    max-width: min(100%, 10.5rem);
    font-size: 1.35rem;
  }

  .ttt-home-full-reveal-card > div {
    min-height: 13rem;
  }

  .ttt-home:not(.ttt-faq-page) .ttt-home-same h2,
  .ttt-home:not(.ttt-faq-page) .ttt-home-break h2,
  .ttt-home:not(.ttt-faq-page) .ttt-home-perspectives__intro h2,
  .ttt-home:not(.ttt-faq-page) .ttt-home-moments__copy h2,
  .ttt-home:not(.ttt-faq-page) .ttt-home-full-reveal__copy h2,
  .ttt-home:not(.ttt-faq-page) .ttt-home-social__intro h2,
  .ttt-home:not(.ttt-faq-page) .ttt-home-steps__intro h2,
  .ttt-home:not(.ttt-faq-page) .ttt-home-faq__copy h2,
  .ttt-home:not(.ttt-faq-page) .ttt-home-final__card h2 {
    font-size: var(--ttt-home-section-title-size-mobile);
  }

  .ttt-home:not(.ttt-faq-page) .ttt-home-lede,
  .ttt-home:not(.ttt-faq-page) .ttt-home-same p,
  .ttt-home:not(.ttt-faq-page) .ttt-home-break p,
  .ttt-home:not(.ttt-faq-page) .ttt-home-perspectives__intro p,
  .ttt-home:not(.ttt-faq-page) .ttt-home-moments__copy p,
  .ttt-home:not(.ttt-faq-page) .ttt-home-full-reveal__copy > p,
  .ttt-home:not(.ttt-faq-page) .ttt-home-faq__copy > p:not(.ttt-home-help),
  .ttt-home:not(.ttt-faq-page) .ttt-home-final__card > div > p:not(.ttt-home-note) {
    max-width: min(100%, 30rem);
  }

  .ttt-home:not(.ttt-faq-page) .ttt-home-moment-list {
    width: 100%;
    max-width: 100%;
  }

  .ttt-home:not(.ttt-faq-page) .ttt-home-testimonial-row {
    width: min(100%, 17.5rem);
    max-width: 17.5rem;
  }

  .ttt-home:not(.ttt-faq-page) .ttt-home-testimonial:last-child {
    width: 100%;
  }
}

/* Keep the hero copy aligned as one unit across responsive breakpoints. */
.ttt-home:not(.ttt-faq-page) .ttt-home-hero__copy {
  text-align: left;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-hero__copy h1,
.ttt-home:not(.ttt-faq-page) .ttt-home-hero__copy .ttt-home-lede {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-hero__copy .ttt-home-cta-stack {
  justify-items: center;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-final__card .ttt-home-cta-stack {
  justify-items: center;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-hero__copy .ttt-home-actions {
  justify-content: flex-start;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-hero__copy .ttt-home-note {
  width: auto;
  max-width: 28rem;
  margin-right: 0;
  margin-left: 0;
  justify-content: flex-start;
  text-align: left;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-hero__copy .ttt-home-cta-stack .ttt-home-note {
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-hero__copy .ttt-home-group-note,
.ttt-home:not(.ttt-faq-page) .ttt-home-final__card .ttt-home-group-note {
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  justify-content: center;
  text-align: center;
}

@media (max-width: 980px) {
  .ttt-home:not(.ttt-faq-page) .ttt-home-hero__copy {
    text-align: center;
  }

  .ttt-home:not(.ttt-faq-page) .ttt-home-hero__copy h1,
  .ttt-home:not(.ttt-faq-page) .ttt-home-hero__copy .ttt-home-lede {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .ttt-home:not(.ttt-faq-page) .ttt-home-hero__copy .ttt-home-actions {
    justify-content: center;
  }

  .ttt-home:not(.ttt-faq-page) .ttt-home-hero__copy .ttt-home-note {
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
    justify-content: center;
    text-align: left;
  }
}

/* Homepage quiet color pass: keep accents, remove full-color section washes. */
.ttt-home:not(.ttt-faq-page) {
  --ttt-home-panel: #f8fbff;
  --ttt-home-soft-blue: #f5f9ff;
  --ttt-home-line: #e3ecf8;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-hero,
.ttt-home:not(.ttt-faq-page) .ttt-home-same,
.ttt-home:not(.ttt-faq-page) .ttt-home-break,
.ttt-home:not(.ttt-faq-page) .ttt-home-perspectives,
.ttt-home:not(.ttt-faq-page) .ttt-home-moments,
.ttt-home:not(.ttt-faq-page) .ttt-home-full-reveal,
.ttt-home:not(.ttt-faq-page) .ttt-home-social,
.ttt-home:not(.ttt-faq-page) .ttt-home-steps,
.ttt-home:not(.ttt-faq-page) .ttt-home-faq,
.ttt-home:not(.ttt-faq-page) .ttt-home-final {
  background-image: none;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-hero {
  padding: clamp(2.45rem, 5vw, 4.35rem) 0 clamp(2.9rem, 5.5vw, 4.65rem);
  background: #ffffff;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-same {
  padding: clamp(2.9rem, 5.6vw, 4.85rem) 0;
  background: #ffffff;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-break {
  padding: clamp(2.85rem, 5.4vw, 4.75rem) 0;
  background: #ffffff;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-perspectives {
  padding: clamp(3.15rem, 6.1vw, 5.45rem) 0;
  background: #ffffff;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-moments {
  padding: clamp(3rem, 5.8vw, 5.2rem) 0;
  background: #ffffff;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-full-reveal {
  padding: clamp(3rem, 5.7vw, 5.1rem) 0;
  background: #ffffff;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-social {
  padding: clamp(3rem, 5.6vw, 5rem) 0;
  background: #ffffff;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-steps {
  padding: clamp(3rem, 5.5vw, 4.9rem) 0;
  background: #ffffff;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-faq {
  padding: clamp(3rem, 5.6vw, 5.1rem) 0;
  background: #ffffff;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-final {
  padding: 0;
  background: #f2f7ff;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-same__panel {
  min-height: 0;
  padding: 0 1.3rem;
  background: transparent;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-moment-list {
  margin-top: clamp(2.5rem, 5vw, 4.25rem);
}

.ttt-home:not(.ttt-faq-page) .ttt-home-moments__bridge {
  position: relative;
  margin-bottom: clamp(1.2rem, 2.4vw, 1.8rem);
}

.ttt-home:not(.ttt-faq-page) .ttt-home-moments__bridge::after {
  content: "";
  display: block;
  width: min(9rem, 38%);
  height: 2px;
  margin: clamp(0.85rem, 1.7vw, 1.2rem) auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 111, 97, 0), rgba(255, 111, 97, 0.52), rgba(118, 107, 255, 0.44), rgba(255, 111, 97, 0));
}

.ttt-home:not(.ttt-faq-page) .ttt-home-moments__hero + .ttt-home-moment-list {
  margin-top: clamp(1.9rem, 3.4vw, 2.7rem);
}

.ttt-home:not(.ttt-faq-page) .ttt-home-audience--social {
  margin-top: clamp(2.3rem, 4.2vw, 3.35rem);
  padding-top: clamp(1.7rem, 2.6vw, 2.15rem);
}

.ttt-home:not(.ttt-faq-page) .ttt-home-final__card {
  min-height: clamp(25rem, 43vw, 32rem);
  padding: clamp(3.6rem, 6.8vw, 5.8rem) 0;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-same::before,
.ttt-home:not(.ttt-faq-page) .ttt-home-same::after,
.ttt-home:not(.ttt-faq-page) .ttt-home-break::before,
.ttt-home:not(.ttt-faq-page) .ttt-home-break::after,
.ttt-home:not(.ttt-faq-page) .ttt-home-perspectives::before,
.ttt-home:not(.ttt-faq-page) .ttt-home-perspectives::after,
.ttt-home:not(.ttt-faq-page) .ttt-home-social::before,
.ttt-home:not(.ttt-faq-page) .ttt-home-social::after,
.ttt-home:not(.ttt-faq-page) .ttt-home-faq::before,
.ttt-home:not(.ttt-faq-page) .ttt-home-faq::after,
.ttt-home:not(.ttt-faq-page) .ttt-home-testimonial-row::before,
.ttt-home:not(.ttt-faq-page) .ttt-home-faq__panel::before,
.ttt-home:not(.ttt-faq-page) .ttt-home-faq__panel::after {
  content: none;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-hero__visual > img {
  box-shadow: 0 20px 52px rgba(var(--ttt-home-blue-rgb), 0.1);
}

.ttt-home:not(.ttt-faq-page) .ttt-home-reveal-card {
  box-shadow: 0 18px 42px rgba(var(--ttt-home-blue-rgb), 0.12);
}

.ttt-home:not(.ttt-faq-page) .ttt-home-mini-grid .ttt-home-icon {
  background: rgba(255, 111, 97, 0.09);
  color: var(--ttt-home-coral);
  box-shadow: 0 12px 28px rgba(255, 111, 97, 0.06);
}

.ttt-home:not(.ttt-faq-page) .ttt-home-perspective-card,
.ttt-home:not(.ttt-faq-page) .ttt-home-mini-report {
  box-shadow: 0 16px 42px rgba(var(--ttt-home-blue-rgb), 0.06);
}

.ttt-home:not(.ttt-faq-page) .ttt-home-perspective-card--group,
.ttt-home:not(.ttt-faq-page) .ttt-home-mini-report--group {
  box-shadow: 0 16px 42px rgba(var(--ttt-home-group-green-rgb), 0.06);
}

.ttt-home:not(.ttt-faq-page) .ttt-home-moments__visual img,
.ttt-home:not(.ttt-faq-page) .ttt-home-reaction-bubble {
  box-shadow: 0 18px 42px rgba(255, 178, 69, 0.07);
}

.ttt-home:not(.ttt-faq-page) .ttt-home-full-reveal-card > div {
  border-color: rgba(var(--ttt-home-full-reveal-purple-rgb), 0.12);
  box-shadow: 0 18px 42px rgba(33, 31, 95, 0.15);
}

.ttt-home:not(.ttt-faq-page) .ttt-home-moment-item {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-testimonial {
  border-color: rgba(var(--ttt-home-group-green-rgb), 0.18);
  box-shadow: 0 16px 38px rgba(var(--ttt-home-group-green-rgb), 0.065);
}

.ttt-home:not(.ttt-faq-page) .ttt-home-step i {
  box-shadow: 0 10px 28px rgba(var(--ttt-home-blue-rgb), 0.08);
}

.ttt-home:not(.ttt-faq-page) .ttt-home-faq__panel {
  background: #f4f2ff;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-faq__copy h2 em,
.ttt-home:not(.ttt-faq-page) .ttt-home-faq-link,
.ttt-home:not(.ttt-faq-page) .ttt-home-faq-link .ttt-home-icon,
.ttt-home:not(.ttt-faq-page) .ttt-home-help a,
.ttt-home:not(.ttt-faq-page) .ttt-home-faq-toggle > i {
  color: #766bff;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-faq-link {
  border-color: #766bff;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-faq-link:hover {
  background: rgba(118, 107, 255, 0.08);
  border-color: #766bff;
  color: #766bff;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-faq-item {
  box-shadow: 0 14px 34px rgba(118, 107, 255, 0.055);
}

.ttt-home:not(.ttt-faq-page) .ttt-home-steps__grid {
  max-width: 57rem;
  margin-right: auto;
  margin-left: auto;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-step i {
  background: #eaf4ff;
  color: var(--ttt-home-blue);
  box-shadow: 0 14px 34px rgba(var(--ttt-home-blue-rgb), 0.14);
}

.ttt-home:not(.ttt-faq-page) .ttt-home-step__number {
  box-shadow: 0 8px 20px rgba(var(--ttt-home-blue-rgb), 0.18);
}

.ttt-home:not(.ttt-faq-page) .ttt-home-faq {
  padding: clamp(2.35rem, 4.6vw, 4.15rem) 0;
  background: #ffffff;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-faq__panel {
  padding-top: 0;
  padding-bottom: 0;
  background: #ffffff;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-faq-grid {
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 18px 42px rgba(33, 31, 95, 0.15);
}

.ttt-home:not(.ttt-faq-page) .ttt-home-faq-item {
  background: #ffffff;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-moments__visual img {
  box-shadow: 0 20px 48px rgba(255, 137, 61, 0.24);
}

.ttt-home:not(.ttt-faq-page) .ttt-home-hero__visual > img {
  box-shadow: 0 24px 58px rgba(var(--ttt-home-blue-rgb), 0.18);
}

.ttt-home:not(.ttt-faq-page) .ttt-home-testimonial {
  box-shadow: 0 18px 44px rgba(var(--ttt-home-group-green-rgb), 0.12);
}

.ttt-home:not(.ttt-faq-page) .ttt-home-steps {
  background: #ffffff;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-steps__grid {
  position: relative;
  width: min(100%, 58rem);
  padding: clamp(1.1rem, 2vw, 1.45rem) clamp(0.8rem, 2vw, 1.3rem);
  border: 1px solid rgba(var(--ttt-home-blue-rgb), 0.18);
  border-radius: 0.75rem;
  background: #f2f7ff;
  box-shadow: 0 14px 30px rgba(var(--ttt-home-blue-rgb), 0.08);
}

.ttt-home:not(.ttt-faq-page) .ttt-home-steps__grid::before {
  content: "";
  position: absolute;
  left: clamp(3rem, 8vw, 6rem);
  right: clamp(3rem, 8vw, 6rem);
  top: clamp(3.1rem, 5vw, 3.8rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--ttt-home-blue-rgb), 0), rgba(var(--ttt-home-blue-rgb), 0.24), rgba(var(--ttt-home-blue-rgb), 0));
  pointer-events: none;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-step {
  position: relative;
  z-index: 1;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-steps__grid .ttt-home-step i {
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(var(--ttt-home-blue-rgb), 0.16);
}

.ttt-home:not(.ttt-faq-page) .ttt-home-hero,
.ttt-home:not(.ttt-faq-page) .ttt-home-same,
.ttt-home:not(.ttt-faq-page) .ttt-home-break,
.ttt-home:not(.ttt-faq-page) .ttt-home-perspectives,
.ttt-home:not(.ttt-faq-page) .ttt-home-moments,
.ttt-home:not(.ttt-faq-page) .ttt-home-social,
.ttt-home:not(.ttt-faq-page) .ttt-home-steps,
.ttt-home:not(.ttt-faq-page) .ttt-home-faq {
  overflow: visible;
}

.ttt-home:not(.ttt-faq-page) .ttt-home-faq__panel > .ttt-home-help {
  grid-column: 2;
  justify-self: center;
  width: min(100%, 31rem);
  text-align: center;
}

@media (max-width: 980px) {
  .ttt-home:not(.ttt-faq-page) .ttt-home-faq__panel {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .ttt-home:not(.ttt-faq-page) .ttt-home-faq__copy {
    order: 1;
    width: min(100%, 31rem);
    max-width: 31rem;
  }

  .ttt-home:not(.ttt-faq-page) .ttt-home-faq-grid {
    order: 2;
  }

  .ttt-home:not(.ttt-faq-page) .ttt-home-faq__panel > .ttt-home-help {
    grid-column: 1;
    order: 3;
  }
}

@media (max-width: 760px) {
  .ttt-home:not(.ttt-faq-page) .ttt-home-hero {
    padding-top: 1.35rem;
    padding-bottom: 2.9rem;
  }

  .ttt-home:not(.ttt-faq-page) .ttt-home-same,
  .ttt-home:not(.ttt-faq-page) .ttt-home-break,
  .ttt-home:not(.ttt-faq-page) .ttt-home-perspectives,
  .ttt-home:not(.ttt-faq-page) .ttt-home-moments,
  .ttt-home:not(.ttt-faq-page) .ttt-home-social,
  .ttt-home:not(.ttt-faq-page) .ttt-home-steps,
  .ttt-home:not(.ttt-faq-page) .ttt-home-faq {
    padding-top: clamp(2.45rem, 10vw, 3.45rem);
    padding-bottom: clamp(2.45rem, 10vw, 3.45rem);
  }

  .ttt-home:not(.ttt-faq-page) .ttt-home-final__card {
    padding-top: clamp(2.75rem, 10vw, 3.85rem);
    padding-bottom: clamp(2.75rem, 10vw, 3.85rem);
  }
}
