#contact-name-display {
  position: fixed;
  z-index: 10;
  overflow: hidden;
}
#contact-name-display svg {
  display: block;
  overflow: visible;
}
#contact-name-display text {
  fill: #FFFFFF;
}

#contact-find-me-label {
  position: fixed;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0.75rem;
  background: transparent;
  border: none;
  overflow: hidden;
}
#contact-find-me-label::before, #contact-find-me-label::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
}
#contact-find-me-label::before {
  top: 0;
  background: linear-gradient(to right, #2CC295 40%, transparent 60%);
}
#contact-find-me-label::after {
  bottom: 0;
  background: linear-gradient(to right, #2CC295, transparent);
}
#contact-find-me-label .find-me-text {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #F1F7F7;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

#contact-get-in-touch-strip {
  position: fixed;
  z-index: 10;
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  background: linear-gradient(to right, transparent 0%, #042222 100%);
  border: none;
  border-radius: 0 0.75rem 0 0;
  overflow: hidden;
}
#contact-get-in-touch-strip #contact-get-in-touch-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #F1F7F7;
  text-transform: uppercase;
  gap: 0.25rem;
  white-space: nowrap;
}
#contact-get-in-touch-strip #contact-get-in-touch-heading i {
  color: #00DF82;
  font-size: 0.75rem;
}

#contact-intro-card {
  position: fixed;
  z-index: 10;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #042222 0%, #021A1A 100%);
  border-radius: 0 0 1rem 1rem;
  padding: 0.75rem 1rem;
  gap: 0.5rem;
  overflow: hidden;
}

#contact-social-links {
  position: fixed;
  z-index: 10;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.contact-social-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  height: 100%;
}

.contact-social-list > li {
  flex: 1;
  display: flex;
  align-items: stretch;
  min-height: 0;
}

.contact-social-item {
  display: flex;
  align-items: stretch;
  text-decoration: none;
  color: #F1F7F7;
  width: 100%;
  transition: box-shadow 300ms ease, filter 300ms ease;
}
.contact-social-item .contact-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  height: 100%;
  border-radius: 9999px;
  background: #03624C;
  flex-shrink: 0;
}
.contact-social-item .contact-social-icon i {
  color: #FFFFFF;
  font-size: 1rem;
}
.contact-social-item .contact-social-label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 100%;
  background: linear-gradient(90deg, #03624C, transparent);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: #FFFFFF;
  justify-content: flex-start;
  padding-left: 0.75rem;
}
.contact-social-item:hover {
  box-shadow: 0 0 20px rgba(94, 175, 116, 0.5);
  filter: brightness(1.1);
}
.contact-social-item:focus-visible {
  outline: 2px solid #00DF82;
  outline-offset: 2px;
}

#contact-form-card {
  position: fixed;
  z-index: 10;
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 2px solid rgba(44, 194, 149, 0.4);
  border-radius: 0.75rem 0.75rem 0 0;
  padding: 0.75rem;
  overflow: hidden;
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
  overflow: hidden;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  min-width: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  flex-shrink: 0;
  min-width: 0;
  overflow: hidden;
}
.form-group label {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #5EAF74;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  white-space: nowrap;
  line-height: 1;
}
.form-group input, .form-group textarea {
  background: rgba(3, 98, 76, 0.15);
  border: 1px solid rgba(3, 98, 76, 0.4);
  border-radius: 0.5rem;
  color: #F1F7F7;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: rgba(241, 247, 247, 0.3);
}
.form-group input:focus, .form-group textarea:focus {
  border-color: #2CC295;
  box-shadow: 0 0 0 2px rgba(44, 194, 149, 0.15);
}
.form-group .field-error {
  font-size: 0.6rem;
  color: #ff6b6b;
  display: block;
  line-height: 1;
  height: 0;
  overflow: hidden;
}
.form-group .field-error:not(:empty) {
  height: auto;
  padding-top: 1px;
}
.form-group--message {
  flex: 1;
  min-height: 0;
}
.form-group--message textarea {
  height: 100%;
  min-height: 0;
}

.form-group input,
.form-group textarea {
  resize: none;
}
.form-group input[aria-invalid=true],
.form-group textarea[aria-invalid=true] {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.15);
}

.form-footer {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-height: 0;
}

.form-note {
  font-size: 0.75rem;
  flex: 1;
  line-height: 1.2;
}
.form-note--error {
  color: #ff6b6b;
}
.form-note--success {
  color: #00DF82;
}

#contact-submit {
  display: flex;
  align-items: center;
  justify-content: center;
}
#contact-submit:focus-visible {
  outline: 2px solid #2CC295;
  outline-offset: 2px;
}
#contact-submit {
  gap: 0.5rem;
  background: #2CC295;
  border: none;
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  transition: box-shadow 200ms ease, transform 200ms ease;
  flex-shrink: 0;
}
#contact-submit span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #021A1A;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
#contact-submit i {
  color: #021A1A;
  font-size: 0.75rem;
}
#contact-submit:hover {
  box-shadow: 0 0 18px rgba(44, 194, 149, 0.35);
  transform: translateY(-1px);
}
#contact-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

#contact-cta {
  position: fixed;
  z-index: 10;
  display: flex;
  align-items: stretch;
  overflow: visible;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
}
#contact-cta:focus-visible {
  outline: 2px solid #2CC295;
  outline-offset: 2px;
}
#contact-cta .cta-content {
  flex: 1;
  border-radius: 0 9999px 9999px 0;
  background: linear-gradient(90deg, transparent, #03624C);
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-end;
  padding-right: 0.75rem;
}
#contact-cta .cta-content span {
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  white-space: nowrap;
}
#contact-cta .cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  background: #03624C;
  border: none;
  padding: 0;
  flex-shrink: 0;
}
#contact-cta .cta-icon i {
  color: #FFFFFF;
  font-size: 0.75rem;
}
#contact-cta:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#contact-quick-info {
  position: fixed;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
  overflow: hidden;
}

.quick-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  height: 100%;
  justify-content: space-between;
}

.quick-info-tile {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.5rem;
  background: rgba(3, 98, 76, 0.12);
  border: 1px solid rgba(3, 98, 76, 0.25);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: background 200ms ease, border-color 200ms ease;
}
.quick-info-tile > i {
  color: #00DF82;
  font-size: 0.875rem;
  width: 1rem;
  text-align: center;
  flex-shrink: 0;
}
.quick-info-tile:hover {
  background: rgba(3, 98, 76, 0.22);
  border-color: rgba(44, 194, 149, 0.4);
}

.quick-info-content {
  display: flex;
  flex-direction: column;
  gap: 1px;
  overflow: hidden;
}

.quick-info-label {
  font-size: 0.6rem;
  font-weight: 600;
  color: #5EAF74;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.quick-info-value {
  font-size: 0.65rem;
  font-weight: 500;
  color: #F1F7F7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#contact-console {
  position: fixed;
  z-index: 10;
  display: flex;
  flex-direction: column;
  background: #0a0f0f;
  border: 1px solid rgba(44, 194, 149, 0.2);
  border-radius: 0.75rem;
  overflow: hidden;
  font-family: "JetBrains Mono", monospace;
}

.console-topbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(44, 194, 149, 0.1);
  flex-shrink: 0;
}

.console-dots {
  display: flex;
  gap: 0.5rem;
}
.console-dots .dot--red {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 9999px;
  background: #ff5f56;
}
.console-dots .dot--yellow {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 9999px;
  background: #ffbd2e;
}
.console-dots .dot--green {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 9999px;
  background: #27c93f;
}

.console-title {
  font-size: 0.75rem;
  color: rgba(241, 247, 247, 0.4);
  margin-left: 0.5rem;
  font-family: "JetBrains Mono", monospace;
}

.console-output {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: #03624C transparent;
}
.console-output::-webkit-scrollbar {
  width: 6px;
}
.console-output::-webkit-scrollbar-track {
  background: transparent;
}
.console-output::-webkit-scrollbar-thumb {
  background: #03624C;
  border-radius: 9999px;
}

.console-block {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.console-line {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.625;
}

.console-prompt {
  color: #00DF82;
  font-weight: 700;
  flex-shrink: 0;
  user-select: none;
}

.console-text {
  color: rgba(241, 247, 247, 0.8);
}
.console-text--cmd {
  color: #F1F7F7;
  font-weight: 600;
}

.console-line--result .console-prompt {
  color: rgba(94, 175, 116, 0.7);
}

.console-highlight {
  color: #00DF82;
  font-weight: 600;
}

.console-line--error .console-text {
  color: #ff6b6b;
}

.console-line--comment .console-text {
  color: rgba(94, 175, 116, 0.7);
}

.console-input-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-top: 1px solid rgba(44, 194, 149, 0.1);
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.02);
}

.console-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #F1F7F7;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  caret-color: #00DF82;
}
.console-input::placeholder {
  color: rgba(241, 247, 247, 0.2);
}
.console-input:focus-visible {
  outline: none;
}

#contact-robo-card {
  position: fixed;
  z-index: 10;
  overflow: hidden;
  border-radius: 0.75rem;
  transition: filter 300ms ease;
  cursor: pointer;
}
#contact-robo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  object-position: center top;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.8));
  animation: float-bot 4s ease-in-out infinite;
}

#contact-ai-agent {
  position: fixed;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: flex-end;
  background: linear-gradient(to bottom, transparent, #031B1B);
  border-radius: 0.75rem;
  padding-bottom: 0.5rem;
}
#contact-ai-agent button {
  background: transparent;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
}
#contact-ai-agent button:focus-visible {
  outline: 2px solid #00DF82;
  outline-offset: 3px;
}
#contact-ai-agent button {
  font-weight: 600;
  color: #00DF82;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.025em;
}
#contact-ai-agent button:focus-visible {
  border-radius: 0.25rem;
}