:root {
  --ink: #090a0c;
  --ink-soft: #111318;
  --paper: #f5f6f2;
  --white: #ffffff;
  --acid: #d8ff50;
  --acid-soft: #edffac;
  --violet: #8589ff;
  --muted: #a5a8ae;
  --line-dark: rgba(255, 255, 255, 0.13);
  --line-light: rgba(9, 10, 12, 0.14);
  --shell: min(1280px, calc(100vw - 64px));
  --pointer-x: 50vw;
  --pointer-y: 20vh;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--acid);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.noise {
  position: fixed;
  z-index: 900;
  inset: 0;
  pointer-events: none;
  opacity: 0.028;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  z-index: 899;
  top: var(--pointer-y);
  left: var(--pointer-x);
  width: 380px;
  height: 380px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(216, 255, 80, 0.075), transparent 66%);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  transition: transform 400ms var(--ease), background 300ms ease, border-color 300ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid var(--line-dark);
  background: rgba(9, 10, 12, 0.8);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  font-size: 22px;
  font-weight: 760;
  letter-spacing: -0.055em;
}

.brand > span:last-child > span {
  color: var(--acid);
}

.brand-mark {
  position: relative;
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
}

.brand-mark i {
  position: absolute;
  width: 19px;
  height: 9px;
  border: 2px solid currentColor;
  border-radius: 999px;
  transform: rotate(42deg) translateX(-3px);
}

.brand-mark i:last-child {
  color: var(--acid);
  transform: rotate(-42deg) translateX(3px);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 530;
}

.desktop-nav a,
.footer-links a,
.text-link {
  position: relative;
  transition: color 180ms ease;
}

.desktop-nav a::after,
.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 8px 9px 8px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 680;
  letter-spacing: -0.015em;
  transition: color 220ms ease, background 220ms ease, transform 220ms var(--ease), border-color 220ms ease;
}

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

.button-small {
  min-height: 46px;
  gap: 13px;
  padding: 7px 9px 7px 18px;
  font-size: 14px;
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-light span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
}

.button-primary {
  color: var(--ink);
  background: var(--acid);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--white);
}

.button-orb {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  transition: transform 300ms var(--ease);
}

.button:hover .button-orb,
.button:focus-visible .button-orb {
  transform: rotate(45deg);
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.signal-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(9, 10, 12, 0.98) 0%, rgba(9, 10, 12, 0.72) 39%, rgba(9, 10, 12, 0.08) 70%, rgba(9, 10, 12, 0.35) 100%),
    radial-gradient(circle at 70% 50%, rgba(132, 137, 255, 0.12), transparent 34%);
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  top: -28vw;
  right: -20vw;
  width: 72vw;
  height: 72vw;
}

.orbit-two {
  right: 15vw;
  bottom: -45vw;
  width: 66vw;
  height: 66vw;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100svh - 54px);
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  padding-top: 112px;
  padding-bottom: 70px;
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 700px;
  padding-top: 28px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 670;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: rgba(9, 10, 12, 0.58);
}

.live-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(216, 255, 80, 0.1);
}

.live-dot::after {
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(216, 255, 80, 0.5);
  border-radius: inherit;
  content: "";
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 0.9; transform: scale(0.4); }
  75%, 100% { opacity: 0; transform: scale(1.5); }
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(4rem, 7.2vw, 7.4rem);
  font-weight: 690;
  letter-spacing: -0.077em;
  line-height: 0.86;
}

.hero h1 .accent-word {
  display: block;
  min-width: 4.8em;
  color: var(--acid);
  transition: opacity 220ms ease, transform 260ms var(--ease), filter 220ms ease;
}

.hero h1 .accent-word.is-changing {
  opacity: 0;
  filter: blur(9px);
  transform: translateY(12px);
}

.hero-intro {
  max-width: 590px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.6;
}

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

.text-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 620;
}

.text-link span {
  display: inline-block;
  margin-left: 7px;
  color: var(--acid);
  transition: transform 220ms var(--ease);
}

.text-link:hover span {
  transform: translateY(4px);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 60px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-line span {
  position: relative;
}

.trust-line span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -16px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  content: "";
  background: var(--acid);
}

.hero-visual {
  position: absolute;
  z-index: 0;
  top: 0;
  right: calc((100vw - var(--shell)) / -2);
  bottom: 0;
  width: min(68vw, 1100px);
  pointer-events: none;
}

.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  opacity: 0.96;
  filter: saturate(0.96) contrast(1.04);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.55) 18%, #000 42%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.55) 18%, #000 42%);
  animation: image-breathe 12s ease-in-out infinite alternate;
}

@keyframes image-breathe {
  from { transform: scale(1.015) translate3d(0, 0, 0); }
  to { transform: scale(1.065) translate3d(-1%, -0.5%, 0); }
}

.visual-halo {
  position: absolute;
  z-index: 1;
  top: 26%;
  right: 17%;
  width: 38%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(216, 255, 80, 0.12);
  filter: blur(75px);
  animation: halo 7s ease-in-out infinite alternate;
}

@keyframes halo {
  to { opacity: 0.42; transform: scale(1.2); }
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(12, 14, 17, 0.5);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.card-top {
  top: 24%;
  right: 13%;
  width: 190px;
  min-height: 112px;
  flex-direction: column;
  padding: 18px;
  border-radius: 18px;
  animation: float-one 6s ease-in-out infinite;
}

.card-top > span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.card-top strong {
  margin-top: 5px;
  font-size: 18px;
  letter-spacing: -0.04em;
}

.mini-chart {
  display: flex;
  height: 28px;
  align-items: end;
  gap: 5px;
  margin-top: 10px;
}

.mini-chart b {
  width: 8px;
  height: 25%;
  border-radius: 4px 4px 0 0;
  background: var(--acid);
}

.mini-chart b:nth-child(2) { height: 43%; }
.mini-chart b:nth-child(3) { height: 38%; }
.mini-chart b:nth-child(4) { height: 68%; }
.mini-chart b:nth-child(5) { height: 100%; }

.card-bottom {
  right: 28%;
  bottom: 18%;
  min-width: 260px;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border-radius: 999px;
  animation: float-two 7s ease-in-out infinite;
}

.card-bottom div {
  display: flex;
  min-width: 90px;
  flex: 1;
  flex-direction: column;
}

.card-bottom strong {
  font-size: 13px;
}

.card-bottom small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.card-bottom em {
  color: var(--acid);
  font-size: 13px;
  font-style: normal;
  font-weight: 760;
}

.status-ring {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(216, 255, 80, 0.45);
  border-radius: 50%;
  box-shadow: inset 0 0 12px rgba(216, 255, 80, 0.18);
}

.status-ring::after {
  display: block;
  width: 6px;
  height: 6px;
  margin: 12px;
  border-radius: 50%;
  content: "";
  background: var(--acid);
  box-shadow: 0 0 12px var(--acid);
}

@keyframes float-one {
  50% { transform: translate3d(8px, -13px, 0) rotate(1deg); }
}

@keyframes float-two {
  50% { transform: translate3d(-8px, 11px, 0); }
}

.signal-strip {
  position: relative;
  z-index: 4;
  display: flex;
  height: 54px;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background: var(--acid);
}

.signal-strip > div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.signal-strip span {
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.11em;
}

.signal-strip i {
  font-size: 12px;
  font-style: normal;
}

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

.conversation-section {
  padding: 150px 0 140px;
  background: var(--paper);
}

.conversation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(600px, 1.28fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: start;
}

.section-heading h2,
.services-head h2,
.shift-title h2 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 5.6vw, 5.8rem);
  font-weight: 620;
  letter-spacing: -0.075em;
  line-height: 0.96;
}

.section-heading h2 span,
.services-head h2 span,
.shift-title h2 span {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(9, 10, 12, 0.36);
}

.section-heading > p:last-child {
  max-width: 460px;
  color: rgba(9, 10, 12, 0.58);
  font-size: 18px;
  line-height: 1.65;
}

.conversation-panel {
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 24px 80px rgba(17, 19, 24, 0.07);
}

.conversation-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-light);
  color: rgba(9, 10, 12, 0.56);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.conversation-topline span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.conversation-topline i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #88c91e;
  box-shadow: 0 0 0 4px rgba(136, 201, 30, 0.12);
}

.conversation-topline small {
  font: inherit;
}

.need-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 20px;
}

.need-option {
  min-height: 54px;
  padding: 12px 16px;
  border: 1px solid rgba(9, 10, 12, 0.12);
  border-radius: 12px;
  color: rgba(9, 10, 12, 0.7);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  text-align: left;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms var(--ease);
}

.need-option:hover,
.need-option:focus-visible {
  border-color: rgba(9, 10, 12, 0.38);
  transform: translateY(-1px);
}

.need-option.is-active {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.digital-reply {
  display: grid;
  min-height: 280px;
  grid-template-columns: auto 1fr;
  gap: 28px;
  padding: 34px 32px 38px;
  border-top: 1px solid var(--line-light);
  background:
    linear-gradient(120deg, rgba(216, 255, 80, 0.11), transparent 40%),
    #f0f1ed;
  transition: opacity 180ms ease, transform 180ms ease;
}

.digital-reply.is-switching {
  opacity: 0;
  transform: translateY(6px);
}

.reply-avatar {
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--acid);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.05em;
  box-shadow: 0 0 0 7px rgba(216, 255, 80, 0.18);
}

.reply-avatar span:last-child {
  transform: translateY(7px);
}

.reply-label {
  display: block;
  margin-bottom: 10px;
  color: rgba(9, 10, 12, 0.45);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.digital-reply h3 {
  max-width: 570px;
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 2.7vw, 2.6rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.digital-reply p {
  max-width: 560px;
  margin-bottom: 24px;
  color: rgba(9, 10, 12, 0.62);
  line-height: 1.65;
}

.reply-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(9, 10, 12, 0.3);
  font-size: 14px;
  font-weight: 720;
}

.reply-link span {
  color: #6d7200;
}

.services-section {
  padding: 140px 0;
  border-top: 1px solid var(--line-light);
  background: var(--paper);
}

.services-head {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.4fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}

.services-head h2 {
  max-width: 900px;
  margin-bottom: 0;
}

.services-head > p {
  max-width: 370px;
  margin-bottom: 8px;
  color: rgba(9, 10, 12, 0.58);
  line-height: 1.7;
}

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

.service-row {
  --row-x: 50%;
  position: relative;
  display: grid;
  min-height: 190px;
  grid-template-columns: 80px minmax(260px, 1.15fr) minmax(280px, 0.8fr) 48px;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line-light);
  transition: color 280ms ease, padding 320ms var(--ease);
}

.service-row::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: radial-gradient(circle at var(--row-x) 50%, rgba(216, 255, 80, 0.3), rgba(216, 255, 80, 0.88) 22%, var(--acid) 52%);
  transform: translateY(102%);
  transition: transform 420ms var(--ease);
}

.service-row:hover::before {
  transform: translateY(0);
}

.service-row > * {
  position: relative;
  z-index: 1;
}

.service-index {
  align-self: start;
  padding-top: 54px;
  color: rgba(9, 10, 12, 0.42);
  font-size: 12px;
  font-weight: 740;
}

.service-title h3 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  font-weight: 630;
  letter-spacing: -0.06em;
  line-height: 1;
}

.service-title p {
  margin: 0;
  color: rgba(9, 10, 12, 0.54);
}

.service-row ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: rgba(9, 10, 12, 0.58);
  font-size: 14px;
  list-style: none;
}

.service-row li::before {
  margin-right: 10px;
  content: "•";
}

.service-arrow {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(9, 10, 12, 0.22);
  border-radius: 50%;
  font-size: 18px;
  transition: color 260ms ease, background 260ms ease, transform 320ms var(--ease);
}

.service-row:hover .service-arrow {
  color: var(--white);
  background: var(--ink);
  transform: rotate(45deg);
}

.difference-section {
  position: relative;
  overflow: hidden;
  padding: 160px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 40%, rgba(132, 137, 255, 0.13), transparent 28%),
    var(--ink);
}

.difference-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 60%);
  mask-image: linear-gradient(90deg, transparent, #000 60%);
}

.difference-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(530px, 1.14fr);
  gap: clamp(80px, 10vw, 160px);
  align-items: center;
}

.difference-copy h2 {
  max-width: 680px;
  margin-bottom: 30px;
  font-size: clamp(3.2rem, 5.6vw, 6rem);
  font-weight: 620;
  letter-spacing: -0.075em;
  line-height: 0.95;
}

.difference-copy h2 span {
  color: var(--acid);
}

.difference-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 18px;
  line-height: 1.7;
}

.always-on {
  position: relative;
  min-height: 640px;
}

.clock-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(34vw, 500px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255, 255, 255, 0.025), 0 0 0 84px rgba(255, 255, 255, 0.018);
  transform: translate(-50%, -50%);
}

.clock-ring::before,
.clock-ring::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.clock-ring::before {
  inset: 16%;
  border: 1px dashed rgba(216, 255, 80, 0.22);
  animation: spin 28s linear infinite;
}

.clock-ring::after {
  inset: 31%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.time {
  position: absolute;
  color: rgba(255, 255, 255, 0.32);
  font-size: 11px;
  font-weight: 720;
}

.t-00 { top: -8px; left: 50%; transform: translateX(-50%); }
.t-06 { top: 50%; right: -9px; transform: translateY(-50%); }
.t-12 { bottom: -8px; left: 50%; transform: translateX(-50%); }
.t-18 { top: 50%; left: -9px; transform: translateY(-50%); }

.orbit-dot {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  animation: spin 8s linear infinite;
}

.orbit-dot::before {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  content: "";
  background: var(--acid);
  box-shadow: 0 0 25px 5px rgba(216, 255, 80, 0.45);
}

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

.clock-core {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.clock-core strong {
  font-size: clamp(4.8rem, 8vw, 7.5rem);
  font-weight: 690;
  letter-spacing: -0.1em;
  line-height: 0.85;
}

.clock-core strong span {
  color: var(--acid);
  font-size: 0.42em;
  letter-spacing: -0.04em;
}

.clock-core small {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cycle-note {
  position: absolute;
  display: grid;
  width: 215px;
  grid-template-columns: auto 1fr;
  gap: 13px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px);
}

.cycle-note > span {
  color: var(--acid);
  font-size: 10px;
  font-weight: 760;
}

.cycle-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.45;
}

.cycle-note strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: 13px;
}

.note-one { top: 6%; left: 4%; animation: float-one 7s ease-in-out infinite; }
.note-two { top: 43%; right: -2%; animation: float-two 8s ease-in-out infinite; }
.note-three { bottom: 2%; left: 8%; animation: float-one 9s ease-in-out infinite reverse; }

.shift-section {
  padding: 145px 0;
  background: var(--paper);
}

.shift-title {
  max-width: 870px;
  margin-bottom: 72px;
}

.shift-board {
  display: grid;
  grid-template-columns: 1fr 130px 1fr;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 26px 90px rgba(17, 19, 24, 0.065);
}

.shift-side {
  min-height: 440px;
  padding: 38px clamp(30px, 4vw, 62px);
}

.shift-side > span {
  display: block;
  margin-bottom: 52px;
  color: rgba(9, 10, 12, 0.46);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.shift-side ul {
  display: grid;
  gap: 23px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shift-side li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 580;
  letter-spacing: -0.025em;
}

.shift-side li i {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  font-size: 14px;
  font-style: normal;
}

.before-side {
  background: linear-gradient(145deg, #fafafa, #efefec);
}

.before-side li {
  color: rgba(9, 10, 12, 0.52);
}

.before-side li i {
  color: rgba(9, 10, 12, 0.42);
  background: rgba(9, 10, 12, 0.07);
}

.after-side {
  color: var(--white);
  background: var(--ink-soft);
}

.after-side > span {
  color: rgba(255, 255, 255, 0.46);
}

.after-side li i {
  color: var(--ink);
  background: var(--acid);
}

.shift-middle {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
}

.shift-middle span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  font-size: 19px;
}

.shift-middle b {
  position: absolute;
  right: 50%;
  bottom: 28px;
  font-size: 10px;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-align: center;
  transform: translateX(50%);
}

.plans-section {
  padding: 150px 0;
  color: var(--white);
  background: #0d0e11;
}

.plans-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 70px;
}

.plans-head h2 {
  margin: 0;
  font-size: clamp(3.6rem, 7vw, 7.3rem);
  font-weight: 640;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.plans-head > p {
  max-width: 390px;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 17px;
  line-height: 1.65;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.plan-card {
  position: relative;
  min-height: 550px;
  padding: 34px;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 220ms ease, transform 300ms var(--ease), background 220ms ease;
}

.plan-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.055);
  transform: translateY(-8px);
}

.plan-card.featured {
  color: var(--ink);
  background: var(--acid);
}

.plan-card.featured:hover {
  border-color: var(--acid);
  background: var(--acid);
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.plan-name {
  margin-bottom: 58px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured .plan-name {
  color: rgba(9, 10, 12, 0.55);
}

.plan-card h3 {
  display: flex;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: clamp(3.3rem, 5vw, 5.2rem);
  font-weight: 640;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.plan-card h3 sup {
  margin-top: 7px;
  margin-right: 5px;
  font-size: 0.35em;
  letter-spacing: 0;
}

.plan-card h3 small {
  align-self: end;
  margin-bottom: 3px;
  margin-left: 7px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.2em;
  font-weight: 650;
  letter-spacing: 0;
}

.featured h3 small {
  color: rgba(9, 10, 12, 0.5);
}

.plan-intro {
  min-height: 68px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.54);
  line-height: 1.6;
}

.featured .plan-intro {
  border-color: rgba(9, 10, 12, 0.18);
  color: rgba(9, 10, 12, 0.6);
}

.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 38px;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  list-style: none;
}

.featured ul {
  color: rgba(9, 10, 12, 0.72);
}

.plan-card li::before {
  margin-right: 10px;
  color: var(--acid);
  content: "✓";
}

.featured li::before {
  color: var(--ink);
}

.plan-card > a {
  position: absolute;
  right: 34px;
  bottom: 30px;
  left: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  font-size: 14px;
  font-weight: 700;
}

.featured > a {
  border-color: rgba(9, 10, 12, 0.2);
}

.plan-card > a span {
  transition: transform 220ms var(--ease);
}

.plan-card > a:hover span {
  transform: rotate(45deg);
}

.project-strip {
  display: flex;
  min-height: 84px;
  align-items: center;
  gap: 22px;
  margin-top: 16px;
  padding: 18px 24px;
  border: 1px solid var(--line-dark);
  border-radius: 17px;
}

.project-strip > span {
  margin-right: auto;
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
  font-weight: 650;
}

.project-strip p {
  margin: 0;
  font-size: 13px;
  font-weight: 650;
}

.project-strip i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--acid);
}

.project-strip a {
  display: flex;
  gap: 8px;
  margin-left: auto;
  color: var(--acid);
  font-size: 13px;
  font-weight: 720;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 160px 0;
  background: var(--acid);
}

.cta-grid {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(var(--ink) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(circle at center, #000, transparent 76%);
  mask-image: radial-gradient(circle at center, #000, transparent 76%);
}

.final-cta::after {
  position: absolute;
  top: -40%;
  right: -11%;
  width: 660px;
  height: 660px;
  border: 1px solid rgba(9, 10, 12, 0.18);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 100px rgba(9, 10, 12, 0.025), 0 0 0 200px rgba(9, 10, 12, 0.018);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.final-cta .eyebrow {
  justify-content: center;
  color: rgba(9, 10, 12, 0.58);
}

.final-cta h2 {
  margin-bottom: 28px;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 650;
  letter-spacing: -0.085em;
  line-height: 0.88;
}

.final-cta h2 span {
  color: rgba(9, 10, 12, 0.3);
}

.final-cta p:not(.eyebrow) {
  max-width: 600px;
  margin: 0 auto 38px;
  color: rgba(9, 10, 12, 0.64);
  font-size: 18px;
  line-height: 1.65;
}

.final-cta .button-primary {
  color: var(--white);
  background: var(--ink);
}

.final-cta .button-primary:hover,
.final-cta .button-primary:focus-visible {
  color: var(--ink);
  background: var(--white);
}

.final-cta .button-orb {
  color: var(--ink);
  background: var(--acid);
}

.button-large {
  min-height: 70px;
  padding-left: 30px;
  font-size: 16px;
}

.site-footer {
  padding: 76px 0 26px;
  color: var(--white);
  background: var(--ink);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 50px;
  align-items: start;
  padding-bottom: 68px;
}

.brand-footer {
  font-size: 28px;
}

.footer-top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.34);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

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

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 44px, 1100px);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 380px;
  }

  .hero-visual {
    width: 71vw;
    opacity: 0.88;
  }

  .conversation-grid {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 60px;
  }

  .service-row {
    grid-template-columns: 60px minmax(240px, 1fr) minmax(250px, 0.7fr) 48px;
  }

  .difference-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
  }

  .project-strip {
    flex-wrap: wrap;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: calc(100% - 36px);
  }

  .header-inner {
    display: flex;
    height: 76px;
    justify-content: space-between;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--line-dark);
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
  }

  .menu-button span {
    width: 17px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    z-index: 99;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 100px 28px 36px;
    visibility: hidden;
    opacity: 0;
    background: var(--ink);
    transition: opacity 260ms ease, visibility 260ms ease;
  }

  .mobile-nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  .mobile-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 620;
    letter-spacing: -0.055em;
  }

  .hero-grid {
    min-height: 970px;
    grid-template-columns: 1fr;
    align-content: start;
    padding-top: 145px;
    padding-bottom: 0;
  }

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

  .hero h1 {
    font-size: clamp(4rem, 13.4vw, 6.7rem);
  }

  .hero-visual {
    top: auto;
    right: -10%;
    bottom: 0;
    width: 110%;
    height: 480px;
  }

  .hero-art {
    object-position: 68% center;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 34%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 34%);
  }

  .card-top {
    top: 26%;
    right: 9%;
  }

  .card-bottom {
    right: auto;
    bottom: 16%;
    left: 10%;
  }

  .conversation-section,
  .services-section,
  .shift-section,
  .plans-section {
    padding: 110px 0;
  }

  .conversation-grid,
  .services-head,
  .difference-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .conversation-panel {
    width: 100%;
  }

  .services-head {
    margin-bottom: 55px;
  }

  .services-head > p {
    max-width: 600px;
  }

  .service-row {
    min-height: 210px;
    grid-template-columns: 48px 1fr 48px;
    gap: 14px;
  }

  .service-row ul {
    display: none;
  }

  .difference-section {
    padding: 115px 0 90px;
  }

  .always-on {
    min-height: 620px;
  }

  .clock-ring {
    width: min(62vw, 470px);
  }

  .shift-board {
    grid-template-columns: 1fr;
  }

  .shift-side {
    min-height: auto;
    padding: 38px;
  }

  .shift-side > span {
    margin-bottom: 34px;
  }

  .shift-middle {
    min-height: 80px;
  }

  .shift-middle b {
    display: none;
  }

  .shift-middle span {
    transform: rotate(90deg);
  }

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

  .plan-card {
    min-height: 500px;
  }

  .plan-card.featured {
    order: -1;
  }

  .project-strip > span {
    width: 100%;
  }

  .project-strip a {
    width: 100%;
    justify-content: space-between;
    margin-top: 8px;
    margin-left: 0;
    padding-top: 14px;
    border-top: 1px solid var(--line-dark);
  }

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

  .footer-links {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .brand {
    font-size: 20px;
  }

  .hero-grid {
    min-height: 930px;
    padding-top: 126px;
  }

  .eyebrow {
    margin-bottom: 24px;
    font-size: 11px;
  }

  .hero h1 {
    margin-bottom: 23px;
    font-size: clamp(3.6rem, 18.2vw, 5.35rem);
    line-height: 0.89;
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .trust-line {
    gap: 12px 22px;
    margin-top: 38px;
    font-size: 10px;
  }

  .trust-line span:not(:last-child)::after {
    right: -13px;
  }

  .hero-visual {
    right: -28%;
    width: 145%;
    height: 430px;
  }

  .card-top {
    top: 28%;
    right: 18%;
    width: 160px;
  }

  .card-bottom {
    bottom: 14%;
    left: 20%;
    min-width: 235px;
  }

  .signal-strip {
    height: 48px;
  }

  .section-heading h2,
  .services-head h2,
  .shift-title h2 {
    font-size: clamp(2.75rem, 13.5vw, 4rem);
  }

  .conversation-section,
  .services-section,
  .shift-section,
  .plans-section {
    padding: 88px 0;
  }

  .need-options {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .digital-reply {
    min-height: 360px;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 22px 32px;
  }

  .service-row {
    min-height: 170px;
    grid-template-columns: 34px 1fr 40px;
    gap: 10px;
  }

  .service-index {
    padding-top: 43px;
  }

  .service-title h3 {
    font-size: 1.85rem;
  }

  .service-title p {
    font-size: 13px;
  }

  .service-arrow {
    width: 38px;
    height: 38px;
  }

  .difference-copy h2 {
    font-size: clamp(2.9rem, 13vw, 4.1rem);
  }

  .always-on {
    min-height: 540px;
  }

  .clock-ring {
    top: 46%;
    width: min(76vw, 390px);
  }

  .cycle-note {
    width: 180px;
  }

  .note-one { top: 0; left: 0; }
  .note-two { top: auto; right: 0; bottom: 8%; }
  .note-three { display: none; }

  .shift-title {
    margin-bottom: 48px;
  }

  .shift-side {
    padding: 30px 24px 34px;
  }

  .shift-side li {
    align-items: flex-start;
    font-size: 15px;
  }

  .plans-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 48px;
  }

  .plans-head h2 {
    font-size: 3.75rem;
  }

  .plan-card {
    min-height: 520px;
    padding: 28px 24px;
  }

  .plan-card > a {
    right: 24px;
    left: 24px;
  }

  .project-strip {
    gap: 12px;
  }

  .project-strip i {
    display: none;
  }

  .project-strip p {
    width: 100%;
  }

  .final-cta {
    padding: 110px 0;
  }

  .final-cta h2 {
    font-size: clamp(3.4rem, 17vw, 5rem);
  }

  .footer-top {
    grid-template-columns: 1fr;
    padding-bottom: 48px;
  }

  .footer-links {
    grid-column: auto;
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .cursor-glow {
    display: none;
  }
}
