@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=Italiana&display=swap');

/* Italiana's upstream Latin build omits several Czech characters. This
   unicode-scoped companion uses Italiana's original outlines and metrics for
   those glyphs only; all other headline characters remain upstream Italiana. */
@font-face {
  font-family: "AI Revival Italiana Czech";
  src: url("../assets/fonts/ai-revival-italiana-czech.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+010C-010F, U+011A-011B, U+0147-0148, U+0158-0159,
    U+0160-0161, U+0164-0165, U+016E-016F, U+017D-017E;
}

@media (min-width: 0px) {
  :root {
    --ar-black: #070707;
    --ar-ink: #11100f;
    --ar-ivory: #f1ede5;
    --ar-white: #fbfaf7;
    --ar-gold: #b99a62;
    --ar-line: rgba(255, 255, 255, .19);
    --ar-max: 1680px;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    background: var(--ar-black);
  }

  .legacy-page {
    display: none !important;
  }

  .desktop-experience {
    display: block;
    min-width: 621px;
    background: var(--ar-black);
    color: var(--ar-white);
    font-family: "DM Sans", Arial, sans-serif;
    font-weight: 300;
    overflow: clip;
  }

  .ar-header {
    position: absolute;
    z-index: 30;
    top: 0;
    left: 50%;
    width: min(calc(100% - 9vw), var(--ar-max));
    height: clamp(88px, 8vw, 132px);
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    border-bottom: 1px solid var(--ar-line);
  }

  .ar-wordmark {
    width: clamp(148px, 12vw, 230px);
    line-height: 0;
  }

  .ar-wordmark img {
    display: block;
    width: 100%;
    height: auto;
  }

  .ar-nav {
    display: flex;
    align-items: center;
    gap: clamp(32px, 3.8vw, 76px);
  }

  .ar-nav a,
  .ar-live-link {
    position: relative;
    color: var(--ar-white);
    font-size: clamp(11px, .68vw, 14px);
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
  }

  .ar-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: .18em;
    bottom: -12px;
    height: 1px;
    background: var(--ar-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .45s cubic-bezier(.2,.8,.2,1);
  }

  .ar-nav a:hover::after,
  .ar-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .ar-live-link {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ddd5c8;
  }

  .ar-header-actions {
    grid-column: 3;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: clamp(12px, 1.25vw, 24px);
  }

  .ar-language-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(221, 213, 200, .34);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .14em;
  }

  .ar-language-switch button {
    margin: 0;
    padding: 5px 1px;
    border: 0;
    border-bottom: 1px solid transparent;
    background: transparent;
    color: rgba(221, 213, 200, .48);
    font: inherit;
    letter-spacing: inherit;
    cursor: pointer;
    transition: color .25s ease, border-color .25s ease;
  }

  .ar-language-switch button:hover,
  .ar-language-switch button:focus-visible,
  .ar-language-switch button[aria-pressed="true"] {
    color: #f3eee5;
    border-bottom-color: var(--ar-gold);
  }

  .ar-language-switch button:focus-visible {
    outline: 1px solid var(--ar-gold);
    outline-offset: 4px;
  }

  .ar-header.is-scrolled {
    position: fixed;
    width: 100%;
    height: 74px;
    padding: 0 max(4.5vw, calc((100vw - var(--ar-max)) / 2));
    background: rgba(7,7,7,.88);
    border-color: rgba(255,255,255,.12);
    backdrop-filter: blur(18px);
    animation: ar-header-in .35s ease both;
  }

  .ar-header.is-scrolled .ar-wordmark {
    width: clamp(130px, 9vw, 180px);
  }

  .ar-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d6ae66;
    box-shadow: 0 0 0 5px rgba(214,174,102,.12);
    animation: ar-live 2.8s ease-in-out infinite;
  }

  .ar-hero {
    position: relative;
    min-height: max(800px, 100svh);
    isolation: isolate;
    background: #080808;
  }

  .ar-hero-media,
  .ar-hero-media img,
  .ar-hero-vignette {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .ar-hero-media {
    z-index: -3;
    overflow: hidden;
  }

  .ar-hero-media img {
    display: block;
    object-fit: cover;
    object-position: 58% 50%;
    transform: scale(1.008);
    animation: ar-cinema 14s ease-out both;
  }

  .ar-hero-vignette {
    z-index: -2;
    background:
      linear-gradient(90deg, rgba(0,0,0,.73) 0%, rgba(0,0,0,.4) 35%, rgba(0,0,0,.04) 66%, rgba(0,0,0,.28) 100%),
      linear-gradient(0deg, rgba(0,0,0,.48) 0%, transparent 34%);
    pointer-events: none;
  }

  .ar-hero-content {
    position: absolute;
    z-index: 2;
    left: max(4.5vw, calc((100vw - var(--ar-max)) / 2));
    top: 51%;
    width: min(48vw, 820px);
    transform: translateY(-40%);
  }

  .ar-eyebrow {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0 0 clamp(22px, 2.2vw, 42px);
    color: #d7d0c5;
    font-size: clamp(11px, .75vw, 15px);
    font-weight: 500;
    letter-spacing: .25em;
    text-transform: uppercase;
  }

  .ar-eyebrow span:first-child {
    color: var(--ar-gold);
  }

  .ar-hero h1 {
    max-width: 700px;
    margin: 0;
    color: var(--ar-ivory);
    font-family: "Italiana", "AI Revival Italiana Czech", Georgia, serif;
    font-size: clamp(92px, 9.2vw, 178px);
    font-weight: 400;
    line-height: .73;
    letter-spacing: -.055em;
    text-shadow: 0 3px 28px rgba(0,0,0,.2);
  }

  .ar-hero-line {
    margin: clamp(34px, 3vw, 56px) 0 0;
    color: #dfd9cf;
    font-family: "Italiana", "AI Revival Italiana Czech", Georgia, serif;
    font-size: clamp(22px, 1.55vw, 32px);
    line-height: 1.35;
    letter-spacing: .01em;
  }

  .ar-hero-actions {
    display: flex;
    gap: 12px;
    margin-top: clamp(30px, 2.7vw, 50px);
  }

  .ar-button {
    min-width: 188px;
    min-height: 52px;
    padding: 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.55);
    color: var(--ar-white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    transition: color .35s ease, background .35s ease, border-color .35s ease;
  }

  .ar-button-light {
    border-color: var(--ar-ivory);
    background: var(--ar-ivory);
    color: #0b0b0b;
  }

  .ar-button-light:hover,
  .ar-button-light:focus-visible {
    border-color: var(--ar-gold);
    background: var(--ar-gold);
  }

  .ar-button-ghost:hover,
  .ar-button-ghost:focus-visible {
    border-color: var(--ar-white);
    background: rgba(255,255,255,.1);
  }

  .ar-hero-rail {
    position: absolute;
    z-index: 2;
    right: max(4.5vw, calc((100vw - var(--ar-max)) / 2));
    top: 50%;
    display: flex;
    align-items: center;
    gap: 20px;
    transform: translate(47%, -50%) rotate(90deg);
    transform-origin: center;
    color: rgba(255,255,255,.7);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .27em;
    white-space: nowrap;
  }

  .ar-hero-rail i {
    width: 58px;
    height: 1px;
    background: rgba(255,255,255,.38);
  }

  .ar-scroll-cue {
    position: absolute;
    z-index: 2;
    bottom: clamp(26px, 3vw, 52px);
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transform: translateX(-50%);
    color: rgba(255,255,255,.72);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .25em;
    text-transform: uppercase;
  }

  .ar-scroll-cue i {
    width: 1px;
    height: 36px;
    background: linear-gradient(var(--ar-gold), transparent);
  }

  .ar-section-shell {
    width: min(calc(100% - 9vw), var(--ar-max));
    margin: 0 auto;
  }

  .ar-section-heading {
    padding: clamp(130px, 11vw, 220px) 0 clamp(82px, 8vw, 150px);
    display: grid;
    grid-template-columns: minmax(210px, .72fr) 2fr;
    gap: clamp(40px, 6vw, 120px);
    align-items: start;
  }

  .ar-section-index {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 12px 0 0;
    color: rgba(10,10,10,.6);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
  }

  .ar-section-index span:first-child,
  .ar-feature-number {
    color: #957b4d;
  }

  .ar-section-heading h2,
  .ar-radio-heading h2 {
    margin: 0;
    color: var(--ar-ink);
    font-family: "Italiana", "AI Revival Italiana Czech", Georgia, serif;
    font-size: clamp(56px, 6.8vw, 128px);
    font-weight: 400;
    line-height: .91;
    letter-spacing: -.045em;
  }

  .ar-section-heading h2 em,
  .ar-radio-heading h2 em,
  .ar-studio-copy h3 em,
  .ar-nova-copy h3 em,
  .ar-fashion-close h3 em {
    font-weight: 400;
    color: #8c754c;
  }

  .ar-section-heading > div > p,
  .ar-radio-heading > p:last-child {
    max-width: 620px;
    margin: clamp(28px, 3vw, 52px) 0 0 auto;
    color: rgba(17,16,15,.68);
    font-size: clamp(15px, 1.05vw, 20px);
    line-height: 1.75;
  }

  .ar-fashion {
    position: relative;
    background: #e9e5dc;
    color: var(--ar-ink);
  }

  .ar-fashion-editorial {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(290px, .42fr);
    grid-template-rows: auto auto;
    column-gap: clamp(44px, 7vw, 140px);
    row-gap: clamp(90px, 9vw, 170px);
    align-items: start;
  }

  .ar-fashion figure {
    margin: 0;
  }

  .ar-fashion figure img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .ar-fashion-portrait {
    grid-row: 1 / span 2;
    width: min(100%, 850px);
  }

  .ar-fashion-portrait img {
    aspect-ratio: 4 / 5;
  }

  .ar-fashion-landscape {
    width: min(100%, 660px);
  }

  .ar-fashion-landscape img {
    aspect-ratio: 4 / 3;
  }

  .ar-fashion figcaption {
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(17,16,15,.25);
    color: rgba(17,16,15,.62);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .19em;
    text-transform: uppercase;
  }

  .ar-fashion figcaption span:first-child {
    color: #806a45;
  }

  .ar-fashion-manifesto {
    padding-top: clamp(40px, 7vw, 120px);
  }

  .ar-manifesto-mark {
    margin: 0 0 45px;
    color: #a78956;
    font-family: "Italiana", "AI Revival Italiana Czech", Georgia, serif;
    font-size: clamp(50px, 5vw, 92px);
    letter-spacing: -.05em;
  }

  .ar-manifesto-copy {
    max-width: 480px;
    margin: 0;
    font-family: "Italiana", "AI Revival Italiana Czech", Georgia, serif;
    font-size: clamp(27px, 2.25vw, 44px);
    line-height: 1.25;
    letter-spacing: -.015em;
  }

  .ar-material-list {
    margin: clamp(50px, 5vw, 86px) 0 0;
  }

  .ar-material-list div {
    min-height: 56px;
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    border-top: 1px solid rgba(17,16,15,.2);
  }

  .ar-material-list div:last-child {
    border-bottom: 1px solid rgba(17,16,15,.2);
  }

  .ar-material-list dt,
  .ar-material-list dd {
    margin: 0;
  }

  .ar-material-list dt {
    color: #967b4d;
    font-size: 9px;
    letter-spacing: .18em;
  }

  .ar-material-list dd {
    color: rgba(17,16,15,.74);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .ar-fashion-close {
    padding: clamp(150px, 15vw, 290px) 0 clamp(140px, 13vw, 240px);
    display: grid;
    grid-template-columns: .7fr 1.5fr;
    column-gap: 7vw;
    align-items: start;
  }

  .ar-fashion-close > p {
    margin: 15px 0 0;
    color: rgba(17,16,15,.52);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
  }

  .ar-fashion-close h3 {
    margin: 0;
    color: var(--ar-ink);
    font-family: "Italiana", "AI Revival Italiana Czech", Georgia, serif;
    font-size: clamp(58px, 7.4vw, 138px);
    font-weight: 400;
    line-height: .9;
    letter-spacing: -.045em;
  }

  .ar-fashion-close .ar-text-link {
    grid-column: 2;
    justify-self: start;
    margin-top: 54px;
  }

  .ar-text-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 0 0 10px;
    border-bottom: 1px solid currentColor;
    color: #5f5037;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    transition: color .3s ease, gap .3s ease;
  }

  .ar-text-link:hover,
  .ar-text-link:focus-visible {
    gap: 25px;
    color: #9b7b45;
  }

  .ar-studio {
    padding-bottom: clamp(150px, 14vw, 260px);
    background: #0b0b0b;
    color: var(--ar-white);
  }

  .ar-section-heading-dark .ar-section-index {
    color: rgba(255,255,255,.55);
  }

  .ar-section-heading-dark h2,
  .ar-section-heading-dark > div > p {
    color: var(--ar-ivory);
  }

  .ar-section-heading-dark > div > p {
    color: rgba(255,255,255,.62);
  }

  .ar-studio-atmosphere {
    position: relative;
    margin: 0 0 clamp(120px, 11vw, 210px);
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.18);
    border-bottom: 1px solid rgba(255,255,255,.18);
    background: #050505;
  }

  .ar-studio-atmosphere::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.04) 55%, rgba(0,0,0,.28));
    pointer-events: none;
  }

  .ar-studio-atmosphere img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .ar-studio-feature {
    min-height: min(840px, 76vw);
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(340px, .72fr);
    border-top: 1px solid rgba(255,255,255,.18);
  }

  .ar-studio-image,
  .ar-software-visual {
    position: relative;
    min-height: 620px;
    overflow: hidden;
  }

  .ar-studio-image img,
  .ar-software-visual > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .ar-studio-copy {
    padding: clamp(60px, 6vw, 110px) clamp(30px, 5vw, 90px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .ar-feature-number {
    margin: 0 0 clamp(40px, 5vw, 80px);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
  }

  .ar-studio-copy h3,
  .ar-nova-copy h3 {
    margin: 0;
    color: var(--ar-ivory);
    font-family: "Italiana", "AI Revival Italiana Czech", Georgia, serif;
    font-size: clamp(47px, 4.7vw, 88px);
    font-weight: 400;
    line-height: .96;
    letter-spacing: -.04em;
  }

  .ar-studio-copy > p:not(.ar-feature-number) {
    max-width: 530px;
    margin: clamp(30px, 3vw, 50px) 0 0;
    color: rgba(255,255,255,.63);
    font-size: clamp(14px, 1vw, 18px);
    line-height: 1.75;
  }

  .ar-feature-specs {
    width: 100%;
    margin: clamp(42px, 5vw, 72px) 0;
    padding: 0;
    list-style: none;
  }

  .ar-feature-specs li {
    min-height: 58px;
    display: grid;
    grid-template-columns: 74px 1fr;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,.15);
  }

  .ar-feature-specs li:last-child {
    border-bottom: 1px solid rgba(255,255,255,.15);
  }

  .ar-feature-specs span {
    color: var(--ar-gold);
    font-family: "Italiana", "AI Revival Italiana Czech", Georgia, serif;
    font-size: 21px;
  }

  .ar-feature-specs b {
    color: rgba(255,255,255,.78);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
  }

  .ar-text-link-light {
    color: rgba(255,255,255,.8);
  }

  .ar-software-feature {
    grid-template-columns: minmax(390px, .8fr) minmax(0, 1.35fr);
    margin-top: clamp(120px, 12vw, 220px);
    border-bottom: 1px solid rgba(255,255,255,.18);
  }

  .ar-software-feature .ar-studio-copy {
    order: 1;
  }

  .ar-software-visual {
    order: 2;
  }

  .ar-software-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.35), transparent 45%);
    pointer-events: none;
  }

  .ar-software-plaque {
    position: absolute;
    z-index: 2;
    left: clamp(28px, 3vw, 56px);
    bottom: clamp(28px, 3vw, 56px);
    width: clamp(220px, 21vw, 390px);
    padding: clamp(22px, 2vw, 38px);
    display: grid;
    grid-template-columns: 62px 1fr;
    align-items: center;
    gap: 5px 18px;
    background: rgba(6,6,6,.84);
    border: 1px solid rgba(190,157,93,.42);
    backdrop-filter: blur(16px);
  }

  .ar-software-plaque img {
    grid-row: 1 / span 2;
    width: 62px;
    height: 62px;
    object-fit: contain;
  }

  .ar-software-plaque span {
    color: var(--ar-ivory);
    font-size: clamp(13px, 1vw, 18px);
    font-weight: 600;
    letter-spacing: .13em;
  }

  .ar-software-plaque small {
    color: var(--ar-gold);
    font-size: 8px;
    letter-spacing: .18em;
  }

  .ar-workflow {
    width: 100%;
    margin: clamp(42px, 5vw, 75px) 0;
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(255,255,255,.74);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
  }

  .ar-workflow i {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,.2);
  }

  .ar-button-gold {
    min-width: 250px;
    border-color: #a98a55;
    color: var(--ar-ivory);
  }

  .ar-button-gold:hover,
  .ar-button-gold:focus-visible {
    background: var(--ar-gold);
    color: #0a0a0a;
  }

  .ar-radio {
    position: relative;
    padding: clamp(150px, 13vw, 250px) 0 210px;
    background: #050505;
    color: var(--ar-white);
    isolation: isolate;
  }

  .ar-radio-glow {
    position: absolute;
    z-index: -1;
    top: 2%;
    right: -12%;
    width: 65vw;
    height: 65vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(177,137,70,.12), rgba(5,5,5,0) 68%);
    pointer-events: none;
  }

  .ar-radio-heading {
    display: grid;
    grid-template-columns: .55fr 1.45fr;
    gap: 0 7vw;
    align-items: start;
  }

  .ar-radio-heading .ar-section-index {
    color: rgba(255,255,255,.55);
  }

  .ar-radio-heading h2 {
    color: var(--ar-ivory);
  }

  .ar-radio-heading > p:last-child {
    grid-column: 2;
    color: rgba(255,255,255,.6);
  }

  .ar-nova-grid {
    margin-top: clamp(100px, 11vw, 200px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, .84fr);
    align-items: center;
    border-top: 1px solid rgba(255,255,255,.16);
    border-bottom: 1px solid rgba(255,255,255,.16);
  }

  .ar-nova-portrait {
    position: relative;
    margin: 0;
    align-self: stretch;
    overflow: hidden;
  }

  .ar-nova-portrait img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 760px;
    object-fit: cover;
    object-position: center;
  }

  .ar-nova-copy {
    padding: clamp(64px, 7vw, 120px);
  }

  .ar-nova-status {
    display: flex;
    align-items: center;
    gap: 13px;
    color: rgba(255,255,255,.62);
    font-size: 9px;
    letter-spacing: .17em;
    text-transform: uppercase;
  }

  .ar-nova-status b {
    color: var(--ar-gold);
    font-weight: 600;
  }

  .ar-nova-label {
    margin: clamp(60px, 6vw, 96px) 0 20px;
    color: var(--ar-gold);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
  }

  .ar-nova-copy h3 {
    font-size: clamp(46px, 4vw, 76px);
  }

  .ar-nova-copy > p:not(.ar-nova-label) {
    max-width: 630px;
    margin: clamp(30px, 3vw, 48px) 0 0;
    color: rgba(255,255,255,.61);
    font-size: clamp(14px, 1vw, 18px);
    line-height: 1.75;
  }

  .ar-nova-capabilities {
    margin-top: clamp(44px, 5vw, 80px);
  }

  .ar-nova-capabilities div {
    min-height: 62px;
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,.14);
  }

  .ar-nova-capabilities div:last-child {
    border-bottom: 1px solid rgba(255,255,255,.14);
  }

  .ar-nova-capabilities span {
    color: var(--ar-gold);
    font-size: 9px;
    letter-spacing: .18em;
  }

  .ar-nova-capabilities p {
    margin: 0;
    color: rgba(255,255,255,.75);
    font-size: 11px;
    line-height: 1.45;
  }

  .ar-live-console {
    margin-top: clamp(120px, 12vw, 220px);
    display: grid;
    grid-template-columns: minmax(280px, .55fr) minmax(0, 1.45fr);
    border: 1px solid rgba(255,255,255,.18);
    background: #0b0b0b;
  }

  .ar-live-art {
    position: relative;
    min-height: 420px;
    overflow: hidden;
  }

  .ar-live-art > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .ar-round-play {
    position: absolute;
    right: 26px;
    bottom: 26px;
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 50%;
    background: rgba(6,6,6,.72);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background .3s ease, color .3s ease, transform .3s ease;
  }

  .ar-round-play:hover,
  .ar-round-play:focus-visible {
    transform: scale(1.04);
    background: var(--ar-ivory);
    color: #080808;
  }

  .ar-live-track {
    position: relative;
    padding: clamp(55px, 6vw, 110px);
    align-self: center;
  }

  .ar-live-track > p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 clamp(48px, 5vw, 80px);
    color: var(--ar-gold);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
  }

  .ar-equalizer {
    height: 14px;
    display: inline-flex;
    align-items: center;
    gap: 2px;
  }

  .ar-equalizer i {
    width: 2px;
    height: 5px;
    background: var(--ar-gold);
    animation: ar-eq .85s ease-in-out infinite alternate;
  }

  .ar-equalizer i:nth-child(2) { height: 12px; animation-delay: -.2s; }
  .ar-equalizer i:nth-child(3) { height: 8px; animation-delay: -.4s; }
  .ar-equalizer i:nth-child(4) { height: 14px; animation-delay: -.1s; }

  .ar-live-track h3,
  .ar-live-track h4 {
    margin: 0;
    font-family: "Italiana", "AI Revival Italiana Czech", Georgia, serif;
    font-weight: 400;
    letter-spacing: -.025em;
  }

  .ar-live-track h3 {
    color: var(--ar-ivory);
    font-size: clamp(46px, 5vw, 94px);
    line-height: 1;
  }

  .ar-live-track h4 {
    margin-top: 10px;
    color: rgba(255,255,255,.56);
    font-size: clamp(25px, 2.3vw, 44px);
    line-height: 1.15;
  }

  .ar-live-meta {
    margin-top: clamp(44px, 5vw, 74px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .ar-live-meta span {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .ar-live-meta small {
    color: rgba(255,255,255,.38);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .17em;
    text-transform: uppercase;
  }

  .ar-live-meta b {
    color: rgba(255,255,255,.74);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .ar-track-progress {
    width: 100%;
    height: 1px;
    margin-top: 40px;
    overflow: hidden;
    background: rgba(255,255,255,.16);
  }

  .ar-track-progress i {
    width: 0;
    height: 100%;
    display: block;
    background: var(--ar-gold);
    transition: width 1s linear;
  }

  .ar-track-time {
    margin-top: 9px;
    color: rgba(255,255,255,.36);
    font-size: 8px;
    letter-spacing: .12em;
  }

  .ar-history-block {
    margin-top: clamp(115px, 11vw, 190px);
  }

  .ar-history-head {
    margin-bottom: 42px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
  }

  .ar-history-head h3 {
    margin: 0;
    color: var(--ar-ivory);
    font-family: "Italiana", "AI Revival Italiana Czech", Georgia, serif;
    font-size: clamp(36px, 3.8vw, 70px);
    font-weight: 400;
  }

  .ar-history-list {
    border-top: 1px solid rgba(255,255,255,.18);
  }

  .ar-history-row {
    min-height: 86px;
    display: grid;
    grid-template-columns: 90px 1.25fr 1.5fr auto;
    align-items: center;
    gap: 28px;
    border-bottom: 1px solid rgba(255,255,255,.13);
    color: rgba(255,255,255,.7);
  }

  .ar-history-row > span:first-child,
  .ar-history-loading {
    color: var(--ar-gold);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .17em;
  }

  .ar-history-row b {
    color: var(--ar-ivory);
    font-family: "Italiana", "AI Revival Italiana Czech", Georgia, serif;
    font-size: clamp(20px, 1.5vw, 29px);
    font-weight: 400;
  }

  .ar-history-row > span:nth-child(3) {
    color: rgba(255,255,255,.48);
    font-size: 12px;
  }

  .ar-history-row a {
    color: rgba(255,255,255,.58);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
  }

  .ar-history-row a:hover,
  .ar-history-row a:focus-visible {
    color: var(--ar-gold);
  }

  .ar-history-loading {
    margin: 0;
    padding: 36px 0;
    text-transform: uppercase;
  }

  .ar-footer {
    padding: clamp(100px, 10vw, 180px) max(4.5vw, calc((100vw - var(--ar-max)) / 2)) 150px;
    background: #e9e5dc;
    color: var(--ar-ink);
  }

  .ar-footer-top {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 7vw;
    align-items: start;
    padding-bottom: clamp(80px, 9vw, 150px);
    border-bottom: 1px solid rgba(17,16,15,.24);
  }

  .ar-footer-top img {
    width: min(270px, 70%);
    filter: brightness(.3);
  }

  .ar-footer-top p {
    margin: 0;
    font-family: "Italiana", "AI Revival Italiana Czech", Georgia, serif;
    font-size: clamp(37px, 4.2vw, 78px);
    line-height: 1.08;
    letter-spacing: -.035em;
  }

  .ar-footer-links {
    padding: clamp(60px, 6vw, 100px) 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }

  .ar-footer-links nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .ar-footer-links a {
    width: fit-content;
    color: rgba(17,16,15,.65);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
  }

  .ar-footer-links a:hover,
  .ar-footer-links a:focus-visible {
    color: #8c7040;
  }

  .ar-footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(17,16,15,.24);
    color: rgba(17,16,15,.5);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .2em;
  }

  .ar-visit-counter {
    display: inline-flex;
    align-items: baseline;
    gap: .9em;
    white-space: nowrap;
  }

  .ar-visit-counter strong {
    min-width: 4ch;
    color: #8c7040;
    font-size: 1.15em;
    font-variant-numeric: tabular-nums;
    text-align: left;
  }

  .ar-player {
    position: fixed;
    z-index: 45;
    right: max(18px, 2.5vw);
    bottom: max(18px, 2.5vw);
    width: min(680px, calc(100vw - 36px));
    min-height: 76px;
    padding: 10px 12px 10px 10px;
    display: grid;
    grid-template-columns: 56px minmax(180px, 1fr) minmax(80px, .8fr) auto;
    align-items: center;
    gap: 16px;
    background: rgba(10,10,10,.88);
    border: 1px solid rgba(255,255,255,.21);
    box-shadow: 0 24px 70px rgba(0,0,0,.42);
    backdrop-filter: blur(18px);
  }

  .ar-player > img {
    width: 56px;
    height: 56px;
    object-fit: cover;
  }

  .ar-player-copy {
    min-width: 0;
  }

  .ar-player-copy small {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ar-gold);
    font-size: 7px;
    font-weight: 600;
    letter-spacing: .16em;
  }

  .ar-player-copy .ar-live-dot {
    width: 5px;
    height: 5px;
  }

  .ar-player-copy p {
    margin: 7px 0 0;
    overflow: hidden;
    color: rgba(255,255,255,.62);
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ar-player-copy b {
    color: var(--ar-ivory);
    font-weight: 500;
  }

  .ar-player-progress {
    height: 1px;
    overflow: hidden;
    background: rgba(255,255,255,.16);
  }

  .ar-player-progress i {
    width: 0;
    height: 100%;
    display: block;
    background: var(--ar-gold);
    transition: width 1s linear;
  }

  .ar-player-button {
    min-width: 128px;
    height: 42px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,.58);
    background: transparent;
    color: #fff;
    font: 600 8px/1 "DM Sans", Arial, sans-serif;
    letter-spacing: .16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .3s ease, color .3s ease;
  }

  .ar-player-button:hover,
  .ar-player-button:focus-visible,
  .ar-player-button.is-playing {
    background: var(--ar-ivory);
    color: #080808;
  }

  .ar-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1);
  }

  .ar-reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .desktop-experience a:focus-visible,
  .desktop-experience button:focus-visible {
    outline: 2px solid #d1ad6b;
    outline-offset: 5px;
  }

  @keyframes ar-live {
    0%, 100% { opacity: .7; box-shadow: 0 0 0 4px rgba(214,174,102,.1); }
    50% { opacity: 1; box-shadow: 0 0 0 8px rgba(214,174,102,.04); }
  }

  @keyframes ar-cinema {
    from { transform: scale(1.045); }
    to { transform: scale(1.008); }
  }

  @keyframes ar-eq {
    from { transform: scaleY(.35); opacity: .6; }
    to { transform: scaleY(1); opacity: 1; }
  }

  @keyframes ar-header-in {
    from { transform: translate(-50%, -18px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
  }

  @media (min-width: 2100px) {
    .ar-hero-media img { object-position: 62% 48%; }
    .ar-hero-content { width: min(42vw, 900px); }
  }

  @media (max-width: 1100px) {
    .ar-header { width: calc(100% - 48px); }
    .ar-nav { gap: 26px; }
    .ar-hero-content { left: 32px; width: 54vw; }
    .ar-hero-rail { display: none; }
    .ar-hero-media img { object-position: 62% 50%; }
    .ar-section-shell { width: calc(100% - 64px); }
    .ar-section-heading { grid-template-columns: 170px 1fr; }
    .ar-fashion-editorial { column-gap: 48px; }
    .ar-studio-feature { grid-template-columns: 1.25fr .85fr; }
    .ar-software-feature { grid-template-columns: .9fr 1.1fr; }
    .ar-studio-copy { padding: 54px 38px; }
    .ar-nova-grid { grid-template-columns: 1fr 1fr; }
    .ar-nova-copy { padding: 58px 42px; }
    .ar-nova-portrait img { min-height: 680px; }
    .ar-live-console { grid-template-columns: .72fr 1.28fr; }
    .ar-live-track { padding: 54px; }
    .ar-history-row { grid-template-columns: 64px 1fr 1.2fr auto; gap: 18px; }
  }

  @media (max-width: 820px) {
    .ar-header { grid-template-columns: 1fr auto; }
    .ar-nav { position: absolute; left: 0; bottom: -42px; gap: 24px; }
    .ar-live-link { grid-column: 2; grid-row: 1; }
    .ar-hero-content { width: 67vw; }
    .ar-hero h1 { font-size: clamp(78px, 13vw, 112px); }
    .ar-section-heading,
    .ar-radio-heading { grid-template-columns: 1fr; }
    .ar-section-heading > div,
    .ar-radio-heading h2,
    .ar-radio-heading > p:last-child { grid-column: 1; }
    .ar-section-heading > div > p,
    .ar-radio-heading > p:last-child { margin-left: 0; }
    .ar-fashion-editorial { grid-template-columns: 1fr; }
    .ar-fashion-portrait { grid-row: auto; width: 78%; }
    .ar-fashion-manifesto { width: 72%; margin-left: auto; }
    .ar-fashion-landscape { width: 100%; }
    .ar-fashion-close { grid-template-columns: 1fr; }
    .ar-fashion-close h3,
    .ar-fashion-close .ar-text-link { grid-column: 1; }
    .ar-studio-feature,
    .ar-software-feature,
    .ar-nova-grid,
    .ar-live-console { grid-template-columns: 1fr; }
    .ar-studio-feature { min-height: 0; }
    .ar-studio-image,
    .ar-software-visual { min-height: 520px; }
    .ar-software-feature .ar-studio-copy { order: 2; }
    .ar-software-visual { order: 1; }
    .ar-nova-portrait img { min-height: 0; aspect-ratio: 1 / 1; }
    .ar-live-art { min-height: 0; aspect-ratio: 1 / 1; }
    .ar-history-row { grid-template-columns: 56px 1fr auto; }
    .ar-history-row > span:nth-child(3) { display: none; }
    .ar-player { grid-template-columns: 48px 1fr auto; }
    .ar-player > img { width: 48px; height: 48px; }
    .ar-player-progress { display: none; }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .ar-live-dot, .ar-hero-media img, .ar-equalizer i, .ar-header.is-scrolled { animation: none; }
    .ar-button, .ar-nav a::after, .ar-reveal { transition: none; }
    .ar-reveal { opacity: 1; transform: none; }
  }
}

@media (max-width: 620px) {
  .desktop-experience {
    display: block !important;
    min-width: 0;
    width: 100%;
    overflow: clip;
  }

  .legacy-page {
    display: none !important;
  }

  .desktop-experience .ar-header {
    left: 0;
    right: 0;
    width: 100%;
    height: 108px;
    padding: 0 18px;
    transform: none;
    grid-template-columns: 1fr auto;
    grid-template-rows: 66px 42px;
  }

  .desktop-experience .ar-header.is-scrolled {
    height: 96px;
    padding: 0 18px;
    grid-template-rows: 58px 38px;
    animation: none;
  }

  .desktop-experience .ar-wordmark,
  .desktop-experience .ar-header.is-scrolled .ar-wordmark {
    width: 142px;
    grid-column: 1;
    grid-row: 1;
  }

  .desktop-experience .ar-header-actions {
    grid-column: 2;
    grid-row: 1;
    gap: 9px;
  }

  .desktop-experience .ar-live-link {
    gap: 8px;
    font-size: 8px;
  }

  .desktop-experience .ar-language-switch {
    gap: 4px;
    font-size: 8px;
  }

  .desktop-experience .ar-live-dot {
    width: 5px;
    height: 5px;
  }

  .desktop-experience .ar-nav {
    position: static;
    grid-column: 1 / 3;
    grid-row: 2;
    justify-self: start;
    gap: 28px;
  }

  .desktop-experience .ar-nav a {
    font-size: 9px;
  }

  .desktop-experience .ar-nav a::after {
    bottom: -8px;
  }

  .desktop-experience .ar-hero {
    min-height: 900px;
  }

  .desktop-experience .ar-hero-media img {
    object-position: 66% 50%;
  }

  .desktop-experience .ar-hero-vignette {
    background:
      linear-gradient(90deg, rgba(0,0,0,.83) 0%, rgba(0,0,0,.57) 52%, rgba(0,0,0,.2) 100%),
      linear-gradient(0deg, rgba(0,0,0,.62) 0%, transparent 42%);
  }

  .desktop-experience .ar-hero-content {
    left: 20px;
    top: 48%;
    width: calc(100% - 40px);
    transform: translateY(-36%);
  }

  .desktop-experience .ar-eyebrow {
    margin-bottom: 26px;
    font-size: 9px;
  }

  .desktop-experience .ar-hero h1 {
    max-width: 330px;
    font-size: clamp(70px, 23vw, 92px);
    line-height: .76;
  }

  .desktop-experience .ar-hero-line {
    max-width: 320px;
    margin-top: 34px;
    font-size: 21px;
  }

  .desktop-experience .ar-hero-actions {
    width: min(100%, 320px);
    margin-top: 34px;
    flex-direction: column;
  }

  .desktop-experience .ar-button {
    width: 100%;
    min-height: 50px;
    font-size: 9px;
  }

  .desktop-experience .ar-scroll-cue {
    bottom: 24px;
    font-size: 8px;
  }

  .desktop-experience .ar-section-shell {
    width: calc(100% - 40px);
  }

  .desktop-experience .ar-section-heading,
  .desktop-experience .ar-radio-heading {
    padding: 104px 0 64px;
    display: block;
  }

  .desktop-experience .ar-section-heading h2,
  .desktop-experience .ar-radio-heading h2 {
    margin-top: 34px;
    font-size: clamp(52px, 15vw, 68px);
  }

  .desktop-experience .ar-section-heading > div > p,
  .desktop-experience .ar-radio-heading > p:last-child {
    margin: 26px 0 0;
    font-size: 14px;
    line-height: 1.65;
  }

  .desktop-experience .ar-fashion-editorial {
    display: flex;
    flex-direction: column;
    gap: 74px;
  }

  .desktop-experience .ar-fashion-portrait,
  .desktop-experience .ar-fashion-landscape,
  .desktop-experience .ar-fashion-manifesto {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .desktop-experience .ar-fashion figure img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .desktop-experience .ar-manifesto-mark {
    margin-bottom: 28px;
    font-size: 58px;
  }

  .desktop-experience .ar-manifesto-copy {
    font-size: 30px;
  }

  .desktop-experience .ar-fashion-close {
    padding: 110px 0;
    display: block;
  }

  .desktop-experience .ar-fashion-close h3 {
    margin-top: 34px;
    font-size: 58px;
  }

  .desktop-experience .ar-fashion-close .ar-text-link {
    margin-top: 38px;
  }

  .desktop-experience .ar-studio {
    padding-bottom: 110px;
  }

  .desktop-experience .ar-studio-atmosphere {
    margin-bottom: 84px;
  }

  .desktop-experience .ar-studio-atmosphere img,
  .desktop-experience .ar-studio-image img,
  .desktop-experience .ar-software-visual > img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
  }

  .desktop-experience .ar-studio-feature,
  .desktop-experience .ar-software-feature {
    display: flex;
    flex-direction: column;
    min-height: 0;
    margin-top: 80px;
  }

  .desktop-experience .ar-studio-image,
  .desktop-experience .ar-software-visual {
    order: 1;
    min-height: 0;
  }

  .desktop-experience .ar-studio-copy,
  .desktop-experience .ar-software-feature .ar-studio-copy {
    order: 2;
    padding: 54px 0;
  }

  .desktop-experience .ar-feature-number {
    margin-bottom: 34px;
  }

  .desktop-experience .ar-studio-copy h3,
  .desktop-experience .ar-nova-copy h3 {
    font-size: 50px;
  }

  .desktop-experience .ar-software-plaque {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    padding: 16px;
  }

  .desktop-experience .ar-workflow {
    flex-wrap: wrap;
    line-height: 1.7;
  }

  .desktop-experience .ar-radio {
    padding: 110px 0 150px;
  }

  .desktop-experience .ar-nova-grid,
  .desktop-experience .ar-live-console {
    margin-top: 74px;
    display: flex;
    flex-direction: column;
  }

  .desktop-experience .ar-nova-portrait img,
  .desktop-experience .ar-live-art > img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .desktop-experience .ar-nova-copy,
  .desktop-experience .ar-live-track {
    padding: 52px 0;
  }

  .desktop-experience .ar-nova-label {
    margin-top: 44px;
  }

  .desktop-experience .ar-live-art {
    min-height: 0;
  }

  .desktop-experience .ar-round-play {
    right: 18px;
    bottom: 18px;
    width: 62px;
    height: 62px;
  }

  .desktop-experience .ar-live-track h3 {
    font-size: 50px;
  }

  .desktop-experience .ar-live-track h4 {
    font-size: 28px;
  }

  .desktop-experience .ar-live-meta {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .desktop-experience .ar-history-block {
    margin-top: 90px;
  }

  .desktop-experience .ar-history-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .desktop-experience .ar-history-row {
    min-height: 76px;
    grid-template-columns: 52px 1fr auto;
    gap: 12px;
  }

  .desktop-experience .ar-history-row > span:nth-child(3) {
    display: none;
  }

  .desktop-experience .ar-footer {
    padding: 90px 20px 150px;
  }

  .desktop-experience .ar-footer-top {
    display: block;
    padding-bottom: 60px;
  }

  .desktop-experience .ar-footer-top img {
    width: 190px;
  }

  .desktop-experience .ar-footer-top p {
    margin-top: 40px;
    font-size: 42px;
  }

  .desktop-experience .ar-footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 42px 24px;
  }

  .desktop-experience .ar-footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .desktop-experience .ar-player {
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    width: auto;
    min-height: 68px;
    padding: 9px;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .desktop-experience .ar-player > img {
    width: 48px;
    height: 48px;
  }

  .desktop-experience .ar-player-progress {
    display: none;
  }

  .desktop-experience .ar-player-button {
    width: 46px;
    min-width: 46px;
    height: 46px;
    padding: 0;
  }

  .desktop-experience .ar-player-action {
    display: none;
  }

  .desktop-experience .ar-reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   DJ MUSIC STUDIO — complete screenshot, vertically centered.
   Keep gradient and floating plaque.
   ========================================================= */
@media (min-width: 621px) {
  .ar-software-feature {
    min-height: 0;
    align-items: stretch;
  }

  .ar-software-visual {
    min-height: 0;
    align-self: stretch;
    overflow: hidden;
    background: #050505;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ar-software-visual > img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
  }
}

/* =========================================================
   NOVA presenter portrait — show the complete artwork,
   centered vertically inside the existing section.
   ========================================================= */
@media (min-width: 821px) {
  .ar-nova-portrait {
    align-self: stretch;
    overflow: hidden;
    background: #050505;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ar-nova-portrait img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
  }
}

/* =========================================================
   LIVE RADIO ARTWORK — show complete cover, centered.
   Keep the existing console layout and play button.
   ========================================================= */
@media (min-width: 821px) {
  .ar-live-art {
    min-height: 420px;
    align-self: stretch;
    overflow: hidden;
    background: #050505;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ar-live-art > img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
  }
}


/* =========================================================
   FLOATING PLAYER — shorter desktop plaque, fixed right.
   Requested: roughly half-length, same right-side position.
   ========================================================= */
@media (min-width: 821px) {
  .ar-player {
    right: max(18px, 2.5vw);
    bottom: max(18px, 2.5vw);
    width: min(360px, calc(100vw - 36px));
    min-height: 84px;
    padding: 10px 12px 12px 10px;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    grid-template-areas:
      "cover copy button"
      ". progress progress";
    gap: 10px 12px;
    align-items: center;
  }

  .ar-player > img {
    grid-area: cover;
    width: 48px;
    height: 48px;
  }

  .ar-player-copy {
    grid-area: copy;
    min-width: 0;
  }

  .ar-player-copy small {
    gap: 6px;
    font-size: 6px;
    letter-spacing: .14em;
  }

  .ar-player-copy p {
    margin: 5px 0 0;
    font-size: 10px;
    line-height: 1.35;
  }

  .ar-player-progress {
    grid-area: progress;
    align-self: center;
    width: 100%;
    margin-top: 1px;
  }

  .ar-player-button {
    grid-area: button;
    min-width: 92px;
    height: 40px;
    padding: 0 12px;
    font-size: 7px;
    letter-spacing: .14em;
    justify-self: end;
  }
}


/* =========================================================
   FLOATING PLAYER v7 — medium width, original horizontal feel.
   Keeps the player fixed to the right, but avoids the cramped
   "mini-card" look of the half-width experiment.
   ========================================================= */
@media (min-width: 821px) {
  .ar-player {
    right: max(18px, 2.5vw);
    bottom: max(18px, 2.5vw);
    width: min(500px, calc(100vw - 36px));
    min-height: 76px;
    padding: 10px 12px 10px 10px;

    grid-template-columns: 52px minmax(150px, 1fr) minmax(60px, 90px) auto;
    grid-template-areas: none;
    gap: 14px;
    align-items: center;
  }

  .ar-player > img {
    grid-area: auto;
    width: 52px;
    height: 52px;
  }

  .ar-player-copy {
    grid-area: auto;
    min-width: 0;
  }

  .ar-player-copy small {
    font-size: 6.5px;
    letter-spacing: .15em;
  }

  .ar-player-copy p {
    margin: 6px 0 0;
    font-size: 10.5px;
  }

  .ar-player-progress {
    grid-area: auto;
    width: 100%;
    margin-top: 0;
  }

  .ar-player-button {
    grid-area: auto;
    min-width: 110px;
    height: 42px;
    padding: 0 14px;
    font-size: 7.5px;
    letter-spacing: .15em;
  }
}
