:root {
  color-scheme: dark;
  --bg: #101716;
  --ink: #f4f1e8;
  --muted: #c7cdc4;
  --soft: #ead7aa;
  --line: rgba(244, 241, 232, 0.2);
  --panel: rgba(255, 255, 255, 0.105);
  --panel-strong: rgba(255, 255, 255, 0.15);
  --green: #4bc28a;
  --mint: #baf7d5;
  --sky: #b8d9ff;
  --gold: #d4aa5f;
  --peach: #ffc6a8;
  --red: #e85562;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --body-bg:
    radial-gradient(ellipse at 12% 4%, rgba(184, 217, 255, 0.22), transparent 30%),
    radial-gradient(circle at 86% 16%, rgba(255, 198, 168, 0.18), transparent 24%),
    conic-gradient(from 135deg at 72% 5%, rgba(75, 194, 138, 0.16), transparent 18%, rgba(212, 170, 95, 0.14), transparent 34%),
    linear-gradient(180deg, #101716 0%, #18221f 45%, #111716 100%);
  --topbar-bg: linear-gradient(90deg, rgba(16, 23, 22, 0.86), rgba(24, 34, 31, 0.72));
  --control-bg: rgba(18, 27, 25, 0.86);
  --select-bg: #15211e;
  --canvas-soft: rgba(255, 255, 255, 0.09);
}

body.light-mode {
  color-scheme: light;
  --bg: #f6f4ec;
  --ink: #17201d;
  --muted: #58635f;
  --soft: #896b2f;
  --line: rgba(23, 32, 29, 0.16);
  --panel: rgba(255, 255, 255, 0.72);
  --panel-strong: rgba(255, 255, 255, 0.9);
  --green: #17895c;
  --mint: #196a4d;
  --sky: #335f92;
  --gold: #9d762b;
  --peach: #c57450;
  --red: #b3414a;
  --shadow: 0 24px 70px rgba(52, 62, 58, 0.18);
  --body-bg:
    radial-gradient(ellipse at 10% 2%, rgba(74, 128, 183, 0.14), transparent 30%),
    radial-gradient(circle at 88% 13%, rgba(255, 160, 118, 0.18), transparent 26%),
    conic-gradient(from 135deg at 72% 5%, rgba(23, 137, 92, 0.12), transparent 18%, rgba(157, 118, 43, 0.12), transparent 34%),
    linear-gradient(180deg, #f8f6ee 0%, #eef3ef 52%, #f6f4ec 100%);
  --topbar-bg: linear-gradient(90deg, rgba(248, 246, 238, 0.9), rgba(236, 243, 239, 0.78));
  --control-bg: rgba(248, 246, 238, 0.88);
  --select-bg: #fffdf7;
  --canvas-soft: rgba(255, 255, 255, 0.72);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Aptos", "Segoe UI Variable", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--body-bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  transition: background 0.35s ease, color 0.25s ease;
}

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

.rtl-copy [data-i18n] {
  direction: rtl;
  text-align: right;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 12px),
    radial-gradient(circle at 50% 0, rgba(244, 241, 232, 0.055), transparent 28%);
  mask-image: linear-gradient(180deg, black, transparent 85%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(244, 241, 232, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 232, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.45;
}

.site-aura {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.site-aura span {
  position: absolute;
  display: block;
  filter: blur(18px);
  opacity: 0.45;
  animation: drift-shape 18s ease-in-out infinite;
}

.site-aura span:nth-child(1) {
  top: 11%;
  left: 3%;
  width: 210px;
  height: 210px;
  border-radius: 42% 58% 70% 30%;
  background: rgba(186, 247, 213, 0.13);
}

.site-aura span:nth-child(2) {
  top: 38%;
  right: 5%;
  width: 260px;
  height: 120px;
  border-radius: 999px;
  transform: rotate(-18deg);
  background: rgba(184, 217, 255, 0.12);
  animation-delay: -6s;
}

.site-aura span:nth-child(3) {
  bottom: 9%;
  left: 28%;
  width: 190px;
  height: 190px;
  clip-path: polygon(50% 0, 100% 38%, 78% 100%, 20% 100%, 0 38%);
  background: rgba(255, 198, 168, 0.13);
  animation-delay: -11s;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 70px);
  background: var(--topbar-bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  font-weight: 950;
  letter-spacing: 0;
  position: relative;
  padding-left: 16px;
}

.brand::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 22px rgba(186, 247, 213, 0.72);
}

nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

nav a:hover { color: var(--ink); }

nav a {
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--mint), var(--gold));
  transition: transform 0.22s ease;
}

nav a:hover::after { transform: scaleX(1); }

.floating-locale {
  position: fixed;
  top: 78px;
  left: clamp(14px, 4vw, 70px);
  right: auto;
  z-index: 35;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: calc(100vw - 28px);
  transition: opacity 0.35s ease, filter 0.35s ease, transform 0.3s ease;
}

.floating-locale.is-idle {
  opacity: 0.52;
  filter: saturate(0.55) brightness(0.82) blur(0.4px);
}

.floating-locale.is-idle:hover,
.floating-locale.is-idle:focus-within {
  opacity: 1;
  filter: none;
}

.locale-launcher {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(244, 241, 232, 0.18);
  border-radius: 16px 6px 16px 6px;
  color: var(--ink);
  background: var(--control-bg);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 950;
  transition: transform 0.24s cubic-bezier(.2,.8,.2,1), border-color 0.22s ease, box-shadow 0.24s ease;
}

.locale-launcher:hover,
.locale-launcher:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(186, 247, 213, 0.48);
  box-shadow: 0 20px 62px rgba(0, 0, 0, 0.32);
}

.locale-launcher::after {
  content: "";
  position: absolute;
  right: 9px;
  bottom: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(212, 170, 95, 0.65);
}

.locale-panel {
  display: grid;
  grid-template-columns: minmax(190px, 250px) auto;
  gap: 6px 10px;
  align-items: center;
  width: min(430px, calc(100vw - 86px));
  padding: 10px;
  border: 1px solid rgba(244, 241, 232, 0.18);
  border-radius: 18px 8px 18px 8px;
  background: var(--control-bg);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  opacity: 1;
  transform: translateX(0) scale(1);
  transform-origin: top left;
  transition: opacity 0.22s ease, transform 0.24s cubic-bezier(.2,.8,.2,1), visibility 0.22s ease;
}

.floating-locale.is-collapsed .locale-panel {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-10px) scale(0.96);
}

.locale-panel label {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.locale-panel select {
  min-height: 38px;
  width: 100%;
  border: 1px solid rgba(244, 241, 232, 0.18);
  border-radius: 7px;
  padding: 0 10px;
  color: var(--ink);
  background: var(--select-bg);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
}

.locale-panel > span {
  grid-column: 1;
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
}

.locale-hint {
  position: absolute;
  left: 62px;
  top: 3px;
  width: min(280px, calc(100vw - 96px));
  padding: 12px 14px;
  border: 1px solid rgba(186, 247, 213, 0.2);
  border-radius: 18px 8px 18px 8px;
  color: var(--ink);
  background: var(--control-bg);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.35;
  animation: hint-float 1.2s ease-in-out infinite;
}

.locale-hint::after {
  content: "";
  position: absolute;
  top: 18px;
  left: -18px;
  width: 28px;
  height: 1px;
  background: linear-gradient(270deg, var(--mint), transparent);
  transform: rotate(18deg);
}

.locale-hint.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  animation: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  border: 1px solid rgba(244, 241, 232, 0.18);
  border-radius: 999px;
  padding: 0 11px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.075);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.theme-icon {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: inset -5px -4px 0 var(--control-bg);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.light-mode .theme-icon {
  box-shadow: inset 0 0 0 4px var(--control-bg);
  transform: rotate(45deg);
}

.rate-credit {
  grid-column: 2;
  color: rgba(244, 241, 232, 0.58);
  font-size: 10px;
  font-weight: 800;
  text-align: right;
}

.rate-credit:hover {
  color: var(--ink);
}

.button,
.system-card,
.compact-grid > div,
.phone-card,
.proof-video-card,
.pricing-card,
.skills-panel,
.cal-embed,
.profile-points span,
.stack-chips span {
  transition: transform 0.28s cubic-bezier(.2,.8,.2,1), border-color 0.22s ease, background 0.22s ease, box-shadow 0.28s ease, opacity 0.28s ease;
}

.button:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 16px 40px rgba(184, 217, 255, 0.12);
}

.reveal-ready {
  opacity: 0;
  transform: translateY(18px);
}

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

.system-card:hover,
.compact-grid > div:hover,
.phone-card:hover,
.proof-video-card:hover,
.pricing-card:hover,
.skills-panel:hover {
  transform: translateY(-5px);
}

.system-card,
.compact-grid > div,
.phone-card,
.proof-video-card,
.pricing-card,
.skills-panel,
.cal-embed {
  --spot-x: 50%;
  --spot-y: 20%;
}

.system-card::after,
.compact-grid > div::after,
.phone-card::after,
.proof-video-card::after,
.pricing-card::before,
.skills-panel::after,
.cal-embed::after {
  pointer-events: none;
}

.system-card:hover,
.compact-grid > div:hover,
.phone-card:hover,
.proof-video-card:hover,
.pricing-card:hover,
.skills-panel:hover,
.cal-embed:hover {
  background-image:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(186, 247, 213, 0.12), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.04));
}

.system-card img,
.hero-stage > img,
.phone-frame img {
  transition: transform 0.55s cubic-bezier(.2,.8,.2,1), filter 0.35s ease;
}

.system-card:hover img,
.hero-stage:hover > img,
.phone-card:hover .phone-frame img {
  transform: scale(1.018);
  filter: saturate(1.04) contrast(1.03);
}

section {
  padding-left: clamp(16px, 4vw, 70px);
  padding-right: clamp(16px, 4vw, 70px);
}

.hero {
  position: relative;
  min-height: calc(100vh - 66px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding-top: 62px;
  padding-bottom: 48px;
}

.hero::before,
.hero::after,
.walkthrough-section::before,
.projects::before,
.mobile-proof::before,
.profile::before {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.85;
}

.hero::before {
  right: 7%;
  top: 72px;
  width: 220px;
  height: 220px;
  border-radius: 44% 56% 30% 70%;
  background: linear-gradient(135deg, rgba(184, 217, 255, 0.16), rgba(75, 194, 138, 0.08));
  filter: blur(1px);
}

.hero::after {
  left: 42%;
  bottom: 34px;
  width: 210px;
  height: 86px;
  border: 1px solid rgba(255, 198, 168, 0.22);
  border-radius: 999px;
  transform: rotate(-18deg);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1, h2, h3, p { letter-spacing: 0; }

h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.01;
  max-width: 820px;
  font-weight: 850;
  text-wrap: balance;
  text-shadow: 0 24px 72px rgba(0, 0, 0, 0.32);
}

h2 {
  margin: 0;
  font-size: clamp(30px, 3.7vw, 50px);
  line-height: 1.04;
  font-weight: 820;
  text-wrap: balance;
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.14;
  font-weight: 820;
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(244, 241, 232, 0.78);
  font-size: 17px;
  line-height: 1.68;
}

.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 11px;
  border: 1px solid rgba(212, 170, 95, 0.28);
  border-radius: 999px;
  background: rgba(212, 170, 95, 0.07);
}

.hero-copy .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 900;
}

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

.button.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
}

.hero-stage {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: flex-end;
  perspective: 1200px;
}

.hero-stage img,
.system-card img {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-stage > img {
  transform: rotateY(-4deg) rotateX(2deg);
  transform-origin: center;
  border-radius: 22px 8px 28px 8px;
}

.hero-stage::before {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -18px;
  width: 72%;
  height: 64%;
  border: 1px solid rgba(186, 247, 213, 0.2);
  border-radius: 40px 10px 40px 10px;
  transform: rotate(-3deg);
}

.answer-window {
  position: absolute;
  top: 0;
  left: 4%;
  right: 4%;
  z-index: 2;
  min-height: 172px;
  padding: 18px;
  background: rgba(22, 31, 29, 0.9);
  border: 1px solid rgba(244, 241, 232, 0.16);
  border-radius: 18px 8px 18px 8px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.dots { display: flex; gap: 7px; margin-bottom: 18px; }
.dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--green); }
.dots span:nth-child(2) { background: var(--gold); }
.dots span:nth-child(3) { background: var(--red); }

.typed-text {
  min-height: 54px;
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 760;
}

.typed-text::after,
.typing-card::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 1em;
  margin-left: 4px;
  background: var(--green);
  vertical-align: -2px;
  animation: blink 0.8s steps(2, start) infinite;
}

.system-answer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 22px);
  padding: 0;
  margin: 0 clamp(18px, 4vw, 70px) 72px;
  background: transparent;
  overflow: visible;
}

.proof-band div {
  position: relative;
  min-height: 184px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  isolation: isolate;
  outline: none;
  transform: translateY(0) rotate(var(--tilt, 0deg)) scale(1);
  opacity: 1;
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1), opacity 0.45s ease, border-color 0.28s ease, box-shadow 0.3s ease;
}

.proof-band.motion-ready div {
  opacity: 0;
  transform: translateY(20px) rotate(var(--tilt, 0deg)) scale(0.96);
}

.proof-band.motion-ready.in-view div {
  opacity: 1;
  transform: translateY(0) rotate(var(--tilt, 0deg)) scale(1);
}

.proof-band div::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 1px solid rgba(244, 241, 232, 0.18);
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(186, 247, 213, 0.07));
  box-shadow: var(--shadow);
  transition: border-radius 0.45s cubic-bezier(.2,.8,.2,1), transform 0.4s cubic-bezier(.2,.8,.2,1), background 0.3s ease;
}

.proof-band div:nth-child(1) { --tilt: -2deg; transition-delay: 40ms; }
.proof-band div:nth-child(2) { --tilt: 1.5deg; transition-delay: 120ms; }
.proof-band div:nth-child(3) { --tilt: -1deg; transition-delay: 200ms; }
.proof-band div:nth-child(4) { --tilt: 2deg; transition-delay: 280ms; }

.proof-band div:nth-child(1)::before { border-radius: 38% 62% 48% 52% / 46% 40% 60% 54%; }
.proof-band div:nth-child(2)::before { border-radius: 24px 70px 24px 70px; background: linear-gradient(135deg, rgba(184, 217, 255, 0.13), rgba(255, 255, 255, 0.055)); }
.proof-band div:nth-child(3)::before { clip-path: polygon(10% 0, 100% 12%, 92% 100%, 0 88%); border-radius: 24px; background: linear-gradient(135deg, rgba(255, 198, 168, 0.12), rgba(255, 255, 255, 0.055)); }
.proof-band div:nth-child(4)::before { border-radius: 70px 24px 70px 24px; background: linear-gradient(135deg, rgba(212, 170, 95, 0.14), rgba(186, 247, 213, 0.07)); }

.proof-band div:hover,
.proof-band div:focus-visible {
  transform: translateY(-8px) rotate(0deg) scale(1.03);
}

.proof-band div:hover::before,
.proof-band div:focus-visible::before {
  border-color: rgba(186, 247, 213, 0.46);
  transform: rotate(1.5deg);
  background:
    radial-gradient(circle at var(--spot-x, 35%) var(--spot-y, 25%), rgba(186, 247, 213, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(184, 217, 255, 0.09));
}

.proof-band span {
  display: block;
  color: var(--soft);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 950;
  line-height: 0.9;
  transition: transform 0.28s ease;
}

.proof-band p {
  max-width: 230px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.proof-band div:hover span,
.proof-band div:focus-visible span {
  transform: translateX(4px);
}

.walkthrough-section,
.projects,
.mobile-proof,
.profile,
.contact {
  position: relative;
  padding-top: clamp(58px, 8vw, 88px);
  padding-bottom: clamp(58px, 8vw, 88px);
}

.walkthrough-section::before {
  right: 70px;
  top: 42px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(186, 247, 213, 0.18);
  border-radius: 30% 70% 62% 38%;
  transform: rotate(24deg);
}

.section-heading {
  position: relative;
  max-width: 900px;
  margin-bottom: 30px;
}

.section-heading.wide { max-width: 1120px; }

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  max-width: 930px;
  font-size: 16.5px;
  line-height: 1.68;
}

.section-mark {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border: 1px solid rgba(244, 241, 232, 0.18);
  border-radius: 50% 50% 50% 8px;
  color: var(--mint);
  background: rgba(255, 255, 255, 0.045);
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), border-color 0.28s ease, box-shadow 0.28s ease;
}

section.focus-active .section-mark {
  transform: rotate(-8deg) scale(1.06);
  border-color: rgba(186, 247, 213, 0.42);
  box-shadow: 0 18px 50px rgba(186, 247, 213, 0.14);
}

section.focus-active .eyebrow {
  color: var(--mint);
}

.movie-shell {
  overflow: hidden;
  border: 1px solid rgba(244, 241, 232, 0.18);
  border-radius: 26px 8px 26px 8px;
  background: var(--bg);
  box-shadow: var(--shadow);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.walkthrough-section.focus-active .movie-shell {
  border-color: rgba(186, 247, 213, 0.36);
  transform: translateY(-4px);
}

.movie-shell:hover {
  border-color: rgba(186, 247, 213, 0.42);
  transform: translateY(-3px);
}

.movie-toolbar {
  display: grid;
  grid-template-columns: auto 1fr minmax(180px, 310px);
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.recording-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(232, 80, 91, 0.7);
  animation: pulse-dot 1.2s infinite;
}

.movie-progress {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.movie-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transition: width 0.25s linear;
}

.movie-stage {
  position: relative;
  overflow: hidden;
  min-height: clamp(430px, 55vw, 680px);
  background: #0b100d;
}

.movie-stage::before {
  content: "";
  position: absolute;
  z-index: 4;
  right: 24px;
  top: 24px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(186, 247, 213, 0.16);
  border-radius: 999px 999px 999px 20px;
  transform: rotate(18deg);
  pointer-events: none;
}

.movie-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 64%, rgba(5, 7, 7, 0.5)),
    linear-gradient(90deg, rgba(5, 7, 7, 0.18), transparent 30%, transparent 70%, rgba(5, 7, 7, 0.18));
}

.movie-stage img {
  display: block;
  width: 100%;
  min-height: clamp(430px, 55vw, 680px);
  object-fit: cover;
  object-position: top left;
  transform: scale(1.02);
  transition: opacity 0.35s ease, transform 1.2s ease;
}

.movie-stage.scene-zoom img { transform: scale(1.1) translate(-2%, -1%); }

.cursor {
  position: absolute;
  z-index: 7;
  width: 24px;
  height: 24px;
  left: 18%;
  top: 28%;
  border-radius: 0 50% 50% 50%;
  background: #0d1210;
  border: 2px solid #fff;
  transform: rotate(-35deg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.36);
  transition: left 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), top 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.focus-ring {
  position: absolute;
  z-index: 5;
  left: 16%;
  top: 24%;
  width: 190px;
  height: 62px;
  border: 3px solid var(--green);
  border-radius: 8px;
  box-shadow: 0 0 0 999px rgba(5, 7, 7, 0.26), 0 0 34px rgba(75, 194, 138, 0.56);
  transition: left 0.9s ease, top 0.9s ease, width 0.9s ease, height 0.9s ease;
}

.privacy-masks {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.privacy-masks.show { opacity: 1; }

.mask {
  position: absolute;
  left: 30%;
  right: 7%;
  height: 50px;
  border-radius: 7px;
  background: rgba(8, 11, 13, 0.62);
  border: 1px solid rgba(244, 241, 232, 0.18);
  backdrop-filter: blur(12px);
}

.mask::after {
  content: "Sensitive staff details hidden";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(244, 241, 232, 0.74);
  font-size: 12px;
  font-weight: 900;
}

.mask-a { top: 44%; }
.mask-b { top: 51.7%; }
.mask-c { top: 59.4%; }

.typing-card,
.floating-panel,
.receipt-panel {
  position: absolute;
  z-index: 8;
  border: 1px solid rgba(244, 241, 232, 0.18);
  border-radius: 18px 8px 18px 8px;
  background: rgba(21, 30, 28, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.typing-card {
  left: 24px;
  bottom: 24px;
  width: min(570px, calc(100% - 48px));
  min-height: 82px;
  padding: 18px 20px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.45;
}

.floating-panel {
  right: 24px;
  bottom: 24px;
  width: min(470px, calc(100% - 48px));
  padding: 18px;
  transform: translateY(16px);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.floating-panel.show { opacity: 1; transform: translateY(0); }

.floating-panel h3 { margin: 0 0 8px; font-size: 22px; }
.floating-panel p { margin: 0; color: var(--muted); line-height: 1.5; }

.product-stack {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.product-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 10px 11px;
  border: 1px solid rgba(244, 241, 232, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.065);
  color: var(--ink);
  font-weight: 850;
}

.product-row b { color: var(--soft); }

.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 18px;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.payment-methods span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-weight: 900;
}

.payment-methods .selected {
  background: var(--green);
  color: #06100b;
  border-color: var(--green);
}

.fake-pay {
  width: 100%;
  min-height: 43px;
  margin-top: 12px;
  border: 0;
  border-radius: 6px;
  background: var(--ink);
  color: #080b0d;
  font-weight: 950;
}

.receipt-panel {
  right: 34px;
  top: 74px;
  display: grid;
  gap: 8px;
  width: 330px;
  padding: 18px;
  opacity: 0;
  transform: translateX(24px) rotate(1.5deg);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.receipt-panel.show { opacity: 1; transform: translateX(0) rotate(1.5deg); }
.receipt-panel span { color: var(--muted); font-size: 14px; }
.receipt-panel b { padding-top: 8px; border-top: 1px dashed var(--line); color: var(--soft); }
.receipt-panel button { min-height: 40px; border: 0; border-radius: 6px; background: var(--green); color: #06100b; font-weight: 950; }

.projects {
  background:
    linear-gradient(135deg, rgba(184, 217, 255, 0.085), transparent 34%),
    rgba(255, 255, 255, 0.055);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.projects::before {
  left: 5%;
  top: 112px;
  width: 110px;
  height: 110px;
  border-radius: 18px 999px 999px 18px;
  background: rgba(212, 170, 95, 0.1);
  transform: rotate(36deg);
}

.project-ledger { display: grid; gap: 24px; }

.system-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 30px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 26px 8px 26px 8px;
  background: rgba(255, 255, 255, 0.082);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.system-card:nth-child(even) {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.system-card:nth-child(even) img {
  order: 2;
  border-radius: 8px 26px 8px 26px;
}

.system-card > div {
  position: relative;
}

.system-card > div::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 58px;
  height: 58px;
  border-top: 1px solid rgba(186, 247, 213, 0.22);
  border-right: 1px solid rgba(186, 247, 213, 0.22);
  border-radius: 0 8px 0 0;
}

.system-card:hover,
.compact-grid > div:hover,
.phone-card:hover,
.proof-video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(186, 247, 213, 0.36);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.system-card.feature {
  background: linear-gradient(135deg, rgba(75, 194, 138, 0.12), rgba(255, 255, 255, 0.055));
}

.system-card img {
  height: 100%;
  min-height: 370px;
  object-fit: cover;
  object-position: top left;
}

.system-card:hover img {
  filter: saturate(1.06) contrast(1.04);
}

.tag {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

dl {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
}

dl div {
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--soft);
  font-weight: 950;
}

dd {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.stack-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.stack-chips span {
  padding: 8px 10px;
  border: 1px solid rgba(244, 241, 232, 0.15);
  border-radius: 999px;
  background: rgba(184, 217, 255, 0.08);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.stack-chips span:hover {
  background: rgba(186, 247, 213, 0.16);
  border-color: rgba(186, 247, 213, 0.42);
}

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

.compact-grid div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px 8px 20px 8px;
  background: rgba(255, 255, 255, 0.082);
}

.compact-grid p {
  color: var(--muted);
  line-height: 1.62;
}

.mobile-proof {
  padding-top: 88px;
  padding-bottom: 88px;
}

.mobile-proof::before {
  right: 9%;
  top: 96px;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, rgba(255, 198, 168, 0.13), rgba(184, 217, 255, 0.08));
  clip-path: polygon(50% 0, 100% 36%, 82% 100%, 18% 100%, 0 36%);
}

.proof-grid {
  display: grid;
  gap: 24px;
}

.phone-card {
  display: grid;
  grid-template-columns: minmax(380px, 0.56fr) minmax(0, 0.44fr);
  gap: 34px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px 8px 28px 8px;
  background: linear-gradient(135deg, rgba(212, 170, 95, 0.14), rgba(255, 255, 255, 0.08));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.app-collage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.54fr) minmax(230px, 0.46fr);
  gap: 16px;
  align-items: center;
  min-height: 0;
}

.phone-card p:not(.tag),
.proof-video-card p:not(.tag),
.profile-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.phone-frame {
  position: relative;
  width: min(310px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 232, 0.2);
  border-radius: 34px;
  background: #050707;
  box-shadow: var(--shadow);
}

.phone-frame::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 10px;
  left: 50%;
  width: 80px;
  height: 5px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgba(244, 241, 232, 0.22);
}

.phone-frame img {
  display: block;
  width: 100%;
}

.app-shot-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-content: center;
  justify-self: center;
  width: min(430px, 100%);
}

.app-shot {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(244, 241, 232, 0.18);
  border-radius: 18px 7px 18px 7px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
  transform: rotate(var(--shot-tilt, 0deg));
  transition: transform 0.42s cubic-bezier(.2,.8,.2,1), border-color 0.28s ease, filter 0.28s ease;
}

.app-shot:nth-child(1) { --shot-tilt: -2deg; }
.app-shot:nth-child(2) { --shot-tilt: 1.5deg; }
.app-shot:nth-child(3) { --shot-tilt: -1deg; }
.app-shot:nth-child(4) { --shot-tilt: 2deg; }

.app-shot img {
  display: block;
  width: 100%;
  height: clamp(148px, 16vw, 224px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.98) contrast(1.02);
}

.app-shot figcaption {
  position: absolute;
  left: 8px;
  bottom: 8px;
  padding: 5px 7px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(5, 7, 7, 0.72);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 900;
}

.app-collage:hover .app-shot,
.phone-card:focus-within .app-shot {
  border-color: rgba(186, 247, 213, 0.34);
  filter: saturate(1.05);
}

.app-collage:hover .app-shot:nth-child(odd) {
  transform: translateY(-4px) rotate(0deg);
}

.app-collage:hover .app-shot:nth-child(even) {
  transform: translateY(4px) rotate(0deg);
}

.phone-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 28%, rgba(0, 0, 0, 0.24));
}

.app-highlight {
  position: absolute;
  z-index: 2;
  width: 22%;
  height: 7.8%;
  display: grid;
  place-items: end center;
  padding-bottom: 3px;
  border: 2px solid var(--green);
  border-radius: 8px;
  background: rgba(75, 194, 138, 0.1);
  box-shadow: 0 0 0 999px rgba(5, 7, 7, 0.1), 0 0 28px rgba(75, 194, 138, 0.5);
  animation: app-focus 3.8s ease-in-out infinite;
}

.app-highlight b {
  padding: 4px 7px;
  border-radius: 5px;
  background: rgba(5, 7, 7, 0.82);
  color: var(--ink);
  font-size: 12px;
  line-height: 1;
}

.app-highlight.qstudy {
  left: 6.8%;
  top: 79.2%;
}

.app-highlight.kadiz {
  left: 29.2%;
  top: 79.2%;
  border-color: var(--gold);
  background: rgba(212, 170, 95, 0.12);
  animation-delay: 1.9s;
}

.video-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 340px));
  justify-content: center;
  gap: 14px;
}

.proof-video-card {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 20px 8px 20px 8px;
  background: rgba(255, 255, 255, 0.055);
}

.proof-video-card h3 {
  font-size: 19px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 12px;
  border: 1px solid rgba(244, 241, 232, 0.16);
  border-radius: 18px 6px 18px 6px;
  background: #050707;
}

.video-shell video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.code-shell video {
  filter: blur(2.2px) saturate(0.95) brightness(0.92) contrast(1.05);
  transform: scale(1.025);
}

.code-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 5px),
    linear-gradient(135deg, rgba(75, 194, 138, 0.12), rgba(212, 170, 95, 0.08));
}

.code-mask {
  position: absolute;
  z-index: 2;
  border-radius: 7px;
  background: rgba(5, 7, 7, 0.52);
  border: 1px solid rgba(244, 241, 232, 0.14);
  backdrop-filter: blur(18px);
}

.code-mask.mask-top { left: 0; right: 0; top: 0; height: 16%; }
.code-mask.mask-left { left: 0; top: 16%; bottom: 0; width: 18%; }

.video-badge {
  position: absolute;
  z-index: 3;
  left: 16px;
  bottom: 16px;
  padding: 8px 10px;
  border: 1px solid rgba(244, 241, 232, 0.18);
  border-radius: 6px;
  background: rgba(5, 7, 7, 0.84);
  color: var(--soft);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.profile {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
  gap: 40px;
  align-items: center;
}

.profile::before {
  left: 6%;
  bottom: 80px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(184, 217, 255, 0.18);
  border-radius: 50% 12% 50% 12%;
  transform: rotate(18deg);
}

.profile-media {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-primary {
  display: block;
  border: 1px solid var(--line);
  border-radius: 28px 8px 28px 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.profile-primary {
  width: min(360px, 82%);
  aspect-ratio: 1 / 1;
}

.profile-primary:hover {
  transform: translateY(-4px) rotate(-1deg);
}

.profile-media::after {
  content: "Builder / Teacher / Operator";
  position: absolute;
  left: 18%;
  bottom: 18px;
  padding: 11px 13px;
  border: 1px solid rgba(244, 241, 232, 0.16);
  border-radius: 6px;
  background: rgba(8, 11, 13, 0.86);
  color: var(--soft);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 21px;
  line-height: 1.7;
  margin: 24px 0 0;
}

.profile-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.profile-points span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--ink);
  font-weight: 850;
  font-size: 14px;
}

.profile-points span:hover {
  background: rgba(184, 217, 255, 0.1);
  border-color: rgba(184, 217, 255, 0.36);
}

.skills-panel {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(244, 241, 232, 0.14);
  border-radius: 24px 8px 24px 8px;
  background:
    linear-gradient(135deg, rgba(186, 247, 213, 0.08), rgba(184, 217, 255, 0.055)),
    rgba(255, 255, 255, 0.045);
}

.skills-header {
  display: grid;
  grid-template-columns: 1fr repeat(3, auto);
  gap: 14px;
  align-items: end;
  margin-bottom: 16px;
}

.skills-header h3 {
  margin: 0;
  font-size: 21px;
}

.skills-header span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.skill-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 12px 0 16px;
  border-top: 1px solid var(--line);
}

.skill-row span,
.skill-row b {
  position: relative;
  z-index: 2;
}

.skill-row span {
  color: var(--ink);
  font-weight: 820;
}

.skill-row b {
  color: var(--mint);
  font-size: 13px;
  text-transform: uppercase;
}

.skill-row::before,
.skill-row::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 8px;
  border-radius: 999px;
}

.skill-row::before {
  background: rgba(255, 255, 255, 0.09);
}

.skill-row::after {
  right: auto;
  width: var(--level);
  background: linear-gradient(90deg, var(--green), var(--sky), var(--gold));
  box-shadow: 0 0 22px rgba(186, 247, 213, 0.2);
}

.soft-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.soft-skills span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 198, 168, 0.09);
  border: 1px solid rgba(255, 198, 168, 0.2);
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
}

.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(320px, 0.58fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
}

.pricing {
  position: relative;
  padding-top: clamp(58px, 8vw, 88px);
  padding-bottom: clamp(58px, 8vw, 88px);
}

.pricing::before {
  content: "";
  position: absolute;
  right: clamp(20px, 7vw, 120px);
  top: 48px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(184, 217, 255, 0.2);
  border-radius: 40% 60% 28% 72%;
  transform: rotate(-16deg);
}

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

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(244, 241, 232, 0.17);
  border-radius: 28px 8px 28px 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(12, 18, 17, 0.54);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  cursor: pointer;
}

.pricing-card::after {
  content: "";
  position: absolute;
  right: -58px;
  top: -46px;
  width: 160px;
  height: 160px;
  border-radius: 44% 56% 70% 30%;
  background: rgba(186, 247, 213, 0.09);
}

.pricing-card.featured-price {
  background:
    linear-gradient(145deg, rgba(186, 247, 213, 0.16), rgba(184, 217, 255, 0.09)),
    rgba(12, 18, 17, 0.64);
  border-color: rgba(186, 247, 213, 0.38);
  transform: translateY(-10px);
}

.pricing-card:hover,
.pricing-card:focus-visible,
.pricing-card.selected-plan {
  border-color: rgba(186, 247, 213, 0.58);
  box-shadow: 0 24px 82px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(186, 247, 213, 0.14) inset;
}

.pricing-card.selected-plan::before {
  content: "Selected";
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 7px 9px;
  border: 1px solid rgba(186, 247, 213, 0.36);
  border-radius: 999px;
  background: rgba(186, 247, 213, 0.12);
  color: var(--mint);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.pricing-card h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(23px, 2.2vw, 31px);
  line-height: 1.08;
}

.pricing-card p:not(.tag) {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.68;
}

.price-range {
  position: relative;
  z-index: 1;
  margin: 18px 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--soft);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 950;
  line-height: 1.05;
}

.price-range small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.custom-price {
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 34px);
}

.pricing-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  color: var(--ink);
}

.pricing-card li {
  position: relative;
  padding-left: 22px;
  line-height: 1.45;
  font-weight: 760;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 18px rgba(186, 247, 213, 0.55);
}

.pricing-action {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.contact-copy {
  max-width: 620px;
}

.contact p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.cal-embed {
  overflow: hidden;
  min-height: 560px;
  border: 1px solid rgba(244, 241, 232, 0.18);
  border-radius: 28px 8px 28px 8px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow);
}

.booking-brief {
  padding: 22px;
  border-bottom: 1px solid rgba(244, 241, 232, 0.16);
  background:
    linear-gradient(135deg, rgba(186, 247, 213, 0.12), rgba(184, 217, 255, 0.08)),
    rgba(13, 20, 18, 0.72);
}

.booking-brief h3 {
  max-width: 780px;
}

.booking-brief p:not(.tag) {
  max-width: 820px;
  color: var(--muted);
  line-height: 1.6;
}

.booking-brief strong {
  display: inline-flex;
  margin-top: 8px;
  color: var(--soft);
}

.cal-embed iframe {
  display: block;
  width: 100%;
  min-height: 560px;
  border: 0;
  background: #fff;
}

.light-mode .answer-window,
.light-mode .movie-shell,
.light-mode .video-shell,
.light-mode .code-shell,
.light-mode .cal-embed,
.light-mode .skills-panel,
.light-mode .system-card,
.light-mode .pricing-card,
.light-mode .phone-card,
.light-mode .proof-video-card,
.light-mode .compact-grid > div {
  background-color: rgba(255, 255, 255, 0.64);
}

.light-mode .lead {
  color: rgba(23, 32, 29, 0.76);
  text-shadow: none;
}

.light-mode h1 {
  text-shadow: none;
}

.light-mode .button.primary {
  color: #fffdf7;
}

@keyframes blink { 50% { opacity: 0; } }
@keyframes pulse-dot {
  70% { box-shadow: 0 0 0 9px rgba(232, 80, 91, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 80, 91, 0); }
}

@keyframes app-focus {
  0%, 100% { transform: scale(1); opacity: 0.74; }
  45% { transform: scale(1.08); opacity: 1; }
  62% { transform: scale(1.02); opacity: 0.92; }
}

@keyframes drift-shape {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  45% { transform: translate3d(22px, -18px, 0) rotate(8deg); }
  70% { transform: translate3d(-12px, 14px, 0) rotate(-5deg); }
}

@keyframes hint-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(7px, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  .reveal-ready {
    opacity: 1;
    transform: none;
  }
  .locale-hint {
    animation: none;
  }
}

@media (max-width: 980px) {
  nav { display: none; }
  .hero,
  .system-card,
  .compact-grid,
  .proof-band,
  .profile,
  .phone-card,
  .video-proof-grid,
  .contact,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured-price {
    transform: none;
  }
  .hero {
    min-height: auto;
  }
  .hero-stage { min-height: 440px; }
  .hero-stage > img { transform: none; }
  .system-card:nth-child(even) { grid-template-columns: 1fr; }
  .system-card:nth-child(even) img { order: 0; }
  .movie-toolbar { grid-template-columns: auto 1fr; }
  .movie-progress { grid-column: 1 / -1; }
  .system-card img { min-height: 260px; }
  .video-proof-grid {
    justify-content: stretch;
    max-width: 560px;
    margin: 0 auto;
  }
  .cal-embed,
  .cal-embed iframe {
    min-height: 620px;
  }
}

@media (max-width: 620px) {
  body {
    background: var(--body-bg);
  }
  body::after { opacity: 0.22; background-size: 46px 46px; }
  section { padding-left: 18px; padding-right: 18px; }
  h1 {
    font-size: clamp(31px, 8.8vw, 38px);
    line-height: 1.08;
    text-wrap: balance;
  }
  h2 {
    font-size: clamp(25px, 7.2vw, 31px);
    line-height: 1.1;
    text-wrap: balance;
  }
  h3 {
    font-size: 20px;
    line-height: 1.16;
  }
  p { overflow-wrap: anywhere; }
  .topbar {
    padding: 12px 18px;
    background: rgba(16, 23, 22, 0.9);
  }
  .floating-locale {
    top: 58px;
    left: 14px;
    right: auto;
  }
  .locale-panel {
    position: absolute;
    top: 56px;
    left: 0;
    width: min(330px, calc(100vw - 28px));
    grid-template-columns: 1fr;
  }
  .locale-panel label {
    display: none;
  }
  .locale-panel select {
    min-height: 36px;
    font-size: 12px;
  }
  .locale-panel > span {
    font-size: 10px;
  }
  .theme-toggle {
    width: 100%;
    justify-content: center;
  }
  .locale-hint {
    top: 58px;
    left: 0;
    width: min(260px, calc(100vw - 86px));
    font-size: 12px;
  }
  .locale-hint::after {
    top: -11px;
    left: 18px;
    width: 22px;
    transform: rotate(58deg);
  }
  .rate-credit {
    text-align: left;
  }
  .brand {
    font-size: 15px;
  }
  .hero {
    gap: 18px;
    padding-top: 98px;
    padding-bottom: 26px;
  }
  .hero-copy {
    max-width: 100%;
  }
  .hero-copy .eyebrow {
    max-width: 100%;
    padding: 7px 10px;
    font-size: 10px;
    white-space: normal;
  }
  .lead {
    margin-top: 18px;
    font-size: 15.5px;
    line-height: 1.62;
  }
  .actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 22px;
  }
  .button {
    min-height: 46px;
    padding: 0 14px;
    border-radius: 8px;
  }
  .hero-stage {
    min-height: auto;
    display: grid;
    gap: 12px;
  }
  .hero-stage::before,
  .hero::before,
  .hero::after,
  .pricing::before {
    display: none;
  }
  .hero-stage > img {
    border-radius: 18px 6px 18px 6px;
  }
  .answer-window {
    position: relative;
    left: auto;
    right: auto;
    min-height: 0;
    padding: 14px;
    border-radius: 16px 6px 16px 6px;
  }
  .typed-text {
    min-height: 46px;
    font-size: 16px;
  }
  .system-answer {
    font-size: 14px;
    line-height: 1.55;
  }
  .proof-band {
    margin: 0 18px 40px;
    border-radius: 18px 6px 18px 6px;
  }
  .proof-band div { padding: 18px; }
  .proof-band span { font-size: 30px; }
  .walkthrough-section,
  .projects,
  .pricing,
  .mobile-proof,
  .profile,
  .contact {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .section-heading {
    margin-bottom: 22px;
  }
  .section-heading p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.62;
  }
  .section-mark {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }
  .eyebrow {
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }
  .system-card,
  .compact-grid > div,
  .phone-card,
  .proof-video-card,
  .pricing-card,
  .skills-panel,
  .cal-embed {
    border-radius: 18px 6px 18px 6px;
  }
  .system-card,
  .compact-grid > div,
  .phone-card,
  .pricing-card {
    padding: 16px;
  }
  .system-card p,
  .system-card dd,
  .compact-grid p,
  .phone-card p,
  .proof-video-card p,
  .profile-copy p:not(.eyebrow),
  .pricing-card p:not(.tag),
  .contact p:not(.eyebrow) {
    font-size: 14.5px;
    line-height: 1.6;
  }
  .pricing-grid {
    gap: 14px;
  }
  .price-range {
    margin: 14px 0;
    font-size: clamp(24px, 8vw, 32px);
    line-height: 1.12;
  }
  .pricing-card li {
    font-size: 14px;
  }
  .movie-stage { min-height: 430px; }
  .movie-stage img { min-height: 430px; }
  .typing-card, .receipt-panel {
    left: 10px;
    right: 10px;
    width: auto;
  }
  .typing-card {
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-height: 54px;
    padding: 11px 13px;
    border-radius: 14px 5px 14px 5px;
    font-size: 12.5px;
    line-height: 1.42;
    background: rgba(8, 13, 12, 0.72);
    backdrop-filter: blur(14px);
  }
  .floating-panel {
    left: 12px;
    right: auto;
    bottom: 76px;
    width: min(250px, calc(100% - 24px));
    max-height: 112px;
    padding: 10px 11px;
    overflow: hidden;
    border-radius: 14px 5px 14px 5px;
    background: rgba(8, 13, 12, 0.62);
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.24);
  }
  .floating-panel h3 {
    margin-bottom: 4px;
    font-size: 13px;
    line-height: 1.1;
  }
  .floating-panel p,
  .floating-panel .product-stack {
    display: none;
  }
  .floating-panel .cart-total,
  .floating-panel .payment-methods,
  .floating-panel .fake-pay {
    display: none;
  }
  .receipt-panel { top: 62px; }
  .mask { left: 12%; right: 4%; }
  .profile-media { min-height: 350px; }
  .profile-primary { width: min(300px, 82%); }
  .profile-media::after { left: 10px; bottom: 10px; }
  .phone-card {
    gap: 18px;
  }
  .app-collage {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
  }
  .phone-frame { width: min(250px, 100%); }
  .app-shot-stack {
    width: min(340px, 100%);
    gap: 8px;
  }
  .app-shot {
    border-radius: 14px 5px 14px 5px;
  }
  .app-shot img {
    height: clamp(126px, 39vw, 160px);
  }
  .app-shot figcaption {
    font-size: 9px;
    left: 5px;
    bottom: 5px;
    padding: 4px 6px;
  }
  .proof-video-card { padding: 10px; }
  .cal-embed {
    min-height: 580px;
    border-radius: 18px 6px 18px 6px;
  }
  .booking-brief {
    padding: 16px;
  }
  .cal-embed iframe {
    min-height: 580px;
  }
  .skills-header {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .skill-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  section { padding-left: 14px; padding-right: 14px; }
  h1 { font-size: 31px; }
  h2 { font-size: 25px; }
  .lead,
  .section-heading p:not(.eyebrow),
  .contact p:not(.eyebrow),
  .pricing-card p:not(.tag) {
    font-size: 14.5px;
  }
  .profile-points {
    flex-direction: column;
  }
  .movie-toolbar {
    font-size: 12px;
    padding: 12px;
  }
  .typing-card {
    font-size: 12px;
    min-height: 52px;
    padding: 10px 12px;
  }
  .floating-panel {
    bottom: 82px;
    padding: 10px 11px;
  }
  .receipt-panel {
    font-size: 12px;
  }
  .cal-embed,
  .cal-embed iframe {
    min-height: 540px;
  }
}
