:root {
  --bg: #f7f6f2;
  --surface: #ffffff;
  --text: #1d1d1b;
  --muted: #6b6a66;
  --border: #e3e1da;
  --accent: #356e5b;
  --accent-ghost: rgba(53, 110, 91, 0.1);
  --shadow:
    0 1px 2px rgba(15, 14, 10, 0.03),
    0 4px 12px rgba(15, 14, 10, 0.04),
    0 16px 48px rgba(15, 14, 10, 0.07);
  --radius: 18px;
  --font: "Satoshi", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
}

/* Meta agent theme (teal/cyan) */
.chat--meta {
  --accent: #0891b2;
  --accent-ghost: rgba(8, 145, 178, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font);
  background: radial-gradient(circle at top, #fdfcf9 0%, #f2f0ea 45%, #eeeae2 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Dot-wave canvas (main page) ---
   WebGL dot-wave rendered by dot-wave.js. Falls back to plain
   background gradient when reduced-motion is set or WebGL unavailable. */
#dot-wave {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}


.page {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
}

.chat {
  position: relative;
  width: min(720px, 100%);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  /* No fixed height — compact state sizes to header + composer */
  transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  /* Gradient border — green monochrome */
  border: 1.5px solid transparent;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(135deg, #7ab89a, #94cdb2, #b5dfc8) border-box;
}

.chat--expanded {
  height: min(88vh, 864px);
}

.chat__header h1 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.01em;
  font-variation-settings: "WONK" 0, "opsz" 36;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.descriptor {
  margin: 0 0 24px;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--muted);
}


.input {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f5f3ee;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 12px;
  position: relative;
  min-width: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input:focus-within {
  border-color: color-mix(in srgb, var(--accent) 35%, transparent);
  box-shadow: 0 0 0 3px var(--accent-ghost);
}

.tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 50px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(4px);
  pointer-events: none;
  white-space: nowrap;
  z-index: 1000;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Only show on hover over input field when active and NOT focused */
.input:has(textarea:hover) .tooltip.tooltip--visible,
.input textarea:hover~.tooltip.tooltip--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.input textarea {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font-size: 16px;
  outline: none;
  resize: none;
  font-family: inherit;
  line-height: 1.4;
  height: 1.4em;
  padding: 0;
  margin: 0;
  max-height: 120px;
  overflow-y: auto;
}

.input textarea::placeholder {
  color: var(--muted);
  opacity: 0.5;
  font-style: italic;
}

.send {
  flex-shrink: 0;
  /* Prevent shrinking on narrow screens */
  border: none;
  background: var(--accent);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 18px;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.send:hover:not(:disabled) {
  filter: brightness(1.1);
}

.send:disabled {
  color: transparent;
  cursor: not-allowed;
  position: relative;
  opacity: 0.8;
}

.send:disabled::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 2px;
}

/* Plus Menu Button */
.plus-menu-container {
  position: relative;
}

.plus-btn {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.plus-btn:hover {
  color: var(--accent);
}

.plus-btn[aria-expanded="true"] {
  color: var(--accent);
}

/* Plus Menu Popup */
.plus-menu {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  min-width: 200px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s ease;
  z-index: 100;
}

.plus-menu--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 0 0 1px var(--accent-ghost);
}

.plus-menu__item {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 12px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.plus-menu__item:hover {
  background: var(--accent-ghost);
}

.plus-menu__item--active {
  color: var(--accent);
  font-weight: 500;
}

.plus-menu__item--active::before {
  content: "●";
  position: absolute;
  left: 3px;
  font-size: 7px;
}

.plus-menu__divider {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}

/* Dynamic Suggestion Chip */
.suggestion-chip {
  margin-top: 10px;
  padding: 8px 14px;
  background: #fcfcfc;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, border-color 0.2s ease;
  backdrop-filter: blur(2px);
  position: relative;
  z-index: 0;
}

.suggestion-chip--visible {
  border-color: var(--border);
  opacity: 1;
  visibility: visible;
}

.suggestion-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  opacity: 0.15;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: -1;
  border-radius: inherit;
}

.suggestion-chip:hover::before {
  transform: scaleX(1);
}

.suggestion-chip:hover {
  border-color: color-mix(in srgb, var(--accent) 35%, transparent);
  color: var(--accent);
  box-shadow: 0 2px 8px color-mix(in srgb, var(--accent) 8%, transparent);
}

/* Topic Pills Grid */
.topic-pills {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 10px;
  padding: 0 22px;
}

.topic-pills--visible {
  display: grid;
}

.topic-pill {
  padding: 8px 0;
  background: #fcfcfc;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-family: inherit;
  color: var(--muted);
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.topic-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  opacity: 0.15;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: -1;
  border-radius: inherit;
}

.topic-pill:hover::before {
  transform: scaleX(1);
}

.topic-pill:hover {
  border-color: color-mix(in srgb, var(--accent) 35%, transparent);
  color: var(--accent);
  box-shadow: 0 2px 8px color-mix(in srgb, var(--accent) 8%, transparent);
}

.topic-pill.selected {
  border-color: var(--accent);
  color: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
}

.topic-pill.collapse-out {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Topic pills inherit the parent compositor's entrance animation,
   so no separate reduced-motion override is needed. */

/* Legacy chip styles (kept for potential reuse) */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 12px;
}

.chip {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  background: #faf9f5;
  font-size: 14px;
  cursor: pointer;
}

.chips--footer {
  padding: 14px 16px;
  border-radius: 18px;
  background: #fbfaf6;
  border: 1px solid var(--border);
  margin-top: 8px;
  margin-bottom: 8px;
}

.telemetry {
  position: absolute;
  bottom: 8px;
  right: 16px;
  font-family: "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 10px;
  color: var(--muted);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 100;
  /* Force on top */
  pointer-events: none;
  /* Let clicks pass through if needed */
}

.telemetry--visible {
  opacity: 0.8;
}

.messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
  flex: 1;
  /* Compact state: collapsed and invisible */
  overflow: hidden;
  opacity: 0;
  padding: 0;
  transition: opacity 0.3s ease 0.15s;
}

.chat--expanded .messages {
  opacity: 1;
  overflow-y: auto;
  padding-right: 4px;
  padding-bottom: 24px;
}

.messages> :first-child {
  margin-top: auto;
}

.message {
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 15px;
  line-height: 1.4;
}

.message__content>*:first-child {
  margin-top: 0;
}

.message__content>*:last-child {
  margin-bottom: 0;
}

.message__content p {
  margin: 0 0 10px;
}

.message__content ul,
.message__content ol {
  margin: 8px 0 10px 20px;
  padding: 0;
}

.message__content li {
  margin-bottom: 6px;
}

.message__content code {
  font-family: "SFMono-Regular", Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 0.9em;
  background: #efeee9;
  padding: 2px 6px;
  border-radius: 6px;
}

.message__content pre {
  background: #efeee9;
  padding: 12px;
  border-radius: 10px;
  overflow-x: auto;
  margin: 10px 0;
}

.message__content pre code {
  background: none;
  padding: 0;
}

.message__content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.message__cta {
  margin-top: 14px;
  margin-bottom: 4px;
  display: flex;
  justify-content: flex-end;
}

.cta-button {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--accent-ghost);
  color: var(--accent);
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: -1;
  border-radius: inherit;
}

.cta-button:hover::before {
  transform: scaleX(1);
}

.message.user {
  background: #f0efe9;
  border: 1px solid var(--border);
  align-self: flex-end;
}

.message.assistant {
  background: #f6f8f5;
  border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
  align-self: flex-start;
}

.message--has-cta {
  padding-bottom: 18px;
}

.message.thinking {
  padding: 12px 18px;
  background: transparent;
  border: none;
  font-style: italic;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.neural-pulse {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
  animation: pulse-core 2s infinite ease-in-out;
}

.neural-pulse::before,
.neural-pulse::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--accent);
  animation: pulse-ring 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.neural-pulse::after {
  animation-delay: 0.5s;
}

@keyframes pulse-core {

  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse-ring {
  0% {
    width: 100%;
    height: 100%;
    opacity: 0.8;
  }

  100% {
    width: 300%;
    height: 300%;
    opacity: 0;
  }
}

/* Entrance animation */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  opacity: 0;
  animation: fade-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-in-1 {
  animation-delay: 0s;
}

.animate-in-2 {
  animation-delay: 0.12s;
}

.animate-in-3 {
  animation-delay: 0.24s;
}

.animate-in-4 {
  animation-delay: 0.36s;
}

@media (prefers-reduced-motion: reduce) {
  .animate-in {
    animation: none;
    opacity: 1;
  }

  .chat,
  .messages {
    transition: none;
  }

  .modal,
  .modal__overlay,
  .modal__panel {
    transition: none;
  }

  .field input,
  .field textarea {
    transition: none;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 0;
    align-items: flex-start;
  }

  .chat {
    width: 100%;
    border-radius: 0;
    border: none;
    box-shadow: none;
    padding: 24px;
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--surface);
  }

  .chat--expanded {
    height: 100vh;
    height: 100dvh;
  }

  .topic-pills {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    padding: 0 14px;
  }

  .topic-pill {
    font-size: 12px;
    padding: 6px 0;
  }
}

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 10;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.25s;
}

.modal--open {
  visibility: visible;
  pointer-events: auto;
  transition: visibility 0s;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 16, 12, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.modal--open .modal__overlay {
  opacity: 1;
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  background: var(--surface);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  max-height: calc(100vh - 48px);
  overflow: auto;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal--open .modal__panel {
  opacity: 1;
  transform: scale(1);
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.modal__header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
}

.modal__close {
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  color: var(--muted);
}

.modal__form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

.field input,
.field textarea {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: var(--font);
  transition: border-color 0.15s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-ghost);
}

.modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.modal__actions .ghost {
  border: 1px solid var(--border);
  background: transparent;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

.modal__actions .primary {
  border: none;
  background: var(--accent);
  color: white;
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
}

.modal__status {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.modal__status--error {
  color: #b4422e;
}

@media (max-width: 640px) {
  .modal {
    align-items: flex-end;
  }

  .modal__panel {
    width: 100%;
    border-radius: 18px 18px 0 0;
    max-height: 90vh;
    transform: translateY(100%);
    transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .modal--open .modal__panel {
    transform: translateY(0);
  }
}

/* Mode Divider */
.mode-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  margin: 8px 0;
}

.mode-divider::before,
.mode-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.mode-divider__label {
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  background: var(--surface);
}

/* CTA Button States */
.cta-button:hover {
  color: white;
  border-color: transparent;
  box-shadow: 0 2px 12px color-mix(in srgb, var(--accent) 20%, transparent);
}

.cta-button--switch {
  background: transparent;
  border-color: var(--accent);
}

.cta-button--switch:hover {
  background: var(--accent);
  color: white;
}

/* --- Pitch page themes (scoped per company via data-pitch-theme) --- */
body[data-pitch-theme="cvent"] {
  --accent: #006AE1;
  --accent-ghost: rgba(0, 106, 225, 0.1);
  background: linear-gradient(180deg, #f2f7ff 0%, #edf2fb 45%, #e8eef8 100%);
}

body[data-pitch-theme="cvent"] .chat__header h1 {
  font-family: Satoshi, "Helvetica Neue", Arial, sans-serif;
}

body[data-pitch-theme="cvent"]::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #8457D9, #006AE1, #00CA9D);
  z-index: 100;
}

body[data-pitch-theme="cvent"] .chat {
  border: 1.5px solid transparent;
  background:
    linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)) padding-box,
    linear-gradient(135deg, #8457D9, #006AE1, #00CA9D) border-box;
}

body[data-pitch-theme="cvent"] .input:focus-within {
  border-color: rgba(0, 106, 225, 0.35);
}

body[data-pitch-theme="cvent"] .message.assistant {
  background: #f5f7fb;
  border-color: rgba(0, 106, 225, 0.18);
}

body[data-pitch-theme="cvent"] {
  --border: #dde1ea;
}

body[data-pitch-theme="cvent"] .message.user {
  background: #f2f0f8;
  border-color: #ddd9e8;
}

body[data-pitch-theme="cvent"] .input {
  background: #f0f2f7;
}

body[data-pitch-theme="cvent"] .suggestion-chip {
  background: #f5f7fb;
  border-color: var(--border);
  position: relative;
  overflow: hidden;
  z-index: 0;
}

body[data-pitch-theme="cvent"] .suggestion-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #8457D9, #006AE1, #00CA9D);
  opacity: 0.20;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: -1;
  border-radius: inherit;
}

body[data-pitch-theme="cvent"] .suggestion-chip:hover::before {
  transform: scaleX(1);
}

body[data-pitch-theme="cvent"] .suggestion-chip:hover {
  border-color: rgba(0, 106, 225, 0.3);
  color: #161851;
  box-shadow: 0 2px 8px rgba(0, 106, 225, 0.08);
}

body[data-pitch-theme="cvent"] .topic-pill {
  background: #f5f7fb;
  border-color: var(--border);
  position: relative;
  overflow: hidden;
  z-index: 0;
}

body[data-pitch-theme="cvent"] .topic-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #8457D9, #006AE1, #00CA9D);
  opacity: 0.20;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: -1;
  border-radius: inherit;
}

body[data-pitch-theme="cvent"] .topic-pill:hover::before {
  transform: scaleX(1);
}

body[data-pitch-theme="cvent"] .topic-pill:hover {
  border-color: rgba(0, 106, 225, 0.3);
  color: #161851;
  box-shadow: 0 2px 8px rgba(0, 106, 225, 0.08);
}

body[data-pitch-theme="cvent"] .cta-button {
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

body[data-pitch-theme="cvent"] .cta-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #8457D9, #006AE1, #00CA9D);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: -1;
  border-radius: inherit;
}

body[data-pitch-theme="cvent"] .cta-button:hover::before {
  transform: scaleX(1);
}

body[data-pitch-theme="cvent"] .cta-button:hover {
  color: white;
  border-color: transparent;
  box-shadow: 0 2px 12px rgba(0, 106, 225, 0.2);
}

/* --- Cloudflare theme --- */
body[data-pitch-theme="cloudflare"] {
  --accent: #c96a15;
  --accent-ghost: rgba(243, 128, 32, 0.1);
}

body[data-pitch-theme="cloudflare"] .chat {
  border: 1.5px solid transparent;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(135deg, #f6a623, #f38020, #e06b10) border-box;
}