﻿:root {
  --bg: #05090c;
  --bg-elevated: #0b1318;
  --bg-soft: #101a20;
  --surface: rgba(14, 23, 29, 0.72);
  --surface-strong: rgba(10, 18, 24, 0.88);
  --surface-hover: rgba(18, 31, 39, 0.88);
  --text: #f3fcff;
  --text-muted: #9db0b9;
  --text-soft: #728791;
  --accent: #59efff;
  --accent-strong: #12cfe8;
  --accent-deep: #0a7283;
  --accent-soft: rgba(89, 239, 255, 0.12);
  --accent-glow: rgba(89, 239, 255, 0.28);
  --border: rgba(113, 237, 255, 0.14);
  --border-strong: rgba(113, 237, 255, 0.24);
  --shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.42);
  --shadow-md: 0 18px 45px rgba(0, 0, 0, 0.3);
  --shadow-sm: 0 10px 24px rgba(0, 0, 0, 0.22);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 40px));
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
p,
ul {
  margin: 0;
}

body {
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(18, 207, 232, 0.16), transparent 24%),
    radial-gradient(circle at 85% 18%, rgba(89, 239, 255, 0.1), transparent 22%),
    radial-gradient(circle at 50% 120%, rgba(10, 114, 131, 0.18), transparent 35%),
    linear-gradient(180deg, #060a0d 0%, #04070a 48%, #020406 100%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

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

button {
  border: 0;
  background: none;
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: rgba(89, 239, 255, 0.28);
  color: var(--text);
}

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

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 999px;
  filter: blur(110px);
  pointer-events: none;
  z-index: -1;
}

.page-shell::before {
  top: -140px;
  left: -120px;
  width: 380px;
  height: 380px;
  background: rgba(89, 239, 255, 0.18);
}

.page-shell::after {
  right: -120px;
  bottom: 120px;
  width: 340px;
  height: 340px;
  background: rgba(10, 114, 131, 0.2);
}

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

.section {
  position: relative;
  padding: 112px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(4, 8, 11, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
  margin-right: -9px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(89, 239, 255, 0.2), rgba(18, 207, 232, 0.06)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), var(--shadow-sm);
}

.brand-text {
  font-family: "Syne", sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text);
  line-height: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-menu a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition), opacity var(--transition);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--text) !important;
  background: linear-gradient(135deg, rgba(89, 239, 255, 0.16), rgba(18, 207, 232, 0.08));
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

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

.hero {
  padding-top: 110px;
}

.hero-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 42px;
  align-items: start;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: 0.9;
}

h1,
h2,
h3 {
  font-family: "Syne", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1;
}

h1 {
  max-width: 10ch;
  font-size: clamp(2.8rem, 5.8vw, 5.2rem);
  line-height: 0.94;
}

h2 {
  max-width: 12ch;
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  line-height: 0.98;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.15;
}

p {
  color: var(--text-muted);
}

.hero-text {
  max-width: 58ch;
  margin-top: 20px;
  font-size: 1.02rem;
  line-height: 1.8;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition),
    color var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #031116;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 18px 34px rgba(18, 207, 232, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 42px rgba(18, 207, 232, 0.24);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin-top: 34px;
  list-style: none;
}

.hero-metrics li {
  padding: 18px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero-metrics strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.hero-card {
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 10% 4% -8% 18%;
  background: radial-gradient(circle, rgba(89, 239, 255, 0.18), transparent 58%);
  filter: blur(45px);
  z-index: -1;
}

.glass-card,
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(17, 27, 34, 0.8), rgba(8, 13, 17, 0.92)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.glass-card::before,
.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(89, 239, 255, 0.08), transparent 34%, transparent 68%, rgba(89, 239, 255, 0.06));
  pointer-events: none;
}

.hero-panel,
.service-card,
.pack-card,
.contact-card {
  padding: 30px;
}

.hero-panel h2 {
  margin-top: 18px;
}

.hero-panel p {
  margin-top: 18px;
}

.panel-badge,
.project-tag,
.pack-name,
.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(89, 239, 255, 0.08);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.panel-stack {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.panel-stack div {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.panel-stack span {
  display: block;
  color: var(--text-soft);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}

.panel-stack strong {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
  line-height: 1.5;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 11ch;
  font-size: clamp(2.1rem, 3.8vw, 3.8rem);
  line-height: 0.98;
}

.section-heading p:last-child {
  max-width: 58ch;
}

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

.service-grid,
.pack-grid {
  align-items: stretch;
}

.service-card,
.pack-card,
.project-card,
.contact-card {
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.service-card:hover,
.pack-card:hover,
.project-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.46);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
}

.service-card p {
  color: var(--text-muted);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 22px;
}

.project-featured {
  grid-row: span 2;
}

.project-liveportrait {
  grid-column: 1 / -1;
}

.project-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.project-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(300px, 30vw, 360px);
  padding: 14px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.project-featured .project-visual {
  height: clamp(420px, 42vw, 520px);
}

.project-visual::before,
.project-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
}

.project-one {
  background:
    radial-gradient(circle at 18% 24%, rgba(89, 239, 255, 0.34), transparent 18%),
    radial-gradient(circle at 70% 32%, rgba(18, 207, 232, 0.16), transparent 26%),
    linear-gradient(145deg, rgba(12, 22, 28, 0.6), rgba(4, 7, 10, 0.82)),
    linear-gradient(135deg, #10222b 0%, #081217 48%, #04080b 100%);
}

.project-one::before {
  top: 28px;
  left: 28px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(89, 239, 255, 0.7), rgba(18, 207, 232, 0.18));
}

.project-one::after {
  right: 42px;
  bottom: 34px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(89, 239, 255, 0.16);
  background: rgba(255, 255, 255, 0.02);
}

.project-two {
  background:
    radial-gradient(circle at 76% 18%, rgba(89, 239, 255, 0.3), transparent 16%),
    linear-gradient(150deg, rgba(12, 20, 26, 0.5), rgba(5, 8, 11, 0.86)),
    linear-gradient(135deg, #0d1a21 0%, #091014 48%, #04070a 100%);
}

.project-two::before {
  top: 36px;
  left: 34px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(89, 239, 255, 0.14);
  background: rgba(89, 239, 255, 0.05);
}

.project-two::after {
  right: 28px;
  bottom: 28px;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(89, 239, 255, 0.6), rgba(18, 207, 232, 0.16));
}

.project-three {
  background:
    radial-gradient(circle at 20% 78%, rgba(89, 239, 255, 0.22), transparent 18%),
    radial-gradient(circle at 84% 26%, rgba(18, 207, 232, 0.18), transparent 18%),
    linear-gradient(145deg, rgba(10, 18, 24, 0.55), rgba(4, 7, 10, 0.86)),
    linear-gradient(135deg, #0a151b 0%, #071015 50%, #030609 100%);
}

.project-three::before {
  top: 40px;
  right: 34px;
  width: 150px;
  height: 150px;
  border-radius: 28px;
  border: 1px solid rgba(89, 239, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.project-three::after {
  left: 32px;
  bottom: 34px;
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, rgba(89, 239, 255, 0.58), rgba(18, 207, 232, 0.16));
}

.project-visual img {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  border-radius: calc(var(--radius-xl) - 12px);
  object-fit: contain;
  object-position: center;
  filter: saturate(1.04) contrast(1.02);
}

.project-visual-placeholder {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  padding: 28px;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 12px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(89, 239, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(8, 18, 24, 0.94), rgba(2, 6, 9, 0.96));
  border: 1px solid rgba(89, 239, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 20px 46px rgba(0, 0, 0, 0.28);
}

.project-visual-placeholder::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: calc(var(--radius-xl) - 20px);
  border: 1px solid rgba(89, 239, 255, 0.1);
  pointer-events: none;
}

.project-visual-placeholder span,
.project-visual-placeholder strong,
.project-visual-placeholder p {
  position: relative;
  z-index: 1;
}

.project-visual-placeholder span {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-visual-placeholder strong {
  max-width: 18ch;
  color: var(--text);
  font-family: "Syne", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.project-visual-placeholder p {
  max-width: 34ch;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.project-visual.image-missing img {
  opacity: 0;
  pointer-events: none;
}

.project-copy {
  position: relative;
  z-index: 1;
  padding: 22px 22px 26px;
}

.project-copy h3 {
  margin-top: 12px;
}

.project-copy p:last-child {
  margin-top: 12px;
}

.project-liveportrait-intro {
  max-width: 72ch;
  margin-top: 12px;
}

.project-video {
  display: grid;
  gap: 12px;
  width: min(100%, 520px);
  margin: 18px auto 0;
  padding: 14px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 12% 0%, rgba(89, 239, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(13, 24, 31, 0.82), rgba(5, 9, 13, 0.9));
  border: 1px solid rgba(113, 237, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.project-video-copy {
  display: grid;
  gap: 8px;
}

.project-video h4 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.25;
}

.project-video-copy p:last-child {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.project-video-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 6px);
  background: #020609;
  border: 1px solid rgba(89, 239, 255, 0.18);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.project-video video {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  background: #020609;
}

.project-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.project-video-grid .project-video {
  width: 100%;
  margin: 0;
}

.project-voice {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 12%, rgba(89, 239, 255, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(15, 29, 36, 0.76), rgba(6, 11, 15, 0.82));
  border: 1px solid rgba(113, 237, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.project-voice-header {
  display: grid;
  gap: 8px;
}

.project-voice-kicker {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-voice h4 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.25;
}

.project-voice-header p:last-child {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.voice-track {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.voice-track-primary {
  border-color: rgba(89, 239, 255, 0.24);
  background: rgba(89, 239, 255, 0.07);
}

.voice-track-copy span {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
}

.voice-track audio {
  width: 100%;
  min-width: 0;
  accent-color: var(--accent);
}

@media (max-width: 640px) {
  .project-video {
    margin-top: 16px;
    padding: 12px;
  }

  .project-video-frame {
    width: 100%;
    aspect-ratio: 3 / 2;
  }

  .project-video-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .project-voice {
    margin-top: 20px;
    padding: 14px;
  }

  .voice-track {
    padding: 12px;
  }
}

.pack-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
}

.pack-price {
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 800;
}

.pack-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
  margin: 4px 0 2px;
}

.pack-card li {
  position: relative;
  padding-left: 18px;
  color: var(--text-muted);
}

.pack-card li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(89, 239, 255, 0.06);
}

.pack-card .button {
  margin-top: auto;
}

.pack-card-featured {
  border-color: rgba(89, 239, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(16, 28, 35, 0.92), rgba(9, 15, 20, 0.96)),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(89, 239, 255, 0.08),
    0 0 45px rgba(89, 239, 255, 0.08);
}

/* Pub commerce page */
.pub-commerce-hero {
  padding-top: 104px;
}

.pub-commerce-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 42px;
  align-items: start;
}

.pub-commerce-preview {
  display: grid;
  gap: 18px;
  padding: 18px;
}

.pub-commerce-preview > * {
  position: relative;
  z-index: 1;
}

.pub-commerce-preview-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 12px);
  background:
    radial-gradient(circle at 24% 18%, rgba(89, 239, 255, 0.22), transparent 24%),
    linear-gradient(145deg, rgba(12, 22, 28, 0.84), rgba(3, 6, 9, 0.96));
  border: 1px solid rgba(89, 239, 255, 0.16);
}

.pub-commerce-preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
}

.pub-commerce-preview-copy {
  display: grid;
  gap: 12px;
  padding: 4px 6px 10px;
}

.pub-commerce-preview-copy h2 {
  max-width: none;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.04;
}

.pub-benefits {
  padding-top: 64px;
}

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

.pub-benefit-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
}

.pub-benefit-card > * {
  position: relative;
  z-index: 1;
}

.commerce-examples {
  padding-top: 72px;
}

.commerce-pack-section {
  display: grid;
  gap: 22px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 8% 0%, rgba(89, 239, 255, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(9, 16, 21, 0.72), rgba(4, 8, 12, 0.42));
  border: 1px solid rgba(113, 237, 255, 0.1);
}

.commerce-pack-section + .commerce-pack-section {
  margin-top: 30px;
}

.commerce-pack-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.commerce-pack-heading h3 {
  margin-top: 12px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.commerce-pack-heading p:last-child {
  max-width: 62ch;
}

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

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

.commerce-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(16, 27, 34, 0.86), rgba(6, 10, 14, 0.94)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(113, 237, 255, 0.14);
  box-shadow: var(--shadow-md);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.commerce-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(89, 239, 255, 0.08), transparent 36%, rgba(89, 239, 255, 0.04));
  pointer-events: none;
}

.commerce-card:hover,
.commerce-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(113, 237, 255, 0.28);
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.42);
}

.commerce-card-featured {
  border-color: rgba(89, 239, 255, 0.28);
  box-shadow:
    var(--shadow-lg),
    0 0 34px rgba(89, 239, 255, 0.08);
}

.commerce-video-frame,
.commerce-placeholder {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(89, 239, 255, 0.12), transparent 32%),
    linear-gradient(180deg, #081117 0%, #020609 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.commerce-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #020609;
}

.commerce-placeholder::before,
.commerce-placeholder::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.commerce-placeholder::before {
  width: 150px;
  height: 150px;
  background: rgba(89, 239, 255, 0.14);
  filter: blur(26px);
}

.commerce-placeholder::after {
  inset: 18px;
  border: 1px solid rgba(89, 239, 255, 0.12);
  border-radius: calc(var(--radius-xl) - 12px);
}

.commerce-placeholder span {
  position: relative;
  z-index: 1;
  max-width: 13ch;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}

.commerce-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.commerce-card-body h4 {
  color: var(--text);
  font-family: "Syne", sans-serif;
  font-size: 1.35rem;
  line-height: 1.08;
}

.commerce-card-body p {
  font-size: 0.94rem;
  line-height: 1.62;
}

.commerce-card-note {
  color: var(--text);
  font-weight: 700;
}

.commerce-card .button {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  padding: 0 16px;
  text-align: center;
}

.commerce-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 0 16px 18px;
}

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

.commerce-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(89, 239, 255, 0.12);
}

.commerce-offers {
  padding-top: 78px;
}

.pub-commerce-cta {
  padding-top: 60px;
}

.pub-commerce-cta-card {
  display: grid;
  justify-items: start;
  gap: 18px;
  padding: 42px;
}

.pub-commerce-cta-card > * {
  position: relative;
  z-index: 1;
}

.pub-commerce-cta-card h2 {
  max-width: 14ch;
}

.pub-commerce-cta-card p:not(.eyebrow) {
  max-width: 62ch;
  font-size: 1.02rem;
}

.contact-copy p:last-child {
  max-width: 60ch;
  margin-top: 20px;
}

.contact-card {
  justify-self: end;
  width: min(100%, 430px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-actions {
  display: grid;
  gap: 14px;
  width: 100%;
}

.contact-actions .button {
  width: 100%;
  min-height: 56px;
  justify-content: center;
  border-radius: 999px;
}

.contact-actions .button-primary {
  box-shadow:
    0 18px 34px rgba(18, 207, 232, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.contact-actions .button-primary:hover,
.contact-actions .button-primary:focus-visible {
  box-shadow:
    0 22px 42px rgba(18, 207, 232, 0.26),
    0 0 0 1px rgba(89, 239, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.contact-actions .button-secondary {
  color: var(--text);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  border-color: rgba(89, 239, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 0 0 1px rgba(89, 239, 255, 0.05),
    0 10px 24px rgba(0, 0, 0, 0.18);
}

.contact-actions .button-secondary:hover,
.contact-actions .button-secondary:focus-visible {
  color: var(--text);
  background: linear-gradient(180deg, rgba(89, 239, 255, 0.08), rgba(255, 255, 255, 0.03));
  border-color: rgba(89, 239, 255, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(89, 239, 255, 0.08),
    0 0 24px rgba(89, 239, 255, 0.08),
    0 14px 30px rgba(0, 0, 0, 0.22);
}

.button-full {
  width: 100%;
}

.contact-mail {
  color: var(--text);
  font-weight: 700;
  transition: color var(--transition);
}

.contact-mail:hover,
.contact-mail:focus-visible {
  color: var(--accent);
}

.site-footer {
  padding: 0 0 32px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner p {
  color: var(--text-soft);
}

@media (max-width: 1080px) {
  .section {
    padding: 96px 0;
  }

  .nav-menu {
    gap: 16px;
  }

  .nav-menu a {
    font-size: 0.9rem;
  }

  .nav-cta {
    padding: 0 18px;
  }

  .hero {
    padding-top: 96px;
  }

  .hero-grid,
  .contact-grid,
  .portfolio-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 30px;
  }

  .pub-commerce-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pub-commerce-preview {
    width: min(100%, 620px);
  }

  .pub-benefits-grid,
  .commerce-card-grid,
  .commerce-card-grid-food {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commerce-pack-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-featured {
    grid-row: auto;
  }

  .project-visual {
    height: clamp(380px, 56vw, 560px);
  }

  .project-featured .project-visual {
    height: clamp(360px, 52vw, 500px);
  }

  .contact-card {
    justify-self: stretch;
    width: 100%;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.7rem, 7vw, 4.6rem);
  }

  .section-heading h2 {
    max-width: 12ch;
    font-size: clamp(2rem, 5vw, 3.2rem);
  }
}

@media (max-width: 860px) {
  .navbar {
    min-height: 74px;
  }

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

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

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

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

  .nav-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(9, 15, 20, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-lg);
  }

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

  .nav-menu a {
    padding: 10px 4px;
    text-align: left;
  }

  .nav-cta {
    width: 100%;
    margin-top: 4px;
  }

  .brand-logo {
    width: 60px;
    height: 60px;
    margin-right: -7px;
  }

  .brand-text {
    font-size: 1.65rem;
  }

  .hero {
    padding-top: 86px;
  }

  .pub-commerce-hero {
    padding-top: 86px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.6rem, 9vw, 4rem);
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 24px, 1180px);
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    padding-top: 72px;
  }

  .pub-commerce-hero {
    padding-top: 72px;
  }

  .navbar {
    gap: 16px;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
    margin-right: -6px;
  }

  .brand-text {
    font-size: 1.45rem;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.3rem, 11vw, 3.4rem);
    line-height: 0.97;
  }

  h2,
  .section-heading h2 {
    max-width: none;
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    line-height: 1;
  }

  .hero-panel,
  .service-card,
  .pack-card,
  .contact-card {
    padding: 24px;
  }

  .pub-commerce-preview,
  .pub-benefit-card,
  .commerce-pack-section,
  .pub-commerce-cta-card {
    padding: 24px;
  }

  .pub-benefits-grid,
  .commerce-card-grid,
  .commerce-card-grid-food {
    grid-template-columns: 1fr;
  }

  .commerce-pack-section + .commerce-pack-section {
    margin-top: 24px;
  }

  .commerce-card-body {
    padding: 18px;
  }

  .commerce-gallery {
    padding: 0 14px 16px;
  }

  .hero-text,
  .section-heading p:last-child,
  .contact-copy p:last-child {
    max-width: none;
  }

  .project-copy {
    padding: 18px 18px 22px;
  }

  .project-visual {
    height: clamp(360px, 118vw, 440px);
    padding: 10px;
  }

  .project-featured .project-visual {
    height: clamp(300px, 92vw, 360px);
  }

  .project-visual img {
    border-radius: calc(var(--radius-lg) - 8px);
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: clamp(2.2rem, 12vw, 3rem);
  }

  h2,
  .section-heading h2 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .eyebrow {
    letter-spacing: 0.16em;
  }

  .panel-badge,
  .project-tag,
  .pack-name,
  .card-index {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }
}



.questionnaire-hero {
  padding-top: 104px;
}

.questionnaire-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 34px;
  align-items: start;
}

.questionnaire-copy {
  position: sticky;
  top: 122px;
}

.questionnaire-copy h1 {
  max-width: 11ch;
}

.questionnaire-intro {
  max-width: 56ch;
  margin-top: 22px;
  font-size: 1.02rem;
  line-height: 1.85;
}

.questionnaire-highlights {
  display: grid;
  gap: 14px;
  padding: 0;
  margin-top: 28px;
  list-style: none;
}

.questionnaire-highlights li {
  position: relative;
  padding: 16px 18px 16px 44px;
  border-radius: var(--radius-md);
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.questionnaire-highlights li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 18px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(89, 239, 255, 0.08);
}

.questionnaire-card {
  padding: 32px;
}

.questionnaire-card-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.questionnaire-card-head h2 {
  max-width: none;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
}

.questionnaire-card-head p {
  max-width: 62ch;
}

.questionnaire-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label,
.consent-field span {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  outline: none;
  transition:
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

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

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  color: var(--text);
  background-color: rgba(13, 22, 28, 0.96);
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(89, 239, 255, 0.9) 50%),
    linear-gradient(135deg, rgba(89, 239, 255, 0.9) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

.form-field select option {
  color: #eafcff;
  background-color: #0d151b;
}

.form-field select option[value=""] {
  color: #9db0b9;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(157, 176, 185, 0.62);
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(89, 239, 255, 0.16);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(89, 239, 255, 0.36);
  background: rgba(255, 255, 255, 0.045);
  box-shadow:
    0 0 0 4px rgba(89, 239, 255, 0.08),
    0 16px 34px rgba(0, 0, 0, 0.18);
}

.consent-field {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.consent-field input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--accent-strong);
}

.questionnaire-submit {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.questionnaire-submit .button {
  min-height: 58px;
}

.questionnaire-submit .button:disabled {
  cursor: wait;
  opacity: 0.78;
  transform: none;
}

.form-feedback {
  min-height: 24px;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-feedback.is-success {
  color: #8ff5c6;
}

.form-feedback.is-error {
  color: #ffb7bf;
}

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

  .questionnaire-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .questionnaire-hero {
    padding-top: 80px;
  }

  .questionnaire-card {
    padding: 24px;
  }

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

  .questionnaire-highlights li {
    padding: 15px 16px 15px 42px;
  }
}
