:root {
  --black: #0b0b0b;
  --panel: #171717;
  --panel-hover: #222222;
  --white: #ffffff;
  --grey-100: #e8e8e8;
  --grey-200: #d0d0d0;
  --grey-400: #8a8a8a;
  --grey-600: #555555;
  --grey-700: #333333;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--white);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--black);
  overflow-x: clip;
}

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 80px;
}

.page-header {
  padding-bottom: 42px;
  border-bottom: 1px solid var(--grey-700);
}

.hero-wordmark {
  width: 100%;
  margin: 0;
  color: var(--white);
  font-size: clamp(100px, 14vw, 220px);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.075em;
  white-space: nowrap;
}

.header-copy {
  max-width: 760px;
  margin-top: 78px;
}

.eyebrow,
.section-number {
  margin: 0 0 14px;
  color: var(--grey-400);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-copy h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.header-copy > p:last-child {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--grey-200);
  font-size: 19px;
  line-height: 1.65;
}

.onboarding-form {
  margin-top: 56px;
}

.form-section {
  padding: 38px 0 46px;
  border-bottom: 1px solid var(--grey-700);
}

.section-heading {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.025em;
}

.section-heading div > p {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--grey-400);
  line-height: 1.55;
}

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

label,
fieldset {
  color: var(--grey-100);
}

label > span,
legend {
  display: block;
  margin-bottom: 9px;
  color: var(--grey-200);
  font-size: 14px;
  font-weight: 600;
}

input[type="text"],
input[type="number"],
textarea,
select {
  width: 100%;
  border: 1px solid var(--grey-600);
  border-radius: 10px;
  outline: none;
  background: var(--panel);
  color: var(--white);
}

input[type="text"],
input[type="number"],
select {
  height: 52px;
  padding: 0 15px;
}

textarea {
  padding: 15px;
  resize: vertical;
  line-height: 1.5;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--white);
}

.full-width {
  display: block;
  margin-top: 20px;
}

fieldset {
  margin: 0 0 24px;
  padding: 0;
  border: 0;
}

.choice-row,
.choice-stack,
.slack-options {
  display: grid;
  gap: 12px;
}

.choice-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid var(--grey-600);
  border-radius: 10px;
  background: var(--panel);
  cursor: pointer;
  transition:
    background-color 140ms ease,
    border-color 140ms ease,
    transform 140ms ease;
}

.choice-card:hover {
  background: var(--panel-hover);
  transform: translateY(-1px);
}

.choice-card input {
  flex: 0 0 auto;
}

.choice-card span {
  margin: 0;
}

.slack-section {
  padding-bottom: 36px;
}

.slack-options {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.primary-action,
.secondary-action {
  min-height: 52px;
  padding: 14px 20px;
  border: 1px solid var(--grey-600);
  border-radius: 10px;
  cursor: pointer;
  transition:
    background-color 140ms ease,
    border-color 140ms ease,
    color 140ms ease,
    transform 140ms ease;
}

.primary-action {
  background: var(--white);
  color: var(--black);
  font-weight: 700;
}

.primary-action:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-1px);
}

.secondary-action {
  background: var(--black);
  color: var(--white);
}

.secondary-action:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-1px);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 34px;
}

.form-actions .primary-action {
  min-width: 240px;
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 28px, 1180px);
    padding-top: 24px;
  }

  .form-grid,
  .choice-row,
  .slack-options {
    grid-template-columns: 1fr;
  }

  .hero-wordmark {
    font-size: clamp(70px, 18vw, 130px);
    white-space: normal;
  }

  .header-copy {
    margin-top: 48px;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-number {
    margin-bottom: 0;
  }
}


/* Authentication landing page */

.auth-hero {
  padding-bottom: 64px;
  border-bottom: 1px solid var(--grey-700);
}

.auth-intro {
  max-width: 820px;
  margin-top: 92px;
}

.auth-intro h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(52px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.auth-intro > p:last-child {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--grey-200);
  font-size: 20px;
  line-height: 1.65;
}

.auth-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 54px 0;
  border-bottom: 1px solid var(--grey-700);
}

.auth-card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--grey-600);
  border-radius: 14px;
  background: var(--panel);
}

.auth-card h2 {
  margin: 8px 0 0;
  font-size: 32px;
  letter-spacing: -0.03em;
}

.auth-card > p:not(.section-number) {
  max-width: 480px;
  margin: 16px 0 30px;
  color: var(--grey-400);
  line-height: 1.6;
}

.auth-button {
  width: 100%;
  margin-top: auto;
}

.auth-footer {
  padding-top: 26px;
  color: var(--grey-400);
  font-size: 14px;
}

.auth-footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .auth-intro {
    margin-top: 54px;
  }

  .auth-actions {
    grid-template-columns: 1fr;
  }

  .auth-card {
    min-height: 250px;
  }
}


/* Authentication forms */

.hidden {
  display: none !important;
}

.auth-form-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 70px;
  padding: 54px 0;
  border-bottom: 1px solid var(--grey-700);
}

.auth-form-heading h2 {
  margin: 0;
  font-size: 42px;
  letter-spacing: -0.04em;
}

.auth-form-heading > p:last-child {
  max-width: 440px;
  margin: 18px 0 0;
  color: var(--grey-400);
  line-height: 1.6;
}

.auth-form {
  display: grid;
  gap: 20px;
}

.auth-form input[type="email"],
.auth-form input[type="password"] {
  width: 100%;
  height: 54px;
  padding: 0 15px;
  border: 1px solid var(--grey-600);
  border-radius: 10px;
  outline: none;
  background: var(--panel);
  color: var(--white);
}

.auth-form input:focus {
  border-color: var(--white);
}

.auth-form-links {
  display: flex;
  justify-content: flex-end;
  margin-top: -6px;
}

.text-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--grey-200);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.text-action:hover {
  color: var(--white);
}

.auth-submit {
  width: 100%;
  margin-top: 8px;
}

@media (max-width: 820px) {
  .auth-form-panel {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

.form-help {
  margin: -4px 0 0;
  color: var(--grey-400);
  font-size: 14px;
  line-height: 1.5;
}

.auth-result {
  padding: 24px 0;
}

.auth-result h3 {
  margin: 0 0 14px;
  font-size: 28px;
  letter-spacing: -0.025em;
}

.auth-result p {
  margin: 0;
  color: var(--grey-300, #b8b8b8);
  line-height: 1.6;
}

.form-error {
  margin: -4px 0 0;
  color: var(--grey-200);
  font-size: 14px;
  line-height: 1.5;
}

.auth-link-button {
  display: block;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
}

.slack-choice.selected {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}


/* Onboarding completion */

.onboarding-complete-state {
  margin-top: 0;
}

.completion-panel {
  padding: 58px 0 64px;
  border-bottom: 1px solid var(--grey-700);
}

.completion-panel h1 {
  max-width: 900px;
  margin: 0;
  color: var(--white);
  font-size: clamp(48px, 6vw, 82px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.completion-panel > p:not(.eyebrow) {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--grey-200);
  font-size: 19px;
  line-height: 1.65;
}

.completion-action {
  width: fit-content;
  min-width: 240px;
  margin-top: 36px;
  display: inline-block;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
}


/* Portal home */

.app-header {
  padding-bottom: 54px;
  border-bottom: 1px solid var(--grey-700);
}

.app-intro {
  max-width: 820px;
  margin-top: 78px;
}

.app-intro h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(48px, 6vw, 82px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.app-intro > p:last-child {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--grey-200);
  font-size: 19px;
  line-height: 1.65;
}

.app-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-top: 48px;
}

.app-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--grey-600);
  border-radius: 14px;
  background: var(--panel);
  color: var(--white);
  text-decoration: none;
  transition:
    background-color 140ms ease,
    border-color 140ms ease,
    transform 140ms ease;
}

.app-card:hover {
  background: var(--panel-hover);
  border-color: var(--white);
  transform: translateY(-2px);
}

.app-card-primary {
  background: var(--white);
  color: var(--black);
}

.app-card-primary .section-number,
.app-card-primary p,
.app-card-primary .app-card-action {
  color: var(--black);
}

.app-card-primary:hover {
  background: var(--black);
  color: var(--white);
}

.app-card-primary:hover .section-number,
.app-card-primary:hover p,
.app-card-primary:hover .app-card-action {
  color: var(--white);
}

.app-card-featured {
  border-color: var(--grey-200);
}

.app-card h2 {
  margin: 8px 0 0;
  font-size: 34px;
  letter-spacing: -0.035em;
}

.app-card > p:not(.section-number) {
  max-width: 470px;
  margin: 16px 0 28px;
  color: var(--grey-400);
  line-height: 1.6;
}

.app-card-action {
  margin-top: auto;
  color: var(--grey-200);
  font-weight: 600;
}

@media (max-width: 820px) {
  .app-navigation {
    grid-template-columns: 1fr;
  }
}

.app-footer {
  padding: 34px 0 max(8px, env(safe-area-inset-bottom));
  text-align: right;
}


/* Seek Klarity */

.seek-panel {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 42px 0 0;
}

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

.seek-conversation {
  display: grid;
  gap: 38px;
  min-height: 340px;
  padding-bottom: 42px;
}

.seek-empty-state {
  max-width: 720px;
  padding: 18px 0 36px;
}

.seek-empty-state h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.seek-empty-state > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--grey-400);
  line-height: 1.6;
}

.seek-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.seek-example {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--grey-600);
  border-radius: 999px;
  background: transparent;
  color: var(--grey-200);
  cursor: pointer;
  text-align: left;
}

.seek-example:hover,
.seek-example:focus-visible {
  border-color: var(--white);
  color: var(--white);
}

.seek-message {
  max-width: 820px;
}

.seek-message-user {
  width: min(680px, 88%);
  margin-left: auto;
  padding: 20px 22px;
  border: 1px solid var(--grey-600);
  border-radius: 14px;
  background: var(--panel);
}

.seek-message-klarity {
  padding-right: 18px;
}

.seek-message-label {
  margin: 0 0 10px;
  color: var(--grey-400);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.seek-message-body {
  color: var(--grey-100);
  font-size: 17px;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.seek-message-body > :first-child { margin-top: 0; }
.seek-message-body > :last-child { margin-bottom: 0; }

.seek-message-body h3,
.seek-message-body h4 {
  margin: 30px 0 12px;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.seek-message-body h3 { font-size: 25px; }
.seek-message-body h4 { font-size: 20px; }

.seek-message-body ul,
.seek-message-body ol {
  padding-left: 24px;
}

.seek-message-body li + li { margin-top: 8px; }

.seek-message-body code {
  padding: 2px 5px;
  border: 1px solid var(--grey-700);
  border-radius: 4px;
  color: var(--white);
}

.seek-message-working .seek-message-body,
.seek-message-error .seek-message-body {
  color: var(--grey-400);
}

.seek-table-wrap {
  max-width: 100%;
  margin: 24px 0;
  overflow-x: auto;
  border: 1px solid var(--grey-700);
  border-radius: 10px;
}

.seek-table-wrap table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

.seek-table-wrap th,
.seek-table-wrap td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--grey-700);
  text-align: left;
  vertical-align: top;
}

.seek-table-wrap th {
  color: var(--white);
  font-size: 13px;
}

.seek-table-wrap tr:last-child td { border-bottom: 0; }

.seek-form {
  display: grid;
  gap: 12px;
  position: sticky;
  bottom: 0;
  padding: 18px;
  padding-bottom: max(18px, env(safe-area-inset-bottom));
  border: 1px solid var(--grey-600);
  border-radius: 14px;
  background: var(--black);
  box-shadow: 0 -18px 32px rgba(11, 11, 11, 0.9);
}

.seek-form textarea {
  width: 100%;
  min-height: 62px;
  max-height: 180px;
  padding: 17px;
  border: 0;
  border-radius: 9px;
  background: var(--panel);
  color: var(--white);
  font-size: 16px;
  line-height: 1.5;
  resize: none;
  outline: none;
  overflow-y: auto;
}

.seek-form textarea:focus {
  box-shadow: 0 0 0 1px var(--white);
}

.seek-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.seek-input-hint {
  margin: 0;
  color: var(--grey-400);
  font-size: 12px;
}

.seek-submit {
  min-width: 120px;
  min-height: 44px;
  padding: 10px 18px;
}

@media (max-width: 620px) {
  .seek-panel { padding-top: 30px; }
  .seek-conversation { min-height: 280px; gap: 30px; }
  .seek-message-user { width: 94%; }
  .seek-form { padding: 12px; }
  .seek-input-hint { display: none; }
  .seek-form-actions { justify-content: flex-end; }
  .seek-submit { min-width: 104px; }
}


/* Key Metrics */

.metrics-period-selector {
  display: inline-flex;
  margin-top: 28px;
  padding: 3px;
  border: 1px solid var(--grey-600);
  border-radius: 10px;
  background: var(--panel);
}

.metrics-period-option {
  min-height: 44px;
  padding: 8px 15px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--grey-200);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.metrics-period-option:hover,
.metrics-period-option.active {
  background: var(--white);
  color: var(--black);
}

.metrics-status {
  padding: 48px 0;
  border-bottom: 1px solid var(--grey-700);
  color: var(--grey-200);
}

.metrics-status h2,
.metrics-status p {
  margin-top: 0;
}

.metrics-status .secondary-action {
  margin-top: 16px;
}

.metrics-section {
  padding: 48px 0;
  border-bottom: 1px solid var(--grey-700);
}

.metrics-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 26px;
}

.metrics-section-heading h2 {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.035em;
}

.metrics-section-heading > p {
  max-width: 420px;
  margin: 0;
  color: var(--grey-400);
  line-height: 1.5;
  text-align: right;
}

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

.metric-card {
  min-width: 0;
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--grey-600);
  border-radius: 14px;
  background: var(--panel);
}

.metric-label,
.metric-comparison,
.metric-note {
  color: var(--grey-400);
}

.metric-label {
  min-height: 42px;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.metric-value {
  margin: 20px 0 14px;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.055em;
  overflow-wrap: anywhere;
}

.metric-comparison,
.metric-note {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.45;
}

.metrics-footer {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .metrics-section-heading {
    display: block;
  }

  .metrics-section-heading > p {
    margin-top: 14px;
    text-align: left;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }
}


/* GTM Centre */

.gtm-centre-section {
  padding: 48px 0;
  border-bottom: 1px solid var(--grey-700);
}


/* Account */

.account-section {
  padding: 42px 0;
  border-bottom: 1px solid var(--grey-700);
}

.account-section h2 {
  margin: 0;
  font-size: 32px;
  letter-spacing: -0.035em;
}

.account-section-copy,
.account-note,
.account-status {
  color: var(--grey-400);
  line-height: 1.55;
}

.account-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 24px 0 0;
  background: var(--grey-700);
  border: 1px solid var(--grey-700);
}

.account-details div {
  padding: 20px;
  background: var(--panel);
}

.account-details dt {
  color: var(--grey-400);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.account-details dd {
  margin: 8px 0 0;
  font-size: 18px;
  overflow-wrap: anywhere;
}

.account-user-list {
  border-top: 1px solid var(--grey-600);
}

.account-user {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--grey-700);
}

.account-user h3,
.account-user p {
  margin: 0;
  overflow-wrap: anywhere;
}

.account-user p,
.account-user span {
  color: var(--grey-400);
  font-size: 14px;
}

.account-user > div:last-child {
  display: grid;
  justify-items: end;
  gap: 6px;
}

@media (max-width: 620px) {
  .account-details { grid-template-columns: 1fr; }
  .account-user { display: block; }
  .account-user > div:last-child { justify-items: start; margin-top: 12px; }
}

.gtm-centre-period {
  margin: -12px 0 24px;
  color: var(--grey-400);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gtm-centre-list {
  border-top: 1px solid var(--grey-600);
}

.gtm-centre-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--grey-700);
}

.gtm-centre-item > div {
  min-width: 0;
}

.gtm-centre-item h3,
.gtm-centre-time {
  overflow-wrap: anywhere;
}

.gtm-centre-item .eyebrow,
.gtm-centre-item h3,
.gtm-centre-time,
.gtm-centre-empty {
  margin: 0;
}

.gtm-centre-item h3 {
  margin-top: 7px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.gtm-centre-time,
.gtm-centre-empty {
  margin-top: 8px;
  color: var(--grey-400);
  line-height: 1.5;
}

.gtm-centre-empty {
  padding: 28px 0;
}

@media (max-width: 620px) {
  .gtm-centre-item {
    display: block;
  }

  .gtm-centre-item .text-action {
    display: inline-block;
    margin-top: 18px;
  }
}


/* Meeting Library */

.meetings-section {
  padding: 48px 0;
  border-bottom: 1px solid var(--grey-700);
}

.meetings-heading {
  margin-bottom: 24px;
}

.meetings-heading h2 {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.035em;
}

.meeting-list {
  display: grid;
  gap: 16px;
}

.meeting-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--grey-600);
  border-radius: 14px;
  background: var(--panel);
}

.meeting-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}

.meeting-card-top > div {
  min-width: 0;
}

.meeting-card h3 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

.meeting-company,
.meeting-time,
.meeting-meta,
.meeting-empty {
  color: var(--grey-400);
  line-height: 1.55;
}

.meeting-company {
  margin: 10px 0 0;
}

.meeting-time {
  margin: 24px 0 0;
  color: var(--grey-100);
  font-weight: 600;
}

.meeting-meta {
  margin: 8px 0 0;
  font-size: 14px;
}

.meeting-link {
  display: inline-block;
  margin-top: 22px;
}

.feedback-badge {
  flex: 0 0 auto;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--grey-200);
  font-size: 12px;
  font-weight: 700;
}

.feedback-required {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.feedback-form,
.feedback-submitted {
  display: grid;
  gap: 18px;
  max-width: 700px;
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--grey-700);
}

.feedback-form em {
  color: var(--grey-400);
  font-style: normal;
  font-weight: 400;
}

.feedback-form .primary-action {
  justify-self: start;
  min-width: 190px;
}

.feedback-result {
  margin: 0;
  color: var(--grey-200);
}

.feedback-submitted strong {
  font-size: 42px;
  letter-spacing: -0.04em;
}

.feedback-submitted p {
  margin: 0;
}

@media (max-width: 620px) {
  .meeting-card-top {
    display: block;
  }

  .feedback-badge {
    display: inline-block;
    margin-top: 18px;
  }

  .feedback-form .primary-action {
    width: 100%;
    min-width: 0;
  }
}

/* Shared phone refinements */

@media (max-width: 620px) {
  .page-shell {
    width: calc(100% - 24px);
    padding-top: max(20px, env(safe-area-inset-top));
    padding-bottom: 48px;
  }

  .hero-wordmark {
    font-size: clamp(52px, 16vw, 70px);
    line-height: 0.9;
  }

  .page-header,
  .app-header,
  .auth-hero {
    padding-bottom: 38px;
  }

  .header-copy,
  .app-intro,
  .auth-intro {
    margin-top: 40px;
  }

  .header-copy h1,
  .app-intro h1,
  .auth-intro h1,
  .completion-panel h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .header-copy > p:last-child,
  .app-intro > p:last-child,
  .auth-intro > p:last-child,
  .completion-panel > p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.55;
  }

  .auth-actions {
    gap: 14px;
    padding: 34px 0;
  }

  .auth-card,
  .app-card {
    min-height: 0;
    padding: 24px;
  }

  .auth-form-panel {
    gap: 26px;
    padding: 36px 0;
  }

  .auth-form-heading h2 {
    font-size: 36px;
  }

  .form-section,
  .metrics-section,
  .meetings-section,
  .gtm-centre-section,
  .account-section {
    padding: 36px 0;
  }

  .section-heading {
    gap: 8px;
    margin-bottom: 24px;
  }

  .form-actions .primary-action,
  .completion-action {
    width: 100%;
    min-width: 0;
  }

  .metrics-period-selector {
    display: flex;
    width: 100%;
    max-width: 360px;
  }

  .metrics-period-option {
    flex: 1 1 0;
    min-width: 0;
    padding-right: 10px;
    padding-left: 10px;
    white-space: nowrap;
  }

  .metric-card,
  .meeting-card {
    min-height: 0;
    padding: 22px;
  }

  .metric-value {
    font-size: clamp(40px, 14vw, 56px);
  }

  .meetings-heading h2 {
    font-size: 30px;
  }

  .meeting-card h3 {
    font-size: 24px;
  }

  .account-section .secondary-action,
  #support-action .secondary-action {
    max-width: 100%;
  }

  #support-action .secondary-action {
    display: inline-flex;
    align-items: center;
    min-height: 52px;
    text-decoration: none;
  }

  .metrics-footer {
    align-items: center;
    gap: 20px;
  }

  .seek-conversation {
    padding-bottom: 28px;
  }

  .seek-message-klarity {
    padding-right: 0;
  }

  .seek-form {
    bottom: env(safe-area-inset-bottom);
  }
}
