:root {
  --bg: #f6f7f9;
  --panel: #fff;
  --text: #111318;
  --muted: #656d78;
  --faint: #979da6;
  --line: rgba(15, 20, 28, 0.09);
  --line-strong: rgba(15, 20, 28, 0.15);
  --green: #16803c;
  --cyan: #0d86a8;
  --pink: #c82f69;
  --button-bg: #111318;
  --button-text: #f7f8fa;
  --shadow: rgba(20, 24, 30, 0.11);

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

:root[data-theme="dark"] {
  --bg: #08090b;
  --panel: #101216;
  --text: #f4f6f8;
  --muted: #8b929d;
  --faint: #555c66;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.15);
  --green: #a7f3c1;
  --cyan: #7dd9ff;
  --pink: #ff7eac;
  --button-bg: #f4f6f8;
  --button-text: #0b0d10;
  --shadow: rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(
      circle at 16% 8%,
      color-mix(in srgb, var(--text) 3%, transparent),
      transparent 24rem
    ),
    radial-gradient(
      circle at 90% 84%,
      color-mix(in srgb, var(--cyan) 3%, transparent),
      transparent 28rem
    ),
    var(--bg);
  color: var(--text);
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.06;
  background: repeating-linear-gradient(
    to bottom,
    color-mix(in srgb, var(--text) 3%, transparent) 0,
    color-mix(in srgb, var(--text) 3%, transparent) 1px,
    transparent 1px,
    transparent 4px
  );
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Layout */

.page {
  width: min(1180px, calc(100% - 64px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 32px 0 34px;
}

.topbar {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-name {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  color: var(--text);
  letter-spacing: -0.02em;
  user-select: none;
}

.site-name-first {
  font-size: 14px;
  font-weight: 650;
}

.site-name-separator {
  color: var(--faint);
  font-family:
    "SFMono-Regular",
    "SF Mono",
    Menlo,
    Monaco,
    Consolas,
    monospace;
  font-size: 11px;
  transform: translateY(-1px);
}

.site-name-last {
  color: var(--muted);
  font-family:
    "SFMono-Regular",
    "SF Mono",
    Menlo,
    Monaco,
    Consolas,
    monospace;
  font-size: 12px;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.theme-toggle {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: color-mix(in srgb, var(--text) 2%, transparent);
  color: var(--muted);
  cursor: pointer;
  transition:
    transform 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  color: var(--text);
  border-color: var(--line-strong);
  background: color-mix(in srgb, var(--text) 4%, transparent);
}

.theme-toggle svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
}

/* Hero */

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(420px, 0.95fr);
  gap: clamp(64px, 8vw, 120px);
  align-items: center;
  padding: clamp(86px, 13vh, 150px) 0 clamp(84px, 12vh, 140px);
}

.hero-copy {
  min-width: 0;
}

.globb {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: clamp(94px, 15vw, 188px);
  line-height: 0.79;
  letter-spacing: -0.082em;
  font-weight: 790;
  user-select: none;
  isolation: isolate;
}

.globb::before,
.globb::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
}

.globb::before {
  color: var(--pink);
  transform: translateX(3px);
}

.globb::after {
  color: var(--cyan);
  transform: translateX(-3px);
}

.globb.is-glitching::before,
.globb:hover::before {
  animation: glitch-a 520ms steps(2, end);
}

.globb.is-glitching::after,
.globb:hover::after {
  animation: glitch-b 450ms steps(2, end);
}

@keyframes glitch-a {
  0% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
  }

  10% {
    opacity: 0.82;
    clip-path: inset(11% 0 68% 0);
    transform: translate(7px, -1px);
  }

  22% {
    clip-path: inset(71% 0 9% 0);
    transform: translate(-2px, 1px);
  }

  34% {
    clip-path: inset(37% 0 43% 0);
    transform: translate(4px, 0);
  }

  48% {
    opacity: 0.75;
    clip-path: inset(84% 0 4% 0);
    transform: translate(-5px, 0);
  }

  60% {
    opacity: 0;
  }

  76% {
    opacity: 0.55;
    clip-path: inset(19% 0 62% 0);
    transform: translate(2px, 0);
  }

  100% {
    opacity: 0;
    clip-path: inset(100% 0 0 0);
  }
}

@keyframes glitch-b {
  0% {
    opacity: 0;
    clip-path: inset(100% 0 0 0);
  }

  13% {
    opacity: 0.7;
    clip-path: inset(63% 0 17% 0);
    transform: translate(-6px, 1px);
  }

  27% {
    clip-path: inset(22% 0 62% 0);
    transform: translate(3px, -1px);
  }

  41% {
    clip-path: inset(48% 0 31% 0);
    transform: translate(-3px, 0);
  }

  57% {
    opacity: 0.62;
    clip-path: inset(7% 0 75% 0);
    transform: translate(4px, 0);
  }

  71% {
    opacity: 0;
  }

  86% {
    opacity: 0.45;
    clip-path: inset(78% 0 8% 0);
    transform: translate(-2px, 0);
  }

  100% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
  }
}

.tagline {
  max-width: 760px;
  margin: 40px 0 0;
  color: var(--text);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.45;
  letter-spacing: -0.03em;
  font-weight: 620;
  text-wrap: balance;
}

.tagline::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--green),
    color-mix(in srgb, var(--cyan) 72%, transparent)
  );
  opacity: 0.9;
}

/* Social actions */

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.launch {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: center;
  gap: 18px;
  min-width: 176px;
  padding: 14px 14px 14px 16px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--text) 3.2%, transparent),
    color-mix(in srgb, var(--text) 1.1%, transparent)
  );
  color: var(--text);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.launch::before,
.launch::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 8px;
  height: 8px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 150ms ease,
    transform 180ms cubic-bezier(0.22, 0.8, 0.3, 1);
}

.launch::before {
  top: 6px;
  left: 6px;
  border-top: 1px solid var(--green);
  border-left: 1px solid var(--green);
  transform: translate(3px, 3px);
}

.launch::after {
  right: 6px;
  bottom: 6px;
  border-right: 1px solid var(--green);
  border-bottom: 1px solid var(--green);
  transform: translate(-3px, -3px);
}

.launch:hover {
  border-color: color-mix(in srgb, var(--green) 20%, var(--line-strong));
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--green) 2.6%, transparent),
    color-mix(in srgb, var(--text) 1.1%, transparent)
  );
}

.launch:hover::before,
.launch:hover::after {
  opacity: 0.8;
  transform: translate(0);
}

.launch-main {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  gap: 2px;
  text-align: left;
}

.launch-label {
  font-size: 14px;
  font-weight: 650;
}

.launch-command {
  overflow: hidden;
  color: var(--faint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 160ms ease;
}

.launch:hover .launch-command {
  color: color-mix(in srgb, var(--green) 82%, var(--text));
}

.launch-icon {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--text) 1.4%, transparent);
  color: var(--muted);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.launch-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

.launch:hover .launch-icon {
  border-color: color-mix(in srgb, var(--green) 18%, var(--line));
  background: color-mix(in srgb, var(--green) 3%, transparent);
  color: var(--green);
}

.contact-launch::before {
  border-top-color: var(--cyan);
  border-left-color: var(--cyan);
}

.contact-launch::after {
  border-right-color: var(--cyan);
  border-bottom-color: var(--cyan);
}

.contact-launch:hover {
  border-color: color-mix(in srgb, var(--cyan) 20%, var(--line-strong));
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--cyan) 2.6%, transparent),
    color-mix(in srgb, var(--text) 1.1%, transparent)
  );
}

.contact-launch:hover .launch-command,
.contact-launch:hover .launch-icon {
  color: var(--cyan);
}

.contact-launch:hover .launch-icon {
  border-color: color-mix(in srgb, var(--cyan) 18%, var(--line));
  background: color-mix(in srgb, var(--cyan) 3%, transparent);
}

/* Terminal */

.terminal-card {
  width: 100%;
  max-width: 620px;
  align-self: center;
  justify-self: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--panel) 96%, transparent);
  box-shadow:
    0 24px 64px var(--shadow),
    inset 0 1px color-mix(in srgb, var(--text) 2.2%, transparent);
  color: var(--muted);
  font-family:
    "SFMono-Regular",
    "SF Mono",
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    monospace;
  font-size: 12px;
  line-height: 1.65;
}

.terminal-titlebar {
  height: 38px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--text) 2.4%, transparent);
}

.terminal-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.terminal-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--muted) 58%, transparent);
}

.terminal-title {
  color: var(--faint);
  font-size: 11px;
  text-align: center;
}

.terminal-spacer {
  width: 44px;
}

.terminal-body {
  padding: 18px 18px 20px;
}

.shell-line,
.terminal-prompt-line {
  min-height: 1.65em;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  color: var(--text);
}

.shell-user {
  color: var(--green);
}

.shell-path {
  color: var(--cyan);
}

.shell-symbol {
  margin-right: 8px;
  color: var(--muted);
}

.shell-command {
  color: var(--text);
}

.terminal-output {
  margin: 10px 0 14px;
}

.term-row {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 10px;
}

.term-key {
  color: var(--faint);
}

.term-value {
  min-width: 0;
  color: var(--muted);
}

.term-value.highlight {
  color: var(--green);
}

.prompt-prefix {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: baseline;
}

.terminal-typed {
  min-width: 0;
  overflow-wrap: anywhere;
}

.typing-cursor {
  width: 7px;
  height: 1.05em;
  display: inline-block;
  margin-left: 1px;
  vertical-align: -2px;
  background: currentColor;
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* Footer */

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 12px;
}

.footer button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.footer button:hover {
  color: var(--text);
}

/* Full-page glitch transition */

body.glitching .page,
body.glitching .contact-layer {
  animation: page-glitch 460ms steps(2, end);
}

body.glitching::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0 12%,
    color-mix(in srgb, var(--cyan) 14%, transparent) 12% 14%,
    transparent 14% 39%,
    color-mix(in srgb, var(--pink) 12%, transparent) 39% 41%,
    transparent 41% 73%,
    color-mix(in srgb, var(--green) 10%, transparent) 73% 75%,
    transparent 75%
  );
  mix-blend-mode: screen;
  animation: glitch-bars 460ms steps(2, end);
}

@keyframes page-glitch {
  0% {
    transform: translate(0);
    filter: none;
  }

  12% {
    transform: translate(-7px, 0);
    filter: hue-rotate(12deg) contrast(1.08);
  }

  24% {
    transform: translate(5px, -1px);
    filter: hue-rotate(-14deg) contrast(1.15);
  }

  39% {
    transform: translate(-3px, 1px);
    filter: saturate(1.2);
  }

  55% {
    transform: translate(4px, 0);
    filter: contrast(1.08);
  }

  74% {
    transform: translate(-2px, 0);
    filter: hue-rotate(6deg);
  }

  100% {
    transform: translate(0);
    filter: none;
  }
}

@keyframes glitch-bars {
  0% {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }

  14% {
    clip-path: inset(8% 0 70% 0);
    opacity: 0.8;
  }

  31% {
    clip-path: inset(55% 0 18% 0);
    opacity: 0.7;
    transform: translateX(10px);
  }

  47% {
    clip-path: inset(28% 0 48% 0);
    opacity: 0.75;
    transform: translateX(-8px);
  }

  68% {
    clip-path: inset(76% 0 8% 0);
    opacity: 0.5;
  }

  100% {
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
}

/* Contact */

.contact-layer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  overflow-y: auto;
  background: var(--bg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 140ms linear,
    visibility 0s linear 140ms;
}

.contact-layer.is-visible {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.contact-layer.is-open {
  opacity: 1;
}

.contact-shell {
  width: min(860px, calc(100% - 48px));
  margin: auto;
  padding: 64px 0;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 220ms ease,
    transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-layer.is-open .contact-shell {
  opacity: 1;
  transform: translateY(0);
}

.contact-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.contact-kicker {
  margin: 0 0 10px;
  color: var(--green);
  font-family:
    "SFMono-Regular",
    "SF Mono",
    Menlo,
    Monaco,
    Consolas,
    monospace;
  font-size: 12px;
}

.contact-title {
  margin: 0;
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 760;
}

.close-contact {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: color-mix(in srgb, var(--text) 2.2%, transparent);
  color: var(--muted);
  cursor: pointer;
}

.close-contact:hover {
  border-color: var(--line-strong);
  background: color-mix(in srgb, var(--text) 4%, transparent);
  color: var(--text);
}

.close-contact svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--text) 2.2%, transparent),
      transparent 20%
    ),
    var(--panel);
  box-shadow:
    0 28px 80px color-mix(in srgb, var(--shadow) 62%, transparent),
    inset 0 1px color-mix(in srgb, var(--text) 2.2%, transparent);
}

#contact-form {
  display: flex;
  flex-direction: column;
}

.contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 28px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field-label {
  color: var(--muted);
  font-size: 12px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--text) 2.4%, transparent),
    color-mix(in srgb, var(--text) 1.2%, transparent)
  );
  color: var(--text);
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.field input:hover,
.field textarea:hover {
  border-color: color-mix(in srgb, var(--text) 14%, var(--line));
}

.field input:focus,
.field textarea:focus {
  border-color: color-mix(in srgb, var(--green) 38%, var(--line));
  background: color-mix(in srgb, var(--text) 3.8%, transparent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--green) 5%, transparent);
  transform: translateY(-1px);
}

textarea {
  min-height: 190px;
  resize: vertical;
}

.form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px 14px 28px;
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel) 97%, transparent);
}

#status {
  min-height: 1.2em;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

#status[data-type="error"] {
  color: #d94a4a;
}

.send {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 10px 0 17px;
  border: 1px solid color-mix(in srgb, var(--button-bg) 14%, transparent);
  border-radius: 12px;
  background: var(--button-bg);
  color: var(--button-text);
  font-size: 13px;
  font-weight: 720;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    opacity 160ms ease;
}

.send:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--shadow) 66%, transparent);
}

.send-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: color-mix(in srgb, var(--button-text) 9%, transparent);
}

.send-icon svg {
  width: 15px;
  height: 15px;
}

.send:disabled {
  opacity: 0.5;
  cursor: wait;
  transform: none;
}

.contact-success {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  padding: 32px;
  background: var(--panel);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.contact-panel.is-success #contact-form {
  opacity: 0;
  visibility: hidden;
}

.contact-panel.is-success .contact-success {
  opacity: 1;
  visibility: visible;
}

.success-terminal {
  position: relative;
  color: var(--green);
  font-family:
    "SFMono-Regular",
    "SF Mono",
    Menlo,
    Monaco,
    Consolas,
    monospace;
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 750;
  letter-spacing: -0.045em;
  text-align: center;
  text-transform: uppercase;
  animation: success-glitch 820ms steps(2, end) infinite;
}

.success-terminal::before,
.success-terminal::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.success-terminal::before {
  color: var(--cyan);
  opacity: 0.55;
  transform: translateX(3px);
  clip-path: inset(20% 0 52% 0);
}

.success-terminal::after {
  color: var(--pink);
  opacity: 0.45;
  transform: translateX(-3px);
  clip-path: inset(62% 0 14% 0);
}

@keyframes success-glitch {
  0%,
  100% {
    transform: translate(0);
  }

  15% {
    transform: translate(-3px, 0);
  }

  28% {
    transform: translate(2px, -1px);
  }

  46% {
    transform: translate(-1px, 1px);
  }

  61% {
    transform: translate(2px, 0);
  }
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

/* Responsive */

@media (max-width: 930px) {
  .page {
    width: min(100% - 38px, 900px);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 66px;
    padding-top: 100px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .terminal-card {
    max-width: 680px;
    justify-self: stretch;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .page {
    width: min(100% - 28px, 640px);
    padding-top: 18px;
  }

  .hero {
    gap: 50px;
    padding: 86px 0 78px;
  }

  .globb {
    font-size: clamp(76px, 27vw, 116px);
  }

  .tagline {
    margin-top: 28px;
    font-size: 21px;
    line-height: 1.5;
  }

  .tagline::after {
    width: 46px;
    margin-top: 15px;
  }

  .social-row {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .launch {
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 14px;
  }

  .launch-icon {
    width: 34px;
    height: 34px;
    justify-self: end;
  }

  .terminal-card {
    font-size: 11px;
  }

  .terminal-body {
    padding: 16px;
  }

  .term-row {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .contact-shell {
    width: calc(100% - 24px);
    padding: 24px 0;
  }

  .contact-head {
    margin-bottom: 22px;
  }

  .contact-title {
    font-size: clamp(42px, 14vw, 60px);
  }

  .contact-fields {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .field.full {
    grid-column: 1;
  }

  .form-bottom {
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
  }

  .send {
    width: 100%;
  }

  .contact-success {
    min-height: 390px;
  }

  .success-terminal {
    font-size: clamp(28px, 9vw, 42px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
