
:root {
  --bg: #050607;
  --bg-soft: #090c0f;
  --panel: #0d1115;
  --panel-soft: #11171d;
  --line: rgba(255, 255, 255, 0.11);
  --line-bright: rgba(255, 255, 255, 0.2);
  --text: #f4f7f8;
  --muted: #9ba7ae;
  --muted-bright: #c6d0d4;
  --acid: #dfff00;
  --green: #42ff9e;
  --green-soft: #28d882;
  --cyan: #70ebff;
  --yellow: #fff400;
  --danger: #ff6577;
  --max-width: 1240px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-xl: 0 40px 120px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 20% 0%, rgba(66, 255, 158, 0.06), transparent 32%),
    radial-gradient(circle at 85% 15%, rgba(223, 255, 0, 0.05), transparent 26%),
    var(--bg);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-orbit {
  position: fixed;
  top: -420px;
  right: -320px;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  border: 1px solid rgba(223, 255, 0, 0.08);
  box-shadow:
    0 0 120px rgba(223, 255, 0, 0.04),
    inset 0 0 140px rgba(223, 255, 0, 0.03);
  pointer-events: none;
  z-index: -2;
}

.site-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  pointer-events: none;
  z-index: -3;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 7, 0.84);
  backdrop-filter: blur(18px);
}

.header-shell,
.section-shell,
.hero-shell,
.footer-shell,
.footer-bottom {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.header-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-symbol {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid rgba(223, 255, 0, 0.35);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #000 0 25%, transparent 27%),
    conic-gradient(
      from 180deg,
      rgba(223, 255, 0, 0.05),
      rgba(223, 255, 0, 0.75),
      rgba(66, 255, 158, 0.35),
      rgba(223, 255, 0, 0.05)
    );
  box-shadow:
    0 0 24px rgba(223, 255, 0, 0.16),
    inset 0 0 12px #000;
}

.brand-core {
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: #000;
  box-shadow: 0 0 12px #000;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.96rem;
  letter-spacing: 0.02em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  color: var(--muted-bright);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav .nav-cta {
  padding: 11px 16px;
  border: 1px solid rgba(223, 255, 0, 0.55);
  border-radius: 999px;
  color: var(--acid);
}

.site-nav .nav-cta:hover {
  color: #050607;
  background: var(--acid);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-shell {
  min-height: 740px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(460px, 0.95fr);
  align-items: center;
  gap: 64px;
  padding-block: 96px 84px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-copy h1,
.section h2 {
  margin: 0;
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3.7rem, 8vw, 7.5rem);
}

.hero-copy h1 span,
.section h2 span {
  color: var(--muted);
}

.hero-lede {
  max-width: 670px;
  margin: 30px 0 0;
  color: var(--muted-bright);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.hero-actions,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #041008;
  background: linear-gradient(135deg, var(--acid), var(--green));
  box-shadow: 0 10px 34px rgba(66, 255, 158, 0.14);
}

.button-secondary {
  border-color: var(--line-bright);
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.42);
}

.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 52px;
}

.hero-trust-row div {
  padding: 18px 18px 16px;
  border-top: 1px solid var(--line);
}

.hero-trust-row span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-trust-row strong {
  display: block;
  margin-top: 7px;
  font-size: 0.92rem;
}

.hero-visual {
  display: grid;
  min-height: 560px;
  place-items: center;
}

.black-hole-stage {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
}

.event-horizon {
  position: absolute;
  inset: 17%;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #000 0 42%, transparent 43%),
    conic-gradient(
      from 205deg,
      rgba(223, 255, 0, 0),
      rgba(223, 255, 0, 0.95),
      rgba(66, 255, 158, 0.34),
      rgba(223, 255, 0, 0.04),
      rgba(223, 255, 0, 0.75),
      rgba(223, 255, 0, 0)
    );
  filter: blur(1px);
  box-shadow:
    0 0 45px rgba(223, 255, 0, 0.16),
    0 0 130px rgba(223, 255, 0, 0.09);
  animation: horizonSpin 18s linear infinite;
}

.singularity {
  position: absolute;
  inset: 29%;
  border-radius: 50%;
  background: #000;
  box-shadow:
    0 0 30px #000,
    0 0 80px rgba(0, 0, 0, 0.92);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.orbit-one {
  inset: 5%;
  transform: rotate(18deg);
}

.orbit-two {
  inset: 11%;
  transform: rotate(67deg);
}

.orbit-three {
  inset: 23%;
  transform: rotate(118deg);
}

.system-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 126px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-bright);
  background: rgba(9, 12, 15, 0.86);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-xl);
  font-size: 0.78rem;
  font-weight: 750;
}

.system-tag span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #061008;
  background: var(--acid);
  font-size: 0.68rem;
}

.tag-ai {
  top: 10%;
  left: 2%;
}

.tag-software {
  top: 20%;
  right: 0;
}

.tag-web3 {
  bottom: 16%;
  left: 0;
}

.tag-liquidity {
  right: 1%;
  bottom: 8%;
}

.hero-marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--acid);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.marquee-track span {
  position: relative;
  padding: 14px 34px;
  color: #050607;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.marquee-track span::after {
  content: "●";
  position: absolute;
  right: -4px;
  color: rgba(5, 6, 7, 0.48);
}

.section {
  padding-block: 118px;
}

.section-dark {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.014), rgba(255, 255, 255, 0.014)),
    var(--bg-soft);
}

.section h2 {
  font-size: clamp(2.6rem, 5vw, 5.2rem);
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: 90px;
}

.company-copy {
  display: grid;
  gap: 22px;
  align-content: start;
}

.company-copy p {
  margin: 0;
  color: var(--muted-bright);
  font-size: 1.1rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 52px;
}

.section-heading.narrow {
  max-width: 740px;
}

.section-heading > p:last-child,
.section-lede {
  margin: 26px 0 0;
  color: var(--muted-bright);
  font-size: 1.08rem;
}

.division-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.division-card {
  min-height: 340px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.division-card:hover {
  background: rgba(255, 255, 255, 0.038);
}

.division-featured {
  background:
    linear-gradient(145deg, rgba(66, 255, 158, 0.08), transparent 65%),
    rgba(255, 255, 255, 0.02);
}

.division-number {
  color: var(--green);
  font-family: monospace;
  font-size: 0.78rem;
}

.division-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.division-card h3 {
  max-width: 420px;
  margin: 14px 0 18px;
  font-size: 1.8rem;
  line-height: 1.08;
}

.division-card p:not(.division-label) {
  margin: 0;
  color: var(--muted-bright);
}

.division-card a {
  display: inline-flex;
  gap: 8px;
  margin-top: 30px;
  color: var(--acid);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.product-spotlight {
  display: grid;
  grid-template-columns: minmax(260px, 0.35fr) minmax(0, 0.65fr);
  gap: 72px;
}

.product-identity {
  position: sticky;
  top: 130px;
  align-self: start;
}

.product-mark {
  display: grid;
  width: 180px;
  height: 180px;
  place-items: center;
  margin-bottom: 32px;
  border: 1px solid rgba(66, 255, 158, 0.34);
  border-radius: 30px;
  color: var(--green);
  background:
    radial-gradient(circle at 30% 20%, rgba(66, 255, 158, 0.12), transparent 44%),
    var(--panel);
  box-shadow: 0 30px 100px rgba(66, 255, 158, 0.08);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.product-copy > h3 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.4rem);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.product-copy > p {
  max-width: 810px;
  margin: 24px 0 0;
  color: var(--muted-bright);
  font-size: 1.08rem;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 48px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.capability-grid article {
  min-height: 205px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-grid span {
  color: var(--green);
  font-family: monospace;
  font-size: 0.76rem;
}

.capability-grid h4 {
  margin: 22px 0 10px;
  font-size: 1.25rem;
}

.capability-grid p {
  margin: 0;
  color: var(--muted);
}

.software-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(400px, 0.48fr);
  gap: 54px;
  align-items: start;
}

.software-list {
  border-top: 1px solid var(--line);
}

.software-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.software-list article > span {
  color: var(--green);
  font-family: monospace;
}

.software-list h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.software-list p {
  margin: 0;
  color: var(--muted);
}

.software-terminal {
  overflow: hidden;
  border: 1px solid var(--line-bright);
  border-radius: var(--radius-md);
  background: #020304;
  box-shadow: var(--shadow-xl);
}

.terminal-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: #0b0e11;
}

.terminal-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #434b50;
}

.terminal-top span:nth-child(1) {
  background: #ff6577;
}

.terminal-top span:nth-child(2) {
  background: var(--acid);
}

.terminal-top span:nth-child(3) {
  background: var(--green);
}

.terminal-top p {
  margin: 0 0 0 10px;
  color: var(--muted);
  font-family: monospace;
  font-size: 0.75rem;
}

.software-terminal pre {
  margin: 0;
  padding: 34px;
  overflow: auto;
}

.software-terminal code {
  color: #d7e3e7;
  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;
  font-size: 0.92rem;
  line-height: 1.9;
}

.web3-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(500px, 0.58fr);
  gap: 80px;
  align-items: start;
}

.web3-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.web3-cards article {
  min-height: 225px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.web3-cards h3 {
  margin: 0 0 14px;
  font-size: 1.25rem;
}

.web3-cards p {
  margin: 0;
  color: var(--muted);
}

.disclosure-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 36px;
  margin-top: 68px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
}

.disclosure-card strong {
  color: var(--acid);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.disclosure-card p {
  margin: 0;
  color: var(--muted);
}

.section-contact {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 20%, rgba(66, 255, 158, 0.07), transparent 33%),
    var(--bg-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(500px, 0.58fr);
  gap: 80px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 28px 0 0;
  color: var(--muted-bright);
  font-size: 1.08rem;
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.contact-details div {
  display: grid;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-details span {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details strong {
  font-size: 1rem;
  font-weight: 750;
  text-decoration: none;
}

.contact-form {
  padding: 34px;
  border: 1px solid var(--line-bright);
  border-radius: var(--radius-lg);
  background: rgba(13, 17, 21, 0.88);
  box-shadow: var(--shadow-xl);
}

.form-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.form-heading p {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 850;
}

.form-heading span {
  color: var(--muted);
  font-size: 0.75rem;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted-bright);
  font-size: 0.82rem;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  outline: none;
  color: var(--text);
  background: #080b0e;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.contact-form input,
.contact-form select {
  min-height: 52px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
  padding: 14px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(66, 255, 158, 0.7);
  box-shadow: 0 0 0 3px rgba(66, 255, 158, 0.08);
}

.contact-form select {
  appearance: none;
}

.contact-form .form-consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-weight: 500;
}

.form-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.form-button {
  width: 100%;
  margin-top: 6px;
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--muted-bright);
  font-size: 0.86rem;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: var(--danger);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #030405;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) repeat(3, minmax(140px, 0.7fr));
  gap: 56px;
  padding-block: 64px;
}

.footer-brand p {
  max-width: 430px;
  margin: 26px 0 0;
  color: var(--muted);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: var(--muted-bright);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a {
  color: var(--muted);
  font-size: 0.88rem;
  text-decoration: none;
}

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

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

@keyframes horizonSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1050px) {
  .hero-shell,
  .company-grid,
  .product-spotlight,
  .software-layout,
  .web3-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    gap: 34px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .product-identity {
    position: static;
  }

  .software-terminal {
    max-width: 700px;
  }

  .web3-cards {
    max-width: 760px;
  }

  .contact-form {
    max-width: 760px;
  }

  .footer-shell {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 82px 0 auto;
    display: none;
    max-height: calc(100vh - 82px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 6, 7, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    margin-top: 12px;
    text-align: center;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 70px;
  }

  .hero-trust-row {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .division-grid,
  .capability-grid,
  .web3-cards {
    grid-template-columns: 1fr;
  }

  .division-card {
    min-height: auto;
  }

  .disclosure-card {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
  }
}

@media (max-width: 620px) {
  .header-shell,
  .section-shell,
  .hero-shell,
  .footer-shell,
  .footer-bottom {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .brand-copy small {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(3.25rem, 17vw, 5.4rem);
  }

  .section {
    padding-block: 84px;
  }

  .section h2 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .hero-visual {
    min-height: 340px;
  }

  .black-hole-stage {
    width: 340px;
  }

  .system-tag {
    min-width: 108px;
    padding: 8px 10px;
    font-size: 0.7rem;
  }

  .system-tag span {
    width: 26px;
    height: 26px;
  }

  .tag-ai {
    left: 0;
  }

  .tag-software {
    right: 0;
  }

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

  .contact-form {
    padding: 22px;
    border-radius: var(--radius-md);
  }

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

  .footer-shell {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
