:root {
  --ink: #f3f7f2;
  --ink-muted: #9dacaa;
  --night: #07120f;
  --night-soft: #0b1b17;
  --panel: rgba(14, 31, 27, 0.76);
  --panel-strong: rgba(17, 37, 32, 0.94);
  --line: rgba(226, 242, 234, 0.13);
  --lime: #c7ff64;
  --mint: #6bf6c3;
  --blue: #69a7ff;
  --coral: #ff7a5c;
  --danger: #ff9a80;
  --mouse-x: 50vw;
  --mouse-y: 50vh;
  --shadow: 0 42px 100px rgba(0, 0, 0, 0.38);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--night);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -5;
  content: "";
  background:
    radial-gradient(circle at 16% 2%, rgba(107, 246, 195, 0.11), transparent 33rem),
    radial-gradient(circle at 95% 70%, rgba(105, 167, 255, 0.1), transparent 38rem),
    linear-gradient(145deg, #07120f 0%, #091713 42%, #06100e 100%);
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

::selection {
  color: var(--night);
  background: var(--lime);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  pointer-events: none;
}

.cursor-glow {
  position: fixed;
  left: var(--mouse-x);
  top: var(--mouse-y);
  z-index: -3;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  opacity: 0.2;
  background: radial-gradient(circle, rgba(107, 246, 195, 0.55), transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: left 80ms linear, top 80ms linear;
}

.ambient {
  position: fixed;
  z-index: -4;
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
}

.ambient-one {
  top: 10%;
  left: -12rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(199, 255, 100, 0.12);
  background: rgba(199, 255, 100, 0.025);
  animation: ambient-drift-one 14s ease-in-out infinite alternate;
}

.ambient-two {
  right: -15rem;
  bottom: -10rem;
  width: 42rem;
  height: 42rem;
  border: 1px solid rgba(105, 167, 255, 0.14);
  background: rgba(105, 167, 255, 0.025);
  animation: ambient-drift-two 18s ease-in-out infinite alternate;
}

.page-shell {
  width: min(1540px, 100%);
  margin: 0 auto;
  padding: 0 clamp(22px, 4.5vw, 76px);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 106px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(199, 255, 100, 0.3);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(199, 255, 100, 0.14), rgba(107, 246, 195, 0.04));
  box-shadow: inset 0 0 22px rgba(199, 255, 100, 0.07);
  transform: rotate(-4deg);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark i {
  position: absolute;
  display: block;
  content: "";
}

.brand-mark::before {
  width: 16px;
  height: 16px;
  border: 2px solid var(--lime);
  border-radius: 50%;
}

.brand-mark::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 12px var(--coral);
  transform: translate(11px, -10px);
}

.brand-mark i {
  width: 31px;
  height: 31px;
  border: 1px dashed rgba(199, 255, 100, 0.45);
  border-radius: 50%;
  animation: rotate 10s linear infinite;
}

.brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.brand-label {
  color: var(--ink-muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.brand-copy strong {
  max-width: min(38vw, 440px);
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 46px);
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.live-status i {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 14px var(--mint);
}

.live-status i::after {
  position: absolute;
  inset: -5px;
  border: 1px solid var(--mint);
  border-radius: 50%;
  content: "";
  animation: ping 2s ease-out infinite;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 12px 15px 12px 19px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-cta span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: var(--night);
  background: var(--lime);
  font-size: 14px;
}

.header-cta:hover {
  border-color: rgba(199, 255, 100, 0.4);
  background: rgba(199, 255, 100, 0.08);
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(420px, 0.82fr);
  gap: clamp(46px, 6vw, 96px);
  align-items: center;
  min-height: calc(100vh - 106px);
  padding: clamp(58px, 7vw, 100px) 0 clamp(74px, 8vw, 112px);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--mint);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.eyebrow i {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--mint), transparent);
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 6vw, 94px);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -0.065em;
}

h1 em {
  position: relative;
  display: inline;
  color: var(--lime);
  font-weight: 400;
  text-shadow: 0 0 50px rgba(199, 255, 100, 0.12);
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--ink-muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.75;
}

.hero-intro strong {
  color: var(--ink);
}

.domain-visual {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  display: grid;
  width: min(670px, 100%);
  height: clamp(245px, 28vw, 330px);
  margin: 14px 0 34px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at center, rgba(107, 246, 195, 0.09), transparent 37%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 30px 70px rgba(0, 0, 0, 0.18);
  perspective: 900px;
  isolation: isolate;
}

.domain-visual::before {
  position: absolute;
  inset: -60%;
  z-index: -1;
  content: "";
  background: conic-gradient(from 0deg, transparent, rgba(107, 246, 195, 0.08), transparent 28%, rgba(105, 167, 255, 0.08), transparent 58%);
  animation: rotate 18s linear infinite;
}

.visual-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at center, #000, transparent 78%);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(199, 255, 100, 0.2);
  border-radius: 50%;
  transform: rotateX(64deg) rotateZ(-10deg);
}

.orbit::before {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 16px var(--lime);
  content: "";
}

.orbit-one {
  width: 82%;
  height: 70%;
  animation: orbit-wobble 8s ease-in-out infinite alternate;
}

.orbit-two {
  width: 61%;
  height: 52%;
  border-color: rgba(105, 167, 255, 0.18);
  animation: orbit-wobble-two 10s ease-in-out infinite alternate;
}

.orbit-two::before {
  right: 10%;
  left: auto;
  background: var(--blue);
  box-shadow: 0 0 16px var(--blue);
}

.orbit-three {
  width: 42%;
  height: 35%;
  border-style: dashed;
  border-color: rgba(255, 122, 92, 0.25);
  animation: orbit-wobble 7s ease-in-out infinite alternate-reverse;
}

.domain-core {
  position: relative;
  z-index: 4;
  display: flex;
  width: min(76%, 470px);
  min-height: 112px;
  padding: 25px 66px 25px 26px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(199, 255, 100, 0.32);
  border-radius: 24px;
  background: rgba(7, 18, 15, 0.82);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34), inset 0 1px rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 180ms ease-out, border-color 180ms ease;
}

.domain-visual:hover .domain-core {
  border-color: rgba(199, 255, 100, 0.55);
}

.core-label {
  margin-bottom: 6px;
  color: var(--mint);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.domain-core strong {
  overflow: hidden;
  font-size: clamp(18px, 2.8vw, 32px);
  letter-spacing: -0.035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.core-arrow {
  position: absolute;
  right: 19px;
  bottom: 19px;
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 50%;
  color: var(--night);
  background: var(--lime);
  box-shadow: 0 0 28px rgba(199, 255, 100, 0.25);
  font-size: 17px;
}

.satellite {
  position: absolute;
  z-index: 5;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-muted);
  background: rgba(7, 18, 15, 0.82);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  backdrop-filter: blur(10px);
}

.satellite-one {
  top: 20%;
  left: 8%;
  animation: float-one 5s ease-in-out infinite;
}

.satellite-two {
  top: 16%;
  right: 7%;
  animation: float-two 6s ease-in-out infinite;
}

.satellite-three {
  right: 12%;
  bottom: 13%;
  animation: float-one 5.5s ease-in-out infinite reverse;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 52px);
}

.primary-link {
  display: inline-flex;
  min-width: 222px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 9px 8px 19px;
  border-radius: 999px;
  color: var(--night);
  background: var(--lime);
  box-shadow: 0 12px 34px rgba(199, 255, 100, 0.15);
  font-size: 11px;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.primary-link i {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--night);
  font-size: 16px;
  font-style: normal;
  transition: transform 180ms ease;
}

.primary-link:hover {
  box-shadow: 0 17px 44px rgba(199, 255, 100, 0.24);
  transform: translateY(-2px);
}

.primary-link:hover i {
  transform: translateX(3px);
}

.trust-list {
  display: flex;
  gap: clamp(16px, 2.5vw, 32px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--ink-muted);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.trust-list span {
  color: var(--coral);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 3.3vw, 48px);
  border: 1px solid rgba(226, 242, 234, 0.16);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 36%),
    var(--panel);
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(24px);
}

.contact-panel::before {
  position: absolute;
  top: -120px;
  right: -90px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(105, 167, 255, 0.18), transparent 65%);
  pointer-events: none;
}

.contact-panel::after {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 44px;
  height: 44px;
  border-right: 1px solid rgba(199, 255, 100, 0.35);
  border-bottom: 1px solid rgba(199, 255, 100, 0.35);
  content: "";
  pointer-events: none;
}

.panel-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.panel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 12px var(--coral);
}

.panel-heading,
form,
.form-notice {
  position: relative;
  z-index: 1;
}

.panel-kicker {
  margin-bottom: 10px;
  color: var(--lime);
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

h2 {
  max-width: 480px;
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3vw, 49px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.panel-heading > p:last-child {
  max-width: 460px;
  margin-bottom: 30px;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.65;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  margin-bottom: 17px;
}

.field label,
.label-line {
  display: block;
  margin-bottom: 8px;
  color: #dbe5df;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.label-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.label-line label {
  margin: 0;
}

.character-count {
  color: #72827c;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(226, 242, 234, 0.14);
  border-radius: 12px;
  outline: none;
  color: var(--ink);
  background: rgba(2, 10, 8, 0.38);
  font-size: 13px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input {
  height: 50px;
  padding: 0 14px;
}

textarea {
  min-height: 122px;
  padding: 14px;
  line-height: 1.55;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #66756f;
}

input:focus,
textarea:focus {
  border-color: rgba(199, 255, 100, 0.55);
  background: rgba(3, 12, 9, 0.62);
  box-shadow: 0 0 0 4px rgba(199, 255, 100, 0.07), 0 0 24px rgba(199, 255, 100, 0.05);
}

.input-with-prefix {
  position: relative;
}

.input-with-prefix > span {
  position: absolute;
  top: 50%;
  left: 10px;
  z-index: 1;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 9px;
  color: var(--night);
  background: var(--mint);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: -0.02em;
  transform: translateY(-50%);
}

.input-with-prefix input {
  padding-left: 52px;
}

.field-hint {
  margin: 6px 0 0;
  color: #72827c;
  font-size: 9px;
}

.captcha-shell {
  margin: 2px 0 18px;
}

.captcha-label {
  display: block;
  margin-bottom: 8px;
  color: #dbe5df;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.captcha-label i {
  font-style: normal;
}

altcha-widget {
  display: block;
  width: 100%;
  --altcha-max-width: 100%;
  --altcha-color-base: #0a1713;
  --altcha-color-base-content: #f3f7f2;
  --altcha-color-neutral: #455650;
  --altcha-color-neutral-content: #dbe5df;
  --altcha-color-primary: #c7ff64;
  --altcha-color-primary-content: #07120f;
  --altcha-color-success: #6bf6c3;
  --altcha-color-success-content: #07120f;
  --altcha-border-color: rgba(226, 242, 234, 0.14);
  --altcha-border-radius: 12px;
  --altcha-padding: 0.78rem;
}

.consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin: 1px 0 20px;
  color: var(--ink-muted);
  cursor: pointer;
  font-size: 10px;
  line-height: 1.5;
}

.consent input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  flex: 0 0 auto;
  accent-color: var(--lime);
}

.submit-button {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 58px;
  padding: 8px 9px 8px 21px;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  color: var(--night);
  background: var(--lime);
  box-shadow: 0 15px 38px rgba(199, 255, 100, 0.13);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.submit-button::before {
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-20deg);
  transition: left 550ms ease;
}

.submit-button:hover::before {
  left: 140%;
}

.submit-button:hover {
  box-shadow: 0 20px 48px rgba(199, 255, 100, 0.22);
  transform: translateY(-2px);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.button-arrow {
  position: relative;
  display: grid;
  width: 41px;
  height: 41px;
  place-items: center;
  border-radius: 11px;
  color: var(--ink);
  background: var(--night);
  font-size: 17px;
  transition: transform 180ms ease;
}

.submit-button:hover .button-arrow {
  transform: rotate(8deg) scale(1.03);
}

.form-footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 14px 0 0;
  color: #72827c;
  font-size: 9px;
  text-align: center;
}

.form-footnote span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px var(--mint);
}

.form-notice {
  margin: -5px 0 22px;
  padding: 13px 15px;
  border: 1px solid rgba(107, 246, 195, 0.26);
  border-radius: 12px;
  color: #b8ffe5;
  background: rgba(107, 246, 195, 0.08);
  font-size: 11px;
  font-weight: 650;
}

.form-notice.is-error {
  border-color: rgba(255, 122, 92, 0.3);
  color: #ffc2b3;
  background: rgba(255, 122, 92, 0.08);
}

.spam-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

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

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  color: var(--ink-muted);
  font-size: 10px;
}

.footer-meta p {
  margin: 0;
}

.ticker {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  border-top: 1px solid var(--line);
  color: var(--night);
  background: var(--lime);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 30px;
  min-height: 48px;
  padding-right: 30px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  animation: marquee 22s linear infinite;
}

.ticker-track i {
  color: var(--coral);
  font-size: 13px;
  font-style: normal;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms), transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes ping {
  0% { opacity: 0.75; transform: scale(0.65); }
  80%, 100% { opacity: 0; transform: scale(1.7); }
}

@keyframes ambient-drift-one {
  to { transform: translate(9rem, 5rem) scale(1.16); }
}

@keyframes ambient-drift-two {
  to { transform: translate(-8rem, -5rem) scale(0.9); }
}

@keyframes orbit-wobble {
  from { transform: rotateX(64deg) rotateZ(-13deg) scale(0.97); }
  to { transform: rotateX(59deg) rotateZ(7deg) scale(1.03); }
}

@keyframes orbit-wobble-two {
  from { transform: rotateX(60deg) rotateZ(18deg) scale(1.03); }
  to { transform: rotateX(68deg) rotateZ(-8deg) scale(0.96); }
}

@keyframes float-one {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-2deg); }
  50% { transform: translate3d(7px, -10px, 0) rotate(2deg); }
}

@keyframes float-two {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(2deg); }
  50% { transform: translate3d(-8px, 9px, 0) rotate(-2deg); }
}

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

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero-content {
    max-width: 880px;
  }

  .domain-visual {
    width: min(760px, 100%);
  }

  .contact-panel {
    width: min(760px, 100%);
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding: 0 18px;
  }

  .site-header {
    min-height: 84px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .brand-copy strong {
    max-width: 34vw;
    font-size: 12px;
  }

  .live-status {
    display: none;
  }

  .header-cta {
    gap: 9px;
    padding: 7px 8px 7px 13px;
    font-size: 9px;
  }

  .hero {
    gap: 52px;
    min-height: auto;
    padding: 52px 0 74px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .hero-intro {
    font-size: 15px;
  }

  .domain-visual {
    height: 255px;
    border-radius: 25px;
  }

  .domain-core {
    width: 81%;
    min-height: 98px;
    padding: 21px 56px 21px 20px;
    border-radius: 19px;
  }

  .domain-core strong {
    font-size: clamp(17px, 5.8vw, 27px);
  }

  .satellite {
    font-size: 7px;
  }

  .satellite-one {
    top: 12%;
    left: 4%;
  }

  .satellite-two {
    top: 10%;
    right: 4%;
  }

  .satellite-three {
    right: 5%;
    bottom: 8%;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-link {
    width: 100%;
  }

  .trust-list {
    justify-content: space-between;
  }

  .contact-panel {
    padding: 28px 20px;
    border-radius: 25px;
  }

  .panel-topline {
    margin-bottom: 29px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

@media (max-width: 430px) {
  .trust-list {
    gap: 9px;
  }

  .trust-list li {
    font-size: 8px;
  }

  .domain-visual {
    margin-right: -4px;
    margin-left: -4px;
  }
}

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

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

  .cursor-glow {
    display: none;
  }
}
