:root {
  --bg: #050816;
  --bg-soft: #091126;
  --panel: rgba(10, 16, 35, 0.72);
  --panel-strong: rgba(12, 19, 42, 0.92);
  --line: rgba(255, 122, 84, 0.16);
  --text: #eef2ff;
  --muted: #aeb8d7;
  --accent: #ff5a1f;
  --accent-2: #ff2f3d;
  --accent-3: #ffb347;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 90, 31, 0.14), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(255, 47, 61, 0.1), transparent 22%),
    radial-gradient(circle at bottom center, rgba(255, 179, 71, 0.05), transparent 30%),
    linear-gradient(180deg, #040712 0%, #060b17 45%, #03050b 100%);
  overflow-x: hidden;
}

.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  filter: saturate(1) contrast(1.04) brightness(0.56);
  transform: scale(1.05);
}

.bg-overlay {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 90, 31, 0.16), transparent 28%),
    radial-gradient(circle at 90% 15%, rgba(255, 47, 61, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(4, 7, 18, 0.16), rgba(4, 7, 18, 0.34));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 100%);
  opacity: 0.1;
  z-index: -1;
}

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

button,
input,
textarea {
  font: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px);
  background: rgba(3, 6, 17, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 35% 35%, #ffffff, transparent 26%),
    radial-gradient(circle at 40% 40%, rgba(255,255,255,0.35), transparent 35%),
    conic-gradient(from 180deg, #ff5a1f, #ffb347, #ff2f3d, #ff5a1f);
  box-shadow: 0 0 25px rgba(255, 90, 31, 0.55);
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transform: rotate(45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-links a {
  padding: 12px 16px;
  color: rgba(238, 242, 255, 0.88);
  border-radius: 999px;
  transition: 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(255, 90, 31, 0.16);
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-badge {
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  margin-left: 6px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 18px 40px rgba(255, 90, 31, 0.28);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
}

.hero,
.page-hero,
.section {
  position: relative;
}

.hero {
  padding: 56px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(255, 90, 31, 0.06);
}

.hero h1,
.page-hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.gradient-text {
  background: linear-gradient(135deg, #fff 0%, #ffd0b7 28%, #ff5a1f 55%, #ff2f3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p,
.page-hero p,
.section p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 28px;
}

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

.stat-card,
.feature-card,
.offer-card,
.team-card,
.contact-card,
.summary-card,
.checkout-card,
.cart-item {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.stat-card {
  padding: 18px;
  border-radius: var(--radius-md);
}

.stat-card strong {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.hero-visual {
  position: relative;
  min-height: 680px;
  perspective: 1400px;
  display: grid;
  place-items: center;
}

.orb-shell {
  position: relative;
  width: min(100%, 620px);
  aspect-ratio: 1 / 1;
  transform-style: preserve-3d;
  transform: rotateX(12deg) rotateY(-14deg);
}

.orb-core {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, rgba(255,255,255,0.95), rgba(255,255,255,0.08) 8%, transparent 10%),
    radial-gradient(circle at 50% 50%, rgba(255,90,31,0.8), rgba(43,12,14,0.95) 42%, #050816 64%);
  box-shadow:
    inset 0 0 80px rgba(255,255,255,0.08),
    inset 0 -60px 90px rgba(255, 90, 31, 0.3),
    0 0 120px rgba(255, 90, 31, 0.28);
}

.orb-ring {
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 30px rgba(255, 90, 31, 0.18);
  transform: rotateX(68deg);
}

.orb-ring::before,
.orb-ring::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 90, 31, 0.22);
}

.orb-ring::after {
  inset: 24px;
  border-color: rgba(255, 179, 71, 0.2);
}

.orb-halo {
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.28), transparent 72%);
  filter: blur(10px);
  transform: translateZ(40px);
}

.orb-grid {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 18px);
  mix-blend-mode: screen;
  opacity: 0.45;
  -webkit-mask-image: radial-gradient(circle, black 48%, transparent 75%);
  mask-image: radial-gradient(circle, black 48%, transparent 75%);
}

.float-node {
  position: absolute;
  width: 82px;
  height: 82px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,90,31,0.2), rgba(255,47,61,0.08));
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.3);
  display: grid;
  place-items: center;
  color: #fff;
  transform-style: preserve-3d;
}

.float-node::before {
  content: "";
  width: 26px;
  height: 26px;
  border-radius: 9px;
  background: linear-gradient(135deg, #fff, rgba(255,255,255,0.28));
  box-shadow: 0 0 24px rgba(255,255,255,0.36);
}

.float-node.n1 { top: 7%; left: 10%; transform: translateZ(75px) rotate(18deg); }
.float-node.n2 { top: 12%; right: 8%; transform: translateZ(50px) rotate(-20deg); }
.float-node.n3 { bottom: 18%; left: 4%; transform: translateZ(65px) rotate(14deg); }
.float-node.n4 { bottom: 10%; right: 18%; transform: translateZ(38px) rotate(-10deg); }

.scan-line {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, transparent 44%, rgba(255,90,31,0.35) 50%, transparent 56%);
  mix-blend-mode: screen;
  animation: sweep 7s linear infinite;
  opacity: 0.7;
}

.hero-panel {
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
}

.hero-panel strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 6px;
}

.scroll-hint {
  position: absolute;
  left: 0;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(238, 242, 255, 0.72);
}

.scroll-hint span {
  width: 34px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

.scroll-hint span::before {
  content: "";
  width: 5px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff, var(--accent));
  animation: mouse 1.6s infinite;
}

.section {
  padding: 36px 0 96px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section h2 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
}

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

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

.feature-card,
.offer-card,
.team-card,
.contact-card,
.summary-card,
.checkout-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  padding: 24px;
  min-height: 250px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease;
}

.feature-card:hover {
  transform: translateY(-6px) rotateX(4deg) rotateY(-4deg);
  border-color: rgba(255, 90, 31, 0.34);
}

.feature-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255,90,31,0.45), rgba(255,47,61,0.16));
  margin-bottom: 18px;
  box-shadow: inset 0 0 24px rgba(255,255,255,0.08);
}

.feature-icon svg,
.mini-icon svg {
  width: 30px;
  height: 30px;
  stroke: #fff;
}

.feature-card h3,
.offer-card h3,
.team-card h3,
.contact-card h3,
.summary-card h3,
.checkout-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.feature-card p,
.offer-card p,
.team-card p,
.contact-card p,
.summary-card p {
  margin: 0;
}

.section-banner {
  margin-top: 26px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 90, 31, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  backdrop-filter: blur(14px);
}

.profile-hero {
  padding-bottom: 34px;
}

.profile-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
  align-items: stretch;
}

.profile-panel {
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.profile-card {
  position: relative;
  overflow: hidden;
}

.profile-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -18% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.26), transparent 70%);
  filter: blur(8px);
}

.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 30px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(255, 90, 31, 0.45), rgba(255, 47, 61, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.08);
  margin-bottom: 18px;
  overflow: hidden;
}

.profile-avatar svg {
  width: 58px;
  height: 58px;
  stroke: #fff;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.profile-avatar-sm {
  width: 82px;
  height: 82px;
  border-radius: 22px;
  margin: 0 auto 14px;
}

.profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px;
}

.profile-quote {
  padding: 18px;
  border-left: 2px solid var(--accent);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  color: rgba(238, 242, 255, 0.9);
  line-height: 1.8;
}

.profile-stack {
  display: grid;
  gap: 14px;
}

.profile-stack h3 {
  margin-top: 0;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-item strong {
  color: #fff;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.service-selection {
  display: grid;
  gap: 16px;
}

.service-selection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  color: var(--text);
  font-size: 0.94rem;
}

.service-option-main {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1 1 auto;
}

.service-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  flex: 0 0 auto;
}

.service-option-main > span {
  display: block;
  min-width: 0;
  flex: 1 1 auto;
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.2;
}

.service-price {
  color: rgba(238, 242, 255, 0.84);
  font-weight: 700;
  flex: 0 0 auto;
  min-width: 72px;
  margin-left: 8px;
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-size: 0.92rem;
  white-space: nowrap;
}


.selection-status {
  margin: 0;
  color: var(--accent-3);
  min-height: 1.5em;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.offer-card,
.team-card,
.contact-card,
.summary-card,
.checkout-card {
  padding: 24px;
}

.offer-list,
.contact-list,
.bullet-list,
.stack-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.offer-list li,
.contact-list li,
.bullet-list li,
.stack-list li {
  display: flex;
  gap: 12px;
  align-items: start;
  color: var(--muted);
}

.offer-list li::before,
.contact-list li::before,
.bullet-list li::before,
.stack-list li::before {
  content: "";
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 18px rgba(255, 90, 31, 0.6);
}

.team-grid,
.contact-grid,
.cart-grid,
.checkout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.cart-grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  align-items: start;
}

.team-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.team-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  margin-bottom: 16px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  background: rgba(255,255,255,0.04);
  font-size: 0.85rem;
}

.mini-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255,90,31,0.35), rgba(255,47,61,0.14));
  margin-bottom: 12px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.92rem;
  color: rgba(238, 242, 255, 0.82);
}

.field input,
.field textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  padding: 14px 16px;
  outline: none;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(255,90,31,0.58);
  box-shadow: 0 0 0 4px rgba(255,90,31,0.14);
}

.cart-item {
  border-radius: 22px;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  background: rgba(9, 14, 28, 0.92);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: var(--shadow);
}

.cart-list-shell {
  padding: 24px;
  border-radius: 30px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
}

.cart-item h4,
.summary-row strong {
  margin: 0 0 6px;
}

.cart-item h4 {
  font-size: 1.12rem;
}

.cart-item p {
  color: var(--muted);
}

.quantity-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.quantity-controls button,
.remove-btn {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,90,31,0.8), rgba(255,47,61,0.45));
  color: #fff;
  cursor: pointer;
}

.remove-btn {
  background: rgba(255,255,255,0.08);
}

.summary-card {
  position: sticky;
  top: 104px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.summary-row:last-child {
  border-bottom: 0;
}

.summary-total {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 800;
}

.empty-state {
  padding: 28px;
  border-radius: 24px;
  border: 1px dashed rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
}

.footer {
  padding: 24px 0 38px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(238, 242, 255, 0.74);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: rgba(238, 242, 255, 0.78);
}

.footer-links a:hover {
  color: #fff;
}

@keyframes cursor-pulse {
  0% {
    transform: translate3d(var(--cursor-x), var(--cursor-y), 0) scale(1);
  }
  50% {
    transform: translate3d(var(--cursor-x), var(--cursor-y), 0) scale(1.3);
  }
  100% {
    transform: translate3d(var(--cursor-x), var(--cursor-y), 0) scale(1);
  }
}

@keyframes outer-ring-expand {
  0% {
    inset: -14px;
  }
  100% {
    inset: -22px;
  }
}

@keyframes outer-ring-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 999px;
  pointer-events: none;
  mix-blend-mode: screen;
  --cursor-x: -100px;
  --cursor-y: -100px;
  transform: translate3d(var(--cursor-x), var(--cursor-y), 0);
  transition: transform 120ms ease, width 180ms ease, height 180ms ease, background 180ms ease;
  z-index: 1000;
  box-shadow: 0 0 18px rgba(255, 90, 31, 0.35);
}

.cursor::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 90, 31, 0.35);
  opacity: 0.8;
  transition: inset 180ms ease, transform 180ms ease;
}

.cursor.is-hover {
  width: 42px;
  height: 42px;
  background: rgba(255, 90, 31, 0.12);
}

.cursor.is-hover::after {
  animation: outer-ring-expand 180ms ease forwards, outer-ring-rotate 300ms ease forwards;
}

.cursor.is-click {
  animation: cursor-pulse 200ms ease-out;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes sweep {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes mouse {
  0% { transform: translateY(0); opacity: 0.9; }
  65% { transform: translateY(16px); opacity: 0.2; }
  100% { transform: translateY(0); opacity: 0.9; }
}

@media (max-width: 1080px) {
  .hero-grid,
  .split,
  .profile-layout,
  .team-grid,
  .contact-grid,
  .checkout-grid,
  .cart-grid {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-visual {
    min-height: 560px;
  }

  .summary-card {
    position: static;
  }

  .hero-panel {
    right: 0;
  }
}

@media (max-width: 760px) {
  .nav {
    position: relative;
    min-height: 72px;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
    padding: 14px;
    background: rgba(5, 8, 22, 0.96);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-actions .btn-secondary {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-stats,
  .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .service-selection-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .orb-shell {
    width: 100%;
  }

  .hero-panel {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 18px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cursor {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
  }
}
