/* ==========================================================================
   CONTENT FACTORY — design system
   Cinematic noir × tally-light green. Black box theatre meets film-set glow.
   ========================================================================== */

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

:root {
  /* Base */
  --bg:        #0a0d0b;
  --bg-alt:    #0e120f;
  --surface:   #141a15;
  --surface-2: #1a211b;
  --border:    #232b25;
  --border-2:  #333e35;

  /* Ink */
  --ink:       #f3f4ec;
  --ink-dim:   #aab2a5;
  --muted:     #6d766e;

  /* Signal green — tally light / record indicator */
  --green:      #39ff8a;
  --green-2:    #1de876;
  --green-deep: #0e3a26;
  --green-soft: rgba(57, 255, 138, .09);
  --green-line: rgba(57, 255, 138, .28);

  /* Type */
  --f-display: 'Unbounded', sans-serif;
  --f-body: 'Instrument Sans', sans-serif;

  /* Scale */
  --step--1: clamp(.83rem, .8rem + .13vw, .9rem);
  --step-0:  clamp(1rem, .96rem + .2vw, 1.125rem);
  --step-1:  clamp(1.2rem, 1.12rem + .35vw, 1.4rem);
  --step-2:  clamp(1.5rem, 1.35rem + .7vw, 1.9rem);
  --step-3:  clamp(1.9rem, 1.6rem + 1.3vw, 2.6rem);
  --step-4:  clamp(2.6rem, 2rem + 2.6vw, 3.8rem);
  --step-5:  clamp(3.4rem, 2.4rem + 4.5vw, 5.6rem);
  --step-6:  clamp(4.2rem, 2.6rem + 7vw, 8.2rem);

  --container: 1360px;
  --gutter: clamp(16px, 4vw, 56px);
  --nav-h: 92px;
  --radius-btn: 999px;

  --glass-blur: 20px;
  --glass-veil: rgba(8, 14, 10, 0.68);
  --glass-veil-alt: rgba(8, 14, 10, 0.44);
  --glass-panel: rgba(10, 20, 14, 0.5);

  --ease: cubic-bezier(.16,.8,.24,1);
}

@media (max-width: 768px) { :root { --nav-h: 76px; } }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-weight: 400;
  font-size: var(--step-0);
  line-height: 1.6;
  position: relative;
}

main {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Ambient background — green glow + grid across full page
   ========================================================================== */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  contain: strict;
}
.ambient-grid {
  position: absolute;
  inset: -10% 0;
  height: 140%;
  background-image:
    linear-gradient(rgba(243,244,236,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243,244,236,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 55% 25%, #000 35%, transparent 92%);
  transform: translate3d(0, var(--ambient-grid-y, 0), 0);
  will-change: transform;
}
.ambient-glow {
  position: absolute;
  inset: -30% 0;
  height: 160%;
  transform: translate3d(var(--ambient-x, 0), var(--ambient-y, 0), 0);
  will-change: transform;
}
.ambient-glow-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  will-change: transform;
}
.ambient-glow-wrap--1 { transform: translate3d(calc(var(--ambient-x, 0px) * 0.5), calc(var(--ambient-y2, 0px) * 0.4), 0); }
.ambient-glow-wrap--2 { transform: translate3d(calc(var(--ambient-x, 0px) * -0.45), calc(var(--ambient-y2, 0px) * 0.7), 0); }
.ambient-glow-wrap--3 { transform: translate3d(calc(var(--ambient-x, 0px) * 0.3), calc(var(--ambient-y2, 0px) * 0.85), 0); }
.ambient-glow-wrap--4 { transform: translate3d(calc(var(--ambient-x, 0px) * -0.38), calc(var(--ambient-y2, 0px) * 0.55), 0); }
.ambient-glow-layer {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
}
/* Header — pôvodná jemná intenzita */
.ambient-glow-wrap--1 .ambient-glow-layer {
  width: 90%;
  height: 72%;
  top: -14%;
  right: -12%;
  background: radial-gradient(ellipse at center, rgba(57,255,138,.28) 0%, rgba(57,255,138,.1) 38%, transparent 72%);
  animation: ambient-glow-loop-1 14.4s ease-in-out infinite;
}
/* 3 veľké rozplynuté svetelné lúče */
.ambient-glow-wrap--2 .ambient-glow-layer {
  width: 58%;
  height: 46%;
  top: 22%;
  left: 2%;
  filter: blur(52px);
  background: radial-gradient(ellipse at center, rgba(57,255,138,.34) 0%, rgba(57,255,138,.16) 26%, rgba(57,255,138,.06) 46%, transparent 82%);
  animation: ambient-orb-1 16.2s ease-in-out infinite;
  animation-delay: -4s;
}
.ambient-glow-wrap--3 .ambient-glow-layer {
  width: 54%;
  height: 40%;
  top: 8%;
  right: 4%;
  filter: blur(48px);
  background: radial-gradient(ellipse at center, rgba(57,255,138,.3) 0%, rgba(57,255,138,.13) 28%, rgba(57,255,138,.05) 50%, transparent 80%);
  animation: ambient-orb-2 17.1s ease-in-out infinite;
  animation-delay: -9.9s;
}
.ambient-glow-wrap--4 .ambient-glow-layer {
  width: 50%;
  height: 44%;
  top: 48%;
  right: 6%;
  filter: blur(56px);
  background: radial-gradient(ellipse at center, rgba(57,255,138,.28) 0%, rgba(57,255,138,.12) 30%, rgba(57,255,138,.04) 52%, transparent 84%);
  animation: ambient-orb-3 18s ease-in-out infinite;
  animation-delay: -11s;
}
@keyframes ambient-glow-loop-1 {
  0% { transform: translate3d(0, 0, 0) scale(1); opacity: .8; }
  25% { transform: translate3d(-14%, 8%, 0) scale(1.2); opacity: 1; }
  50% { transform: translate3d(-8%, 16%, 0) scale(1.1); opacity: .88; }
  75% { transform: translate3d(10%, 6%, 0) scale(1.18); opacity: .96; }
  100% { transform: translate3d(0, 0, 0) scale(1); opacity: .8; }
}
@keyframes ambient-orb-1 {
  0%   { transform: translate3d(0, 0, 0) scale(1); opacity: .72; }
  14%  { transform: translate3d(28%, -18%, 0) scale(1.12); opacity: .92; }
  28%  { transform: translate3d(-12%, 24%, 0) scale(1.04); opacity: .68; }
  43%  { transform: translate3d(-26%, -10%, 0) scale(1.08); opacity: .86; }
  57%  { transform: translate3d(10%, 28%, 0) scale(1.14); opacity: .94; }
  71%  { transform: translate3d(20%, -14%, 0) scale(1.02); opacity: .74; }
  86%  { transform: translate3d(-16%, 12%, 0) scale(1.1); opacity: .84; }
  100% { transform: translate3d(0, 0, 0) scale(1); opacity: .72; }
}
@keyframes ambient-orb-2 {
  0%   { transform: translate3d(0, 0, 0) scale(.98); opacity: .66; }
  16%  { transform: translate3d(-24%, 16%, 0) scale(1.1); opacity: .88; }
  31%  { transform: translate3d(14%, -22%, 0) scale(1.06); opacity: .76; }
  47%  { transform: translate3d(26%, 10%, 0) scale(1.12); opacity: .9; }
  62%  { transform: translate3d(-8%, -20%, 0) scale(1); opacity: .64; }
  78%  { transform: translate3d(-20%, 18%, 0) scale(1.08); opacity: .82; }
  92%  { transform: translate3d(12%, -8%, 0) scale(1.04); opacity: .78; }
  100% { transform: translate3d(0, 0, 0) scale(.98); opacity: .66; }
}
@keyframes ambient-orb-3 {
  0%   { transform: translate3d(0, 0, 0) scale(1); opacity: .7; }
  18%  { transform: translate3d(-18%, -20%, 0) scale(1.1); opacity: .9; }
  34%  { transform: translate3d(20%, 12%, 0) scale(1.06); opacity: .74; }
  51%  { transform: translate3d(8%, 26%, 0) scale(1.14); opacity: .88; }
  67%  { transform: translate3d(-22%, 6%, 0) scale(1.02); opacity: .66; }
  83%  { transform: translate3d(16%, -16%, 0) scale(1.12); opacity: .84; }
  100% { transform: translate3d(0, 0, 0) scale(1); opacity: .7; }
}
@media (prefers-reduced-motion: reduce) {
  .ambient-glow-layer { animation: none !important; opacity: .85 !important; transform: none !important; }
  .ambient-grid, .ambient-glow, .ambient-glow-wrap { transform: none !important; }
}

/* film-grain atmosphere */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font: inherit; }

h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 600; line-height: 1; letter-spacing: -.01em; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link { position: fixed; top: -60px; left: 16px; z-index: 3000; background: var(--green); color: #06140c; padding: 10px 18px; font-weight: 700; text-decoration: none; transition: top .2s var(--ease); }
.skip-link:focus { top: 16px; }

::selection { background: var(--green); color: #06140c; }

/* focus ring — accessible, on-brand */
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }

/* ==========================================================================
   Cursor (fine pointer only, respects reduced motion)
   ========================================================================== */
@media (hover: hover) and (pointer: fine) {
  body.has-cursor { cursor: none; }
  body.has-cursor a, body.has-cursor button { cursor: none; }
  .cur-dot, .cur-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 4000; will-change: transform; }
  .cur-dot { width: 8px; height: 8px; margin: -4px; border-radius: 50%; background: var(--green); }
  .cur-ring { width: 34px; height: 34px; margin: -17px; border-radius: 50%; border: 1px solid var(--green-line); transition: width .2s var(--ease), height .2s var(--ease), margin .2s var(--ease), background .2s var(--ease); }
  body.cur-active .cur-ring { width: 56px; height: 56px; margin: -28px; background: var(--green-soft); }
}

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); padding-inline: var(--gutter);
  background: rgba(10,13,11,.82); backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border);
  transition: background .3s var(--ease);
}
.nav-logo {
  display: flex; align-items: center; height: 100%;
  gap: 0; text-decoration: none; font-family: var(--f-body); font-weight: 800;
  font-size: 1.38rem; letter-spacing: -.02em; line-height: 1;
  transform: translateY(-3px);
}
.nav-logo .full { display: inline-flex; align-items: center; line-height: 1; }
.nav-logo .mark { width: 34px; height: 34px; border-radius: 3px; background: var(--green); display: grid; place-items: center; color: #06140c; font-weight: 800; font-size: 15px; flex-shrink: 0; }
.nav-logo .full em { color: var(--green); font-style: normal; }
.nav-logo .full small { display: none; }

.nav-links { display: flex; align-items: center; height: 100%; gap: 32px; }
.nav-links a { font-size: var(--step--1); font-weight: 500; text-decoration: none; color: var(--ink-dim); transition: color .2s; position: relative; padding: 4px 0; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--green); transition: width .25s var(--ease); }
.nav-links a:hover, .nav-links a:focus-visible, .nav-links a.is-active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a:focus-visible::after, .nav-links a.is-active::after { width: 100%; }

.nav-right { display: flex; align-items: center; height: 100%; gap: 10px; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-btn);
  background: rgba(10, 13, 11, .35);
}
.lang-btn {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 7px 10px;
  border: 0;
  border-radius: var(--radius-btn);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: color .2s, background .2s;
}
.lang-btn[aria-pressed="true"] {
  background: var(--green-soft);
  color: var(--green);
}
.lang-btn:hover { color: var(--ink); }
.lang-switch--mob { margin: 8px 0 4px; }
.nav-right .nav-external,
.nav-right .btn {
  min-height: 44px;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 1;
  box-sizing: border-box;
}
.nav-external {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-dim); text-decoration: none; border: 1px solid var(--border-2);
  padding: 8px 14px; border-radius: var(--radius-btn); transition: border-color .2s, color .2s;
}
.nav-external:hover { border-color: var(--green); color: var(--green); }
.nav-external svg { transition: transform .2s var(--ease); }
.nav-external:hover svg { transform: translate(2px,-2px); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--f-body); font-size: var(--step--1); font-weight: 700;
  text-decoration: none; padding: 13px 26px; border-radius: var(--radius-btn); letter-spacing: .01em;
  transition: transform .2s var(--ease), background .2s, color .2s, box-shadow .2s;
  min-height: 44px;
}
.btn-primary { background: var(--green); color: #06140c; box-shadow: 0 0 0 rgba(57,255,138,0); }
.btn-primary:hover { background: var(--ink); transform: translateY(-2px); box-shadow: 0 10px 30px -8px rgba(57,255,138,.45); }
.btn-ghost { border: 1px solid var(--border-2); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: var(--surface); }
.btn-sm { padding: 10px 20px; font-size: 12px; }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; cursor: pointer; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--ink); transition: transform .25s var(--ease), opacity .2s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-menu {
  display: none; position: fixed; inset: var(--nav-h) 0 0 0; z-index: 480;
  background: rgba(10, 13, 11, 0.88); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  flex-direction: column; padding: 32px var(--gutter);
  gap: 4px; overflow-y: auto;
}
.mob-menu.open { display: flex; }
.mob-menu a { font-family: var(--f-display); font-size: 2rem; font-weight: 600; text-decoration: none; color: var(--ink); padding: 14px 0; border-bottom: 1px solid var(--border); }
.mob-menu a em { color: var(--green); font-style: normal; }
.mob-menu .btn { margin-top: 24px; align-self: flex-start; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(var(--nav-h) + 0px) var(--gutter) 72px; position: relative; overflow: hidden;
  z-index: 1;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15.6px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase;
  color: var(--green); margin-bottom: 26px;
}
.hero-tag .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px 2px var(--green); animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:.35} }

.hero-title {
  font-size: var(--step-6); font-weight: 700; text-transform: uppercase; line-height: .92;
  letter-spacing: -.02em; margin-bottom: 40px; max-width: 18ch;
}
.hero-line {
  display: block;
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, 105%, 0);
}
.hero-title.is-ready .hero-line {
  animation: hero-reveal .88s cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: calc(.12s + var(--i, 0) * .13s);
}
.hero-title .out {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(243,244,236,.28);
}
.hero-title em {
  display: inline-block;
  font-style: normal;
  color: var(--green);
  opacity: 0;
}
.hero-title.is-ready .hero-line--accent em {
  animation: hero-accent .62s cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: calc(.5s + var(--i, 2) * .13s);
}
@keyframes hero-reveal {
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes hero-accent {
  from { opacity: 0; transform: translate3d(0, .35em, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-line,
  .hero-title em {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

.hero-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.hero-desc { font-size: var(--step-1); font-weight: 400; color: var(--ink-dim); line-height: 1.65; max-width: 46ch; }
.hero-desc strong { color: var(--green); font-weight: 600; }
.hero-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.hero-actions .btn { white-space: nowrap; }

.hero-scroll {
  position: absolute; right: var(--gutter); top: 50%; transform: translateY(-50%);
  font-size: 10px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--muted);
  writing-mode: vertical-rl; display: flex; align-items: center; gap: 14px;
}
.hero-scroll::after { content: ''; width: 1px; height: 50px; background: linear-gradient(var(--muted), transparent); }
@media (max-width: 900px) { .hero-scroll { display: none; } }

/* ==========================================================================
   Showreel — cinematic 2.35:1 band
   ========================================================================== */
.showreel {
  --sr-h: calc(100vw / 2.35);
  position: relative;
  height: var(--sr-h);
  margin: 0;
  padding: 0;
  z-index: 2;
  background: var(--bg);
}

.sr-pin {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 2.35 / 1;
  overflow: hidden;
  background: var(--bg);
}

.sr-media {
  position: absolute;
  inset: 0;
  container-type: size;
}

.sr-poster {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100cqi;
  max-width: none;
  height: calc(100cqi * 9 / 16);
  min-height: 100cqh;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity .9s ease;
  z-index: 2;
}

.sr-poster.is-loaded { opacity: 1; }
.sr-poster.is-faded { opacity: 0; }

.sr-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1.1s ease;
  z-index: 1;
}

.sr-video.is-active { opacity: 1; }

.sr-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100cqi;
  height: calc(100cqi * 9 / 16);
  min-height: 100cqh;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.sr-grain {
  position: absolute;
  inset: 0;
  opacity: .05;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.sr-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(6, 10, 7, .42) 0%, transparent 28%, transparent 62%, rgba(6, 10, 7, .82) 100%),
    radial-gradient(ellipse 80% 70% at 50% 50%, transparent 35%, rgba(6, 10, 7, .45) 100%);
}

.sr-ui {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(14px, 2.5vw, 28px) clamp(20px, 4vw, 48px);
  pointer-events: none;
}

.sr-ui > * { pointer-events: auto; }

.sr-copy {
  margin-bottom: 0;
  padding-top: 0;
}

.sr-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 6px;
}

.sr-tag .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px 2px var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}

.sr-headline {
  font-family: var(--f-display);
  font-size: clamp(1.25rem, 3.2vw, 2.6rem);
  font-weight: 700;
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: rgba(243, 244, 236, .92);
  text-shadow: 0 6px 28px rgba(0, 0, 0, .55);
}

.sr-headline em {
  font-style: normal;
  color: var(--green);
}

.sr-watch {
  align-self: center;
  margin-top: 0;
  flex-shrink: 0;
  backdrop-filter: blur(8px);
  background: rgba(10, 13, 11, .35);
}

.sr-watch svg { flex-shrink: 0; }

@media (prefers-reduced-motion: reduce) {
  .sr-tag .dot { animation: none; }
}

/* ==========================================================================
   Sections
   ========================================================================== */
.sec {
  padding: 128px 0;
  position: relative;
  background: var(--glass-veil);
  backdrop-filter: blur(var(--glass-blur)) saturate(155%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(155%);
  border-top: 1px solid rgba(243, 244, 236, 0.05);
  border-bottom: 1px solid rgba(243, 244, 236, 0.05);
}
.sec-alt {
  background: var(--glass-veil-alt);
  border-top: 1px solid rgba(57, 255, 138, 0.08);
  border-bottom: 1px solid rgba(57, 255, 138, 0.08);
}
.sec-tight { padding-top: 80px; }

.s-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; padding-bottom: 26px; border-bottom: 1px solid var(--border); margin-bottom: 56px; flex-wrap: wrap; }
.s-label { font-size: 11px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; display: block; }
.s-title { font-size: var(--step-4); text-transform: uppercase; }
.s-meta { font-family: var(--f-display); font-size: var(--step--1); font-weight: 600; letter-spacing: .08em; color: var(--muted); text-transform: uppercase; }
.s-intro { max-width: 68ch; color: var(--ink-dim); font-size: var(--step-1); line-height: 1.7; margin-bottom: 56px; }
.s-intro strong { color: var(--ink); font-weight: 600; }

/* ==========================================================================
   Services grid
   ========================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.svc { background: var(--glass-panel); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 44px 36px; position: relative; overflow: hidden; transition: background .3s; }
.svc:hover, .svc:focus-within { background: rgba(20, 26, 21, 0.72); }
.svc-num { font-family: var(--f-display); font-size: 3.4rem; font-weight: 700; color: var(--border-2); line-height: 1; margin-bottom: 22px; transition: color .3s; }
.svc:hover .svc-num { color: var(--green-deep); }
.svc-name { font-family: var(--f-display); font-size: 1.15rem; font-weight: 600; text-transform: uppercase; letter-spacing: .01em; margin-bottom: 12px; }
.svc-desc { font-size: var(--step--1); color: var(--ink-dim); line-height: 1.7; }
.svc-bar { position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--green); transition: width .35s var(--ease); }
.svc:hover .svc-bar { width: 100%; }

/* ==========================================================================
   Stats
   ========================================================================== */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-bottom: 64px; }
.stat-item { background: var(--glass-panel); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 34px 28px; transition: background .25s; }
.stat-item:hover { background: rgba(20, 26, 21, 0.72); }
.stat-num { font-family: var(--f-display); font-size: var(--step-3); font-weight: 700; color: var(--green); line-height: 1; margin-bottom: 8px; }
.stat-lbl { font-size: 13px; font-weight: 600; letter-spacing: .05em; color: var(--ink-dim); }

/* ==========================================================================
   Referencie / filters / grid
   ========================================================================== */
.ref-block-title { font-size: 11px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--green); margin-bottom: 24px; display: flex; align-items: center; gap: 16px; }
.ref-block-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--border); margin-bottom: 32px; }
.tab { font-family: var(--f-display); font-size: 1rem; font-weight: 600; letter-spacing: .02em; text-transform: uppercase; padding: 13px 26px; background: none; border: none; border-bottom: 2px solid transparent; color: var(--muted); cursor: pointer; transition: color .2s, border-color .2s; margin-bottom: -1px; flex: 0 0 auto; }
.tab[aria-selected="true"] { color: var(--ink); border-bottom-color: var(--green); }
.tab:hover { color: var(--ink-dim); }

.filter-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; margin-bottom: 28px; }
.fbtn { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 7px 15px; border: 1px solid var(--border-2); border-radius: var(--radius-btn); color: var(--muted); background: transparent; cursor: pointer; transition: all .2s; }
.fbtn:hover { border-color: var(--ink-dim); color: var(--ink-dim); }
.fbtn[aria-pressed="true"] { border-color: var(--green); color: var(--green); background: var(--green-soft); }

.tabpanel[hidden] { display: none; }
.tabpanel + .tabpanel { margin-top: 56px; }

.grid-refs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.ref-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: transparent;
  border: none;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  transform: translateZ(0);
  transition: transform .25s var(--ease);
}
.ref-card:hover { transform: translateY(-2px); }
.ref-card:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }

.ref-thumb { position: relative; aspect-ratio: 16/9; background: #0c100d; overflow: hidden; }
.ref-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
  transition: transform .7s var(--ease), filter .35s var(--ease);
  filter: brightness(.88) saturate(.95);
  opacity: 0;
  transform: scale(1);
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.ref-thumb img[data-yt],
.ref-thumb img[data-vimeo] {
  transform: scale(1.56);
}
.ref-thumb img.is-loaded { opacity: 1; }
.ref-card:hover .ref-thumb img { transform: scale(1.08); filter: brightness(.62) saturate(1); }
.ref-card:hover .ref-thumb img[data-yt],
.ref-card:hover .ref-thumb img[data-vimeo] { transform: scale(1.65); }

.ref-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.92); width: 44px; height: 44px; border-radius: 999px; background: rgba(57,255,138,.92); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .2s, transform .2s var(--ease); }
.ref-card:hover .ref-play, .ref-card:focus-visible .ref-play { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.ref-play svg { margin-left: 3px; }
.ref-badge { position: absolute; top: 10px; right: 10px; padding: 4px 9px; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; border-radius: 999px; opacity: .0; transform: translateY(-6px); transition: opacity .2s var(--ease), transform .2s var(--ease); }
.badge-yt { background: rgba(230,33,23,.9); color: #fff; }
.badge-vm { background: rgba(26,183,234,.9); color: #fff; }
.ref-card:hover .ref-badge, .ref-card:focus-visible .ref-badge { opacity: 1; transform: translateY(0); }

/* Client label appears on hover (touch shows always) */
.ref-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 18px 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease);
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(6,10,7,.55) 40%, rgba(6,10,7,.92) 100%);
}
.ref-card:hover .ref-body,
.ref-card:focus-visible .ref-body {
  opacity: 1;
  transform: translateY(0);
}
.ref-client {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(243,244,236,.92);
  text-shadow: 0 8px 22px rgba(0,0,0,.55);
}
.ref-body .ref-title { display: none !important; }
.ref-card.span2 { grid-column: span 2; }

@media (hover: none) and (pointer: coarse) {
  .ref-body { opacity: 1; transform: none; }
  .ref-badge { opacity: 1; transform: none; }
}

/* ==========================================================================
   Why / artists
   ========================================================================== */
.section-sub { font-size: 11px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--green); margin: 64px 0 22px; display: flex; align-items: center; gap: 16px; }
.section-sub::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.section-sub:first-child { margin-top: 0; }

.artists-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.arow { background: var(--glass-panel); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 20px 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; transition: background .2s; }
.arow:hover { background: rgba(20, 26, 21, 0.72); }
.aname { font-family: var(--f-display); font-size: 1.15rem; font-weight: 600; text-transform: uppercase; }
.aviews { font-family: var(--f-display); font-size: 1.05rem; font-weight: 700; color: var(--green); }

/* ==========================================================================
   Klienti marquee
   ========================================================================== */
.klienti {
  padding: 56px 0;
  border-top: 1px solid rgba(243, 244, 236, 0.05);
  border-bottom: 1px solid rgba(243, 244, 236, 0.05);
  overflow: hidden;
  background: var(--glass-veil-alt);
  backdrop-filter: blur(var(--glass-blur)) saturate(155%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(155%);
}
.klienti-lbl { font-size: 10px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); text-align: center; margin-bottom: 32px; }
.marquee { display: flex; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 64px; align-items: center; animation: marquee 46s linear infinite; flex-shrink: 0; padding-right: 64px; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.klient { font-family: var(--f-display); font-size: 1.1rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); white-space: nowrap; transition: color .2s; }
.klienti:hover .klient { color: var(--muted); }
.klient:hover { color: var(--ink) !important; }

/* ==========================================================================
   Cross-sell: Ateliér → contentstudio.sk
   ========================================================================== */
.crosssell { padding: 96px 0; }
.crosssell-card {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; align-items: stretch;
  border: 1px solid rgba(243, 244, 236, 0.08); border-radius: 6px; overflow: hidden;
  background: var(--glass-panel);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  position: relative; text-decoration: none; color: inherit;
  transition: border-color .3s, box-shadow .3s;
}
.crosssell-card:hover, .crosssell-card:focus-visible { border-color: var(--green-line); box-shadow: 0 20px 60px -20px rgba(57,255,138,.18); }
.crosssell-body { padding: 39px; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.crosssell-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--green); }
.crosssell-title { font-family: var(--f-display); font-size: clamp(1.65rem, 1.4rem + 1vw, 2.25rem); font-weight: 600; text-transform: uppercase; line-height: 1; }
.crosssell-desc { color: var(--ink-dim); font-size: var(--step--1); line-height: 1.6; max-width: 46ch; }
.crosssell-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--green); margin-top: 2px; }
.crosssell-link svg { transition: transform .2s var(--ease); }
.crosssell-card:hover .crosssell-link svg { transform: translate(3px,-3px); }
.crosssell-visual {
  position: relative;
  container-type: size;
  overflow: hidden;
  background-color: #0c130e;
  background-image:
    radial-gradient(ellipse 70% 60% at 70% 30%, rgba(57,255,138,.22), transparent 65%),
    repeating-linear-gradient(135deg, rgba(243,244,236,.03) 0 2px, transparent 2px 24px),
    linear-gradient(160deg, rgba(10,13,11,.3) 0%, rgba(10,13,11,.68) 55%, rgba(12,19,14,.8) 100%),
    url('/assets/crosssell-studio.png');
  background-size: auto, auto, auto, cover;
  background-position: center;
  display: flex; align-items: center; justify-content: center; min-height: 154px;
}
.crosssell-visual .cs-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10% 16%;
  box-sizing: border-box;
  text-align: center;
  font-family: var(--f-display);
  font-size: clamp(0.65rem, min(4.2cqi, 12cqb), 1.35rem);
  font-weight: 700;
  color: var(--green);
  opacity: .9;
  letter-spacing: -.02em;
  line-height: 1.1;
  white-space: nowrap;
  max-width: 100%;
}
@media (max-width: 800px) { .crosssell-card { grid-template-columns: 1fr; } .crosssell-visual { min-height: 98px; } .crosssell-body { padding: 27px 24px; } }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  width: 100%;
  border: 1px solid rgba(243, 244, 236, 0.07);
  border-radius: 6px;
  background: var(--glass-panel);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid rgba(243, 244, 236, 0.06); }
.faq-item:last-child { border-bottom: 0; }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 26px clamp(20px, 3vw, 36px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: var(--f-display); font-size: var(--step-1); font-weight: 600; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { flex-shrink: 0; width: 26px; height: 26px; border: 1px solid var(--border-2); border-radius: 50%; display: grid; place-items: center; position: relative; transition: border-color .2s, transform .3s var(--ease); }
.faq-item summary .plus::before, .faq-item summary .plus::after { content: ''; position: absolute; background: var(--ink-dim); transition: background .2s; }
.faq-item summary .plus::before { width: 10px; height: 1.5px; }
.faq-item summary .plus::after { width: 1.5px; height: 10px; }
.faq-item[open] summary .plus { transform: rotate(45deg); border-color: var(--green); }
.faq-item[open] summary .plus::before, .faq-item[open] summary .plus::after { background: var(--green); }
.faq-item:hover summary { color: var(--green); }
.faq-a {
  padding: 0 clamp(20px, 3vw, 36px) 28px;
  color: var(--ink-dim);
  line-height: 1.75;
  font-size: var(--step-0);
}

/* ==========================================================================
   Kontakt
   ========================================================================== */
.kontakt-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: stretch; }
.kontakt-layout > .reveal { display: flex; flex-direction: column; min-height: 100%; }
.kontakt-big { font-size: var(--step-5); text-transform: uppercase; line-height: .95; margin-bottom: 44px; }
.kontakt-big em { font-style: normal; color: var(--green); }
.kontakt-info { display: flex; flex-direction: column; gap: 24px; }
.k-row { display: flex; flex-direction: column; gap: 3px; }
.k-lbl { font-size: 10px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); }
.k-val { font-size: 1.05rem; color: var(--ink); text-decoration: none; line-height: 1.5; transition: color .2s; }
a.k-val:hover { color: var(--green); }
.kontakt-panel {
  background: var(--glass-panel);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid rgba(243, 244, 236, 0.08);
  border-radius: 6px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex: 1;
  height: 100%;
  min-height: 100%;
}
.kontakt-map { display: flex; flex-direction: column; gap: 10px; flex: 1; min-height: 0; }
.kontakt-map-visual {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--bg);
  text-decoration: none;
  transition: border-color .2s;
  flex: 1;
  min-height: 260px;
}
.kontakt-map-visual:hover { border-color: var(--green-line); }
.kontakt-map-visual iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  display: block;
  filter: grayscale(1) invert(92%) sepia(18%) hue-rotate(95deg) saturate(2.4) brightness(.58) contrast(1.12);
  opacity: .92;
}
.kontakt-map-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 13, 11, .08) 0%, rgba(10, 13, 11, .42) 100%);
  pointer-events: none;
}
.kontakt-map-pin {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  z-index: 1;
  pointer-events: none;
}
.kontakt-map-pin-label {
  background: var(--surface-2);
  border: 1px solid var(--green-line);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 11px;
  border-radius: 4px;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .35);
}
.kontakt-map-pin-dot {
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--green-soft), 0 0 18px rgba(57, 255, 138, .55);
}
.kontakt-map-addr { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-dim); text-decoration: none; transition: color .2s; }
.kontakt-map-addr:hover { color: var(--green); }
.kontakt-panel-cta h3 { font-family: var(--f-display); font-size: 1.3rem; font-weight: 600; text-transform: uppercase; margin-bottom: 14px; }
.kontakt-panel-social { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--border); }
.kontakt-panel-social .soc-link { display: flex; width: 100%; justify-content: center; }
.cta-row { display: grid; grid-template-columns: 1fr; gap: 10px; }
.cta-row .btn { width: 100%; }
.social-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.soc-link { font-size: 12px; font-weight: 600; letter-spacing: .04em; text-decoration: none; color: var(--ink-dim); border: 1px solid var(--border-2); border-radius: var(--radius-btn); padding: 9px 18px; transition: all .2s; }
.soc-link:hover { color: var(--green); border-color: var(--green); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid rgba(243, 244, 236, 0.05);
  padding: 40px 0;
  background: var(--glass-veil);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-copy { font-size: 13px; color: var(--muted); line-height: 1.6; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--green); }

/* ==========================================================================
   Reveal / motion
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
.fu { opacity: 0; animation: fadeUp .8s var(--ease) forwards; }
.d1 { animation-delay: .05s; } .d2 { animation-delay: .18s; } .d3 { animation-delay: .32s; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .artists-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .kontakt-layout { grid-template-columns: 1fr; gap: 40px; }
  .kontakt-panel { min-height: auto; height: auto; }
  .kontakt-map { flex: none; }
  .kontakt-map-visual { min-height: 220px; }
  .kontakt-map-visual iframe { min-height: 220px; }
  .grid-refs { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav { padding-inline: var(--gutter); height: 76px; }
  .nav-links, .nav-right .nav-external, .nav-right .btn, .nav-right .lang-switch { display: none; }
  .nav-burger { display: flex; }
  .mob-menu { inset: var(--nav-h) 0 0 0; }
  .sec { padding: 80px 0; }
  .hero { padding: calc(var(--nav-h) + 0px) var(--gutter) 56px; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 28px; }
  .services-grid, .stats-strip { grid-template-columns: 1fr; }
  .grid-refs { grid-template-columns: 1fr 1fr; gap: 14px; }
  .ref-card.span2 { grid-column: span 2; }
  .site-footer .footer-row { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .grid-refs { grid-template-columns: 1fr; }
  .ref-card.span2 { grid-column: span 1; }
  .kontakt-panel { padding: 28px; }
}

/* ==========================================================================
   Extra responsive polish (small devices + touch ergonomics)
   ========================================================================== */
@media (max-width: 768px) {
  .tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .tabs::-webkit-scrollbar { display: none; }
  .tab { padding: 12px 18px; font-size: .95rem; }

  .svc { padding: 34px 26px; }
  .svc-num { font-size: 3rem; }

  .stat-item { padding: 28px 22px; }

  .ref-body { padding: 12px 12px 14px; }
}

@media (max-width: 560px) {
  .nav-logo .full small { display: none; }
  .nav-logo { font-size: 1.2rem; }

  .hero-tag { letter-spacing: .22em; line-height: 1.4; max-width: 44ch; flex-wrap: wrap; }
  .hero-title { max-width: 14ch; line-height: .94; margin-bottom: 26px; }
  .hero-title .out { -webkit-text-stroke: 1.25px rgba(243,244,236,.26); }

  .mob-menu { padding: 22px var(--gutter); }
  .mob-menu a { font-size: 1.6rem; padding: 12px 0; }

  .sr-headline { font-size: clamp(1.1rem, 6.5vw, 1.8rem); }
  .sr-ui {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px var(--gutter) 18px;
  }
  .sr-watch { align-self: flex-start; }
}

@media (max-width: 420px) {
  .btn { padding: 12px 18px; }
  .btn-sm { padding: 10px 16px; }

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

  .arow { padding: 18px 18px; flex-direction: column; align-items: flex-start; }
  .aname { font-size: 1.05rem; }
  .aviews { font-size: 1rem; }
}
