:root {
  color-scheme: dark;
  --bg: #07111f;
  --bg-deep: #040913;
  --panel-solid: #0d1b2d;
  --text: #f3f8ff;
  --muted: #a7b5ca;
  --accent: #2d9cff;
  --accent-strong: #53d5ff;
  --secure: #42e6a4;
  --line: rgba(126, 211, 255, 0.2);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --header-height: 76px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.9), var(--bg-deep) 62%),
    var(--bg);
}

body::selection {
  color: #001827;
  background: var(--accent-strong);
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
}

svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #001827;
  font-weight: 800;
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 12px max(22px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 9, 19, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  font-weight: 850;
}

.brand__mark {
  display: grid;
  width: 50px;
  height: 50px;
  overflow: hidden;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(83, 213, 255, 0.36);
  border-radius: var(--radius);
  background: rgba(5, 14, 26, 0.88);
  box-shadow: 0 0 24px rgba(83, 213, 255, 0.2);
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.93rem;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 54px);
  overflow: hidden;
  padding:
    calc(var(--header-height) + 64px)
    max(22px, calc((100vw - 1180px) / 2))
    84px;
  background:
    linear-gradient(115deg, #04101f 0%, #071523 52%, #06111d 100%),
    var(--bg-deep);
}

.hero__shade,
.hero-grid,
.globe-stage {
  position: absolute;
  inset: 0;
}

.hero__shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(4, 9, 19, 0.97), rgba(4, 9, 19, 0.74) 44%, rgba(4, 9, 19, 0.18)),
    linear-gradient(180deg, rgba(4, 9, 19, 0), #040913 94%);
}

.hero-grid {
  z-index: -4;
  background-image:
    linear-gradient(rgba(83, 213, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83, 213, 255, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, transparent, black 14%, black 86%, transparent);
}

.globe-stage {
  z-index: -2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 84px max(18px, calc((100vw - 1180px) / 2)) 72px;
  pointer-events: none;
}

.globe-stage::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 55%, rgba(45, 156, 255, 0.13) 68%, transparent 82%);
  content: "";
}

.globe-canvas {
  width: min(780px, 58vw);
  aspect-ratio: 1;
  height: auto;
  opacity: 0.96;
  filter: drop-shadow(0 38px 90px rgba(0, 0, 0, 0.48));
  transform: translate(18%, 1%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 690px;
}

.identity-chip {
  display: flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  gap: 12px;
  margin-bottom: 26px;
  border: 1px solid rgba(126, 211, 255, 0.2);
  border-radius: var(--radius);
  padding: 8px 13px 8px 8px;
  background: rgba(5, 14, 26, 0.64);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
  transform-style: preserve-3d;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.identity-chip:hover {
  border-color: rgba(83, 213, 255, 0.42);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.34), 0 0 28px rgba(45, 156, 255, 0.12);
}

.identity-chip img {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  border-radius: 6px;
  object-fit: contain;
}

.identity-chip div {
  min-width: 0;
}

.identity-chip span,
.identity-chip strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.identity-chip span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
}

.identity-chip strong {
  margin-top: 3px;
  color: var(--text);
  font-size: 0.92rem;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow {
  align-items: flex-start;
}

.section-kicker {
  flex-wrap: wrap;
}

.eyebrow__text {
  min-width: 0;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  margin-top: 0.22rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--secure);
  box-shadow: 0 0 0 0 rgba(66, 230, 164, 0.6);
  animation: pulse 1.9s ease-out infinite;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-size: 4.45rem;
}

h2 {
  font-size: 2.35rem;
}

h3 {
  font-size: 1.08rem;
}

.hero__lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: #d4e5f8;
  font-size: 1.2rem;
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  gap: 10px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 22px;
  font-weight: 850;
  isolation: isolate;
  transform: translateZ(0);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.32) 48%, transparent 62% 100%);
  content: "";
  transform: translateX(-130%);
  transition: transform 560ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(130%);
}

.button--primary {
  color: #001827;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  box-shadow: 0 16px 42px rgba(45, 156, 255, 0.36);
}

.button--secondary {
  color: var(--text);
  border-color: rgba(126, 211, 255, 0.22);
  background: rgba(6, 17, 31, 0.64);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

.button__icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
}

.proxy-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: 680px;
  gap: 1px;
  overflow: hidden;
  margin: 34px 0 0;
  border: 1px solid rgba(126, 211, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(126, 211, 255, 0.18);
  box-shadow: var(--shadow);
}

.proxy-meta div {
  min-width: 0;
  padding: 18px;
  background: rgba(5, 14, 26, 0.72);
}

.proxy-meta dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.proxy-meta dd {
  margin: 8px 0 0;
  overflow: hidden;
  color: var(--text);
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section-inner {
  width: calc(100% - 44px);
  max-width: 1180px;
  margin: 0 auto;
}

.bot-band {
  position: relative;
  padding: 84px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.95), rgba(8, 20, 35, 0.96)),
    var(--bg);
}

.bot-band::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(83, 213, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83, 213, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent);
}

.bot-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 42px;
  align-items: center;
}

.bot-copy p:not(.section-kicker),
.section-heading p,
.feature p {
  color: var(--muted);
  line-height: 1.7;
}

.bot-copy p:not(.section-kicker) {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: 1.05rem;
}

.tool-panel {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(126, 211, 255, 0.22);
  border-radius: var(--radius);
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(16, 38, 62, 0.9), rgba(7, 16, 29, 0.9)),
    var(--panel-solid);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform-style: preserve-3d;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.tool-panel:hover {
  border-color: rgba(83, 213, 255, 0.42);
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.46), 0 0 42px rgba(45, 156, 255, 0.13);
}

.field-label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.link-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.link-field input {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  border: 1px solid rgba(126, 211, 255, 0.18);
  border-radius: var(--radius);
  padding: 0 16px;
  color: var(--text);
  background: rgba(3, 10, 19, 0.72);
  outline: none;
}

.link-field input:focus {
  border-color: rgba(83, 213, 255, 0.62);
  box-shadow: 0 0 0 3px rgba(83, 213, 255, 0.14);
}

.field-button,
.copy-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 18px;
  color: #001827;
  background: var(--accent-strong);
  font-weight: 850;
  transition:
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.field-button {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.field-button:hover,
.field-button:focus-visible {
  background: #8ce7ff;
  box-shadow: 0 12px 28px rgba(83, 213, 255, 0.22);
  transform: translateY(-2px);
}

.copy-inline {
  width: 100%;
  margin-top: 12px;
  color: var(--text);
  border: 1px solid rgba(126, 211, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.copy-inline:hover,
.copy-inline:focus-visible {
  color: #001827;
  border-color: rgba(83, 213, 255, 0.38);
  background: #8ce7ff;
  box-shadow: 0 12px 28px rgba(83, 213, 255, 0.18);
}

.details {
  padding: 88px 0 96px;
  background: linear-gradient(180deg, #050b15, #081321);
}

.section-heading {
  max-width: 640px;
  margin-bottom: 34px;
}

.section-heading p {
  margin: 16px 0 0;
}

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

.feature {
  min-width: 0;
  min-height: 238px;
  border: 1px solid rgba(126, 211, 255, 0.18);
  border-radius: var(--radius);
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(14, 31, 50, 0.84), rgba(7, 15, 27, 0.84)),
    var(--panel-solid);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.26);
  transform-style: preserve-3d;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.feature:hover {
  border-color: rgba(83, 213, 255, 0.42);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.34), 0 0 30px rgba(45, 156, 255, 0.1);
}

.feature__icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid rgba(83, 213, 255, 0.32);
  border-radius: var(--radius);
  color: var(--accent-strong);
  background: rgba(83, 213, 255, 0.1);
}

.feature h3 {
  margin-bottom: 12px;
}

.feature p {
  margin: 0;
}

.toast {
  position: fixed;
  z-index: 30;
  right: 20px;
  bottom: 20px;
  max-width: min(360px, calc(100% - 40px));
  padding: 13px 16px;
  border: 1px solid rgba(66, 230, 164, 0.34);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(6, 20, 19, 0.92);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(83, 213, 255, 0.7);
  outline-offset: 3px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(66, 230, 164, 0.58);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(66, 230, 164, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(66, 230, 164, 0);
  }
}

@media (max-width: 1080px) {
  .globe-canvas {
    width: 78vw;
    opacity: 0.72;
    transform: translate(31%, 0);
  }
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 44px);
    padding-bottom: 70px;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(4, 9, 19, 0.96), rgba(4, 9, 19, 0.78)),
      linear-gradient(180deg, rgba(4, 9, 19, 0.1), #040913 94%);
  }

  .globe-stage {
    align-items: start;
    padding-top: 126px;
  }

  .globe-canvas {
    width: min(760px, 112vw);
    opacity: 0.42;
    transform: translate(34%, -7%);
  }

  h1 {
    max-width: 10ch;
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .bot-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .brand__text {
    max-width: 210px;
    font-size: 0.95rem;
  }

  .hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .identity-chip {
    gap: 10px;
    padding-right: 10px;
  }

  .identity-chip img {
    width: 44px;
    height: 44px;
  }

  .identity-chip span {
    font-size: 0.76rem;
  }

  .identity-chip strong {
    font-size: 0.84rem;
  }

  .globe-canvas {
    width: 148vw;
    opacity: 0.36;
    transform: translate(42%, -8%);
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero__lead {
    font-size: 1.02rem;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .button {
    padding-right: 16px;
    padding-left: 16px;
  }

  .proxy-meta {
    grid-template-columns: 1fr;
  }

  .proxy-meta dd {
    white-space: normal;
  }

  .section-inner {
    width: calc(100% - 36px);
  }

  .bot-band {
    padding: 64px 0;
  }

  .link-field {
    grid-template-columns: 1fr;
  }

  .field-button,
  .copy-inline {
    width: 100%;
  }

  .details {
    padding: 66px 0 72px;
  }

  .feature {
    min-height: 0;
  }
}

@media (max-width: 390px) {
  .brand__text {
    max-width: 174px;
  }

  h1 {
    font-size: 2.24rem;
  }
}

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