:root {
  --bg: #030303;
  --bg-soft: #0a0a0a;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.075);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --subtle: rgba(255, 255, 255, 0.48);
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(255, 255, 255, 0.34);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% 12%, rgba(255, 255, 255, 0.11), transparent 30%),
    radial-gradient(circle at 15% 38%, rgba(255, 255, 255, 0.055), transparent 28%),
    var(--bg);
  color: var(--text);
}

body.intro-active {
  overflow: hidden;
}

body.offer-open {
  overflow: hidden;
}

.offer-modal[hidden] {
  display: none;
}

.offer-modal {
  position: fixed;
  z-index: 95;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.offer-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 420ms ease;
}

.offer-modal-panel {
  position: relative;
  width: min(620px, 100%);
  max-height: calc(100svh - 40px);
  overflow-y: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 48px);
  background:
    radial-gradient(circle at 90% 5%, rgba(255, 255, 255, 0.14), transparent 32%),
    #080808;
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.78);
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition:
    opacity 480ms ease,
    transform 480ms cubic-bezier(0.19, 1, 0.22, 1);
}

.offer-modal.is-visible .offer-modal-backdrop,
.offer-modal.is-visible .offer-modal-panel {
  opacity: 1;
}

.offer-modal.is-visible .offer-modal-panel {
  transform: translateY(0) scale(1);
}

.offer-modal-panel h2 {
  max-width: 520px;
  font-size: clamp(36px, 6vw, 62px);
}

.offer-modal-panel > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 26px;
}

.offer-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font: inherit;
  font-size: 25px;
  cursor: pointer;
}

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

.offer-email-label {
  font-size: 13px;
}

.offer-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.offer-input-row .button {
  min-width: 145px;
}

.offer-input-row .button[disabled] {
  cursor: wait;
  opacity: 0.68;
}

.offer-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
}

.offer-status[data-state="success"] {
  color: #fff;
}

.offer-status[data-state="error"] {
  color: #ffb3b3;
}

.offer-decline {
  display: block;
  margin: 18px auto 0;
  border: 0;
  background: transparent;
  color: var(--subtle);
  font: inherit;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.scroll-progress {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
  background: #fff;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.58);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.site-intro {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 900ms cubic-bezier(0.65, 0, 0.35, 1),
    visibility 900ms;
}

.site-intro-logo {
  position: relative;
  z-index: 2;
  width: min(680px, 82vw);
  opacity: 0;
  animation: introLogo 2.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  backface-visibility: hidden;
}

.site-intro-light {
  display: none;
}

.site-intro.is-leaving {
  opacity: 0;
  visibility: hidden;
}

.site-intro.is-leaving .site-intro-logo {
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 380ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 72%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  background: linear-gradient(rgba(255, 255, 255, 0.022) 50%, transparent 50%);
  background-size: 100% 4px;
  mix-blend-mode: overlay;
  opacity: 0.3;
}

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

a:focus-visible,
button:focus-visible,
video:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 11px 14px;
  border-radius: var(--radius);
  background: #fff;
  color: #000;
  font-weight: 900;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

::selection {
  background: #fff;
  color: #000;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 8px clamp(18px, 5vw, 72px);
  background: rgba(3, 3, 3, 0.76);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px);
  transition:
    background 300ms ease,
    box-shadow 300ms ease,
    border-color 300ms ease;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.91);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.46);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 154px;
  height: 64px;
  overflow: visible;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 9px 22px rgba(255, 255, 255, 0.08));
  transition:
    transform 320ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 320ms ease;
}

.brand:hover img {
  transform: scale(1.035);
  filter: drop-shadow(0 7px 20px rgba(255, 255, 255, 0.2));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-nav a {
  position: relative;
  border-radius: var(--radius);
  padding: 10px 12px;
  transition:
    background 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  transform: translateY(-1px);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  font-weight: 900;
  padding: 10px 13px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 142px clamp(20px, 5vw, 72px) 72px;
  isolation: isolate;
}

.hero-home {
  background:
    radial-gradient(circle at var(--hero-x, 79%) var(--hero-y, 36%), rgba(255, 255, 255, 0.13), transparent 22%),
    radial-gradient(circle at 70% 78%, rgba(255, 255, 255, 0.055), transparent 26%),
    linear-gradient(118deg, #010101 0%, #080808 54%, #000 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 12% -8% auto auto;
  z-index: 1;
  width: 44vw;
  height: 44vw;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  filter: blur(0.2px);
  animation: slowSpin 24s linear infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 170px;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.79) 48%, rgba(0, 0, 0, 0.22) 100%),
    repeating-linear-gradient(120deg, transparent 0 96px, rgba(255, 255, 255, 0.025) 97px, transparent 98px);
}

.hero-overlay::before {
  content: "";
  position: absolute;
  width: 46vw;
  height: 46vw;
  top: 12%;
  right: -5%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 90px rgba(255, 255, 255, 0.06),
    inset 0 0 90px rgba(255, 255, 255, 0.025);
  animation: heroPulse 7s ease-in-out infinite alternate;
}

.hero-overlay::after {
  content: "";
  position: absolute;
  top: -30%;
  right: 7%;
  width: 2px;
  height: 150%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  box-shadow: 0 0 32px rgba(255, 255, 255, 0.18);
  opacity: 0.45;
  transform: rotate(25deg);
  animation: heroBeam 9s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 930px;
  animation: fadeUp 900ms ease both;
}

.hero-logo {
  width: min(500px, 86vw);
  margin-bottom: 20px;
}

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

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

h1 {
  max-width: 990px;
  margin-bottom: 20px;
  font-size: clamp(52px, 9vw, 118px);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5.6vw, 76px);
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.12;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
  animation: proofFloat 5s ease-in-out infinite;
}

.hero-proof span:nth-child(2) {
  animation-delay: 600ms;
}

.hero-proof span:nth-child(3) {
  animation-delay: 1.2s;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 24px;
  font-weight: 950;
  cursor: pointer;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.42) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(255, 255, 255, 0.08);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button:hover::before {
  transform: translateX(120%);
}

.button.primary {
  background: #fff;
  color: #050505;
}

.button.secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
}

.intro-band,
.section,
.proof-band,
.social-section,
.page-hero,
.contact-page {
  padding-inline: clamp(20px, 5vw, 72px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  padding-top: 108px;
  padding-bottom: 108px;
  background:
    linear-gradient(180deg, var(--bg), var(--bg-soft)),
    var(--bg-soft);
}

.intro-band p:last-child {
  margin-bottom: 0;
  font-size: 18px;
}

.section {
  padding-top: 108px;
  padding-bottom: 108px;
}

.section.compact {
  padding-top: 54px;
}

.section-heading {
  position: relative;
  max-width: 880px;
  margin-bottom: 42px;
}

.section-heading::after {
  content: "";
  display: block;
  width: min(150px, 32vw);
  height: 1px;
  margin-top: 26px;
  background: linear-gradient(90deg, #fff, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms 180ms cubic-bezier(0.19, 1, 0.22, 1);
}

.section-heading.is-visible::after {
  transform: scaleX(1);
}

.service-grid,
.portfolio-grid,
.pricing-grid,
.social-grid {
  display: grid;
  gap: 16px;
}

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

.portfolio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

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

.card,
.video-card,
.price-card,
.included-panel,
.addon-card,
.quote-panel,
.social-card,
.contact-form {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(255, 255, 255, 0.12), transparent 30%),
    var(--panel);
  box-shadow: var(--shadow);
  transition:
    transform 300ms cubic-bezier(0.19, 1, 0.22, 1),
    border-color 260ms ease,
    background 260ms ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.card::before,
.video-card::before,
.price-card::before,
.addon-card::before,
.social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 38%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.card:hover,
.video-card:hover,
.price-card:hover,
.addon-card:hover,
.social-card:hover {
  transform: translateY(-7px) perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  border-color: var(--line-strong);
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(255, 255, 255, 0.18), transparent 32%),
    var(--panel-strong);
}

.card:hover::before,
.video-card:hover::before,
.price-card:hover::before,
.addon-card:hover::before,
.social-card:hover::before {
  opacity: 1;
}

.card {
  padding: 28px;
}

.card-number {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--text);
  font-size: 13px;
  font-weight: 950;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 72px;
  padding-bottom: 72px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.12), transparent 30%),
    #050505;
  color: #fff;
}

.proof-band div {
  min-height: 170px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255, 255, 255, 0.055);
  transition:
    transform 300ms cubic-bezier(0.19, 1, 0.22, 1),
    border-color 300ms ease,
    background 300ms ease;
}

.proof-band div:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.085);
}

.proof-band strong {
  display: block;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 0.9;
  text-shadow: 0 0 32px rgba(255, 255, 255, 0.1);
  transition:
    transform 300ms ease,
    text-shadow 300ms ease;
}

.proof-band div:hover strong {
  transform: translateX(5px);
  text-shadow: 0 0 34px rgba(255, 255, 255, 0.28);
}

.proof-band span {
  color: var(--muted);
  line-height: 1.45;
}

.social-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
  padding-top: 108px;
  padding-bottom: 108px;
  text-align: center;
  background:
    linear-gradient(180deg, #050505, #010101),
    var(--bg);
}

.social-copy {
  max-width: 760px;
  margin: 0 auto;
}

.social-copy p {
  max-width: 620px;
  margin-inline: auto;
}

.social-grid {
  width: min(920px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
}

.social-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 26px;
}

.social-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition:
    transform 420ms cubic-bezier(0.19, 1, 0.22, 1),
    background 300ms ease,
    box-shadow 300ms ease;
}

.social-card:hover .social-icon {
  transform: translateY(-4px) rotate(5deg) scale(1.08);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 34px rgba(255, 255, 255, 0.13);
}

.social-icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.social-card span {
  color: var(--subtle);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.social-card strong {
  display: block;
  margin: 0;
  color: var(--text);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 0.96;
}

.collaboration-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #050505;
}

.collaboration-strip div {
  max-width: 720px;
}

.collaboration-strip h2 {
  margin-bottom: 10px;
  font-size: clamp(27px, 3.6vw, 46px);
}

.collaboration-strip p:last-child {
  margin-bottom: 0;
}

.collaboration-strip .button {
  flex: 0 0 auto;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-top: 156px;
  padding-bottom: 66px;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #0a0a0a 0%, #030303 100%);
}

.page-hero::after {
  content: "";
  position: absolute;
  top: -45%;
  right: 13%;
  width: 1px;
  height: 190%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.14);
  transform: rotate(28deg);
  animation: pageBeam 8s ease-in-out infinite alternate;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero h1,
.contact-copy h1 {
  font-size: clamp(42px, 7vw, 88px);
}

.page-hero p {
  max-width: 780px;
  font-size: 18px;
}

.video-card {
  overflow: hidden;
}

.video-media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  margin-bottom: 22px;
  background: #000;
}

.video-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: #000;
  transition:
    transform 700ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 500ms ease;
}

.video-card:hover .video-media video {
  transform: scale(1.025);
  filter: brightness(1.06) contrast(1.02);
}

.video-card h2 {
  padding-inline: 24px;
  font-size: 25px;
}

.video-card p {
  padding-inline: 24px;
}

.video-card p:last-child {
  padding-bottom: 26px;
}

.video-frame {
  position: relative;
  min-height: 270px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background:
    radial-gradient(circle at 70% 28%, rgba(255, 255, 255, 0.16), transparent 32%),
    linear-gradient(135deg, #111, #020202);
  filter: grayscale(1);
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.46);
}

.video-frame.business {
  background-position: 62% center;
}

.video-frame.social {
  background-position: 70% center;
}

.video-frame.public {
  background-position: center top;
}

.video-frame.interview {
  background-position: 45% center;
}

.video-frame.premium {
  background-position: right center;
}

.play-mark {
  position: relative;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 22px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 46px rgba(255, 255, 255, 0.12);
}

.price-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 26px;
}

.price-card.highlighted {
  border-color: rgba(255, 255, 255, 0.54);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.18), transparent 38%),
    var(--panel-strong);
}

.price-card h2 {
  font-size: clamp(30px, 3.2vw, 42px);
}

.price-tax {
  margin-top: -14px;
  margin-bottom: 18px;
  color: var(--subtle);
  font-size: 13px;
  font-weight: 850;
}

.pack-count {
  display: inline-flex;
  width: max-content;
  margin-bottom: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--text);
  font-weight: 950;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: auto 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.included-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  margin-top: 16px;
  padding: 32px;
  background: var(--panel-strong);
}

.included-panel h2 {
  font-size: clamp(28px, 4vw, 48px);
}

.included-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

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

.addon-card {
  padding: 26px;
}

.addon-card h2 {
  font-size: clamp(28px, 3.5vw, 42px);
}

.quote-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 16px;
  padding: 32px;
  background: var(--panel-strong);
}

.quote-panel h2 {
  font-size: clamp(28px, 4vw, 48px);
}

.quote-panel p {
  max-width: 740px;
  margin-bottom: 0;
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  min-height: calc(100svh - 86px);
  padding-top: 156px;
  padding-bottom: 108px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.13), transparent 30%),
    #070707;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: var(--muted);
}

.contact-details span {
  border-left: 2px solid #fff;
  padding-left: 14px;
}

.contact-details a,
.form-note a,
.legal-content a {
  color: var(--text);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.055);
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 850;
}

.optional {
  color: var(--subtle);
  font-size: 12px;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.44);
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(0, 0, 0, 0.68);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

select {
  color-scheme: dark;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.form-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.consent-field {
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.55;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: #fff;
}

.consent-field a {
  color: #fff;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-note {
  margin: 0;
  font-size: 13px;
  color: var(--subtle);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 30px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #010101;
}

.site-footer span:first-child {
  color: var(--text);
  font-weight: 950;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--subtle);
  font-size: 13px;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--text);
}

.legal-content {
  max-width: 980px;
}

.legal-content h2 {
  margin-top: 42px;
  font-size: clamp(26px, 3vw, 40px);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.legal-list div {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.legal-list dt {
  color: var(--subtle);
  font-weight: 900;
}

.legal-list dd {
  margin: 0;
  color: var(--text);
}

.status-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px clamp(20px, 8vw, 120px) 80px;
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.13), transparent 34%),
    #030303;
}

.status-page h1 {
  max-width: 950px;
}

.status-page > p:not(.eyebrow) {
  max-width: 720px;
  font-size: 18px;
}

.confirmation-nav {
  display: flex;
}

.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.992);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.card.reveal.is-visible:hover,
.video-card.reveal.is-visible:hover,
.price-card.reveal.is-visible:hover,
.addon-card.reveal.is-visible:hover,
.social-card.reveal.is-visible:hover {
  transform: translateY(-7px) perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes heroPulse {
  from {
    opacity: 0.48;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes heroBeam {
  from {
    opacity: 0.18;
    transform: translateX(-12vw) rotate(25deg);
  }
  to {
    opacity: 0.55;
    transform: translateX(8vw) rotate(25deg);
  }
}

@keyframes pageBeam {
  from {
    opacity: 0.15;
    transform: translateX(-8vw) rotate(28deg);
  }
  to {
    opacity: 0.6;
    transform: translateX(10vw) rotate(28deg);
  }
}

@keyframes proofFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes introLogo {
  0% {
    opacity: 0;
    transform: scale(0.82);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1080px) {
  .service-grid,
  .portfolio-grid,
  .pricing-grid,
  .addon-grid,
  .proof-band,
  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-band,
  .included-panel,
  .social-section,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .social-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .offer-modal {
    padding: 12px;
  }

  .offer-modal-panel {
    max-height: calc(100svh - 24px);
    padding: 34px 22px 26px;
  }

  .offer-input-row {
    grid-template-columns: 1fr;
  }

  .offer-input-row .button {
    width: 100%;
  }

  .site-header {
    min-height: 72px;
    padding: 7px 18px;
  }

  .brand {
    width: 128px;
    height: 54px;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(3, 3, 3, 0.97);
    padding: 8px;
  }

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

  .site-nav a {
    padding: 13px;
  }

  .site-nav a::after {
    bottom: 8px;
  }

  .hero {
    min-height: 800px;
    padding: 116px 20px 58px;
  }

  .hero::before {
    width: 92vw;
    height: 92vw;
    inset: 18% -36% auto auto;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.7) 48%, rgba(0, 0, 0, 0.98) 100%),
      repeating-linear-gradient(120deg, transparent 0 70px, rgba(255, 255, 255, 0.022) 71px, transparent 72px);
  }

  .hero-overlay::before {
    width: 92vw;
    height: 92vw;
    top: 17%;
    right: -38%;
  }

  .hero-logo {
    width: min(300px, 78vw);
  }

  h1 {
    font-size: clamp(42px, 13vw, 66px);
  }

  h2 {
    font-size: clamp(34px, 11vw, 56px);
  }

  .intro-band,
  .section,
  .proof-band,
  .social-section,
  .page-hero,
  .contact-page {
    padding-inline: 20px;
  }

  .intro-band,
  .section,
  .social-section,
  .contact-page {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .page-hero,
  .contact-page {
    padding-top: 118px;
  }

  .service-grid,
  .portfolio-grid,
  .pricing-grid,
  .addon-grid,
  .proof-band,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .card-number {
    margin-bottom: 30px;
  }

  .video-frame {
    min-height: 230px;
  }

  .price-card,
  .proof-band div,
  .social-card {
    min-height: auto;
  }

  .quote-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .collaboration-strip {
    align-items: stretch;
    flex-direction: column;
    padding-block: 34px;
  }

  .collaboration-strip .button {
    width: 100%;
  }

}

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

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

  .scroll-progress {
    display: none;
  }
}

.cookie-banner {
  position: fixed;
  z-index: 1200;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1040px;
  margin-inline: auto;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.97);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 280ms ease, transform 280ms ease;
}

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

.cookie-banner.is-leaving {
  opacity: 0;
  transform: translateY(18px);
}

.cookie-banner-copy {
  max-width: 700px;
}

.cookie-banner-copy strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 18px;
}

.cookie-banner-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.cookie-banner-copy a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

@media (max-width: 700px) {
  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .cookie-banner-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
