:root {
  color-scheme: dark;
  --bg: #0a0c0f;
  --bg-deep: #07090c;
  --header-bg: rgba(10, 12, 15, 0.72);
  --surface: rgba(255, 255, 255, 0.035);
  --surface-strong: rgba(255, 255, 255, 0.06);
  --text: #f2f3ef;
  --muted: #aab1ad;
  --subtle: #7b837f;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --accent: #e8b676;
  --accent-soft: rgba(232, 182, 118, 0.14);
  --accent-ink: #19130d;
  --blue: #89a9ff;
  --halo-a: rgba(232, 182, 118, 0.15);
  --halo-b: rgba(137, 169, 255, 0.1);
  --dot: rgba(255, 255, 255, 0.16);
  --layer-line: rgba(137, 169, 255, 0.09);
  --layer-line-strong: rgba(186, 203, 255, 0.16);
  --layer-glow: rgba(137, 169, 255, 0.14);
  --layer-glow-secondary: rgba(232, 182, 118, 0.09);
  --layer-flow: rgba(146, 203, 255, 0.14);
  --layer-node: rgba(214, 228, 255, 0.26);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
  --max-content: 1280px;
  --radius: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f5f6f3;
  --bg-deep: #eceeea;
  --header-bg: rgba(245, 246, 243, 0.78);
  --surface: rgba(18, 23, 28, 0.035);
  --surface-strong: rgba(18, 23, 28, 0.06);
  --text: #15181b;
  --muted: #5f6865;
  --subtle: #68716d;
  --line: rgba(18, 23, 28, 0.14);
  --line-strong: rgba(18, 23, 28, 0.24);
  --accent: #a8672e;
  --accent-soft: rgba(168, 103, 46, 0.12);
  --accent-ink: #fffaf3;
  --blue: #4e69aa;
  --halo-a: rgba(201, 143, 77, 0.13);
  --halo-b: rgba(92, 123, 197, 0.09);
  --dot: rgba(18, 23, 28, 0.14);
  --shadow: 0 28px 90px rgba(28, 35, 31, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 0.94rem + 0.2vw, 1.125rem);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
}

body::before {
  z-index: 0;
  background:
    radial-gradient(ellipse 52rem 32rem at 12% 2%, var(--halo-a), transparent 70%),
    radial-gradient(ellipse 44rem 32rem at 94% 48%, var(--halo-b), transparent 72%);
  filter: blur(26px);
  opacity: 0.9;
  will-change: transform;
  animation: background-drift 34s ease-in-out infinite alternate;
}

body::after {
  z-index: 0;
  background-image: radial-gradient(circle, var(--dot) 0.75px, transparent 0.9px);
  background-position: center top;
  background-size: 24px 24px;
  opacity: 0.34;
  will-change: background-position;
  animation: dot-drift 28s linear infinite;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 88%);
  mask-image: linear-gradient(180deg, #000 0%, transparent 88%);
}

body[data-site="aigpu"] {
  --halo-a: rgba(76, 125, 255, 0.17);
  --halo-b: rgba(166, 124, 255, 0.1);
  --layer-line: rgba(111, 158, 255, 0.12);
  --layer-line-strong: rgba(165, 190, 255, 0.2);
  --layer-glow: rgba(82, 127, 255, 0.2);
  --layer-glow-secondary: rgba(181, 130, 255, 0.13);
  --layer-flow: rgba(101, 195, 255, 0.17);
  --layer-node: rgba(203, 221, 255, 0.32);
  --dot: rgba(162, 190, 255, 0.15);
}

body[data-site="aicompute"] {
  --halo-a: rgba(64, 157, 216, 0.16);
  --halo-b: rgba(120, 196, 193, 0.1);
  --layer-line: rgba(82, 180, 215, 0.11);
  --layer-line-strong: rgba(128, 224, 221, 0.18);
  --layer-glow: rgba(65, 168, 216, 0.17);
  --layer-glow-secondary: rgba(113, 199, 184, 0.12);
  --layer-flow: rgba(166, 229, 225, 0.18);
  --layer-node: rgba(193, 233, 238, 0.3);
  --dot: rgba(147, 218, 222, 0.14);
}

body[data-site="aiinfra"] {
  --halo-a: rgba(65, 116, 196, 0.16);
  --halo-b: rgba(103, 149, 181, 0.1);
  --layer-line: rgba(98, 154, 206, 0.11);
  --layer-line-strong: rgba(161, 202, 240, 0.18);
  --layer-glow: rgba(70, 126, 201, 0.17);
  --layer-glow-secondary: rgba(111, 166, 194, 0.11);
  --layer-flow: rgba(133, 206, 228, 0.17);
  --layer-node: rgba(192, 224, 243, 0.31);
  --dot: rgba(143, 187, 220, 0.14);
}

body[data-site="aimodels"] {
  --halo-a: rgba(139, 111, 199, 0.16);
  --halo-b: rgba(82, 153, 174, 0.1);
  --layer-line: rgba(170, 145, 225, 0.1);
  --layer-line-strong: rgba(213, 195, 255, 0.17);
  --layer-glow: rgba(154, 117, 214, 0.17);
  --layer-glow-secondary: rgba(75, 174, 184, 0.12);
  --layer-flow: rgba(185, 218, 226, 0.14);
  --layer-node: rgba(222, 211, 255, 0.28);
  --dot: rgba(183, 163, 231, 0.14);
}

body[data-site="aiplatform"] {
  --halo-a: rgba(84, 124, 206, 0.15);
  --halo-b: rgba(190, 146, 78, 0.09);
  --layer-line: rgba(117, 157, 225, 0.1);
  --layer-line-strong: rgba(210, 183, 127, 0.17);
  --layer-glow: rgba(78, 124, 209, 0.16);
  --layer-glow-secondary: rgba(210, 169, 100, 0.11);
  --layer-flow: rgba(191, 207, 238, 0.15);
  --layer-node: rgba(227, 216, 190, 0.27);
  --dot: rgba(171, 187, 222, 0.14);
}

body[data-site="cloudforai"] {
  --halo-a: rgba(111, 145, 204, 0.14);
  --halo-b: rgba(117, 183, 191, 0.1);
  --layer-line: rgba(132, 180, 215, 0.09);
  --layer-line-strong: rgba(190, 219, 233, 0.16);
  --layer-glow: rgba(119, 158, 210, 0.15);
  --layer-glow-secondary: rgba(129, 190, 193, 0.12);
  --layer-flow: rgba(205, 225, 232, 0.15);
  --layer-node: rgba(218, 232, 235, 0.27);
  --dot: rgba(162, 200, 216, 0.13);
}

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

p,
h1,
h2,
h3 {
  margin-block: 0;
}

.site-shell {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  isolation: isolate;
}

.site-shell::before,
.site-shell::after {
  position: fixed;
  inset: -8%;
  z-index: 0;
  pointer-events: none;
  content: "";
  will-change: transform, background-position, opacity;
}

.site-shell::before {
  background:
    radial-gradient(ellipse 42rem 24rem at 18% 24%, var(--layer-glow), transparent 72%),
    radial-gradient(ellipse 36rem 22rem at 82% 68%, var(--layer-glow-secondary), transparent 74%),
    linear-gradient(112deg, transparent 0 48%, var(--layer-line) 48.2% 48.45%, transparent 48.7%);
  background-size: 100% 100%, 100% 100%, 640px 520px;
  opacity: 0.22;
  animation: ambient-layer 46s ease-in-out infinite alternate;
}

.site-shell::after {
  background-image: radial-gradient(circle, var(--layer-node) 0 0.7px, transparent 1.2px);
  background-position: center top;
  background-size: 38px 38px;
  opacity: 0.14;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 72%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 72%, transparent 100%);
  animation: ambient-points 24s linear infinite;
}

body[data-site="aigpu"] .site-shell::before {
  background:
    radial-gradient(circle, var(--layer-glow) 0 1px, transparent 1.9px),
    radial-gradient(circle, var(--layer-glow-secondary) 0 1px, transparent 1.9px),
    repeating-linear-gradient(90deg, transparent 0 34px, var(--layer-line) 35px 36px, transparent 37px 72px),
    repeating-linear-gradient(0deg, transparent 0 34px, var(--layer-line) 35px 36px, transparent 37px 72px);
  background-size: 100% 100%, 100% 100%, 72px 72px, 72px 72px;
  background-position: 0 0, 0 0, 0 0, 0 0;
  opacity: 0.3;
  animation: gpu-matrix 52s ease-in-out infinite alternate;
}

body[data-site="aigpu"] .site-shell::after {
  background:
    radial-gradient(circle, var(--layer-node) 0 0.9px, transparent 1.8px),
    radial-gradient(circle, var(--layer-flow) 0 1px, transparent 2px);
  background-size: 240px 220px, 330px 270px;
  background-position: 0 0, 90px 40px;
  opacity: 0.22;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 82%);
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 82%);
  animation: gpu-pulses 26s ease-in-out infinite alternate;
}

body[data-site="aiinfra"] .site-shell::before {
  background:
    radial-gradient(circle, var(--layer-node) 0 1.1px, transparent 2px),
    radial-gradient(circle, var(--layer-node) 0 1px, transparent 1.9px),
    linear-gradient(118deg, transparent 0 49.2%, var(--layer-line) 49.5% 49.8%, transparent 50.1%),
    linear-gradient(28deg, transparent 0 48.6%, var(--layer-line-strong) 48.9% 49.2%, transparent 49.5%),
    linear-gradient(180deg, transparent 0 45%, var(--layer-line) 45.2% 45.45%, transparent 45.7%);
  background-size: 520px 430px, 520px 430px, 520px 430px, 520px 430px, 720px 560px;
  background-position: 0 0, 190px 120px, 0 0, 0 0, 0 0;
  opacity: 0.28;
  animation: infra-topology 58s ease-in-out infinite alternate;
}

body[data-site="aiinfra"] .site-shell::after {
  background:
    radial-gradient(circle, var(--layer-node) 0 1px, transparent 1.8px),
    linear-gradient(90deg, transparent 0%, transparent 38%, var(--layer-flow) 49%, transparent 60%, transparent 100%);
  background-size: 86px 86px, 340px 100%;
  background-position: 0 0, -120px 0;
  opacity: 0.2;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 78%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 78%, transparent 100%);
  animation: infra-packets 30s linear infinite;
}

body[data-site="aicompute"] .site-shell::before {
  background:
    linear-gradient(112deg, transparent 0 47%, var(--layer-line) 47.3% 47.6%, transparent 47.9%),
    linear-gradient(112deg, transparent 0 48%, var(--layer-line-strong) 48.2% 48.5%, transparent 48.8%),
    radial-gradient(ellipse 38rem 20rem at 72% 28%, var(--layer-glow), transparent 73%),
    radial-gradient(ellipse 34rem 20rem at 22% 76%, var(--layer-glow-secondary), transparent 74%);
  background-size: 240px 220px, 390px 280px, 100% 100%, 100% 100%;
  background-position: 0 0, 100px 80px, 0 0, 0 0;
  opacity: 0.28;
  animation: compute-waves 42s ease-in-out infinite alternate;
}

body[data-site="aicompute"] .site-shell::after {
  background:
    repeating-linear-gradient(104deg, transparent 0 22px, var(--layer-flow) 23px 24px, transparent 25px 96px),
    linear-gradient(90deg, transparent 0%, var(--layer-line-strong) 48%, transparent 58%);
  background-size: 260px 260px, 420px 100%;
  background-position: 0 0, -200px 0;
  opacity: 0.18;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 28%, #000 72%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 28%, #000 72%, transparent);
  animation: compute-stream 22s linear infinite;
}

body[data-site="aimodels"] .site-shell::before {
  background:
    radial-gradient(ellipse 38rem 23rem at 18% 42%, var(--layer-glow), transparent 72%),
    radial-gradient(ellipse 32rem 18rem at 74% 25%, var(--layer-glow-secondary), transparent 75%),
    radial-gradient(ellipse 40rem 18rem at 58% 82%, var(--layer-flow), transparent 76%);
  background-size: 100% 100%, 100% 100%, 100% 100%;
  opacity: 0.3;
  filter: blur(28px);
  animation: latent-volumes 56s ease-in-out infinite alternate;
}

body[data-site="aimodels"] .site-shell::after {
  background:
    repeating-radial-gradient(ellipse at 58% 47%, transparent 0 18px, var(--layer-line) 19px 20px, transparent 21px 46px),
    linear-gradient(140deg, transparent 0 48%, var(--layer-line-strong) 48.2% 48.5%, transparent 48.8%);
  background-size: 100% 100%, 640px 520px;
  background-position: 0 0, 0 0;
  opacity: 0.2;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 14%, #000 82%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 82%, transparent);
  animation: latent-contours 46s ease-in-out infinite alternate;
}

body[data-site="aiplatform"] .site-shell::before {
  background:
    linear-gradient(180deg, transparent 0 23%, var(--layer-line) 23.2% 23.45%, transparent 23.7% 47%, var(--layer-line) 47.2% 47.45%, transparent 47.7% 72%, var(--layer-line) 72.2% 72.45%, transparent 72.7%),
    linear-gradient(164deg, transparent 0 42%, var(--layer-line-strong) 42.2% 42.45%, transparent 42.7%),
    linear-gradient(90deg, transparent 0 18%, var(--layer-line) 18.1% 18.35%, transparent 18.6% 81%, var(--layer-line) 81.1% 81.35%, transparent 81.6%),
    radial-gradient(ellipse 44rem 18rem at 20% 20%, var(--layer-glow), transparent 74%),
    radial-gradient(ellipse 38rem 20rem at 80% 72%, var(--layer-glow-secondary), transparent 75%);
  background-size: 100% 100%, 740px 600px, 100% 100%, 100% 100%, 100% 100%;
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
  opacity: 0.27;
  animation: platform-planes 60s ease-in-out infinite alternate;
}

body[data-site="aiplatform"] .site-shell::after {
  background:
    repeating-linear-gradient(90deg, transparent 0 150px, var(--layer-line) 151px 152px, transparent 153px 300px),
    linear-gradient(90deg, transparent 0%, var(--layer-flow) 45%, transparent 55%);
  background-size: 300px 100%, 420px 100%;
  background-position: 0 0, -160px 0;
  opacity: 0.18;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 24%, #000 76%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000 76%, transparent);
  animation: platform-links 28s ease-in-out infinite;
}

body[data-site="cloudforai"] .site-shell::before {
  background:
    radial-gradient(ellipse 50rem 32rem at 18% 28%, var(--layer-glow), transparent 72%),
    radial-gradient(ellipse 42rem 28rem at 72% 62%, var(--layer-glow-secondary), transparent 74%),
    radial-gradient(ellipse 30rem 20rem at 92% 16%, var(--layer-flow), transparent 76%);
  background-size: 100% 100%, 100% 100%, 100% 100%;
  opacity: 0.28;
  filter: blur(26px);
  animation: cloud-masses 54s ease-in-out infinite alternate;
}

body[data-site="cloudforai"] .site-shell::after {
  background:
    linear-gradient(105deg, transparent 0 42%, var(--layer-line) 42.2% 42.5%, transparent 42.8%),
    linear-gradient(74deg, transparent 0 56%, var(--layer-flow) 56.2% 56.5%, transparent 56.8%),
    radial-gradient(circle, var(--layer-node) 0 1px, transparent 1.8px);
  background-size: 560px 420px, 660px 480px, 90px 90px;
  background-position: 0 0, 120px 0, 0 0;
  opacity: 0.18;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  animation: cloud-flows 28s linear infinite;
}

.container {
  width: calc(100% - 2rem);
  max-width: var(--max-content);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 0.85rem;
  font-weight: 700;
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: linear-gradient(180deg, var(--header-bg), transparent);
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 750;
  letter-spacing: -0.045em;
}

.brand-suffix,
.footer-domain,
.section-label,
.contact-email {
  color: var(--accent);
}

.header-meta {
  color: var(--subtle);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.theme-toggle {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 650;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.theme-toggle:hover {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--text);
}

.theme-icon {
  color: var(--accent);
  font-size: 1rem;
  line-height: 1;
}

.hero {
  display: flex;
  min-height: min(92svh, 960px);
  align-items: center;
  padding: 8.5rem 0 4.5rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-kicker,
.price-label,
.section-label,
.contact-label {
  color: var(--subtle);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-kicker {
  margin-bottom: 1.4rem;
  color: var(--accent);
}

.hero-domain {
  color: var(--text);
  font-size: clamp(3.5rem, 8.2vw, 8rem);
  font-weight: 650;
  letter-spacing: -0.085em;
  line-height: 0.88;
  white-space: nowrap;
}

.hero-domain-suffix {
  color: var(--accent);
}

.hero-positioning {
  max-width: 46rem;
  margin-top: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--text);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.hero-acquisition {
  display: flex;
  width: min(100%, 64rem);
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(3.75rem, 8vw, 7rem);
  padding-top: 1.35rem;
  border-top: 1px solid var(--line-strong);
}

.price-label {
  display: block;
  margin-bottom: 0.55rem;
}

.price {
  color: var(--text);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.95;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  transition: transform 180ms var(--ease), background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 14px 34px var(--accent-soft);
}

.button-primary:hover {
  background: var(--text);
  color: var(--bg);
}

.asset-note {
  max-width: 42rem;
  margin-top: 1.15rem;
  color: var(--subtle);
  font-size: 0.76rem;
}

.section {
  padding: clamp(5.5rem, 11vw, 10rem) 0;
  border-top: 1px solid var(--line);
}

.section-soft {
  background: linear-gradient(180deg, var(--surface), transparent 48%, var(--surface));
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 10vw, 10rem);
  align-items: start;
}

.section-label {
  margin-bottom: 1.35rem;
  color: var(--accent);
}

.section h2 {
  max-width: 11ch;
  color: var(--text);
  font-size: clamp(2.35rem, 5.1vw, 5.2rem);
  font-weight: 560;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.section-copy {
  max-width: 46rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
}

.section-copy p + p {
  margin-top: 1rem;
}

.transfer-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 2rem;
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.transfer-point {
  padding: 1.25rem 0 1.4rem;
  border-bottom: 1px solid var(--line);
}

.transfer-point strong {
  display: block;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.transfer-point span {
  display: block;
  margin-top: 0.4rem;
  color: var(--subtle);
  font-size: 0.82rem;
}

.inquiry-section {
  padding-bottom: clamp(5.5rem, 11vw, 9rem);
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.1rem;
  max-width: 48rem;
}

.field {
  display: grid;
  gap: 0.55rem;
}

.field-wide,
.form-actions {
  grid-column: 1 / -1;
}

.field label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  background: var(--surface);
  color: var(--text);
  transition: border-color 180ms ease, background 180ms ease;
}

.field input {
  min-height: 3.35rem;
  padding: 0.75rem 0.9rem;
}

.field textarea {
  min-height: 9.5rem;
  padding: 0.85rem 0.9rem;
  resize: vertical;
}

.field input:hover,
.field textarea:hover,
.field input:focus,
.field textarea:focus {
  border-color: var(--line-strong);
  background: var(--surface-strong);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 0.35rem;
}

.form-status {
  color: var(--subtle);
  font-size: 0.78rem;
}

.contact-address {
  margin-top: 2.2rem;
  color: var(--subtle);
  font-size: 0.82rem;
}

.contact-email {
  display: inline-block;
  margin-top: 0.45rem;
  font-size: 1rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.contact-email:hover {
  color: var(--text);
}

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

.footer-inner {
  display: flex;
  min-height: 7rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  color: var(--subtle);
  font-size: 0.72rem;
}

.footer-domain {
  color: var(--text);
  font-weight: 700;
}

.footer-legal {
  max-width: 42rem;
  text-align: right;
}

.not-found {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 8rem 0;
  text-align: center;
}

.not-found-inner {
  max-width: 44rem;
  margin-inline: auto;
}

.not-found h1 {
  color: var(--text);
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 560;
  letter-spacing: -0.08em;
  line-height: 0.95;
}

.not-found-copy {
  max-width: 28rem;
  margin: 1.4rem auto 2rem;
  color: var(--muted);
}

@keyframes background-drift {
  from {
    transform: translate3d(-1%, -1%, 0) scale(1);
  }
  to {
    transform: translate3d(2%, 1%, 0) scale(1.035);
  }
}

@keyframes dot-drift {
  from {
    background-position: center top;
  }
  to {
    background-position: 24px 24px;
  }
}

@keyframes ambient-layer {
  from {
    transform: translate3d(-1%, -0.6%, 0) scale(1.02);
  }
  to {
    transform: translate3d(1.2%, 0.8%, 0) scale(1.045);
  }
}

@keyframes ambient-points {
  from {
    background-position: center top;
  }
  to {
    background-position: 26px 18px;
  }
}

@keyframes gpu-matrix {
  from {
    transform: translate3d(-0.8%, -0.5%, 0) scale(1.02);
    background-position: 0 0, 0 0, 0 0, 0 0;
  }
  to {
    transform: translate3d(1%, 0.8%, 0) scale(1.04);
    background-position: 42px 24px, -24px 34px, 30px 18px, -18px 32px;
  }
}

@keyframes gpu-pulses {
  from {
    transform: translate3d(-0.5%, 0, 0);
    background-position: 0 0, 90px 40px;
    opacity: 0.16;
  }
  to {
    transform: translate3d(0.7%, 0.5%, 0);
    background-position: 120px 58px, -76px 12px;
    opacity: 0.25;
  }
}

@keyframes infra-topology {
  from {
    transform: translate3d(-0.7%, -0.4%, 0) scale(1.02);
    background-position: 0 0, 190px 120px, 0 0, 0 0, 0 0;
  }
  to {
    transform: translate3d(0.9%, 0.8%, 0) scale(1.04);
    background-position: 34px 24px, 158px 144px, -26px 34px, 28px -18px, 16px 36px;
  }
}

@keyframes infra-packets {
  from {
    background-position: 0 0, -120px 0;
    opacity: 0.14;
  }
  to {
    background-position: 56px 28px, 140px 0;
    opacity: 0.24;
  }
}

@keyframes compute-waves {
  from {
    transform: translate3d(-1%, 0.4%, 0) scale(1.02);
    background-position: 0 0, 100px 80px, 0 0, 0 0;
  }
  to {
    transform: translate3d(1%, -0.6%, 0) scale(1.045);
    background-position: 56px 26px, -42px 116px, 24px -18px, -28px 34px;
  }
}

@keyframes compute-stream {
  from {
    background-position: 0 0, -200px 0;
  }
  to {
    background-position: 240px -64px, 220px 0;
  }
}

@keyframes latent-volumes {
  from {
    transform: translate3d(-0.8%, 0.5%, 0) scale(1.02);
    background-position: 0 0, 0 0, 0 0;
  }
  to {
    transform: translate3d(1%, -0.6%, 0) scale(1.045);
    background-position: 34px 26px, -24px 38px, 18px -22px;
  }
}

@keyframes latent-contours {
  from {
    transform: translate3d(-0.6%, 0, 0) scale(1.02);
    background-position: 0 0, 0 0;
  }
  to {
    transform: translate3d(0.8%, 0.5%, 0) scale(1.045);
    background-position: 24px -18px, -32px 26px;
  }
}

@keyframes platform-planes {
  from {
    transform: translate3d(-0.6%, -0.5%, 0) scale(1.02);
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
  }
  to {
    transform: translate3d(0.8%, 0.7%, 0) scale(1.04);
    background-position: 0 18px, 32px -26px, -18px 0, 24px 18px, -28px -14px;
  }
}

@keyframes platform-links {
  from {
    background-position: 0 0, -160px 0;
  }
  to {
    background-position: 140px 0, 180px 0;
  }
}

@keyframes cloud-masses {
  from {
    transform: translate3d(-0.6%, 0.4%, 0) scale(1.02);
    background-position: 0 0, 0 0, 0 0;
  }
  to {
    transform: translate3d(0.8%, -0.5%, 0) scale(1.04);
    background-position: 34px 24px, -28px 34px, 20px -18px;
  }
}

@keyframes cloud-flows {
  from {
    background-position: 0 0, 120px 0, 0 0;
    opacity: 0.12;
  }
  to {
    background-position: 120px -26px, -160px 20px, 34px 46px;
    opacity: 0.22;
  }
}

@media (min-width: 480px) {
  .container {
    width: calc(100% - 3rem);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .container {
    width: calc(100% - 4rem);
  }

  .hero {
    min-height: min(88svh, 820px);
    padding-top: 7rem;
  }

  .hero-domain {
    font-size: clamp(4.2rem, 8.4vw, 6.2rem);
  }

  .hero-positioning {
    font-size: clamp(1.25rem, 2.2vw, 1.45rem);
  }

  .section-grid {
    gap: clamp(3rem, 7vw, 5rem);
  }
}

@media (min-width: 1200px) {
  .container {
    width: calc(100% - 6rem);
  }
}

@media (min-width: 1600px) {
  .hero {
    min-height: min(90svh, 960px);
  }
}

@media (max-width: 767px) {
  .header-inner {
    min-height: 76px;
  }

  .header-meta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 8rem;
    padding-bottom: 5.5rem;
  }

  .hero-domain {
    font-size: clamp(2.3rem, 11.5vw, 4.2rem);
    line-height: 0.92;
  }

  .hero-positioning {
    max-width: 32rem;
    margin-top: 1.7rem;
    font-size: clamp(1.14rem, 4.8vw, 1.35rem);
    line-height: 1.2;
  }

  .hero-acquisition {
    align-items: stretch;
    flex-direction: column;
    gap: 1.8rem;
    margin-top: 3.5rem;
  }

  .price {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .hero-acquisition .button {
    width: 100%;
  }

  .section {
    padding: 5.5rem 0;
  }

  .section-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
  }

  .section h2 {
    max-width: 12ch;
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .section-copy {
    font-size: 1rem;
  }

  .transfer-points,
  .inquiry-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .field-wide,
  .form-actions {
    grid-column: auto;
  }

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

  .form-actions .button {
    width: 100%;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem 0;
  }

  .footer-legal {
    max-width: 30rem;
    text-align: left;
  }
}

@media (max-width: 479px) {
  .container {
    width: calc(100% - 2.5rem);
  }

  .theme-label {
    display: none;
  }

  .hero-domain {
    font-size: clamp(2.2rem, 11.5vw, 3.5rem);
  }

  .not-found h1 {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }
}

@media (max-width: 767px) {
  body::before {
    filter: blur(20px);
    opacity: 0.74;
  }

  body::after {
    background-size: 32px 32px;
    opacity: 0.22;
  }

  .site-shell::before {
    inset: -12%;
    opacity: 0.2 !important;
  }

  .site-shell::after {
    inset: -4%;
    opacity: 0.13 !important;
  }

  body[data-site="aigpu"] .site-shell::before {
    background-size: 100% 100%, 100% 100%, 96px 96px, 96px 96px;
  }

  body[data-site="aigpu"] .site-shell::after {
    background-size: 300px 280px, 390px 320px;
  }

  body[data-site="aiinfra"] .site-shell::before {
    background-size: 620px 520px, 620px 520px, 620px 520px, 620px 520px, 820px 660px;
  }

  body[data-site="aiinfra"] .site-shell::after {
    background-size: 112px 112px, 420px 100%;
  }

  body[data-site="aicompute"] .site-shell::before {
    background-size: 340px 300px, 500px 360px, 100% 100%, 100% 100%;
  }

  body[data-site="aicompute"] .site-shell::after {
    background-size: 340px 340px, 520px 100%;
  }

  body[data-site="aimodels"] .site-shell::before {
    filter: blur(20px);
  }

  body[data-site="aimodels"] .site-shell::after {
    background-size: 125% 125%, 760px 620px;
  }

  body[data-site="aiplatform"] .site-shell::before {
    background-size: 100% 100%, 860px 700px, 100% 100%, 100% 100%, 100% 100%;
  }

  body[data-site="aiplatform"] .site-shell::after {
    background-size: 380px 100%, 520px 100%;
  }

  body[data-site="cloudforai"] .site-shell::before {
    filter: blur(20px);
  }

  body[data-site="cloudforai"] .site-shell::after {
    background-size: 760px 560px, 840px 620px, 120px 120px;
  }
}

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

  body::before,
  body::after,
  .site-shell::before,
  .site-shell::after {
    animation: none;
  }

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