:root {
  --bg: #f4f7fb;
  --bg-strong: #0d1c2f;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --surface-alt: #eef4fb;
  --line: rgba(16, 32, 51, 0.1);
  --text: #102033;
  --text-soft: #536477;
  --accent: #1f6fff;
  --accent-deep: #1551bd;
  --sage: #12b3a7;
  --blue: #1f6fff;
  --shadow: 0 20px 60px rgba(13, 28, 47, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(31, 111, 255, 0.16), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(18, 179, 167, 0.14), transparent 22%),
    linear-gradient(180deg, #f9fbff 0%, #f3f6fb 48%, #eef3f9 100%);
}

button,
textarea,
input {
  font: inherit;
}

.app-shell {
  min-height: 100vh;
  min-height: 100dvh;
  padding: 34px 24px;
}

.workspace-home-shell {
  display: grid;
  grid-template-columns: 272px 1fr;
  gap: 24px;
  align-items: start;
  max-width: 1460px;
  margin: 0 auto;
}

.workspace-content {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.workspace-sidebar,
.workspace-plan-card,
.conversation-panel,
.preview-card,
.status-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 249, 255, 0.92));
  border: 1px solid rgba(16, 32, 51, 0.06);
  box-shadow: 0 18px 46px rgba(14, 30, 54, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.workspace-sidebar,
.conversation-panel,
.preview-card {
  border-radius: 30px;
}

.workspace-sidebar {
  position: sticky;
  top: 24px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 22px;
}

.workspace-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.workspace-brand strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: -0.04em;
}

.workspace-brand span,
.workspace-plan-card p,
.workspace-kicker,
.app-topbar-copy {
  color: var(--text-soft);
}

.workspace-brand span,
.workspace-kicker,
.workspace-plan-label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workspace-create,
.button,
.send-button,
.guided-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.workspace-create,
.button-primary,
.send-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 18px 30px rgba(31, 111, 255, 0.22);
}

.workspace-create {
  justify-self: start;
  min-height: 46px;
  padding: 0 20px;
}

.button {
  text-decoration: none;
}

.button-primary {
  width: 100%;
}

.workspace-nav {
  display: grid;
  gap: 10px;
}

.workspace-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(16, 32, 51, 0.03);
  font-weight: 700;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.workspace-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(31, 111, 255, 0.12);
  transform: translateX(2px);
}

.workspace-nav a.is-active {
  color: var(--text);
  background: rgba(31, 111, 255, 0.12);
  border-color: rgba(31, 111, 255, 0.14);
}

.workspace-plan-card {
  padding: 22px;
  border-radius: 24px;
}

.workspace-plan-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.app-topbar {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 24px;
}

.app-topbar .brand-lockup {
  display: grid;
  gap: 10px;
  max-width: 58ch;
}

.app-topbar-copy {
  margin: 0;
  line-height: 1.7;
  font-size: 1rem;
}

.workspace-mini-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin: 0;
  max-width: none;
}

.brand-lockup {
  display: flex;
  gap: 12px;
}

.brand-kicker,
.eyebrow,
.status-label {
  margin: 0 0 6px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-kicker,
.eyebrow {
  color: var(--accent);
}

.brand-lockup h1,
.panel-header h2,
.preview-head h2 {
  margin: 0;
  letter-spacing: -0.05em;
}

.brand-lockup h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.topbar-status {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.status-card {
  min-width: 220px;
  padding: 14px 16px;
  border-radius: 18px;
}

.status-label {
  color: var(--text-soft);
}

.workspace {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.85fr);
  gap: 22px;
  align-items: start;
  min-width: 0;
}

.conversation-panel {
  display: grid;
  min-width: 0;
}

.preview-card {
  padding: 24px;
}

.workspace-editor-card {
  display: grid;
  gap: 4px;
  padding: 24px;
  align-content: start;
}

.workspace-quick-hint {
  display: grid;
  gap: 2px;
  margin-top: 2px;
  padding: 0;
  color: #000000;
  font-size: 1rem;
  line-height: 1.25;
}

.workspace-quick-hint p {
  margin: 0;
}

.conversation-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
}

.preview-editor-card {
  min-height: 0;
}

.panel-header h2,
.workspace-preview-header h2 {
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.08;
}

.panel-copy {
  margin: 10px 0 0;
  color: var(--text-soft);
  line-height: 1.68;
}

.workspace-shortcuts,
.workspace-preview-actions,
.workspace-doc-tabs,
.workspace-doc-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.workspace-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(16, 32, 51, 0.2);
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.workspace-filter.is-active {
  color: var(--accent-deep);
  background: rgba(31, 111, 255, 0.12);
  border-color: rgba(31, 111, 255, 0.14);
}

.workspace-filter:hover {
  color: var(--text);
  border-color: rgba(31, 111, 255, 0.12);
  background: rgba(255, 255, 255, 0.96);
}

.workspace-filter:disabled {
  opacity: 0.62;
  cursor: wait;
  transform: none;
}
.brand-lockup h1,
.preview-head h2 {
  margin: 0;
}

.preview-head h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.template-pill,
.role-option,
.skill-chip,
.research-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
}

.chat-history {
  flex: 1 1 auto;
  min-height: 340px;
  height: auto;
  padding: 0 22px 12px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  border-radius: 24px;
  border: 1px solid rgba(16, 32, 51, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(241, 246, 253, 0.92)),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.2) 0,
      rgba(255, 255, 255, 0.2) 36px,
      rgba(16, 32, 51, 0.02) 36px,
      rgba(16, 32, 51, 0.02) 37px
    );
}

.message-group {
  display: grid;
  gap: 10px;
  margin: 0;
}

.message {
  max-width: min(88%, 760px);
  padding: 16px 18px;
  border-radius: 20px;
  line-height: 1.65;
  font-size: 0.96rem;
}

.message.bot {
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  border-top-left-radius: 8px;
}

.message.message-pending {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 246, 254, 0.94));
}

.message.user {
  margin-left: auto;
  background: linear-gradient(135deg, var(--blue), #264eb4);
  color: #ffffff;
  border-top-right-radius: 8px;
}

.pending-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.pending-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--sage));
  opacity: 0.32;
  animation: pendingPulse 1.2s ease-in-out infinite;
}

.pending-dot:nth-child(2) {
  animation-delay: 0.18s;
}

.pending-dot:nth-child(3) {
  animation-delay: 0.36s;
}

.pending-label {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
  font-size: 0.92rem;
}

.role-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.role-option {
  border: 1px solid rgba(31, 111, 255, 0.3);
  background: rgba(255, 255, 255, 0.94);
  color: var(--accent-deep);
  padding: 11px 16px;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.role-option:hover,
.role-option:focus-visible,
.file-trigger:hover,
.send-button:hover {
  transform: translateY(-1px);
}

.role-option.is-selected {
  background: rgba(31, 111, 255, 0.12);
  border-color: rgba(31, 111, 255, 0.32);
}

.system-note {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(18, 179, 167, 0.08);
  color: #0b6f68;
  font-size: 0.9rem;
}

.composer {
  display: grid;
  gap: 8px;
  padding: 0;
  background: transparent;
}

.guidance-panel {
  margin-top: 0;
  padding: 12px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(18, 179, 167, 0.06), rgba(255, 255, 255, 0.78));
  border: 1px solid rgba(18, 179, 167, 0.22);
}

.guidance-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
}

.guidance-summary::-webkit-details-marker {
  display: none;
}

.guidance-summary-copy {
  min-width: 0;
}

.guidance-summary h3 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.guidance-toggle-label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(29, 42, 53, 0.08);
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.guidance-panel[open] .guidance-toggle-label {
  background: rgba(18, 179, 167, 0.14);
  color: #0b6f68;
}

.guidance-body {
  margin-top: 12px;
}

.guidance-copy {
  margin: 8px 0 0;
  color: var(--text-soft);
  line-height: 1.55;
  font-size: 0.88rem;
}

.guidance-grid {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.guided-form-shell {
  margin-top: 12px;
}

.guided-form {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 32, 51, 0.08);
}

.guided-form-head h4 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.guided-form-head p {
  margin: 6px 0 0;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.guided-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.guided-field {
  display: grid;
  gap: 7px;
}

.guided-field-wide {
  grid-column: 1 / -1;
}

.guided-field span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

.guided-field input,
.guided-field textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: 16px;
  background: var(--surface-strong);
  color: var(--text);
  outline: none;
}

.guided-field textarea {
  resize: vertical;
  min-height: 84px;
}

.guided-field input:focus,
.guided-field textarea:focus {
  border-color: rgba(63, 110, 216, 0.45);
  box-shadow: 0 0 0 4px rgba(63, 110, 216, 0.08);
}

.guided-form-actions {
  display: flex;
  justify-content: flex-end;
}

.guided-submit {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sage), #3e866f);
  color: #fffdf9;
  font-weight: 800;
  cursor: pointer;
}

.guidance-card {
  padding: 12px 13px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 32, 51, 0.06);
}

.guidance-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.guidance-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.5;
  font-size: 0.84rem;
}

.attachment-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin: 0;
}

.file-trigger,
.send-button {
  border: 0;
  cursor: pointer;
}

.file-trigger.is-disabled,
.send-button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
}

.file-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--accent-deep);
  background: rgba(31, 111, 255, 0.14);
  border: 1px solid rgba(31, 111, 255, 0.2);
  font-weight: 700;
}

.attachment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.attachment-chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16, 32, 51, 0.08);
  color: var(--text-soft);
  font-size: 0.86rem;
}

.composer-row {
  display: grid;
  grid-template-columns: 1fr 112px;
  gap: 8px;
  align-items: stretch;
  margin: 0;
}

#chatInput {
  display: block;
  margin: 0;
  resize: none;
  min-height: 180px;
  max-height: 280px;
  padding: 18px 18px;
  border: 1px solid rgba(16, 32, 51, 0.18);
  border-radius: 22px;
  background: var(--surface-strong);
  color: var(--text);
  outline: none;
  line-height: 1.6;
}

#chatInput:focus {
  border-color: rgba(63, 110, 216, 0.45);
  box-shadow: 0 0 0 4px rgba(63, 110, 216, 0.08);
}

.preview-panel {
  display: grid;
  min-width: 0;
}

.send-button {
  align-self: end;
}

.preview-stack {
  display: grid;
  gap: 18px;
}

.preview-card {
  border-radius: 30px;
}

.preview-card.is-primary {
  min-height: auto;
  display: flex;
  flex-direction: column;
}

.workspace-preview-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 4px;
}

.template-pill {
  padding: 10px 14px;
  background: rgba(31, 111, 255, 0.12);
  color: var(--accent-deep);
}

.template-match-note {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.workspace-document-shell {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(240, 245, 252, 0.94), rgba(236, 242, 250, 0.9));
  border: 1px solid rgba(16, 32, 51, 0.06);
  overflow: hidden;
}

.workspace-document-shell .document-shell {
  max-height: min(62vh, 760px);
  overflow-y: auto;
}

.workspace-document-toolbar,
.workspace-document-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 16px;
}

.workspace-document-toolbar {
  border-bottom: 1px solid rgba(16, 32, 51, 0.06);
}

.workspace-document-footer {
  border-top: 1px solid rgba(16, 32, 51, 0.06);
  color: var(--text-soft);
  font-size: 0.88rem;
}

.workspace-footer-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.workspace-doc-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 800;
}

.workspace-doc-tab.is-active {
  color: var(--accent-deep);
  background: rgba(31, 111, 255, 0.12);
}

.workspace-doc-controls {
  color: var(--text-soft);
  font-size: 0.79rem;
  font-weight: 700;
  align-items: center;
}

.document-shell {
  flex: 0 0 auto;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 32, 51, 0.06);
  margin: 14px;
  padding: 22px 24px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 16px 28px rgba(16, 32, 51, 0.06);
}

.resume-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.resume-header h3 {
  margin: 0 0 4px;
  font-size: 1.78rem;
  letter-spacing: -0.05em;
  line-height: 1;
}

.resume-header p,
.contact-block span {
  color: var(--text-soft);
  line-height: 1.45;
}

.contact-block {
  display: grid;
  gap: 2px;
  text-align: right;
  font-size: 0.84rem;
}

.resume-section {
  padding-top: 14px;
}

.resume-section h4 {
  margin: 0 0 7px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.workspace-paper-tags span,
.skill-chip,
.research-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
}

.workspace-paper-tags span,
.skill-chip {
  background: rgba(31, 111, 255, 0.08);
  color: var(--accent-deep);
}

.workspace-paper-list,
.bullet-list {
  margin: 0;
  padding-left: 16px;
  display: grid;
  gap: 7px;
}

.workspace-paper-section {
  display: grid;
  gap: 6px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(16, 32, 51, 0.06);
}

.workspace-paper-section p,
.workspace-paper-list li {
  line-height: 1.45;
}

.workspace-paper-section p {
  margin: 0;
}

.workspace-paper-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@keyframes pendingPulse {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.28;
  }

  40% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

@media (min-width: 900px) {
  .app-shell {
    min-height: 100dvh;
  }

  .workspace-home-shell {
    min-height: calc(100dvh - 68px);
    align-items: start;
  }

  .workspace-content {
    min-height: 0;
  }

  .workspace {
    grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.9fr);
    align-items: start;
    min-height: 0;
  }

  .conversation-panel,
  .preview-panel {
    min-height: 0;
    min-width: 0;
  }

  .chat-history {
    min-height: 0;
    max-height: min(42vh, 420px);
  }

  .preview-stack {
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
  }

  .preview-card {
    overflow: hidden;
  }

  .workspace-preview-header {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .workspace-preview-header h2 {
    font-size: clamp(1.28rem, 1.7vw, 1.68rem);
  }

  .template-pill,
  .workspace-preview-actions .workspace-filter {
    min-height: 32px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .workspace-document-shell {
    min-height: 0;
  }

  .workspace-document-shell .document-shell {
    max-height: min(44vh, 480px);
    margin: 10px;
    padding: 16px 20px;
  }

  .workspace-paper-header {
    padding-bottom: 8px;
  }

  .workspace-paper-header h3 {
    font-size: clamp(1.38rem, 1.55vw, 1.62rem);
  }

  .workspace-paper-section {
    gap: 4px;
    padding-top: 8px;
    padding-bottom: 7px;
  }

  .workspace-paper-section p,
  .workspace-paper-list li {
    line-height: 1.34;
  }

  .workspace-paper-section h4 {
    margin-bottom: 4px;
  }

  .workspace-paper-tags {
    gap: 5px;
  }

  .workspace-paper-tags span {
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .composer {
    flex-shrink: 0;
  }
}


@media (max-width: 899px) {
  .workspace-home-shell {
    grid-template-columns: 1fr;
  }

  .workspace-sidebar {
    position: static;
  }

  .app-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .workspace {
    grid-template-columns: 1fr;
  }

  .conversation-panel {
    height: auto;
  }

  .preview-panel {
    height: auto;
  }

  .chat-history {
    min-height: 400px;
    height: auto;
  }

  .workspace-document-shell .document-shell {
    max-height: none;
  }
}

@media (max-width: 780px) {
  .app-shell {
    padding: 16px;
  }

  .workspace-sidebar {
    padding: 18px;
  }

  .topbar,
  .workspace-preview-header,
  .resume-header,
  .attachment-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .composer-row,
  .split-section,
  .guided-form-grid {
    grid-template-columns: 1fr;
  }

  .guidance-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-block {
    text-align: left;
  }
}
