:root {
  --bg: #050505;
  --surface: #0b0b0b;
  --surface-strong: #070707;
  --text: #f8f4dc;
  --muted: #b4ad8d;
  --line: rgba(255, 217, 82, 0.5);
  --yellow: #ffd84a;
  --yellow-soft: #ffe889;
  --radius-hard: 10px;
  --stroke: 2px;
  --shadow-brutal: 8px 8px 0 rgba(255, 216, 74, 0.32);
  --container: min(1140px, calc(100% - 2.4rem));
  --header-height: 74px;
}

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

html {
  scroll-behavior: smooth;
  background-color: #020202;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  background-color: #020202;
  background:
    radial-gradient(circle at 20% 8%, rgba(255, 214, 64, 0.14) 0%, transparent 42%),
    radial-gradient(circle at 86% 12%, rgba(255, 214, 64, 0.1) 0%, transparent 40%),
    linear-gradient(180deg, #040404 0%, #020202 100%);
  background-size: 120% 120%;
  animation: bgFlow 18s ease-in-out infinite alternate;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.bg-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0 16px,
      rgba(255, 217, 82, 0.12) 16px 17px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0 22px,
      rgba(255, 217, 82, 0.07) 22px 23px
    );
  opacity: 0.28;
  transform: perspective(420px) rotateX(22deg) scale(1.15) translateY(15%);
  transform-origin: center top;
  animation: gridSweep 14s linear infinite;
}

.bg-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 216, 74, 0.1), transparent 44%),
    radial-gradient(circle at 50% 50%, transparent 45%, rgba(0, 0, 0, 0.72) 100%);
  animation: vignettePulse 7.2s ease-in-out infinite alternate;
}

.orb {
  position: absolute;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(56px);
  opacity: 0.24;
  animation: orbDrift 12s ease-in-out infinite alternate;
}

.orb-a {
  top: -20%;
  left: -10%;
  background: radial-gradient(circle, rgba(255, 214, 64, 0.72), transparent 64%);
}

.orb-b {
  top: 4%;
  right: -12%;
  background: radial-gradient(circle, rgba(255, 232, 137, 0.58), transparent 64%);
  animation-delay: -3.5s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 24;
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.scrolled {
  background: rgba(7, 7, 7, 0.78);
  border-color: rgba(255, 215, 83, 0.22);
  backdrop-filter: blur(12px);
}

.site-header.menu-open {
  background: rgba(7, 7, 7, 0.92);
  border-color: rgba(255, 215, 83, 0.22);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  gap: 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.header-nav a {
  transition: color 180ms ease;
}

.header-nav a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 8px;
  border: var(--stroke) solid rgba(255, 217, 82, 0.46);
  background: rgba(21, 19, 11, 0.86);
  box-shadow: 4px 4px 0 rgba(129, 98, 17, 0.45);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 5px 5px 0 rgba(149, 113, 20, 0.56);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #ffe89a;
  transition: transform 220ms ease, opacity 220ms ease;
}

.site-header.menu-open .menu-toggle {
  border-color: rgba(255, 224, 124, 0.85);
  box-shadow: 6px 6px 0 rgba(149, 113, 20, 0.56);
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 7vw, 5rem);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -25% auto auto -18%;
  width: min(860px, 72vw);
  aspect-ratio: 1.5 / 1;
  background: radial-gradient(circle at center, rgba(255, 216, 74, 0.24), transparent 68%);
  filter: blur(14px);
  pointer-events: none;
  animation: heroGlowDrift 9s ease-in-out infinite alternate;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 215, 83, 0.04), transparent 24%),
    repeating-linear-gradient(
      0deg,
      rgba(255, 217, 82, 0.08) 0 1px,
      transparent 1px 11px
    );
  mix-blend-mode: screen;
  opacity: 0.45;
  animation: scanlines 8.5s linear infinite;
  z-index: 0;
}

.hero-lightning {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.lightning-flash {
  position: absolute;
  inset: -8%;
  background: radial-gradient(
    circle at var(--flash-x, 50%) var(--flash-y, 28%),
    rgba(255, 247, 196, 0.46) 0%,
    rgba(255, 221, 100, 0.24) 24%,
    rgba(255, 216, 74, 0) 62%
  );
  mix-blend-mode: screen;
  opacity: 0;
  filter: blur(2px);
}

.lightning-bolt {
  position: absolute;
  left: var(--bolt-x, 50%);
  top: var(--bolt-top, -10%);
  width: var(--bolt-width, 2.2px);
  height: var(--bolt-height, 58%);
  transform: translateX(-50%) rotate(var(--bolt-rot, 0deg));
  transform-origin: top center;
  opacity: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 252, 221, 0.98) 0%,
    rgba(255, 236, 138, 0.95) 18%,
    rgba(255, 216, 74, 0.86) 54%,
    rgba(255, 216, 74, 0) 100%
  );
  clip-path: polygon(
    34% 0%,
    66% 0%,
    57% 20%,
    75% 20%,
    45% 54%,
    61% 54%,
    35% 100%,
    16% 100%,
    37% 70%,
    20% 70%,
    49% 38%,
    31% 38%
  );
  filter: drop-shadow(0 0 6px rgba(255, 227, 120, 0.82)) drop-shadow(0 0 14px rgba(255, 216, 74, 0.58));
}

.lightning-bolt::before,
.lightning-bolt::after {
  content: "";
  position: absolute;
  left: 50%;
  width: var(--branch-width, 2px);
  height: 42%;
  transform: translateX(-50%) scaleY(0.2);
  transform-origin: top center;
  opacity: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 250, 210, 0.9) 0%,
    rgba(255, 231, 127, 0.84) 30%,
    rgba(255, 216, 74, 0) 100%
  );
  clip-path: polygon(
    35% 0%,
    67% 0%,
    56% 20%,
    76% 20%,
    45% 58%,
    60% 58%,
    34% 100%,
    14% 100%,
    37% 70%,
    19% 70%,
    48% 40%,
    30% 40%
  );
  filter: drop-shadow(0 0 4px rgba(255, 227, 120, 0.74));
  pointer-events: none;
}

.lightning-bolt::before {
  --branch-rot: var(--branch-a-rot, -24deg);
  top: var(--branch-a-y, 24%);
  height: var(--branch-a-height, 36%);
  width: var(--branch-a-width, 1.8px);
}

.lightning-bolt::after {
  --branch-rot: var(--branch-b-rot, 24deg);
  top: var(--branch-b-y, 42%);
  height: var(--branch-b-height, 28%);
  width: var(--branch-b-width, 1.6px);
}

.hero-lightning.active .lightning-flash {
  animation: lightningFlash var(--flash-duration, 760ms) ease-out both;
}

.hero-lightning.active .lightning-bolt {
  animation: lightningStrike var(--strike-duration, 520ms) cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-lightning.active .lightning-bolt::before {
  animation:
    lightningBranch var(--branch-a-duration, 420ms) cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--branch-a-delay, 40ms);
}

.hero-lightning.active .lightning-bolt::after {
  animation:
    lightningBranch var(--branch-b-duration, 380ms) cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--branch-b-delay, 70ms);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) minmax(260px, 0.9fr);
  align-items: center;
  gap: clamp(1.2rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
  isolation: isolate;
}

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

.hero-copy h1 {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2rem, 4.3vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
  transition:
    transform 750ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 750ms ease,
    filter 750ms ease;
}

.hero-copy p {
  margin: 1rem 0 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  transform: translateY(0);
  opacity: 1;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), opacity 700ms ease;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
  transform: translateY(0);
  opacity: 1;
  position: relative;
  z-index: 4;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), opacity 700ms ease;
}

.js .hero-copy h1 {
  transform: translateY(24px);
  opacity: 0;
  filter: blur(6px);
}

.js .hero-copy p {
  transform: translateY(18px);
  opacity: 0;
}

.js .hero-actions {
  transform: translateY(14px);
  opacity: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.74rem 1.2rem;
  border-radius: var(--radius-hard);
  border: var(--stroke) solid transparent;
  font-family: "Unbounded", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 200ms ease,
    background-color 180ms ease;
  position: relative;
  z-index: 2;
  pointer-events: auto;
  overflow: hidden;
}

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

.btn-primary {
  background: linear-gradient(120deg, #ffe889, #ffd84a 70%);
  border-color: rgba(255, 244, 188, 0.85);
  box-shadow: 5px 5px 0 rgba(176, 132, 6, 0.68);
  color: #111006;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: -140%;
  left: -55%;
  width: 45%;
  height: 380%;
  background: linear-gradient(100deg, transparent 15%, rgba(255, 255, 255, 0.56), transparent 85%);
  transform: rotate(18deg);
  animation: ctaShine 4.8s ease-in-out infinite;
  pointer-events: none;
}

.btn-ghost {
  border-color: rgba(255, 217, 83, 0.55);
  background: rgba(24, 22, 12, 0.42);
  box-shadow: 5px 5px 0 rgba(120, 92, 16, 0.48);
}

.btn-primary:hover {
  box-shadow: 7px 7px 0 rgba(188, 138, 0, 0.72);
}

.btn-ghost:hover {
  box-shadow: 7px 7px 0 rgba(139, 106, 18, 0.62);
}

.hero-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.phone-wrap {
  position: relative;
  transform: translate3d(var(--pan-x, 0px), var(--pan-y, 0px), 0);
  transition: transform 220ms ease;
  animation: phoneFloat 5.8s ease-in-out infinite;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.phone-wrap--asset {
  width: clamp(232px, 20.5vw, 306px);
}

.phone-glow {
  position: absolute;
  inset: -20% -20%;
  z-index: -1;
  background: radial-gradient(circle, rgba(255, 216, 74, 0.46) 0%, transparent 66%);
  filter: blur(26px);
  animation: glowPulse 4.6s ease-in-out infinite;
}

.phone-wrap--asset .phone-glow {
  inset: -18% -16%;
  background: radial-gradient(circle, rgba(255, 216, 74, 0.52) 0%, transparent 68%);
}

.phone-device-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  filter:
    drop-shadow(0 0 1px rgba(255, 236, 170, 0.45))
    drop-shadow(0 28px 56px rgba(0, 0, 0, 0.56));
}

.iphone {
  width: clamp(228px, 18.8vw, 286px);
  aspect-ratio: 393 / 852;
  padding: 7px;
  border-radius: 48px;
  border: 1px solid rgba(255, 236, 156, 0.36);
  background:
    linear-gradient(150deg, rgba(255, 238, 170, 0.14), transparent 30%),
    linear-gradient(135deg, #2d280f 0%, #121108 52%, #070704 100%);
  box-shadow:
    0 0 0 1px rgba(255, 224, 124, 0.24) inset,
    0 0 0 2px rgba(14, 13, 8, 0.82) inset,
    0 30px 58px rgba(0, 0, 0, 0.62);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 2;
}

.iphone:focus-visible {
  outline: none;
}

.iphone::before,
.iphone::after {
  content: "";
  position: absolute;
  border-radius: 10px;
  background: rgba(255, 230, 138, 0.54);
  pointer-events: none;
}

.iphone::before {
  left: -2px;
  top: 16.8%;
  width: 1.8px;
  height: 62px;
  box-shadow: 0 78px 0 rgba(255, 230, 138, 0.54), 0 124px 0 rgba(255, 230, 138, 0.54);
}

.iphone::after {
  right: -2px;
  top: 31%;
  width: 1.8px;
  height: 86px;
}

.notch {
  width: 31%;
  height: 3.3%;
  min-height: 15px;
  max-height: 20px;
  position: absolute;
  left: 50%;
  top: 2.8%;
  transform: translateX(-50%);
  z-index: 3;
  border-radius: 999px;
  background: #05070c;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.07) inset;
}

.notch::after {
  content: "";
  position: absolute;
  right: 18%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle at 34% 34%, rgba(62, 74, 110, 0.95), rgba(20, 26, 46, 0.96));
}

.display {
  border-radius: 42px;
  overflow: hidden;
  aspect-ratio: 393 / 852;
  position: relative;
  background: #050912;
  box-shadow: 0 0 0 1px rgba(64, 53, 20, 0.76) inset;
}

.screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screen-meta {
  text-align: center;
  margin-top: 0.7rem;
}

.screen-meta p {
  margin: 0;
  font-size: 0.86rem;
  color: #f4e4a5;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 700;
}

.section {
  padding: clamp(2.8rem, 7vw, 4.8rem) 0;
}

.about-layout {
  border: var(--stroke) solid var(--line);
  border-radius: var(--radius-hard);
  background: linear-gradient(145deg, rgba(20, 17, 8, 0.9), rgba(8, 8, 5, 0.98));
  box-shadow: var(--shadow-brutal);
  padding: clamp(1.2rem, 3vw, 2.2rem);
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(280px, 1fr);
  gap: 1.2rem;
  align-items: start;
  position: relative;
  overflow: hidden;
  background-size: 180% 180%;
  transition:
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 360ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 320ms ease,
    background-position 380ms ease;
}

.about-layout::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 12%, rgba(255, 217, 82, 0.16), transparent 62%);
  opacity: 0;
  transition: opacity 420ms ease;
  pointer-events: none;
}

.about-layout:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 224, 124, 0.86);
  box-shadow: 10px 10px 0 rgba(166, 126, 9, 0.68);
  background-position: 100% 100%;
}

.about-layout:hover::before {
  opacity: 0.52;
}

.about-head h2 {
  margin: 0.48rem 0 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  letter-spacing: -0.01em;
  line-height: 1.08;
  text-transform: uppercase;
}

.about-kicker {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffe9a2;
}

.about-lead {
  margin: 0;
  font-size: clamp(1.02rem, 1.55vw, 1.23rem);
  line-height: 1.52;
  max-width: 52ch;
  color: #f0e7c4;
}

.about-accents {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.about-accents li {
  border-radius: 6px;
  border: var(--stroke) solid rgba(255, 217, 82, 0.64);
  background: rgba(33, 28, 11, 0.86);
  padding: 0.42rem 0.76rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.cases-head h2 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.8rem, 3.1vw, 2.8rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.cases-head p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.cases-list {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.case-card {
  border: var(--stroke) solid var(--line);
  border-radius: var(--radius-hard);
  background: linear-gradient(145deg, rgba(20, 17, 8, 0.9), rgba(8, 8, 5, 0.98));
  box-shadow: 8px 8px 0 rgba(166, 126, 9, 0.5);
  padding: clamp(0.95rem, 2.5vw, 1.4rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
  position: relative;
  overflow: hidden;
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 420ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 360ms ease,
    background-position 420ms ease;
  background-size: 180% 180%;
}

.case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 232, 137, 0.16);
  border-radius: inherit;
  opacity: 1;
  pointer-events: none;
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 24% 10%, rgba(255, 217, 82, 0.16), transparent 62%);
  opacity: 0;
  transition: opacity 460ms ease;
  pointer-events: none;
  border-radius: inherit;
}

.case-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 224, 124, 0.86);
  box-shadow: 10px 10px 0 rgba(166, 126, 9, 0.68);
  background-position: 100% 100%;
}

.case-card:hover::before {
  opacity: 0.52;
}

.case-cover {
  width: 100%;
  border-radius: 7px;
  border: var(--stroke) solid rgba(255, 217, 82, 0.38);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 420ms ease,
    border-color 320ms ease;
}

.case-cover--device {
  object-fit: contain;
  border: none;
  background: transparent;
  padding: 0;
}

.case-cover-placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 217, 82, 0.2), transparent 42%),
    linear-gradient(145deg, rgba(25, 22, 13, 0.96), rgba(11, 10, 7, 0.98));
}

.case-cover-placeholder span {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(0.74rem, 1.2vw, 0.92rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 232, 137, 0.66);
}

.case-card:hover .case-cover {
  transform: scale(1.012);
  filter: saturate(1.05) contrast(1.02);
  border-color: rgba(255, 217, 82, 0.6);
}

.case-copy h3 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.case-copy {
  display: flex;
  flex-direction: column;
  min-height: 140px;
}

.case-copy p {
  margin: 0.52rem 0 0.95rem;
  color: var(--muted);
  max-width: 34ch;
  font-size: 0.98rem;
}

.appstore-btn {
  display: inline-flex;
  margin-top: auto;
  padding: 0.62rem 0.96rem;
  border-radius: 8px;
  border: var(--stroke) solid #ffe7a1;
  color: #061024;
  font-family: "Unbounded", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: linear-gradient(120deg, #fff3b8, #ffd84a);
  box-shadow: 5px 5px 0 rgba(171, 125, 0, 0.66);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.appstore-btn:hover {
  transform: translateY(-2px);
  box-shadow: 7px 7px 0 rgba(188, 138, 0, 0.72);
}

.appstore-btn-disabled,
.appstore-btn:disabled {
  background: linear-gradient(120deg, rgba(92, 84, 50, 0.5), rgba(64, 59, 37, 0.5));
  border-color: rgba(255, 217, 82, 0.28);
  box-shadow: none;
  color: rgba(242, 227, 165, 0.72);
  cursor: not-allowed;
  transform: none;
}

.case-card--coming {
  border-color: rgba(255, 217, 82, 0.34);
  box-shadow: 8px 8px 0 rgba(109, 92, 31, 0.42);
}

.case-card--coming .case-cover,
.case-card--coming .appstore-btn {
  filter: blur(1.8px) saturate(0.6);
  opacity: 0.62;
}

.case-card--coming .case-copy {
  min-height: 84px;
  justify-content: flex-end;
}

.case-card--coming .case-copy h3,
.case-card--coming .case-copy p,
.case-card--coming .case-copy small,
.case-card--coming .case-copy strong {
  display: none !important;
}

.case-card--coming::before {
  opacity: 0.18;
}

.case-card--coming:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 217, 82, 0.42);
  box-shadow: 9px 9px 0 rgba(109, 92, 31, 0.52);
  background-position: 28% 24%;
}

.case-card--coming:hover::before {
  opacity: 0.26;
}

.case-card--coming:hover .case-cover {
  transform: none;
  border-color: rgba(255, 217, 82, 0.38);
}

.case-badge {
  position: absolute;
  top: 0.78rem;
  right: 0.78rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.28rem 0.54rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 232, 137, 0.68);
  background: rgba(19, 16, 8, 0.88);
  color: #ffe89a;
  font-family: "Unbounded", sans-serif;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.privacy-cta {
  padding-top: clamp(1.6rem, 4vw, 2.4rem);
}

.privacy-cta-card {
  border: var(--stroke) solid var(--line);
  border-radius: var(--radius-hard);
  background: linear-gradient(140deg, rgba(22, 18, 8, 0.95), rgba(8, 8, 5, 1));
  box-shadow: 10px 10px 0 rgba(166, 126, 9, 0.58);
  padding: clamp(1.2rem, 3vw, 2rem);
  position: relative;
  overflow: hidden;
  background-size: 180% 180%;
  transition:
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 360ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 320ms ease,
    background-position 380ms ease;
}

.privacy-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 10%, rgba(255, 217, 82, 0.14), transparent 62%);
  opacity: 0;
  transition: opacity 420ms ease;
  pointer-events: none;
}

.privacy-cta-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 224, 124, 0.86);
  box-shadow: 12px 12px 0 rgba(166, 126, 9, 0.7);
  background-position: 100% 100%;
}

.privacy-cta-card:hover::before {
  opacity: 0.5;
}

.privacy-cta-kicker {
  margin: 0;
  color: #ffe9a4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
}

.privacy-cta-card h2 {
  margin: 0.55rem 0 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.65rem, 3.6vw, 2.7rem);
  letter-spacing: -0.012em;
  line-height: 1.04;
  text-transform: uppercase;
  max-width: 20ch;
}

.privacy-cta-text {
  margin: 0.86rem 0 1.2rem;
  color: var(--muted);
  max-width: 56ch;
  font-size: clamp(0.98rem, 1.38vw, 1.14rem);
  line-height: 1.5;
}

.contact-offer {
  border: var(--stroke) solid var(--line);
  border-radius: var(--radius-hard);
  background: linear-gradient(140deg, rgba(22, 18, 8, 0.95), rgba(8, 8, 5, 1));
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: 10px 10px 0 rgba(166, 126, 9, 0.58);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-size: 180% 180%;
  transition:
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 360ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 320ms ease,
    background-position 380ms ease;
}

.contact-offer::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 217, 82, 0.12), transparent 40%, rgba(255, 232, 137, 0.1));
  background-size: 180% 180%;
  animation: offerShift 8s ease-in-out infinite;
  z-index: -1;
}

.contact-offer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 22% 8%, rgba(255, 217, 82, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 420ms ease;
  pointer-events: none;
}

.contact-offer:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 224, 124, 0.86);
  box-shadow: 12px 12px 0 rgba(166, 126, 9, 0.7);
  background-position: 100% 100%;
}

.contact-offer:hover::before {
  opacity: 0.5;
}

.offer-kicker {
  margin: 0;
  color: #ffe9a4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
}

.contact-offer h2 {
  margin: 0.55rem 0 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  letter-spacing: -0.01em;
  line-height: 1.08;
  text-transform: uppercase;
}

.offer-text {
  margin: 0.8rem 0 1.2rem;
  color: var(--muted);
  max-width: 60ch;
}

.offer-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.1rem;
}

.contact-note {
  margin-top: 1.2rem;
  padding-top: 0.95rem;
  border-top: var(--stroke) solid rgba(255, 217, 82, 0.35);
  color: #d5c68a;
  font-size: 0.87rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0;
}

.privacy-page .site-header {
  position: static;
}

.privacy-main {
  padding: clamp(2rem, 5vw, 4.2rem) 0 clamp(2.8rem, 6vw, 5rem);
}

.privacy-shell {
  border: var(--stroke) solid var(--line);
  border-radius: var(--radius-hard);
  background: linear-gradient(145deg, rgba(20, 17, 8, 0.9), rgba(8, 8, 5, 0.98));
  box-shadow: 10px 10px 0 rgba(166, 126, 9, 0.6);
  padding: clamp(1.15rem, 3vw, 2.2rem);
}

.privacy-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.privacy-home-link {
  font-family: "Unbounded", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffe9a4;
}

.privacy-title {
  margin: 0.15rem 0 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.35rem, 3.2vw, 2.4rem);
  letter-spacing: -0.01em;
  line-height: 1.12;
  text-transform: uppercase;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.privacy-meta {
  margin: 0.7rem 0 0;
  color: #ecdba1;
}

.privacy-meta-block {
  margin-top: 0.9rem;
  border: 1px solid rgba(255, 217, 82, 0.2);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(10, 10, 8, 0.95), rgba(5, 5, 4, 0.98));
  padding: clamp(0.72rem, 2vw, 1.05rem);
}

.privacy-meta-block .privacy-meta {
  margin-top: 0.62rem;
}

.privacy-meta-block .privacy-meta:first-child {
  margin-top: 0;
}

.privacy-content {
  margin-top: 1.2rem;
  color: #efe6c5;
}

.privacy-content h2 {
  margin: 1.3rem 0 0.5rem;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.06rem, 2.2vw, 1.35rem);
  line-height: 1.2;
  text-transform: uppercase;
}

.privacy-content h3 {
  margin: 1rem 0 0.45rem;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(0.86rem, 1.8vw, 1rem);
  text-transform: uppercase;
  color: #ffe9a4;
}

.privacy-content p {
  margin: 0.45rem 0 0;
  color: #efe6c5;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.privacy-content ul {
  margin: 0.52rem 0 0;
  padding-left: 1.2rem;
  color: #e6dab0;
}

.privacy-content li {
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.privacy-content li + li {
  margin-top: 0.34rem;
}

.privacy-content a {
  color: #ffe58f;
  text-decoration: underline;
  text-decoration-color: rgba(255, 229, 143, 0.45);
  text-underline-offset: 2px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.privacy-back-actions {
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: var(--stroke) solid rgba(255, 217, 82, 0.35);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 560ms ease, transform 560ms ease;
  transition-delay: var(--reveal-delay, 0s);
}

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

.page-ready .hero-copy h1,
.page-ready .hero-copy p,
.page-ready .hero-actions {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.page-ready .hero-copy p {
  transition-delay: 0.1s;
}

.page-ready .hero-actions {
  transition-delay: 0.18s;
}

@keyframes bgFlow {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 40%;
  }
}

@keyframes orbDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(18px, -24px, 0) scale(1.08);
  }
}

@keyframes heroGlowDrift {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(42px) translateY(16px);
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translate3d(var(--pan-x, 0px), calc(var(--pan-y, 0px) + 0px), 0);
  }
  50% {
    transform: translate3d(var(--pan-x, 0px), calc(var(--pan-y, 0px) - 8px), 0);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 0.84;
    transform: scale(1.08);
  }
}

@keyframes ctaShine {
  0%,
  100% {
    left: -60%;
    opacity: 0;
  }
  14% {
    opacity: 0.95;
  }
  32% {
    left: 130%;
    opacity: 0;
  }
}

@keyframes lightningFlash {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 0.92;
  }
  24% {
    opacity: 0.3;
  }
  36% {
    opacity: 0.75;
  }
  58% {
    opacity: 0.14;
  }
  100% {
    opacity: 0;
  }
}

@keyframes lightningStrike {
  0% {
    opacity: 0;
    transform: translateX(-50%) rotate(var(--bolt-rot, 0deg)) scaleY(0.16);
  }
  12% {
    opacity: 0.98;
    transform: translateX(-50%) rotate(var(--bolt-rot, 0deg)) scaleY(1);
  }
  24% {
    opacity: 0.25;
  }
  34% {
    opacity: 0.88;
  }
  50% {
    opacity: 0.15;
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) rotate(var(--bolt-rot, 0deg)) scaleY(1);
  }
}

@keyframes lightningBranch {
  0% {
    opacity: 0;
    transform: translateX(-50%) rotate(var(--branch-rot, 0deg)) scaleY(0.18);
  }
  18% {
    opacity: 0.9;
    transform: translateX(-50%) rotate(var(--branch-rot, 0deg)) scaleY(1);
  }
  38% {
    opacity: 0.2;
  }
  54% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) rotate(var(--branch-rot, 0deg)) scaleY(1);
  }
}

@keyframes offerShift {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

@keyframes scanlines {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 0 0, 0 36px;
  }
}

@keyframes gridSweep {
  0% {
    transform: perspective(420px) rotateX(22deg) scale(1.15) translateY(18%);
    opacity: 0.22;
  }
  50% {
    opacity: 0.34;
  }
  100% {
    transform: perspective(420px) rotateX(22deg) scale(1.15) translateY(11%);
    opacity: 0.2;
  }
}

@keyframes vignettePulse {
  0% {
    opacity: 0.88;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 16ch;
  }

  .hero::after {
    opacity: 0.32;
  }

  .phone-wrap--asset {
    width: clamp(214px, 46vw, 292px);
  }

  .case-card {
    min-height: unset;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 1100px) {
  .header-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: 23;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 0.7rem max(0.8rem, calc((100vw - min(1140px, calc(100% - 1.1rem))) / 2))
      1rem;
    background: rgba(7, 7, 7, 0.97);
    border-bottom: 1px solid rgba(255, 217, 82, 0.35);
    backdrop-filter: blur(12px);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 240ms ease, opacity 240ms ease, visibility 240ms ease;
  }

  .mobile-nav-link {
    border: var(--stroke) solid rgba(255, 217, 82, 0.42);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(20, 18, 10, 0.95), rgba(9, 9, 6, 0.98));
    box-shadow: 5px 5px 0 rgba(126, 95, 17, 0.4);
    padding: 0.72rem 0.9rem;
    text-transform: uppercase;
    font-family: "Unbounded", sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
  }

  .site-header.menu-open .mobile-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 66px;
  }

  .hero {
    padding: 2.2rem 0 2.6rem;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 10vw, 2.55rem);
  }

  .hero-copy p {
    max-width: none;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 1.25rem;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .phone-wrap--asset {
    width: min(80vw, 292px);
  }

  .section {
    padding: 2.3rem 0;
  }

  .about-layout,
  .case-card,
  .privacy-cta-card,
  .contact-offer {
    padding: 1rem;
  }

  .cases-head p {
    margin-top: 0.42rem;
  }

  .offer-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .offer-actions .btn {
    width: 100%;
  }

  .privacy-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .privacy-page .header-inner {
    min-height: auto;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    padding: 0.55rem 0;
  }

  .privacy-page .header-inner > .btn {
    display: inline-flex;
    margin-left: auto;
    padding: 0.52rem 0.68rem;
    font-size: clamp(0.58rem, 2.4vw, 0.68rem);
    line-height: 1.08;
    text-align: center;
    white-space: normal;
    max-width: min(52vw, 220px);
    box-shadow: 4px 4px 0 rgba(120, 92, 16, 0.48);
  }

  .privacy-page .logo {
    font-size: clamp(0.72rem, 3.6vw, 0.96rem);
    max-width: min(44vw, 210px);
    line-height: 1.08;
  }

  .privacy-main {
    padding: 1rem 0 2.4rem;
  }

  .privacy-shell {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .privacy-title {
    font-size: clamp(1.2rem, 7.1vw, 1.72rem);
    line-height: 1.02;
    letter-spacing: -0.008em;
  }

  .privacy-topbar {
    display: none;
  }

  .privacy-meta-block {
    margin-top: 0.72rem;
    padding: 0.72rem;
  }

  .privacy-content {
    margin-top: 1rem;
  }

  .privacy-content h2 {
    margin-top: 1.15rem;
    font-size: clamp(0.95rem, 5.9vw, 1.32rem);
    line-height: 1.16;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .privacy-content h2:first-child {
    margin-top: 0.12rem;
  }

  .privacy-content h3 {
    margin-top: 0.92rem;
    font-size: clamp(0.84rem, 5vw, 1.02rem);
    line-height: 1.2;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .privacy-cta-card h2 {
    font-size: clamp(1.35rem, 8.2vw, 1.95rem);
    line-height: 0.98;
    max-width: 100%;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .privacy-cta-text {
    max-width: 100%;
    font-size: 1rem;
  }

  .case-card--coming .case-cover,
  .case-card--coming .appstore-btn {
    filter: saturate(0.62);
    opacity: 0.62;
  }

  .privacy-back-actions .btn {
    width: 100%;
  }

  .cases-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  :root {
    --container: min(1140px, calc(100% - 1.1rem));
  }
}
