@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700;800&family=IBM+Plex+Mono:wght@400;500;700&display=swap");

:root {
  --bg: #070910;
  --bg-soft: #0a1020;
  --panel: #0e1628;
  --panel-2: #121d34;
  --panel-3: #091223;
  --line: #263250;
  --text: #ecf1ff;
  --text-soft: #98a3c8;
  --accent: #8f6dff;
  --accent-2: #3de7ff;
  --accent-3: #ff67df;
  --ok: #49ffce;
  --danger: #ff5572;
  --radius: 22px;
  --container: 1280px;
  --shadow: 0 26px 64px rgba(1, 4, 20, 0.55);
  --focus: 0 0 0 3px rgba(141, 109, 255, 0.35);

  --ink: var(--text);
  --ink-soft: var(--text-soft);
  --forest: var(--panel);
  --forest-2: var(--panel-2);
  --mint: var(--accent);
  --mint-strong: var(--accent-2);
  --cream: var(--panel-3);
  --paper: #0b1124;
  --white: #f6f8ff;
  --error: var(--danger);
  --sand: #111e36;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(141, 109, 255, 0.14), transparent 35%),
    radial-gradient(circle at 85% 10%, rgba(62, 231, 255, 0.1), transparent 35%),
    radial-gradient(circle at 55% 75%, rgba(255, 103, 223, 0.08), transparent 42%),
    var(--bg);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 980px;
}

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

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1000;
  color: #f6f7ff;
  padding: 11px 16px;
  transform: translateY(-200%);
  border-radius: 999px;
  background: rgba(9, 14, 29, 0.95);
  border: 1px solid rgba(138, 154, 223, 0.4);
}

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

:focus-visible {
  outline: 3px solid #3de7ff;
  outline-offset: 2px;
  box-shadow: var(--focus);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(7, 9, 16, 0.95), rgba(7, 9, 16, 0.7));
  backdrop-filter: blur(14px);
}

.nav-shell {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-family: "Space Grotesk", "IBM Plex Mono", sans-serif;
  font-size: 22px;
  letter-spacing: -0.012em;
}

.brand strong {
  color: var(--text);
}

.brand-mark {
  position: relative;
  width: 32px;
  height: 32px;
  overflow: hidden;
  border-radius: 8px;
  transform: rotate(45deg);
  border: 1px solid rgba(141, 109, 255, 0.55);
  box-shadow: 0 0 18px rgba(141, 109, 255, 0.45);
  background: #090f1f;
}

.brand-mark i {
  position: absolute;
  inset: 5px;
  background:
    linear-gradient(120deg, transparent 46%, rgba(255, 255, 255, 0.8) 47%, transparent 48%, transparent),
    linear-gradient(210deg, transparent 46%, rgba(62, 231, 255, 0.95) 47%, transparent 48%, transparent);
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}

.site-nav > a:not(.button),
.nav-link-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #d2daf0;
  padding: 8px 0;
}

.site-nav > a:not(.button)::after,
.nav-link-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  height: 1px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.site-nav > a:not(.button):hover::after,
.site-nav > a[aria-current="page"]::after,
.nav-link-button:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav form {
  margin: 0;
}

.nav-link-button {
  cursor: pointer;
  border: 0;
  background: transparent;
  color: #d2daf0;
}

.nav-user {
  color: #97a4cb;
  font-size: 13px;
}

.nav-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.16);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 11px;
  background: transparent;
  padding: 11px;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  transition: transform 180ms ease, opacity 180ms ease;
  background: var(--text);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #f8f9ff;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(142, 109, 255, 0.5), rgba(62, 231, 255, 0.5));
  letter-spacing: 0.01em;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
  position: relative;
  cursor: pointer;
}

.button::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  opacity: 0;
  transition: opacity 180ms ease;
  z-index: -1;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(62, 231, 255, 0.2);
}

.button:hover::before {
  opacity: 1;
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
}

.button-ghost {
  background: transparent;
}

.button-light {
  color: #ffffff;
  border-color: rgba(62, 231, 255, 0.6);
  background: linear-gradient(140deg, rgba(62, 231, 255, 0.3), rgba(141, 109, 255, 0.35));
}

.button-full {
  width: 100%;
}

.text-link {
  padding: 8px 0;
  font-size: 14px;
  font-weight: 700;
  color: #d9e3ff;
  text-decoration: underline;
  text-underline-offset: 5px;
}

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

h1,
h2,
h3 {
  font-family: "Space Grotesk", "IBM Plex Mono", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(52px, 5.8vw, 82px);
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(38px, 4.3vw, 62px);
  margin-bottom: 22px;
}

h3 {
  font-size: 28px;
  margin-bottom: 13px;
}

h1 em,
h2 em {
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-image: linear-gradient(100deg, var(--accent-2), var(--accent));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #8c99c4;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #b5d8ff;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 6px rgba(73, 255, 206, 0.2);
}

.hero {
  position: relative;
  padding: 120px 0 120px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(16, 25, 44, 0.58), rgba(11, 17, 33, 0.2)),
    linear-gradient(110deg, rgba(141, 109, 255, 0.15), rgba(62, 231, 255, 0.15));
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  opacity: 0.15;
  background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
}

.hero::after {
  width: 760px;
  height: 760px;
  right: -280px;
  top: -120px;
  border-radius: 50%;
  filter: blur(2px);
  background:
    radial-gradient(circle, rgba(141, 109, 255, 0.24), rgba(141, 109, 255, 0) 65%);
}

.hero-orb {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(0.8px);
}

.hero-orb-one {
  width: 300px;
  height: 300px;
  top: 12%;
  left: 4%;
  background: radial-gradient(circle, rgba(255, 103, 223, 0.34), rgba(255, 103, 223, 0) 70%);
}

.hero-orb-two {
  width: 220px;
  height: 220px;
  right: 9%;
  bottom: 12%;
  background: radial-gradient(circle, rgba(62, 231, 255, 0.4), rgba(62, 231, 255, 0) 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(470px, 0.98fr);
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-lead {
  margin-bottom: 34px;
  max-width: 560px;
  color: var(--text-soft);
  font-size: 21px;
}

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

.hero-proof {
  display: flex;
  align-items: center;
  margin-top: 54px;
  gap: 16px;
  color: #bcc4df;
}

.hero-proof strong {
  display: block;
  color: var(--text);
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-stack i {
  display: grid;
  width: 34px;
  height: 34px;
  margin-left: -10px;
  place-content: center;
  background: linear-gradient(180deg, var(--panel), rgba(0, 0, 0, 0.4));
  border: 1px solid rgba(141, 109, 255, 0.45);
  color: var(--text);
  border-radius: 50%;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.avatar-stack i:first-child {
  margin-left: 0;
}

.product-window {
  position: relative;
  width: 100%;
  margin-left: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 20, 37, 0.72);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.window-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 18px;
  color: #9ca6c4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9fb0cc;
}

.live-pill {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  color: #c8fef0;
  border: 1px solid rgba(73, 255, 206, 0.48);
  background: rgba(73, 255, 206, 0.06);
}

.live-pill i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ok);
}

.window-body {
  display: grid;
  grid-template-columns: 64px 1fr;
  min-height: 440px;
}

.window-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.window-sidebar i {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: #1b2542;
}

.window-sidebar i.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.mini-logo {
  width: 22px;
  height: 22px;
  margin-bottom: 16px;
  background: linear-gradient(45deg, #7c5dff, #3de7ff);
  border-radius: 7px;
  transform: rotate(45deg);
}

.window-content {
  padding: 26px;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.metric-row > div,
.chart-card,
.activity-row {
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(12, 20, 36, 0.82);
}

.metric-row > div {
  padding: 16px;
  position: relative;
  min-height: 108px;
}

.metric-row small {
  display: block;
  color: #97a4c4;
  font-size: 11px;
}

.metric-row strong {
  margin-top: 7px;
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
  color: #f0f4ff;
  letter-spacing: -0.03em;
}

.positive {
  position: absolute;
  top: 16px;
  right: 14px;
  font-size: 10px;
  color: var(--ok);
}

.chart-card {
  margin-top: 14px;
  padding: 17px;
}

.chart-title {
  display: flex;
  justify-content: space-between;
  color: #a7b6dd;
  font-size: 12px;
}

.chart-title small {
  color: #8191c4;
}

.bar-chart {
  margin-top: 16px;
  display: flex;
  align-items: flex-end;
  height: 115px;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.14);
}

.bar-chart i {
  flex: 1;
  height: var(--h);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, rgba(62, 231, 255, 0.35), rgba(62, 231, 255, 0.8));
}

.bar-chart i:nth-last-child(-n + 3) {
  background: linear-gradient(180deg, rgba(255, 103, 223, 0.4), rgba(255, 103, 223, 0.85));
}

.activity-row {
  margin-top: 14px;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.activity-row > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  flex: 1;
  font-size: 11px;
}

.activity-icon {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: #0f1f3f;
  border-radius: 7px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  font-size: 11px;
}

.activity-row small {
  color: #8194bb;
}

.success-chip {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  color: #b8ffea;
  background: rgba(73, 255, 206, 0.16);
}

.floating-card {
  position: absolute;
  width: min(230px, 50%);
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 12px;
  align-items: center;
  background: linear-gradient(125deg, rgba(12, 20, 37, 0.95), rgba(15, 24, 43, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 13px 14px;
  box-shadow: var(--shadow);
  z-index: 3;
}

.floating-card > span:first-child {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #f7f7ff;
  font-size: 11px;
  background: linear-gradient(140deg, var(--accent), var(--accent-3));
}

.floating-card strong {
  font-size: 12px;
}

.floating-card small {
  color: #99a8c9;
  font-size: 11px;
}

.floating-support {
  left: 28px;
  bottom: -34px;
}

.floating-secure {
  right: 16px;
  top: 82px;
}

.proof-strip {
  background: linear-gradient(120deg, rgba(17, 26, 47, 0.96), rgba(8, 13, 27, 0.94));
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 32px 0;
}

.proof-grid > div {
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 22px;
}

.proof-grid > div:first-child {
  padding-left: 0;
}

.proof-grid > div:last-child {
  border: 0;
}

.proof-grid strong {
  font-size: 34px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1;
}

.proof-grid span {
  color: #b0bbde;
  font-size: 12px;
}

.section {
  padding: 110px 0;
}

.section-heading {
  margin-bottom: 64px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
}

.split-heading p,
.centred-heading p,
.story-copy p,
.large-copy,
.detail-row > div:last-child > p {
  color: var(--text-soft);
  font-size: 18px;
}

.centred-heading {
  max-width: 810px;
  margin-inline: auto;
  text-align: center;
}

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

.service-card {
  position: relative;
  min-height: 390px;
  padding: 34px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(130deg, rgba(13, 21, 40, 0.96), rgba(9, 16, 32, 0.95));
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  border-color: rgba(141, 109, 255, 0.45);
  transform: translateY(-8px);
  box-shadow: 0 24px 42px rgba(13, 20, 40, 0.75);
}

.featured-card {
  border-color: rgba(62, 231, 255, 0.6);
  background:
    linear-gradient(130deg, rgba(62, 231, 255, 0.16), rgba(13, 21, 40, 0.97));
}

.card-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #8d9abf;
  font-size: 12px;
  font-weight: 700;
}

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 78px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-size: 22px;
  background: linear-gradient(140deg, rgba(141, 109, 255, 0.25), rgba(62, 231, 255, 0.24));
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.service-card p {
  color: #aeb6d0;
}

.service-card a {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 26px;
  color: #c3d4ff;
}

.section-dark {
  background: linear-gradient(120deg, rgba(13, 18, 35, 0.96), rgba(10, 16, 37, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.pricing-feature {
  display: grid;
  gap: 90px;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
}

.pricing-feature p {
  max-width: 560px;
  color: #b3bddb;
}

.price-card {
  padding: 46px;
  border-radius: 24px;
  border: 1px solid rgba(62, 231, 255, 0.33);
  background:
    linear-gradient(150deg, rgba(62, 231, 255, 0.17), rgba(10, 17, 37, 0.96));
}

.price-label,
.price-sub {
  display: block;
  color: #b6c3e5;
}

.price-label {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.price-zero {
  display: block;
  margin: 8px 0 -4px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 88px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #fff;
}

.price-card hr {
  margin: 32px 0 24px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.price-formula {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}

.price-formula strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
}

.price-formula span,
.price-card > p {
  color: #a0abd0;
  font-size: 11px;
}

.price-formula + p {
  margin-top: 18px;
}

.process-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 24px;
  z-index: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.process-grid li {
  position: relative;
  z-index: 1;
}

.process-grid li > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.03));
}

.process-grid li:first-child > span {
  border-color: rgba(62, 231, 255, 0.5);
}

.process-grid p {
  color: #adb7d3;
  font-size: 15px;
}

.page-hero {
  padding: 110px 0;
  text-align: center;
  background:
    radial-gradient(circle at 12% 22%, rgba(141, 109, 255, 0.2), transparent 26%),
    radial-gradient(circle at 90% 85%, rgba(62, 231, 255, 0.2), transparent 28%),
    var(--panel);
}

.page-hero h1 {
  font-size: clamp(54px, 7vw, 86px);
}

.page-hero p,
.page-hero .eyebrow {
  max-width: 700px;
  margin-inline: auto;
}

.service-detail-section {
  padding-bottom: 24px;
}

.detail-list {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 110px 1fr 0.9fr;
  gap: 56px;
  align-items: flex-start;
  padding: 78px 0;
}

.detail-row:first-child {
  padding-top: 26px;
}

.detail-row > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.detail-index {
  color: #90a0c9;
  font-size: 12px;
  font-weight: 700;
}

.detail-row h2 {
  font-size: clamp(38px, 3.5vw, 52px);
}

.detail-row .service-icon {
  width: 50px;
  height: 50px;
}

.check-list {
  margin: 28px 0 0;
  list-style: none;
  padding: 0;
}

.check-list li {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 13px 0 13px 30px;
  color: #cad2ea;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  margin-left: -2px;
  top: 12px;
  color: var(--ok);
  font-size: 13px;
}

.pricing-section {
  background: linear-gradient(130deg, rgba(11, 16, 34, 0.96), rgba(8, 13, 27, 0.96));
}

.pricing-layout {
  display: grid;
  gap: 120px;
  grid-template-columns: 1fr 0.78fr;
  align-items: center;
}

.calculator-card,
.form-card,
.work-card,
.auth-card,
.form-control,
.auth-card input,
.auth-card select,
.auth-card textarea,
.price-card,
.portfolio-section,
.contact-intro h1,
.message {
  backdrop-filter: blur(9px);
}

.calculator-card,
.form-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 42px;
  background: rgba(13, 20, 40, 0.74);
  box-shadow: var(--shadow);
}

.calculator-card h3 {
  margin-bottom: 24px;
  font-size: 30px;
}

.calculator-card label,
.field-group label {
  display: block;
  margin-bottom: 8px;
  color: #bcc8e5;
  font-size: 12px;
}

.form-control,
.auth-card input,
.auth-card select,
.auth-card textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 12px 15px;
  color: #eff2ff;
  background: rgba(9, 14, 28, 0.8);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.form-control:focus,
.auth-card input:focus,
.auth-card select:focus,
.auth-card textarea:focus {
  border-color: rgba(62, 231, 255, 0.56);
  box-shadow: var(--focus);
}

.currency-input {
  position: relative;
}

.currency-input span {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #9ca8d0;
}

.currency-input input {
  padding-left: 35px;
}

.calculator-card .button {
  margin-top: 14px;
}

.calculation-result {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 22px;
  padding-top: 18px;
}

.calculation-result > div {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 7px 0;
}

.calculation-net {
  margin-top: 8px;
  padding-top: 15px;
  border-top: 1px dashed rgba(255, 255, 255, 0.13);
}

.calculation-net strong {
  color: var(--ok);
  font-size: 24px;
}

.calculation-result small {
  color: #a0abd0;
}

.calculator-note,
.privacy-note {
  margin-top: 18px;
  font-size: 12px;
  color: #b2bde1;
}

.story-layout {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 110px;
}

.story-copy p:not(.large-copy) {
  color: #b1bddc;
}

.values-section {
  background: rgba(11, 17, 33, 0.62);
}

.values-grid {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.values-grid article {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 48px;
}

.values-grid h3 {
  margin-top: 48px;
  margin-bottom: 12px;
  font-size: 28px;
}

.values-grid p {
  color: #acb7d7;
  font-size: 14px;
}

.values-grid > article > span {
  color: #8b99bc;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
}

.experience-band {
  color: #f0f6ff;
  background:
    linear-gradient(145deg, rgba(13, 18, 36, 0.95), rgba(6, 10, 25, 0.94));
}

.experience-grid {
  display: grid;
  gap: 72px;
  align-items: center;
  grid-template-columns: 0.5fr 0.9fr 1fr;
}

.experience-grid > strong {
  font-size: 108px;
  line-height: 0.8;
  color: var(--accent-2);
  letter-spacing: -0.07em;
}

.experience-grid h2 {
  margin: 0;
  font-size: 46px;
}

.experience-grid p {
  color: #b1bbdd;
}

.portfolio-section {
  padding-top: 74px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.work-card {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(12, 19, 36, 0.8);
}

.work-card-large {
  grid-column: 1 / -1;
}

.work-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.work-card-large .work-visual {
  min-height: 560px;
}

.visual-commerce {
  background:
    radial-gradient(circle at 16% 24%, rgba(255, 103, 223, 0.24), transparent 36%),
    linear-gradient(135deg, #0f1c36, #142245);
}

.visual-commerce::before,
.visual-commerce::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  width: 390px;
  height: 390px;
}

.visual-commerce::before { right: -190px; top: -120px; }
.visual-commerce::after { left: -260px; width: 560px; height: 560px; bottom: -290px; }

.phone-mock {
  width: 244px;
  min-height: 438px;
  padding: 30px 22px;
  border: 7px solid #172341;
  border-radius: 34px;
  background: #0a1327;
  transform: rotate(5deg);
  position: relative;
  z-index: 1;
  box-shadow: 0 28px 70px rgba(1, 3, 13, 0.5);
}

.phone-mock > span {
  display: block;
  margin: -12px auto 34px;
  width: 46px;
  height: 5px;
  border-radius: 99px;
  background: #27355b;
}

.phone-chart {
  display: flex;
  align-items: end;
  gap: 8px;
  margin: 24px 0;
  height: 140px;
  background: rgba(62, 231, 255, 0.08);
  padding: 14px;
  border-radius: 14px;
}

.phone-chart i {
  flex: 1;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(62, 231, 255, 0.9), rgba(62, 231, 255, 0.4));
  height: var(--h);
}

.phone-chart i:nth-child(2) { height: 64%; }
.phone-chart i:nth-child(3) { height: 58%; }
.phone-chart i:nth-child(4) { height: 74%; }
.phone-chart i:nth-child(5) { height: 84%; background: linear-gradient(180deg, #ff67df, rgba(255, 103, 223, 0.35));}

.phone-row {
  margin-top: 12px;
  height: 44px;
  border-radius: 10px;
  background: #1d2c4f;
}

.phone-row.short { width: 78%; }

.visual-badge {
  position: absolute;
  right: 14%;
  bottom: 26%;
  border-radius: 10px;
  padding: 12px 17px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(12, 20, 39, 0.96);
}

.visual-operations {
  background: linear-gradient(165deg, #0d1731, #0b132f);
}

.ops-window {
  width: 75%;
  padding: 26px;
  border-radius: 16px;
  background: rgba(11, 19, 37, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.ops-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ops-metrics {
  margin-top: 20px;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
}

.ops-metrics i {
  height: 58px;
  border-radius: 8px;
  background: #15213f;
}

.ops-metrics i:nth-child(2) { background: linear-gradient(180deg, rgba(141, 109, 255, 0.45), rgba(141, 109, 255, 0.15)); }

.ops-graph {
  margin-top: 12px;
  height: 120px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(62, 231, 255, 0.4) 48%, rgba(62, 231, 255, 0.4) 52%, transparent 52%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 33px),
    linear-gradient(180deg, rgba(62, 231, 255, 0.3), rgba(62, 231, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.visual-wellbeing {
  background:
    radial-gradient(circle at 40% 15%, rgba(141, 109, 255, 0.24), transparent 30%),
    linear-gradient(125deg, #182a4d, #0f1b34);
}

.wellbeing-ring {
  width: 210px;
  height: 210px;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 50%;
  background: conic-gradient(var(--accent-2) 84%, rgba(255, 255, 255, 0.35) 0);
  box-shadow: 0 22px 56px rgba(62, 231, 255, 0.35);
}

.wellbeing-ring::before {
  content: "";
  position: absolute;
  width: 158px;
  height: 158px;
  border-radius: 50%;
  background: #0f1c37;
}

.wellbeing-ring span {
  position: relative;
  z-index: 2;
  font-family: "Space Grotesk", sans-serif;
  font-size: 52px;
}

.wellbeing-ring small {
  display: block;
  margin-top: 2px;
  text-transform: uppercase;
  font-size: 9px;
  color: var(--text-soft);
}

.wellbeing-chip {
  position: absolute;
  bottom: 16%;
  right: 12%;
  background: #0d1733;
  border-radius: 99px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.work-copy {
  padding: 28px 34px 36px;
}

.work-copy > div:first-child {
  display: flex;
  justify-content: space-between;
}

.work-copy .eyebrow {
  margin-bottom: 12px;
}

.work-year {
  color: #8e9dc2;
  font-size: 11px;
}

.work-copy h2 {
  margin-top: 0;
  font-size: 30px;
}

.work-copy p {
  margin: 0;
  color: #9eaac9;
  font-size: 12px;
}

.work-card-large .work-copy h2 {
  font-size: 38px;
}

.confidentiality-note {
  margin-top: 54px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  display: flex;
  gap: 18px;
  background: rgba(10, 16, 32, 0.6);
}

.confidentiality-note strong {
  color: #fff;
}

.confidentiality-note p {
  margin: 0;
  color: #a7b4d3;
  font-size: 12px;
}

.contact-page {
  padding: 95px 0 120px;
  background:
    radial-gradient(circle at 14% 17%, rgba(62, 231, 255, 0.16), transparent 22%),
    radial-gradient(circle at 90% 85%, rgba(141, 109, 255, 0.16), transparent 18%),
    var(--bg-soft);
}

.contact-layout {
  display: grid;
  gap: 102px;
  grid-template-columns: 0.8fr 1fr;
  align-items: start;
}

.contact-intro h1 {
  margin-bottom: 18px;
  font-size: clamp(56px, 8vw, 86px);
}

.contact-intro > p {
  margin-top: 0;
  max-width: 480px;
  color: #b0bad8;
  font-size: 18px;
}

.contact-method {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-method > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #f7faff;
  font-weight: 700;
  background: linear-gradient(140deg, rgba(141, 109, 255, 0.5), rgba(62, 231, 255, 0.5));
}

.contact-method a {
  font-size: 15px;
  font-weight: 700;
}

.contact-method small {
  display: block;
  font-size: 10px;
  color: #9ba9cc;
}

.availability {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  gap: 12px;
}

.availability i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  background: var(--ok);
  box-shadow: 0 0 0 5px rgba(73, 255, 206, 0.16);
}

.availability strong {
  display: block;
  font-size: 12px;
}

.availability span,
.availability small {
  color: #a7b2d4;
  display: block;
  font-size: 11px;
}

.form-card h2,
.auth-card h1 {
  font-size: 38px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field-group {
  margin-bottom: 20px;
}

.field-group label span {
  color: #a0accf;
  font-size: 11px;
  font-weight: 400;
}

.field-group textarea {
  resize: vertical;
}

.help-text {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  color: #a1adcb;
}

.help-text ul {
  margin: 6px 0;
  padding-left: 18px;
}

.field-error,
.form-errors {
  color: var(--danger);
  margin: 6px 0;
  font-size: 11px;
}

.form-errors {
  background: rgba(255, 85, 114, 0.12);
  border: 1px solid rgba(255, 85, 114, 0.35);
  border-radius: 10px;
  padding: 11px 14px;
}

.form-errors ul {
  margin: 0;
  padding-left: 18px;
}

.messages {
  position: fixed;
  z-index: 220;
  top: 98px;
  right: 24px;
  max-width: 440px;
}

.message {
  margin: 0 0 10px;
  padding: 14px 18px;
  color: #c2f9e2;
  border: 1px solid rgba(73, 255, 206, 0.35);
  border-radius: 10px;
  background: rgba(73, 255, 206, 0.09);
}

.auth-page {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  min-height: calc(100vh - 86px);
}

.auth-page + .site-footer {
  display: none;
}

.auth-aside {
  position: relative;
  overflow: hidden;
  padding: 72px;
  background:
    radial-gradient(circle at 28% 16%, rgba(62, 231, 255, 0.2), transparent 33%),
    linear-gradient(130deg, #15224f, #081029);
  color: #f2f6ff;
  display: flex;
  align-items: end;
}

.auth-aside::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -210px;
  top: 3%;
  border: 1px solid rgba(62, 231, 255, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(62, 231, 255, 0.03), 0 0 0 170px rgba(141, 109, 255, 0.04);
}

.auth-aside > div {
  position: relative;
  z-index: 2;
}

.auth-aside blockquote {
  margin: 68px 0 34px;
  max-width: 560px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(30px, 3.5vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.auth-aside blockquote + p {
  color: #9db3cc;
}

.auth-main {
  background: linear-gradient(125deg, rgba(8, 11, 24, 0.85), rgba(8, 12, 22, 0.92));
  display: grid;
  place-items: center;
  padding: 72px 38px;
}

.auth-card {
  width: min(100%, 470px);
}

.auth-card > p {
  color: #adb8d9;
  margin-bottom: 34px;
  font-size: 17px;
}

.auth-card input,
.auth-card select,
.auth-card textarea {
  background: rgba(9, 15, 31, 0.86);
}

.auth-switch {
  margin: 24px 0 16px !important;
  text-align: center;
  color: #a8b6d9;
  font-size: 13px;
}

.auth-switch a,
.auth-back {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.auth-back {
  display: block;
  margin-top: 8px;
  color: #92a0cb;
  text-align: center;
  font-size: 11px;
}

.site-footer {
  background: linear-gradient(130deg, #090d1b, #091127);
  color: #d7def3;
  padding: 90px 0 22px;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 78px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta h2 {
  margin: 0;
  font-size: 54px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 1fr;
  gap: 80px;
  padding: 74px 0;
}

.footer-grid p {
  margin-top: 24px;
  color: #8fa0c5;
  font-size: 13px;
}

.footer-grid h3 {
  margin-bottom: 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7f90ba;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-grid a:not(.brand):not(.brand-footer) {
  font-size: 14px;
  color: #b4c0df;
}

.footer-grid a:hover {
  color: var(--accent-2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  color: #7c88ac;
  font-size: 11px;
}

@media (max-width: 1050px) {
  .site-nav { gap: 20px; }
  .hero { padding-top: 85px; }
  .hero-grid { gap: 38px; grid-template-columns: 1fr 0.85fr; }
  .pricing-feature,
  .pricing-layout {
    gap: 70px;
  }
  .detail-row { gap: 30px; grid-template-columns: 78px 1fr 0.95fr; }
  .portfolio-grid { gap: 18px; }
  .contact-layout { gap: 60px; }
}

@media (max-width: 900px) {
  .hero-grid,
  .pricing-feature,
  .pricing-layout,
  .story-layout,
  .experience-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .container { width: min(calc(100% - 36px), var(--container)); }

  .nav-shell { min-height: 74px; }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    right: 0;
    left: 0;
    height: calc(100dvh - 74px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 30px 20px;
    background: rgba(7, 11, 24, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a:not(.button),
  .nav-link-button {
    width: 100%;
    padding: 13px 4px;
    font-size: 22px;
  }

  .site-nav .button {
    margin-top: 12px;
    justify-content: flex-start;
  }

  .nav-divider { width: 100%; height: 1px; margin: 12px 0; }
  .hero {
    min-height: auto;
    padding: 70px 0 92px;
  }

  .product-window { width: min(620px, 100%); margin: 0 auto; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid > div { padding: 20px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .section { padding: 86px 0; }
  .split-heading { grid-template-columns: 1fr; gap: 24px; }
  .service-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .work-card-large .work-visual { min-height: 510px; }
  .work-copy h2,
  .work-copy .work-copy h2,
  .work-card-large .work-copy h2 { font-size: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-section { padding-top: 50px; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }

  .hero-proof { margin-top: 40px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 18px; }
  .window-body { min-height: 340px; grid-template-columns: 42px 1fr; }
  .window-content { padding: 16px 12px; }
  .floating-card { min-width: 182px; }
  .floating-support { left: -3px; }
  .floating-secure { right: -6px; top: -44px; }

  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid > div { border-bottom: 1px solid rgba(255, 255, 255, 0.1); border-right: 0; }
  .section { padding: 68px 0; }
  .section-heading { margin-bottom: 44px; }

  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-grid li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
  }
  .process-grid li > span { margin-bottom: 0; }

  .detail-row {
    grid-template-columns: 1fr;
    padding: 56px 0;
  }
  .detail-row > div:first-child {
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }
  .detail-row .service-icon { margin: 0; }
  .detail-row > div:last-child { grid-column: auto; }

  .experience-grid > strong { font-size: 70px; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-layout { gap: 20px; }
  .contact-intro h1 { font-size: 48px; }
  .auth-page { grid-template-columns: 1fr; }
  .auth-aside { display: none; }
  .auth-main { min-height: calc(100vh - 74px); padding: 54px 18px; }
  .form-card { padding: 30px 18px; }
  .calculator-card { padding: 28px 18px; }
  .footer-cta { flex-direction: column; align-items: flex-start; }
  .footer-cta h2 { font-size: 38px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 7px; }
}

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