@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("./geist-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0,
    U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("./geist-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
    U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("./geist-mono-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0,
    U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("./geist-mono-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
    U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --font-geist-sans: "Geist";
  --font-geist-mono: "Geist Mono";
  --ink: #15171c;
  --ink-soft: #30333d;
  --paper: #f6f7f2;
  --paper-muted: #656974;
  --line: rgba(21, 23, 28, 0.13);
  --accent: #5367ef;
  --accent-blue: #5367ef;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(rgba(21, 23, 28, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 23, 28, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 52px 52px;
}

.page-shell::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(246, 247, 242, 0.08) 0%,
    rgba(246, 247, 242, 0.5) 72%,
    var(--paper) 100%
  );
  pointer-events: none;
}

.ambient {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}

.ambient-one {
  top: -260px;
  right: -160px;
  width: 620px;
  height: 620px;
  background: rgba(109, 130, 255, 0.3);
}

.ambient-two {
  top: 420px;
  left: -280px;
  width: 540px;
  height: 540px;
  background: rgba(176, 234, 203, 0.38);
}

.site-header,
.hero,
.capabilities,
.site-footer {
  width: min(1480px, calc(100% - 96px));
  margin-inline: auto;
}

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

.brand {
  font-size: 29px;
  font-weight: 850;
  letter-spacing: -0.07em;
  line-height: 1;
}

.brand span {
  color: var(--accent);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: #555966;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(83, 103, 239, 0.11);
  animation: pulse 2.6s ease-in-out infinite;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(430px, 0.82fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
  min-height: 660px;
  padding-block: 86px 76px;
}

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

.eyebrow {
  display: flex;
  gap: 11px;
  align-items: center;
  margin: 0 0 34px;
  color: #5f6370;
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
}

h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(54px, 6.5vw, 102px);
  font-weight: 580;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

h1 span {
  color: var(--accent);
}

.hero-lead {
  max-width: 670px;
  margin: 40px 0 0;
  color: #555a66;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 46px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 218px;
  padding: 17px 18px 17px 22px;
  color: #ffffff;
  border: 1px solid var(--accent);
  border-radius: 5px;
  background: var(--accent);
  font-size: 15px;
  font-weight: 720;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  color: var(--accent);
  background: transparent;
  transform: translateY(-2px);
}

.primary-button:focus-visible,
.email-link:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

.button-arrow {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 16px;
}

.email-link {
  padding-block: 8px;
  color: var(--ink);
  border-bottom: 1px solid rgba(21, 23, 28, 0.26);
  font-size: 14px;
  transition: border-color 180ms ease;
}

.email-link:hover {
  border-color: var(--accent);
}

.system-visual {
  position: relative;
  overflow: hidden;
  min-height: 516px;
  color: var(--ink);
  border: 1px solid rgba(21, 23, 28, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 36px 90px rgba(55, 64, 112, 0.15);
}

.system-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(9, 11, 12, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 11, 12, 0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.visual-header,
.visual-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  padding-inline: 22px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.visual-header {
  border-bottom: 1px solid rgba(9, 11, 12, 0.14);
}

.live-state {
  display: flex;
  align-items: center;
  gap: 7px;
}

.live-state i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5ea30d;
}

.visual-stage {
  position: relative;
  height: 394px;
}

.axis,
.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0.36;
}

.axis {
  background: rgba(9, 11, 12, 0.35);
}

.axis-horizontal {
  width: 76%;
  height: 1px;
  transform: translate(-50%, -50%);
}

.axis-vertical {
  width: 1px;
  height: 76%;
  transform: translate(-50%, -50%);
}

.orbit {
  border: 1px solid rgba(9, 11, 12, 0.38);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit::before {
  position: absolute;
  top: -5px;
  left: calc(50% - 5px);
  width: 9px;
  height: 9px;
  content: "";
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: var(--accent-blue);
}

.orbit-outer {
  width: 292px;
  height: 292px;
  animation: rotate 16s linear infinite;
}

.orbit-inner {
  width: 202px;
  height: 202px;
  animation: rotate-reverse 11s linear infinite;
}

.orbit-inner::before {
  background: #45a478;
}

.core-node {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  width: 126px;
  height: 126px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 18px 40px rgba(83, 103, 239, 0.28);
  transform: translate(-50%, -50%);
}

.core-node strong {
  font-size: 38px;
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 1;
}

.core-node small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.satellite {
  position: absolute;
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 9px 11px 9px 9px;
  border: 1px solid rgba(9, 11, 12, 0.22);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 20px rgba(9, 11, 12, 0.08);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.satellite span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: #ffffff;
  border-radius: 2px;
  background: var(--ink);
  font-size: 7px;
}

.satellite-data {
  top: 14%;
  left: 8%;
}

.satellite-content {
  top: 20%;
  right: 7%;
}

.satellite-automation {
  bottom: 15%;
  left: 5%;
}

.satellite-analytics {
  right: 8%;
  bottom: 12%;
}

.visual-footer {
  min-height: 62px;
  border-top: 1px solid rgba(9, 11, 12, 0.14);
}

.signal-line {
  display: flex;
  flex: 1;
  gap: 5px;
  align-items: center;
  margin-inline: 14px;
}

.signal-line::before,
.signal-line::after {
  height: 1px;
  flex: 1;
  content: "";
  background: rgba(9, 11, 12, 0.25);
}

.signal-line i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink);
}

.signal-line i:nth-child(3) {
  background: var(--accent-blue);
}

.capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  min-height: 210px;
  padding: 36px 34px 34px 0;
}

.capability + .capability {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.capability-number {
  padding-top: 5px;
  color: var(--accent);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.capability h2 {
  margin: 0;
  font-size: 21px;
  font-weight: 580;
  letter-spacing: -0.035em;
}

.capability p {
  max-width: 360px;
  margin: 14px 0 0;
  color: #666b76;
  font-size: 14px;
  line-height: 1.58;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  color: #747985;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.footer-controls {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-link,
.analytics-settings {
  padding: 0;
  color: inherit;
  border: 0;
  border-bottom: 1px solid rgba(21, 23, 28, 0.24);
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.footer-link:hover,
.footer-link:focus-visible,
.analytics-settings:hover,
.analytics-settings:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--accent);
}

.footer-link:focus-visible,
.analytics-settings:focus-visible,
.consent-button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.consent-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 20;
  display: flex;
  width: min(100% - 48px, 980px);
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  padding: 22px 24px;
  color: var(--ink);
  border: 1px solid rgba(21, 23, 28, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 60px rgba(55, 64, 112, 0.2);
  backdrop-filter: blur(18px);
}

.consent-banner[hidden] {
  display: none;
}

.consent-copy {
  max-width: 600px;
}

.consent-copy strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.consent-copy p {
  margin: 6px 0 0;
  color: #626773;
  font-size: 13px;
  line-height: 1.5;
}

.consent-copy a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(83, 103, 239, 0.45);
  text-underline-offset: 3px;
}

.consent-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.consent-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 680;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.consent-button-secondary {
  color: var(--ink);
  background: #ffffff;
}

.consent-button-secondary:hover {
  border-color: var(--ink);
}

.consent-button-primary {
  color: #ffffff;
  border-color: var(--accent);
  background: var(--accent);
}

.consent-button-primary:hover {
  color: var(--accent);
  background: #ffffff;
}

.privacy-page {
  min-height: 100vh;
  padding-bottom: 36px;
  background:
    linear-gradient(rgba(21, 23, 28, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 23, 28, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 90% 0%, rgba(109, 130, 255, 0.2), transparent 34rem),
    var(--paper);
  background-size: 52px 52px, 52px 52px, auto, auto;
}

.privacy-header,
.privacy-card,
.privacy-footer {
  width: min(900px, calc(100% - 48px));
  margin-inline: auto;
}

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

.privacy-back {
  color: #626773;
  font-size: 13px;
  font-weight: 620;
}

.privacy-back:hover,
.privacy-back:focus-visible {
  color: var(--accent);
}

.privacy-card {
  margin-block: 48px;
  padding: clamp(28px, 6vw, 62px);
  border: 1px solid rgba(21, 23, 28, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(55, 64, 112, 0.1);
}

.privacy-card h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 70px);
  line-height: 1;
}

.privacy-card h2 {
  margin: 42px 0 12px;
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: -0.035em;
}

.privacy-card p,
.privacy-card li {
  color: #555a66;
  font-size: 16px;
  line-height: 1.7;
}

.privacy-card ul {
  padding-left: 22px;
}

.privacy-card a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-meta {
  margin: 14px 0 32px !important;
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-intro {
  padding: 20px 22px;
  border-left: 4px solid var(--accent);
  border-radius: 0 10px 10px 0;
  background: rgba(83, 103, 239, 0.08);
}

.privacy-footer {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  color: #747985;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.55;
    transform: scale(0.82);
  }
}

@keyframes rotate {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotate-reverse {
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@media (max-width: 1100px) {
  .site-header,
  .hero,
  .capabilities,
  .site-footer {
    width: min(100% - 56px, 920px);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 70px;
    padding-block: 76px;
  }

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

  h1 {
    font-size: clamp(58px, 10vw, 90px);
  }

  .system-visual {
    width: min(100%, 690px);
    margin-left: auto;
  }

  .capability {
    grid-template-columns: 34px 1fr;
    padding-right: 24px;
  }

  .capability + .capability {
    padding-left: 24px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    background-size: 34px 34px;
  }

  .site-header,
  .hero,
  .capabilities,
  .site-footer,
  .privacy-header,
  .privacy-card,
  .privacy-footer {
    width: calc(100% - 36px);
  }

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

  .brand {
    font-size: 25px;
  }

  .status-pill {
    gap: 7px;
    padding: 8px 10px;
    font-size: 8px;
    letter-spacing: 0.06em;
  }

  .status-dot {
    width: 6px;
    height: 6px;
    box-shadow: 0 0 0 4px rgba(83, 103, 239, 0.11);
  }

  .hero {
    gap: 58px;
    min-height: 0;
    padding-block: 60px 54px;
  }

  .eyebrow {
    margin-bottom: 25px;
    font-size: 9px;
  }

  h1 {
    font-size: clamp(44px, 13.8vw, 68px);
    letter-spacing: -0.055em;
    line-height: 0.98;
    word-spacing: 0.04em;
  }

  h1 br {
    display: none;
  }

  .hero-lead {
    margin-top: 28px;
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-top: 34px;
  }

  .primary-button {
    width: 100%;
  }

  .system-visual {
    min-height: 424px;
    border-radius: 10px;
  }

  .visual-header,
  .visual-footer {
    min-height: 52px;
    padding-inline: 15px;
    font-size: 8px;
  }

  .visual-stage {
    height: 320px;
  }

  .orbit-outer {
    width: 238px;
    height: 238px;
  }

  .orbit-inner {
    width: 166px;
    height: 166px;
  }

  .core-node {
    width: 105px;
    height: 105px;
  }

  .core-node strong {
    font-size: 32px;
  }

  .satellite {
    gap: 6px;
    padding: 7px 8px 7px 7px;
    font-size: 7px;
  }

  .satellite span {
    width: 17px;
    height: 17px;
    font-size: 6px;
  }

  .satellite-data {
    left: 4%;
  }

  .satellite-content {
    right: 3%;
  }

  .satellite-automation {
    left: 2%;
  }

  .satellite-analytics {
    right: 3%;
  }

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

  .capability {
    grid-template-columns: 38px 1fr;
    min-height: 0;
    padding: 28px 0;
  }

  .capability + .capability {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .capability p {
    margin-top: 10px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
    min-height: 112px;
    line-height: 1.5;
  }

  .footer-controls,
  .privacy-footer {
    flex-wrap: wrap;
  }

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

  .privacy-card {
    margin-block: 28px;
    padding: 28px 22px;
    border-radius: 12px;
  }

  .privacy-card h2 {
    margin-top: 34px;
  }

  .consent-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: calc(100% - 24px);
    gap: 18px;
    align-items: stretch;
    flex-direction: column;
    padding: 18px;
  }

  .consent-actions {
    width: 100%;
  }

  .consent-button {
    flex: 1;
  }
}

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

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