/* Landing Ideochart */

:root {
  --landing-border: rgba(51, 65, 85, 0.8);
  --landing-bg: rgba(15, 23, 42, 0.6);
  --landing-shadow: 0 25px 60px rgba(15, 23, 42, 0.5);
}

body {
  font-family: "Inter", "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.landing-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

@media (min-width: 768px) {
  .landing-shell {
    padding: 4rem 2.5rem 5rem;
  }
}

@media (min-width: 1280px) {
  .landing-shell {
    max-width: 1200px;
  }
}

.landing-hero {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}

.landing-title {
  display: flex;
  align-items: center;
  gap: 0.0rem;
}

.landing-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-right: 0.0rem;
}

.landing-intro {
  max-width: 820px;
  margin: 0 auto;
}

.landing-intro p {
  margin-bottom: 1.15rem;
  line-height: 1.75;
}

.landing-disclaimer {
  margin-top: 0.5rem;
  padding-top: 0.25rem;
  font-size: clamp(0.85rem, 0.83rem + 0.1vw, 0.92rem);
  color: rgb(199, 210, 254);
}

.landing-chip-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}

.info-chip {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(100, 116, 139, 0.7);
  border-radius: 999px;
  padding: 0.45rem 1.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: #cbd5f5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  cursor: default;
}

@media (hover: hover) {
  .info-chip:hover {
    border-color: rgba(129, 140, 248, 0.9);
    box-shadow: 0 12px 28px rgba(79, 70, 229, 0.25);
    transform: translateY(-1px);
  }
}

.cta-wrapper {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.cta-primary,
.cta-secondary {
  min-width: 220px;
  text-align: center;
  background-color: rgb(72, 64, 231);
}

@media (max-width: 640px) {
  .cta-primary,
  .cta-secondary {
    width: 100%;
    max-width: 320px;
  }
}

.landing-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.feature-card,
.insight-card {
  background: var(--landing-bg);
  border: 1px solid var(--landing-border);
  border-radius: 1.5rem;
  box-shadow: var(--landing-shadow);
}

.feature-card {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
}

.card-eyebrow {
  font-family: "Space Mono", "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgb(165, 180, 252);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f8fafc;
}

.card-description {
  font-size: 0.95rem;
  color: #d4dcf7;
  line-height: 1.65;
}

.insight-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.insight-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.95rem;
  color: #d4dcf7;
}

.insight-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.insight-bullet {
  color: rgb(129, 140, 248);
  font-size: 1.3rem;
  line-height: 1;
  margin-top: 0.15rem;
}

.insight-cta {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .insight-cta {
    justify-content: flex-end;
  }
}

@media (max-width: 640px) {
  .landing-shell {
    padding: 2.5rem 1.25rem 3rem;
  }

  .feature-card,
  .insight-card {
    padding: 1.5rem;
  }
}

#axis-header:focus-visible {
  outline: 2px solid #818cf8;
  outline-offset: 4px;
}

.bg-indigo-550 {
  --tw-bg-opacity: 1;
  background-color: rgb(89 86 235 / var(--tw-bg-opacity));
}

.shadow-indigo-550\/20 {
  --tw-shadow-color: rgba(89, 86, 235, 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-indigo-550\/30 {
  --tw-shadow-color: rgba(89, 86, 235, 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.feedback-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.feedback-modal.is-open {
  display: flex;
}

.feedback-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.8);
  backdrop-filter: blur(6px);
}

.feedback-modal__shell {
  position: relative;
  width: 100%;
  max-width: 560px;
}

.feedback-modal__card {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(51, 65, 85, 0.9);
  border-radius: 1.25rem;
  padding: 1rem;
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.7);
  max-height: calc(100vh - 3rem);
  overflow: auto;
}

.feedback-fit-row {
  display: grid;
  grid-template-columns: repeat(5, 44px);
  gap: 0.5rem;
  justify-content: center;
}

.feedback-age-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.feedback-choice {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.65rem 0.9rem;
  border-radius: 9999px;
  border: 2px solid var(--likert-border);
  background: var(--likert-surface);
  color: var(--likert-text);
  cursor: pointer;
  text-align: center;
  transition: transform 0.16s ease, box-shadow 0.2s ease, border-color 0.2s ease,
    background-color 0.2s ease, outline-color 0.2s ease;
}

.feedback-choice:hover {
  border-color: var(--likert-border-strong);
  background: var(--likert-surface-strong);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.22);
}

.feedback-choice:focus-within,
.feedback-choice:has(input:focus-visible) {
  outline: 2px solid var(--likert-accent);
  outline-offset: 3px;
  box-shadow: 0 12px 28px rgba(99, 102, 241, 0.25), 0 0 0 1px rgba(99, 102, 241, 0.25);
}

.feedback-choice:has(input:checked) {
  border-color: var(--likert-accent);
  background: linear-gradient(
    135deg,
    var(--likert-surface-strong),
    rgba(129, 140, 248, 0.12)
  );
  box-shadow: 0 14px 32px rgba(99, 102, 241, 0.3), 0 0 0 1px rgba(99, 102, 241, 0.38);
  transform: scale(1.02);
}

.feedback-choice input[type="radio"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.feedback-choice__text {
  font-size: 0.9rem;
  line-height: 1.3;
  color: var(--likert-text);
  text-align: center;
}

.feedback-age-option--full {
  grid-column: 1 / -1;
}

.feedback-fit-option {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  border: 2px solid var(--likert-border);
  background: var(--likert-surface);
  color: var(--likert-text);
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.2s ease, border-color 0.2s ease,
    background-color 0.2s ease, outline-color 0.2s ease;
}

.feedback-fit-option:hover {
  border-color: var(--likert-border-strong);
  background: var(--likert-surface-strong);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.22);
}

.feedback-fit-option:focus-within,
.feedback-fit-option:has(input:focus-visible) {
  outline: 2px solid var(--likert-accent);
  outline-offset: 3px;
  box-shadow: 0 12px 28px rgba(99, 102, 241, 0.25), 0 0 0 1px rgba(99, 102, 241, 0.25);
}

.feedback-fit-option:has(input:checked) {
  border-color: var(--likert-accent);
  background: linear-gradient(
    135deg,
    var(--likert-surface-strong),
    rgba(129, 140, 248, 0.12)
  );
  box-shadow: 0 14px 32px rgba(99, 102, 241, 0.3), 0 0 0 1px rgba(99, 102, 241, 0.38);
  transform: scale(1.02);
}

.feedback-fit-option input[type="radio"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.feedback-fit-option__text {
  font-size: 0.95rem;
  line-height: 1;
  color: var(--likert-text);
  text-align: center;
}

@media (min-width: 768px) {
  .feedback-modal {
    padding: 2rem;
  }

  .feedback-modal__card {
    padding: 1.5rem;
    max-height: calc(100vh - 4rem);
  }

  .feedback-fit-row {
    grid-template-columns: repeat(5, 48px);
  }

  .feedback-fit-option {
    width: 48px;
    height: 48px;
  }

  .feedback-age-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .feedback-age-grid > .feedback-age-option {
    grid-column: span 2;
  }

  .feedback-age-grid > .feedback-age-option:nth-child(5) {
    grid-column: 2 / span 2;
  }

  .feedback-age-grid > .feedback-age-option:nth-child(6) {
    grid-column: 4 / span 2;
  }

  .feedback-age-grid > .feedback-age-option:nth-child(7) {
    grid-column: 6 / span 2;
  }
}

/* Likert textual */
:root {
  --likert-surface: rgba(15, 23, 42, 0.65);
  --likert-surface-strong: rgba(15, 23, 42, 0.85);
  --likert-border: #94a3b8;
  --likert-border-strong: #334155;
  --likert-text: #e2e8f0;
  --likert-muted: #94a3b8;
  --likert-accent: #818cf8;
  color-scheme: light dark;
}

.likert-scale {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.35rem 0;
  color: var(--likert-text);
}

.likert-scale__legend {
  display: none;
}

.likert-scale__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.5rem;
}

@media (max-width: 640px) {
  .likert-scale__options {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

.likert-option {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.9rem 1.05rem;
  border-radius: 9999px;
  border: 2px solid var(--likert-border);
  background: var(--likert-surface);
  color: var(--likert-text);
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, outline-color 0.2s ease;
}

.likert-option:hover {
  border-color: var(--likert-border-strong);
  background: var(--likert-surface-strong);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.22);
}

.likert-option:focus-within,
.likert-option:has(input:focus-visible) {
  outline: 2px solid var(--likert-accent);
  outline-offset: 3px;
  box-shadow: 0 12px 28px rgba(99, 102, 241, 0.25), 0 0 0 1px rgba(99, 102, 241, 0.25);
}

.likert-option.selected,
.likert-option[data-selected="true"],
.likert-option:has(input:checked) {
  border-color: var(--likert-accent);
  background: linear-gradient(135deg, var(--likert-surface-strong), rgba(129, 140, 248, 0.12));
  box-shadow: 0 14px 32px rgba(99, 102, 241, 0.3), 0 0 0 1px rgba(99, 102, 241, 0.38);
  transform: scale(1.02);
}

.likert-option input[type="radio"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.likert-option .likert-scale__label-text,
.likert-option .likert-option__text {
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--likert-text);
  text-align: center;
}

@media (max-width: 640px) {
  .likert-scale {
    gap: 0.35rem;
  }

  .likert-scale__legend {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--likert-text);
    opacity: 0.85;
    padding: 0 0.2rem 0.1rem;
  }

  .likert-scale__legend-item {
    flex: 1;
    text-align: center;
  }

  .likert-scale__legend-item.legend-left {
    text-align: left;
  }

  .likert-scale__legend-item.legend-right {
    text-align: right;
  }

  .likert-scale__options {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    padding: 0 0.2rem;
  }

  .likert-option {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 9999px;
    flex: 0 0 auto;
    justify-self: center;
  }

  .likert-option:first-child {
    justify-self: start;
  }

  .likert-option:last-child {
    justify-self: end;
  }

  .likert-option .likert-scale__label-text,
  .likert-option .likert-option__text {
    display: none;
  }

 @media (max-width: 640px) {
  .likert-option.selected,
  .likert-option[data-selected="true"],
  .likert-option:has(input:checked) {
    background: #3b82f6; /* azul exemplo */
    border-color: #1d4ed8; /* borda */
    color: #fff;
  }
}




}
