/* =====================================================================
   ppuzzle.dev — Political Puzzle Developer Platform
   Aesthetic: grainy-textured, candle-atmospheric, modular-blocks
   Palette (EXACT hex from DESIGN.md):
     #2C2418  dark umber (ground)
     #D4A84B  candle amber (focus glow)
     #EDE4CF  parchment (primary surface)
     #F5EDD8  pale parchment
     #5A8F6E  verified green
     #4A6FA5  analysis blue
     #8B7355  warm brown
     #E8D9C0  soft cream
   ===================================================================== */

:root {
    --umber:        #2C2418;
    --amber:        #D4A84B;
    --parchment:    #EDE4CF;
    --parchment-2:  #F5EDD8;
    --verified:     #5A8F6E;
    --analysis:     #4A6FA5;
    --brown:        #8B7355;
    --cream:        #E8D9C0;
    --urgent:       #C75C5C;

    --ff-display: "EB Garamond", "Garamond", Georgia, serif;
    --ff-body:    "Nunito Sans", "Inter", system-ui, sans-serif;
    --ff-mono:    "JetBrains Mono", "IBM Plex Mono", "Space Mono", monospace;

    --maxw: 1280px;
    --gutter: clamp(20px, 4vw, 56px);
    --radius: 4px;
    --shadow-warm: 0 24px 48px -16px rgba(20, 14, 6, 0.55),
                   0 6px 12px -4px rgba(20, 14, 6, 0.45);
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--umber);
    color: var(--parchment);
    font-family: var(--ff-body);
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(1200px 800px at 18% 22%, rgba(212, 168, 75, 0.10), transparent 70%),
        radial-gradient(900px 700px at 82% 76%, rgba(74, 111, 165, 0.07), transparent 70%),
        radial-gradient(700px 600px at 50% 50%, rgba(139, 115, 85, 0.06), transparent 75%),
        var(--umber);
}

.svg-defs {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* -------------------------------------------------------------------
   Living film-grain overlay (animated noise via SVG turbulence)
   ------------------------------------------------------------------- */
.grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 90;
    opacity: 0.18;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95   0 0 0 0 0.86   0 0 0 0 0.65   0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    background-size: 240px 240px;
    animation: grain-shift 1.6s steps(8) infinite;
}

@keyframes grain-shift {
    0%   { transform: translate3d(0, 0, 0); }
    20%  { transform: translate3d(-8px, 4px, 0); }
    40%  { transform: translate3d(6px, -3px, 0); }
    60%  { transform: translate3d(-3px, 7px, 0); }
    80%  { transform: translate3d(5px, -5px, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

/* -------------------------------------------------------------------
   Bokeh ambient lights — out-of-focus candleglow
   ------------------------------------------------------------------- */
.bokeh-field {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.bokeh {
    position: absolute;
    border-radius: 50%;
    filter: blur(28px);
    opacity: 0;
    animation: bokeh-fade 1.2s ease-out forwards, bokeh-drift 22s ease-in-out infinite;
}

.bokeh--1  { width: 220px; height: 220px; top:  6%; left:  8%; background: rgba(212, 168, 75, 0.18); animation-delay: 0.20s, 0s; }
.bokeh--2  { width: 160px; height: 160px; top: 18%; left: 72%; background: rgba(212, 168, 75, 0.14); animation-delay: 0.36s, 1.2s; }
.bokeh--3  { width: 320px; height: 320px; top: 60%; left: 12%; background: rgba(232, 217, 192, 0.10); animation-delay: 0.52s, 2.4s; }
.bokeh--4  { width: 180px; height: 180px; top: 78%; left: 78%; background: rgba(212, 168, 75, 0.16); animation-delay: 0.68s, 3.6s; }
.bokeh--5  { width: 120px; height: 120px; top: 36%; left: 46%; background: rgba(245, 237, 216, 0.10); animation-delay: 0.84s, 4.8s; }
.bokeh--6  { width: 200px; height: 200px; top: 110%; left: 30%; background: rgba(212, 168, 75, 0.12); animation-delay: 1.00s, 6.0s; }
.bokeh--7  { width: 140px; height: 140px; top: 140%; left: 62%; background: rgba(74, 111, 165, 0.08);  animation-delay: 1.16s, 7.2s; }
.bokeh--8  { width: 260px; height: 260px; top: 188%; left: 18%; background: rgba(212, 168, 75, 0.14); animation-delay: 1.32s, 8.4s; }
.bokeh--9  { width: 180px; height: 180px; top: 218%; left: 72%; background: rgba(90, 143, 110, 0.08);  animation-delay: 1.48s, 9.6s; }
.bokeh--10 { width: 240px; height: 240px; top: 260%; left: 40%; background: rgba(212, 168, 75, 0.12); animation-delay: 1.64s, 10.8s; }

@keyframes bokeh-fade {
    from { opacity: 0; transform: scale(0.7); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes bokeh-drift {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    25%      { transform: translate3d(20px, -14px, 0) scale(1.05); }
    50%      { transform: translate3d(-12px, 18px, 0) scale(0.96); }
    75%      { transform: translate3d(14px, 8px, 0) scale(1.03); }
}

/* -------------------------------------------------------------------
   Ribbon (top stripe)
   ------------------------------------------------------------------- */
.ribbon {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 80;
    background: linear-gradient(180deg, rgba(44, 36, 24, 0.95), rgba(44, 36, 24, 0.78));
    border-bottom: 1px solid rgba(212, 168, 75, 0.25);
    backdrop-filter: blur(6px);
}

.ribbon__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 12px var(--gutter);
    display: flex;
    align-items: center;
    gap: 24px;
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream);
}

.ribbon__stamp {
    color: var(--amber);
    border: 1px solid rgba(212, 168, 75, 0.55);
    padding: 4px 8px;
    border-radius: 2px;
}

.ribbon__nav {
    flex: 1;
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.ribbon__nav a {
    color: var(--cream);
    text-decoration: none;
    transition: color 200ms ease;
}

.ribbon__nav a:hover { color: var(--amber); }

.ribbon__time {
    color: var(--brown);
    min-width: 14ch;
    text-align: right;
}

/* -------------------------------------------------------------------
   Section heads
   ------------------------------------------------------------------- */
.section-head {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 80px var(--gutter) 32px;
    position: relative;
    z-index: 2;
}

.section-head__num {
    display: inline-block;
    font-family: var(--ff-mono);
    font-size: 12px;
    color: var(--amber);
    letter-spacing: 0.3em;
    margin-bottom: 14px;
    border-top: 1px solid rgba(212, 168, 75, 0.4);
    padding-top: 12px;
}

.section-head__title {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: clamp(36px, 5.4vw, 68px);
    line-height: 1;
    letter-spacing: -0.015em;
    color: var(--parchment);
    margin: 0 0 14px;
}

.section-head__title em {
    font-style: italic;
    font-weight: 500;
    color: var(--amber);
}

.section-head__lede {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: clamp(17px, 1.7vw, 21px);
    color: var(--cream);
    max-width: 60ch;
    margin: 0;
    opacity: 0.85;
}

/* -------------------------------------------------------------------
   1. DOSSIER COVER
   ------------------------------------------------------------------- */
.dossier {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 120px var(--gutter) 80px;
    z-index: 2;
    overflow: hidden;
}

.dossier__candle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%) scale(0);
    background: radial-gradient(circle at center,
        rgba(212, 168, 75, 0.34) 0%,
        rgba(212, 168, 75, 0.14) 28%,
        rgba(212, 168, 75, 0.04) 55%,
        transparent 75%);
    animation: candle-bloom 1.5s 1s ease-out forwards, candle-flicker 4s 2.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes candle-bloom {
    from { transform: translate(-50%, -50%) scale(0); opacity: 0; }
    to   { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

@keyframes candle-flicker {
    0%, 100% { opacity: 1.00; transform: translate(-50%, -50%) scale(1.00); }
    25%      { opacity: 0.92; transform: translate(-50%, -50%) scale(0.98); }
    50%      { opacity: 1.04; transform: translate(-50%, -50%) scale(1.03); }
    75%      { opacity: 0.95; transform: translate(-50%, -50%) scale(0.99); }
}

.dossier__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    opacity: 0;
    animation: dossier-rise 1.4s 1s ease-out forwards;
}

@keyframes dossier-rise {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

.dossier__filenum {
    font-family: var(--ff-mono);
    font-size: 12px;
    letter-spacing: 0.5em;
    color: var(--amber);
    margin-bottom: 30px;
}

.dossier__title {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: clamp(64px, 12vw, 180px);
    line-height: 0.92;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--parchment);
    text-shadow: 0 0 60px rgba(212, 168, 75, 0.35);
}

.dossier__title-line {
    display: block;
}

.dossier__title-line--em {
    font-style: italic;
    font-weight: 500;
    color: var(--amber);
}

.dossier__sub {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: clamp(18px, 2.1vw, 26px);
    color: var(--cream);
    margin: 28px auto 36px;
    max-width: 680px;
    line-height: 1.5;
}

.dossier__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brown);
}

.dossier__meta em {
    color: var(--amber);
    font-style: normal;
    margin-right: 6px;
}

.dossier__scroll {
    margin-top: 64px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--cream);
    font-family: var(--ff-mono);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0;
    animation: scroll-appear 0.8s 2s ease forwards;
}

.dossier__scroll svg { width: 22px; height: 34px; }

.scroll-dot { animation: scroll-dot 1.6s ease-in-out infinite; }

@keyframes scroll-appear {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 0.72; transform: translateY(0); }
}

@keyframes scroll-dot {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50%      { transform: translateY(10px); opacity: 0.4; }
}

/* -------------------------------------------------------------------
   2. ANALYSIS MODULES (modular-blocks grid)
   ------------------------------------------------------------------- */
.analysis {
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}

.modules-grid {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 20px;
}

.module {
    grid-row: span var(--row-span, 1);
    grid-column: span var(--col-span, 1);
    position: relative;
    padding: 28px 26px;
    background: var(--parchment);
    color: var(--umber);
    border-radius: var(--radius);
    box-shadow: var(--shadow-warm);
    transition: transform 320ms ease, box-shadow 320ms ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.module::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(140% 100% at 50% 0%,
        rgba(245, 237, 216, 0.6),
        rgba(232, 217, 192, 0.0) 60%);
    pointer-events: none;
}

.module::after {
    /* paper-edge stagger detail */
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 6px;
    height: 1px;
    background: rgba(44, 36, 24, 0.06);
}

.module:hover {
    transform: translateY(-4px) rotate(-0.2deg);
    box-shadow: 0 32px 60px -18px rgba(20, 14, 6, 0.7),
                0 8px 16px -4px rgba(20, 14, 6, 0.5);
}

.module--lg {
    background: var(--parchment-2);
}

.module__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-family: var(--ff-mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.module__num { color: var(--brown); }

.module__tag {
    padding: 3px 8px;
    border-radius: 2px;
    font-weight: 700;
}

.tag--analysis { color: #fff; background: var(--analysis); }
.tag--urgent   { color: #fff; background: var(--urgent); }
.tag--verified { color: #fff; background: var(--verified); }

.module--analysis { border-top: 3px solid var(--analysis); }
.module--urgent   { border-top: 3px solid var(--urgent); }
.module--verified { border-top: 3px solid var(--verified); }

.module__title {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: clamp(20px, 1.9vw, 28px);
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--umber);
    margin: 0 0 14px;
    position: relative;
    z-index: 1;
}

.module__pull {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: clamp(16px, 1.6vw, 19px);
    color: var(--brown);
    border-left: 2px solid var(--amber);
    padding-left: 14px;
    margin: 0 0 14px;
    line-height: 1.45;
    position: relative;
    z-index: 1;
}

.module__body {
    font-size: clamp(14px, 1.2vw, 16px);
    color: rgba(44, 36, 24, 0.86);
    margin: 0 0 14px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.module__foot {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    font-family: var(--ff-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brown);
    padding-top: 14px;
    border-top: 1px dotted rgba(44, 36, 24, 0.18);
}

/* -------------------------------------------------------------------
   3. EVIDENCE BOARD with SVG threads
   ------------------------------------------------------------------- */
.evidence {
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}

.board {
    position: relative;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 40px var(--gutter) 80px;
    min-height: 720px;
}

.board__threads {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.board__threads path {
    fill: none;
    stroke: var(--amber);
    stroke-width: 1.4;
    stroke-dasharray: 6 6;
    stroke-linecap: round;
    opacity: 0.65;
    filter: drop-shadow(0 0 4px rgba(212, 168, 75, 0.25));
}

.pin {
    position: absolute;
    width: clamp(180px, 22vw, 240px);
    padding: 18px 18px 16px;
    background: var(--parchment);
    color: var(--umber);
    border-radius: 2px;
    box-shadow: var(--shadow-warm);
    z-index: 2;
    transition: transform 280ms ease;
}

.pin:hover {
    transform: translate(-50%, -50%) rotate(0deg) scale(1.04);
    z-index: 5;
}

.pin__head {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ff8b6b, #c75c5c 60%, #6b2424);
    box-shadow: 0 4px 6px rgba(20, 14, 6, 0.55);
}

.pin__title {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 8px;
    color: var(--umber);
}

.pin p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.5;
    color: rgba(44, 36, 24, 0.78);
}

/* Pin positions — staggered like a real corkboard */
.pin--1 { top:  6%; left: 14%; transform: translate(-50%, -50%) rotate(-3deg); }
.pin--2 { top: 12%; left: 58%; transform: translate(-50%, -50%) rotate(2deg); }
.pin--3 { top: 38%; left: 30%; transform: translate(-50%, -50%) rotate(-1.4deg); }
.pin--4 { top: 44%; left: 80%; transform: translate(-50%, -50%) rotate(3deg); }
.pin--5 { top: 78%; left: 22%; transform: translate(-50%, -50%) rotate(-2.2deg); }
.pin--6 { top: 84%; left: 66%; transform: translate(-50%, -50%) rotate(1.6deg); }

/* -------------------------------------------------------------------
   4. DEVELOPER API
   ------------------------------------------------------------------- */
.api {
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}

.api-grid {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.api-card {
    padding: 22px 24px;
    background: rgba(245, 237, 216, 0.06);
    border: 1px solid rgba(212, 168, 75, 0.22);
    border-left: 3px solid var(--amber);
    border-radius: var(--radius);
    color: var(--cream);
    transition: background 240ms ease, border-color 240ms ease;
}

.api-card:hover {
    background: rgba(245, 237, 216, 0.1);
    border-left-color: var(--parchment-2);
}

.api-card__verb {
    display: inline-block;
    font-family: var(--ff-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    padding: 3px 8px;
    border-radius: 2px;
    margin-right: 10px;
    color: #fff;
}

.verb-get  { background: var(--analysis); }
.verb-post { background: var(--verified); }

.api-card__path {
    font-family: var(--ff-mono);
    font-size: 14px;
    color: var(--amber);
    letter-spacing: 0.02em;
}

.api-card p {
    margin: 14px 0 0;
    font-family: var(--ff-display);
    font-style: italic;
    color: var(--cream);
    opacity: 0.84;
    line-height: 1.5;
}

.api-snippet {
    grid-column: 1 / -1;
    background: linear-gradient(180deg, rgba(20, 14, 6, 0.7), rgba(20, 14, 6, 0.6));
    border: 1px solid rgba(212, 168, 75, 0.22);
    border-radius: var(--radius);
    overflow: hidden;
}

.api-snippet__head {
    display: flex;
    justify-content: space-between;
    padding: 12px 18px;
    background: rgba(212, 168, 75, 0.08);
    border-bottom: 1px solid rgba(212, 168, 75, 0.22);
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.api-snippet__lang { color: var(--amber); }
.api-snippet__file { color: var(--brown); }

.api-snippet__code {
    margin: 0;
    padding: 22px;
    font-family: var(--ff-mono);
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--parchment);
    overflow-x: auto;
}

.api-snippet__code .c { color: var(--brown); font-style: italic; }

/* -------------------------------------------------------------------
   5. ARCHIVE
   ------------------------------------------------------------------- */
.archive {
    position: relative;
    z-index: 2;
    padding-bottom: 100px;
}

.archive-list {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--gutter);
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.archive-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 18px 0;
    border-bottom: 1px dotted rgba(232, 217, 192, 0.22);
    font-family: var(--ff-display);
    transition: padding 240ms ease, color 240ms ease;
}

.archive-list li:hover {
    padding-left: 12px;
    color: var(--amber);
}

.archive-list li span {
    font-family: var(--ff-mono);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brown);
}

.archive-list li em {
    font-style: italic;
    color: var(--cream);
    font-size: clamp(17px, 1.6vw, 21px);
}

.imprint {
    max-width: var(--maxw);
    margin: 64px auto 0;
    padding: 48px var(--gutter) 0;
    text-align: center;
    border-top: 1px solid rgba(212, 168, 75, 0.22);
}

.imprint__line {
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--brown);
    margin: 0 0 8px;
}

.imprint__line--small {
    font-family: var(--ff-display);
    font-style: italic;
    text-transform: none;
    letter-spacing: 0.04em;
    color: rgba(232, 217, 192, 0.55);
    font-size: 13px;
}

/* -------------------------------------------------------------------
   Reveal-on-scroll utility
   ------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 800ms ease, transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

/* Stagger child reveals via index */
.modules-grid .module.reveal {
    transition-delay: calc(var(--rev-i, 0) * 70ms);
}

/* -------------------------------------------------------------------
   Responsive
   ------------------------------------------------------------------- */
@media (max-width: 920px) {
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .module--lg {
        grid-column: span 2 !important;
        grid-row: span 1 !important;
    }
    .api-grid {
        grid-template-columns: 1fr;
    }
    .ribbon__nav { display: none; }
    .ribbon__time { flex: 1; text-align: right; }
    .archive-list { grid-template-columns: 1fr; }
    .board { min-height: 1100px; }
    .pin   { width: 220px; }
    .pin--1 { top:  4%; left: 28%; }
    .pin--2 { top: 20%; left: 70%; }
    .pin--3 { top: 38%; left: 32%; }
    .pin--4 { top: 56%; left: 70%; }
    .pin--5 { top: 74%; left: 30%; }
    .pin--6 { top: 90%; left: 70%; }
}

@media (max-width: 560px) {
    .modules-grid {
        grid-template-columns: 1fr;
    }
    .module--lg {
        grid-column: span 1 !important;
    }
    .ribbon__inner { font-size: 10px; gap: 12px; }
    .ribbon__stamp { display: none; }
    .dossier__title { font-size: clamp(56px, 18vw, 100px); }
}
