:root {
  --ink: #f6f3ff;
  --muted: #b8aecf;
  --dark: #08070d;
  --panel: rgba(255, 255, 255, 0.075);
  --line: rgba(255, 255, 255, 0.16);
  --violet: #a987ff;
  --rose: #ff6f9f;
  --cyan: #69e5ff;
  --lime: #d4ff69;
  --paper: #f7f2ea;
  --charcoal: #15141b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 8%, rgba(169, 135, 255, 0.23), transparent 28rem),
    radial-gradient(circle at 88% 22%, rgba(105, 229, 255, 0.16), transparent 24rem),
    linear-gradient(180deg, #08070d 0%, #111018 42%, #09080d 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px clamp(18px, 4vw, 64px);
  background: rgba(8, 7, 13, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 182px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #0b0912;
  background: linear-gradient(135deg, var(--ink), var(--violet));
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark.image-mark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.brand-mark.image-mark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: rgba(246, 243, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
}

nav a {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.nav-cta {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 92vh;
  padding: 132px clamp(18px, 5vw, 72px) 56px;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  opacity: 0.7;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 7, 13, 0.98) 0%, rgba(8, 7, 13, 0.8) 42%, rgba(8, 7, 13, 0.18) 100%),
    linear-gradient(180deg, rgba(8, 7, 13, 0.2) 0%, rgba(8, 7, 13, 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

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

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

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.97;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(246, 243, 255, 0.82);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: #08070d;
  background: linear-gradient(135deg, #ffffff, #bda8ff 58%, #7ceaff);
  box-shadow: 0 18px 48px rgba(169, 135, 255, 0.28);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
}

.button.light {
  white-space: nowrap;
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 48px;
  z-index: 2;
  width: min(350px, calc(100% - 36px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(9, 8, 14, 0.62);
  backdrop-filter: blur(20px);
}

.panel-label {
  display: block;
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: rgba(246, 243, 255, 0.86);
  font-size: 14px;
}

.hero-panel li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--lime);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  padding: 22px clamp(18px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.045);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 22px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
}

.intro h2,
.section-heading h2,
.cta h2 {
  margin-bottom: 0;
  font-size: clamp(31px, 4.8vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro > p,
.section-heading p,
.cta p {
  color: rgba(246, 243, 255, 0.72);
  font-size: 17px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.wide {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: 32px;
  max-width: none;
  align-items: end;
}

.section-heading.wide .eyebrow,
.section-heading.wide h2 {
  grid-column: 1;
}

.section-heading.wide p {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-grid article,
.process-steps article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
}

.service-icon,
.process-steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
}

.service-grid h3,
.process-steps h3,
.work-copy h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.15;
}

.service-grid p,
.process-steps p,
.work-copy p {
  margin-bottom: 0;
  color: rgba(246, 243, 255, 0.67);
  font-size: 14px;
}

.portfolio {
  width: min(1280px, calc(100% - 36px));
}

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

.work-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.work-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 310px;
  padding: 24px;
  overflow: hidden;
  background: #17151f;
}

.work-copy {
  padding: 22px;
}

.work-copy span {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mock-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  padding: 8px 10px;
  border-radius: 999px;
  color: #121019;
  background: var(--lime);
  font-size: 11px;
  font-weight: 900;
}

.mock-poster {
  display: grid;
  align-content: end;
  width: min(260px, 76%);
  aspect-ratio: 4 / 5;
  padding: 20px;
  border-radius: 8px;
  color: #111018;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), transparent 42%),
    linear-gradient(145deg, #d4ff69, #69e5ff 48%, #ff6f9f);
  box-shadow: 0 28px 80px rgba(105, 229, 255, 0.24);
}

.mock-poster span {
  color: rgba(17, 16, 25, 0.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.mock-poster strong {
  max-width: 180px;
  font-size: 34px;
  line-height: 0.95;
}

.split-photo {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: #201a1d;
}

.split-photo div {
  display: flex;
  align-items: end;
  width: 100%;
  height: 250px;
  padding: 12px;
  border-radius: 8px;
}

.split-photo div:first-child {
  filter: saturate(0.35) contrast(0.85);
  background:
    linear-gradient(160deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42)),
    radial-gradient(circle at 35% 25%, #6d554a, transparent 24%),
    linear-gradient(135deg, #827366, #2b2523);
}

.split-photo div:last-child {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.2)),
    radial-gradient(circle at 35% 25%, #ffd5b6, transparent 24%),
    linear-gradient(135deg, #e6a878, #342535);
}

.split-photo small {
  padding: 7px 9px;
  border-radius: 999px;
  color: #0e0b10;
  background: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 900;
}

.phone-row {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: linear-gradient(135deg, #101820, #2b1635);
}

.phone-card {
  display: grid;
  align-content: end;
  width: 100%;
  max-width: 110px;
  aspect-ratio: 9 / 16;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.72) 76%),
    linear-gradient(145deg, #38286d, #ff6f9f);
}

.phone-card.active {
  transform: translateY(-18px);
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.75) 76%),
    linear-gradient(145deg, #d4ff69, #6a42ff 55%, #111018);
}

.phone-card strong {
  font-size: 17px;
  line-height: 0.98;
}

.phone-card span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
}

.real-cover-stack {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  align-items: center;
  padding: 22px;
  background: linear-gradient(135deg, #0b0a10, #23142a);
}

.real-cover-stack img {
  width: 100%;
  max-width: 118px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.real-cover-stack img:nth-child(2) {
  transform: translateY(-16px);
}

.real-video-preview {
  padding: 0;
  background: #09080d;
}

.real-video-preview .video-shell {
  width: 100%;
  height: 310px;
}

.real-video-preview video,
.real-video-preview .video-load img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  opacity: 0.62;
}

.real-video-preview .play-dot,
.real-video-preview .video-load-label {
  position: absolute;
  z-index: 2;
  margin: 0;
}

.real-video-preview .play-dot {
  backdrop-filter: blur(12px);
}

.real-video-preview .video-load-label {
  bottom: 26px;
}

.timeline {
  grid-template-columns: 1fr;
  gap: 12px;
  justify-items: stretch;
  background:
    radial-gradient(circle at 50% 35%, rgba(169, 135, 255, 0.24), transparent 34%),
    #111018;
}

.timeline span {
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(105, 229, 255, 0.86), rgba(169, 135, 255, 0.2));
}

.timeline span:nth-child(3) {
  width: 78%;
  background: linear-gradient(90deg, rgba(255, 111, 159, 0.9), rgba(212, 255, 105, 0.26));
}

.timeline span:nth-child(4) {
  width: 92%;
}

.timeline span:nth-child(5) {
  width: 64%;
}

.play-dot {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.play-dot::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid #fff;
}

.real-art {
  padding: 0;
  background: #09080d;
}

.real-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 7, 13, 0.02), rgba(8, 7, 13, 0.58));
}

.real-art img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: center 34%;
}

.studio-board {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  background: linear-gradient(145deg, #0a0a0f, #20242c);
}

.studio-board div {
  width: min(160px, 100%);
  aspect-ratio: 1;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
}

.studio-board div:nth-child(1) {
  background: linear-gradient(145deg, #ffffff, #a987ff);
}

.studio-board div:nth-child(2) {
  background: linear-gradient(145deg, #1b1a24, #69e5ff);
}

.studio-board div:nth-child(3) {
  background: linear-gradient(145deg, #ff6f9f, #18151f);
}

.studio-board div:nth-child(4) {
  background: linear-gradient(145deg, #d4ff69, #101018);
}

.package-stack {
  background: #f4efe7;
}

.package-stack div {
  position: absolute;
  width: 58%;
  aspect-ratio: 1.55;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}

.package-stack div:nth-child(1) {
  transform: translate(-26px, -32px) rotate(-8deg);
  background: linear-gradient(145deg, #121019, #a987ff);
}

.package-stack div:nth-child(2) {
  transform: translate(28px, 14px) rotate(6deg);
  background: linear-gradient(145deg, #69e5ff, #121019);
}

.package-stack div:nth-child(3) {
  transform: translate(-4px, 44px);
  background: linear-gradient(145deg, #ff6f9f, #d4ff69);
}

.real-portfolio {
  width: min(1280px, calc(100% - 36px));
}

.real-category {
  display: grid;
  gap: 20px;
  margin-top: 42px;
}

.category-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.category-title span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
}

.category-title h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.cover-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 14px;
}

.cover-gallery figure,
.video-gallery article {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.cover-gallery figure {
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.cover-gallery img {
  width: 100%;
  height: 360px;
  min-height: 360px;
  object-fit: cover;
}

.cover-gallery figure:nth-child(2) img {
  object-position: center;
}

.cover-gallery figcaption {
  display: grid;
  gap: 5px;
  padding: 18px;
  min-height: 156px;
  background: rgba(8, 7, 13, 0.88);
}

.cover-gallery figcaption strong,
.cover-gallery figcaption span {
  display: block;
}

.cover-gallery figcaption strong {
  font-size: 16px;
}

.cover-gallery figcaption span {
  color: rgba(246, 243, 255, 0.72);
  font-size: 13px;
}

.video-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.video-gallery article {
  padding-bottom: 18px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  background: #050408;
}

.video-load {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.video-load::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 7, 13, 0.04), rgba(8, 7, 13, 0.68));
  transition: background 180ms ease;
}

.video-load:hover::after,
.video-load:focus-visible::after {
  background: linear-gradient(180deg, rgba(8, 7, 13, 0.02), rgba(8, 7, 13, 0.48));
}

.video-load:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: -2px;
}

.video-gallery video,
.video-gallery .video-load img {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 560px;
  object-fit: cover;
  background: #050408;
}

.video-gallery .play-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  margin: 0;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
}

.video-load-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 7, 13, 0.58);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.video-gallery strong,
.video-gallery p {
  display: block;
  padding: 0 18px;
}

.video-gallery strong {
  margin-top: 16px;
  font-size: 18px;
}

.video-gallery p {
  margin: 6px 0 0;
  color: rgba(246, 243, 255, 0.66);
  font-size: 14px;
}

.video-gallery .video-context {
  color: rgba(246, 243, 255, 0.5);
  font-size: 13px;
}

.category-copy {
  max-width: 760px;
  margin: -8px 0 22px;
  color: rgba(246, 243, 255, 0.68);
  font-size: 16px;
}

.hesidio-video-showcase {
  padding-top: 18px;
}

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

.hesidio-video-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(60, 12, 18, 0.24), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
}

.hesidio-video-card .video-shell {
  aspect-ratio: 9 / 16;
  max-height: 620px;
  background:
    radial-gradient(circle at 50% 28%, rgba(169, 28, 42, 0.22), transparent 34%),
    #050407;
}

.hesidio-video-card video,
.hesidio-video-card .video-load img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050407;
}

.hesidio-video-card-copy {
  padding: 18px;
}

.hesidio-video-card-copy span,
.hesidio-video-card-copy strong,
.hesidio-video-card-copy a {
  display: block;
}

.hesidio-video-card-copy span {
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hesidio-video-card-copy strong {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.15;
}

.hesidio-video-card-copy p {
  margin-bottom: 10px;
  color: rgba(246, 243, 255, 0.66);
  font-size: 14px;
}

.hesidio-video-card-copy a,
.inline-link {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inline-link {
  display: inline-flex;
  margin-top: 18px;
}

.case-study {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.case-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(31px, 4.6vw, 56px);
  line-height: 1.03;
  letter-spacing: 0;
}

.case-copy p {
  color: rgba(246, 243, 255, 0.72);
  font-size: 17px;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.case-tags span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(246, 243, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 800;
}

.case-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 12px;
}

.case-gallery figure {
  position: relative;
  min-height: 190px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #08070d;
}

.case-gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(8, 7, 13, 0.36));
}

.case-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.case-poster {
  grid-row: span 2;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 20px auto 72px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(169, 135, 255, 0.22), rgba(105, 229, 255, 0.08));
}

.cta p {
  max-width: 680px;
  margin: 18px 0 0;
}

@media (max-width: 980px) {
  nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
    padding-bottom: 330px;
  }

  .hero-panel {
    right: 18px;
    bottom: 28px;
  }

  .trust-strip,
  .service-grid,
  .portfolio-grid,
  .cover-gallery,
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-gallery {
    grid-template-columns: 1fr;
  }

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

  .video-gallery video,
  .video-gallery .video-load img {
    aspect-ratio: 16 / 9;
    max-height: none;
  }

  .intro,
  .section-heading.wide,
  .case-study,
  .cta {
    grid-template-columns: 1fr;
  }

  .case-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-poster {
    grid-column: span 2;
    max-height: 620px;
  }

  .section-heading.wide .eyebrow,
  .section-heading.wide h2,
  .section-heading.wide p {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand small {
    font-size: 11px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  nav {
    display: none;
  }

  .hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-content,
  .hero-copy,
  h1 {
    width: min(100%, 340px);
    max-width: 340px;
  }

  h1 {
    font-size: 32px;
    overflow-wrap: break-word;
  }

  .hero-copy {
    font-size: 15px;
  }

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

  .hero-panel {
    left: 16px;
    right: auto;
    width: calc(100vw - 32px);
  }

  .trust-strip,
  .service-grid,
  .portfolio-grid,
  .cover-gallery,
  .hesidio-video-gallery,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .real-cover-stack {
    gap: 7px;
    padding: 16px;
  }

  .cover-gallery figure {
    min-height: 0;
  }

  .cover-gallery img {
    height: 420px;
    min-height: 420px;
  }

  .case-gallery {
    grid-template-columns: 1fr;
  }

  .case-poster {
    grid-column: auto;
    max-height: 560px;
  }

  .case-gallery figure {
    min-height: 300px;
  }

  .trust-strip div {
    padding: 18px;
  }

  .section {
    width: calc(100% - 32px);
    padding: 62px 0;
  }

  .work-visual {
    min-height: 260px;
  }

  .phone-row {
    gap: 7px;
  }

  .phone-card {
    padding: 9px;
  }

  .phone-card strong {
    font-size: 14px;
  }

  .cta {
    width: calc(100% - 32px);
    margin-bottom: 42px;
  }

  .button.light {
    white-space: normal;
  }
}
