.ago31-tere-desk {
  width: 100%;
  margin: clamp(24px, 5vw, 56px) auto;
  color: #fffaf0;
  background:
    radial-gradient(circle at top right, rgba(13, 120, 107, 0.22), transparent 28%),
    #171a14;
  border-block: 1px solid rgba(214, 183, 106, 0.24);
  padding: clamp(24px, 4vw, 44px) max(16px, calc((100vw - 1180px) / 2));
}

.ago31-tere-desk__head {
  display: grid;
  gap: 10px;
  max-width: 920px;
  margin-bottom: 18px;
}

.ago31-kicker,
.ago31-tere-panel__eyebrow {
  color: #d6b76a;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ago31-tere-desk h2 {
  margin: 0;
  color: #fffaf0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.ago31-tere-desk p,
.ago31-tere-desk a,
.ago31-tere-desk button {
  letter-spacing: 0;
}

.ago31-tere-desk__head p,
.ago31-tere-panel__summary p,
.ago31-tere-prompt p,
.ago31-tere-brief p {
  margin: 0;
  color: rgba(247, 240, 223, 0.82);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.5;
}

.ago31-tere-profiles {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.ago31-tere-profile {
  min-height: 46px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.05);
  color: #fffaf0;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.ago31-tere-profile[data-active="true"] {
  background: linear-gradient(135deg, rgba(13, 120, 107, 0.95), rgba(214, 183, 106, 0.85));
  border-color: rgba(214, 183, 106, 0.92);
  color: #141611;
}

.ago31-tere-profile:hover {
  transform: translateY(-1px);
  border-color: rgba(214, 183, 106, 0.45);
}

.ago31-tere-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 12px;
  align-items: start;
}

.ago31-tere-panel__summary,
.ago31-tere-brief,
.ago31-tere-prompt {
  border-radius: 8px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  background: rgba(255, 250, 240, 0.055);
}

.ago31-tere-panel__summary {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.ago31-tere-panel__summary h3 {
  margin: 0;
  color: #fffaf0;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  line-height: 1.06;
}

.ago31-tere-prompts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.ago31-tere-prompt {
  min-height: 172px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 14px;
}

.ago31-tere-prompt strong {
  color: #fffaf0;
  font-size: 0.98rem;
  line-height: 1.18;
}

.ago31-tere-prompt p {
  font-size: 0.92rem;
  line-height: 1.4;
}

.ago31-tere-brief {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
  padding: 16px 18px;
}

.ago31-tere-brief__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.ago31-tere-brief__top strong {
  color: #fffaf0;
  font-size: 0.98rem;
}

.ago31-tere-brief__top button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(214, 183, 106, 0.34);
  border-radius: 999px;
  background: transparent;
  color: #fffaf0;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
}

.ago31-tere-brief p {
  font-size: 0.95rem;
  line-height: 1.55;
}

.ago31-tere-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.ago31-tere-actions a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  border-radius: 8px;
  border: 1px solid rgba(214, 183, 106, 0.34);
  color: #fffaf0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
  padding: 10px 12px;
}

.ago31-tere-actions a[data-ago31-action="ask"] {
  background: #0e786b;
  border-color: #70d2bf;
}

.ago31-tere-actions a[data-ago31-action="book"] {
  background: #d6b76a;
  color: #161812;
}

.ago31-tere-actions a[data-ago31-action="learn"] {
  background: rgba(255, 250, 240, 0.04);
}

@media (max-width: 1180px) {
  .ago31-tere-profiles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ago31-tere-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .ago31-tere-desk {
    padding-inline: 11px;
  }

  .ago31-tere-profiles,
  .ago31-tere-prompts,
  .ago31-tere-actions {
    grid-template-columns: 1fr;
  }

  .ago31-tere-prompt {
    min-height: 0;
  }

  .ago31-tere-brief__top {
    flex-direction: column;
    align-items: stretch;
  }

  .ago31-tere-brief__top button {
    width: 100%;
  }
}
