/* ==========================================================================
   JJUGGL.com - Maximalist Monochrome Command Center
   Hexagonal honeycomb layout, slide-reveal motion, glitch-art disruptions.
   Typeface source notes: Bebas Neue (Google Fonts), Oswald (Google Fonts),
   Space Grotesk (Google Fonts), IBM Plex Mono (Google Fonts).
   Motion notes: Intersection Observer at 0.3 threshold; Interstitial Breaks* Breaks:**
   Between honeycomb clusters fracture the scroll narrative.
   ========================================================================== */

/* --- Palette ------------------------------------------------------------- */
:root {
    --void:       #0a0a0a;
    --charcoal:   #1a1a1a;
    --graphite:  #2d2d2d;
    --iron:      #444444;
    --ash:       #555555;
    --silver:    #999999;
    --fog:       #cccccc;
    --bone:      #e8e8e8;
    --white:     #ffffff;
    --glitch-bg: #f0f0f0;

    --glitch-r:  #ff0000;
    --glitch-g:  #00ff00;
    --glitch-b:  #0000ff;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

    --font-display: "Bebas Neue", "Oswald", "Impact", sans-serif;
    --font-sub:     "Oswald", "Bebas Neue", sans-serif;
    --font-body:    "Space Grotesk", "Inter", sans-serif;
    --font-mono:    "IBM Plex Mono", "Courier New", monospace;
}

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

html, body {
    background: var(--void);
    color: var(--fog);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    position: relative;
    min-height: 100vh;
    line-height: 1.65;
    letter-spacing: 0.01em;
}

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

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

/* --- Global overlays ----------------------------------------------------- */
.scanlines {
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 9000;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0,
        transparent 1px,
        rgba(0,0,0,0.08) 1px,
        rgba(0,0,0,0.08) 2px
    );
    mix-blend-mode: multiply;
}

.noise-overlay {
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 8999;
    opacity: 0.045;
    filter: url(#noise-filter);
}

/* --- Background decorative wireframe hexes ------------------------------- */
.bg-hexes { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.bg-hex {
    position: absolute;
    border: 1px solid var(--graphite);
    opacity: 0.3;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: transparent;
    box-shadow: inset 0 0 0 1px var(--graphite);
    animation: bg-spin 60s linear infinite;
}
.bg-hex-1 { top: 5vh;  left: -6vw; width: 38vw; height: 38vw; animation-duration: 80s; }
.bg-hex-2 { top: 35vh; right: -10vw; width: 45vw; height: 45vw; animation-duration: 110s; animation-direction: reverse; }
.bg-hex-3 { bottom: 20vh; left: 20vw; width: 28vw; height: 28vw; animation-duration: 95s; }
.bg-hex-4 { bottom: -8vh; right: 15vw; width: 34vw; height: 34vw; animation-duration: 140s; animation-direction: reverse; }

@keyframes bg-spin {
    from { transform: rotate(0deg) scale(1); }
    50%  { transform: rotate(180deg) scale(1.03); }
    to   { transform: rotate(360deg) scale(1); }
}

/* --- HUD corner brackets ------------------------------------------------- */
.hud-bracket {
    position: fixed;
    width: 44px; height: 44px;
    border: 1px solid var(--ash);
    z-index: 9100;
    pointer-events: none;
}
.hud-top-left     { top: 20px;    left: 20px;    border-right: none; border-bottom: none; }
.hud-top-right    { top: 20px;    right: 20px;   border-left:  none; border-bottom: none; }
.hud-bottom-left  { bottom: 20px; left: 20px;    border-right: none; border-top:    none; }
.hud-bottom-right { bottom: 20px; right: 20px;   border-left:  none; border-top:    none; }

/* ==========================================================================
   HERO ZONE
   ========================================================================== */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 0;
    overflow: hidden;
    background: var(--void);
}

.hero-mosaic {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-auto-rows: 1fr;
    gap: 4px;
    padding: 4px;
    z-index: 1;
}

.hero-hex {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
    animation: hex-pulse 4s ease-in-out infinite;
    border: 0;
}
.hero-hex::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.85;
}
.hero-hex[data-tex="stripes"]::before {
    background: repeating-linear-gradient(45deg, var(--graphite) 0 4px, var(--void) 4px 10px);
}
.hero-hex[data-tex="dots"]::before {
    background: radial-gradient(var(--ash) 1.5px, transparent 2px) 0 0 / 10px 10px;
    background-color: var(--charcoal);
}
.hero-hex[data-tex="cross"]::before {
    background:
        repeating-linear-gradient(45deg, var(--graphite) 0 2px, transparent 2px 8px),
        repeating-linear-gradient(-45deg, var(--graphite) 0 2px, transparent 2px 8px),
        var(--charcoal);
}
.hero-hex[data-tex="grid"]::before {
    background:
        repeating-linear-gradient(0deg, var(--graphite) 0 1px, transparent 1px 10px),
        repeating-linear-gradient(90deg, var(--graphite) 0 1px, transparent 1px 10px),
        var(--charcoal);
}
.hero-hex[data-tex="scan"]::before {
    background: repeating-linear-gradient(0deg, var(--ash) 0 1px, transparent 1px 4px), var(--void);
}
.hero-hex[data-tex="vstripes"]::before {
    background: repeating-linear-gradient(90deg, var(--graphite) 0 3px, var(--void) 3px 8px);
}
.hero-hex[data-tex="solid-dark"]::before { background: var(--void); }
.hero-hex[data-tex="solid-mid"]::before  { background: var(--graphite); }
.hero-hex[data-tex="solid-light"]::before { background: var(--ash); }
.hero-hex[data-tex="gradient"]::before {
    background: linear-gradient(135deg, var(--void), var(--ash));
}
.hero-hex[data-tex="broken"]::before {
    background:
        linear-gradient(var(--silver), var(--silver)) 0 30% / 100% 2px no-repeat,
        linear-gradient(var(--graphite), var(--graphite)) 0 65% / 100% 4px no-repeat,
        var(--charcoal);
}
.hero-hex[data-tex="number"]::before {
    background: var(--void);
}
.hero-hex[data-tex="number"]::after {
    content: attr(data-label);
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-family: var(--font-mono);
    color: var(--silver);
    font-size: clamp(0.7rem, 1.1vw, 1rem);
    letter-spacing: 0.12em;
}

@keyframes hex-pulse {
    0%, 100% { opacity: 0.95; }
    50%      { opacity: 0.55; }
}

.hero-title-wrap {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8vh 4vw;
    text-align: center;
    pointer-events: none;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(5rem, 15vw, 14rem);
    line-height: 0.88;
    letter-spacing: 0.08em;
    color: var(--white);
    mix-blend-mode: difference;
    text-transform: uppercase;
    margin: 0;
    text-shadow: none;
    position: relative;
}

.hero-subline {
    margin-top: clamp(1rem, 2vw, 2rem);
    display: inline-flex;
    gap: clamp(0.5rem, 1.5vw, 1.5rem);
    align-items: center;
    font-family: var(--font-sub);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--bone);
    font-size: clamp(0.75rem, 1.1vw, 1rem);
    mix-blend-mode: difference;
}
.reticle {
    font-size: 1.1em;
    color: var(--bone);
}
.hero-tag { padding: 0.25em 0.6em; border: 1px solid var(--ash); }

.hero-meta {
    position: absolute;
    bottom: 7vh;
    left: 0; right: 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0 6vw;
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--silver);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.hero-meta em {
    font-style: normal;
    color: var(--white);
    font-weight: 500;
    margin-left: 0.25em;
}

/* ==========================================================================
   FRACTURE ZONES
   ========================================================================== */
.fracture {
    position: relative;
    width: 100%;
    height: 120px;
    background: var(--glitch-bg);
    overflow: hidden;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 6px 0;
    border-top: 1px solid var(--graphite);
    border-bottom: 1px solid var(--graphite);
}

.fracture-medium  { height: 150px; }
.fracture-intense { height: 200px; }
.fracture-final   { height: 140px; }

.fracture-strip {
    position: relative;
    height: 14px;
    flex: none;
    color: var(--void);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-left: 4vw;
    animation: strip-shift 2.4s steps(1) infinite;
}
.fracture-strip::before {
    content: attr(data-text) "   //   " attr(data-text) "   //   " attr(data-text) "   //   " attr(data-text) "   //   " attr(data-text);
    display: block;
}
.fracture-strip:nth-child(1)  { animation-duration: 2.1s; animation-delay: 0.00s; }
.fracture-strip:nth-child(2)  { animation-duration: 1.6s; animation-delay: 0.20s; background: var(--void); color: var(--glitch-bg); }
.fracture-strip:nth-child(3)  { animation-duration: 2.9s; animation-delay: 0.50s; }
.fracture-strip:nth-child(4)  { animation-duration: 1.2s; animation-delay: 0.80s; background: var(--graphite); color: var(--glitch-bg); }
.fracture-strip:nth-child(5)  { animation-duration: 3.3s; animation-delay: 0.10s; }
.fracture-strip:nth-child(6)  { animation-duration: 1.8s; animation-delay: 0.70s; background: var(--ash); color: var(--void); }
.fracture-strip.plex-data { color: var(--iron); }
.fracture-strip:nth-child(7)  { animation-duration: 2.5s; animation-delay: 0.30s; }
.fracture-strip:nth-child(8)  { animation-duration: 1.4s; animation-delay: 0.90s; background: var(--void); color: var(--glitch-bg); }

.fracture-intense .fracture-strip { animation-duration: 1s, 1s; height: 18px; font-size: 0.85rem; }

@keyframes strip-shift {
    0%   { transform: translateX(0); }
    15%  { transform: translateX(-7%); }
    30%  { transform: translateX(-3%); }
    50%  { transform: translateX(-14%); }
    65%  { transform: translateX(-6%); }
    80%  { transform: translateX(-18%); }
    100% { transform: translateX(-4%); }
}

/* ==========================================================================
   HONEYCOMB SECTIONS
   ========================================================================== */
.honeycomb-section {
    position: relative;
    width: 100%;
    padding: clamp(6rem, 12vh, 10rem) 4vw clamp(8rem, 14vh, 12rem);
    background: var(--void);
    z-index: 2;
    overflow: hidden;
}

.honeycomb-section::before {
    content: "";
    position: absolute;
    left: 50%; top: 4vh;
    transform: translateX(-50%);
    width: 60vw;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--graphite), transparent);
    z-index: 1;
}

.section-header {
    max-width: 1200px;
    margin: 0 auto clamp(3rem, 6vh, 5rem);
    text-align: left;
    padding-left: clamp(0rem, 2vw, 3rem);
    position: relative;
}

.section-index {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--silver);
    display: block;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.9;
    letter-spacing: 0.08em;
    color: var(--white);
    text-transform: uppercase;
}

.section-lede {
    margin-top: 1rem;
    font-family: var(--font-body);
    color: var(--fog);
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    max-width: 46ch;
}

/* --- Hex cluster (7-hex honeycomb pod) ----------------------------------- */
.hex-cluster {
    --hex-size: clamp(180px, 22vw, 280px);
    position: relative;
    width: calc(var(--hex-size) * 3.2);
    height: calc(var(--hex-size) * 3.2);
    margin: 0 auto;
}

.hex {
    position: absolute;
    width: var(--hex-size);
    height: var(--hex-size);
}

/* Offsets based on hex geometry:
   horizontal step = 0.866 * size (cos 30)
   vertical step   = 0.75 * size  (3/4)
   Center sits at (center_x, center_y) in the cluster. */
.hex-cluster .hex-center { left: 50%; top: 50%; transform: translate(-50%, -50%); }
.hex-cluster .hex-n  { left: 50%; top: 50%; transform: translate(-50%, calc(-50% - var(--hex-size) * 0.9)); }
.hex-cluster .hex-s  { left: 50%; top: 50%; transform: translate(-50%, calc(-50% + var(--hex-size) * 0.9)); }
.hex-cluster .hex-ne { left: 50%; top: 50%; transform: translate(calc(-50% + var(--hex-size) * 0.78), calc(-50% - var(--hex-size) * 0.45)); }
.hex-cluster .hex-nw { left: 50%; top: 50%; transform: translate(calc(-50% - var(--hex-size) * 0.78), calc(-50% - var(--hex-size) * 0.45)); }
.hex-cluster .hex-se { left: 50%; top: 50%; transform: translate(calc(-50% + var(--hex-size) * 0.78), calc(-50% + var(--hex-size) * 0.45)); }
.hex-cluster .hex-sw { left: 50%; top: 50%; transform: translate(calc(-50% - var(--hex-size) * 0.78), calc(-50% + var(--hex-size) * 0.45)); }

.hex-inner {
    position: absolute;
    inset: 0;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--charcoal);
    overflow: hidden;
    transition: background 300ms var(--ease-out-expo);
}
.hex-inner::before {
    content: "";
    position: absolute;
    inset: 2px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--charcoal);
    z-index: 0;
}
.hex-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 3px);
    pointer-events: none;
    z-index: 3;
}

.hex:hover .hex-inner { background: var(--graphite); }
.hex-center .hex-inner { background: var(--graphite); }
.hex-center .hex-inner::before { background: var(--graphite); }

.hex-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: clamp(1rem, 2vw, 2rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 400ms var(--ease-out-expo), opacity 400ms var(--ease-out-expo);
    opacity: 0;
}

/* Slide-reveal starting positions — per hex direction (pre-reveal) */
.hex:not(.is-visible) .hex-content {
    opacity: 0;
}
.hex[data-dir="center"]:not(.is-visible) .hex-content { transform: scale(0.6); }
.hex[data-dir="n"]:not(.is-visible)  .hex-content { transform: translateY(-60%); }
.hex[data-dir="s"]:not(.is-visible)  .hex-content { transform: translateY(60%); }
.hex[data-dir="ne"]:not(.is-visible) .hex-content { transform: translate(50%, -50%); }
.hex[data-dir="nw"]:not(.is-visible) .hex-content { transform: translate(-50%, -50%); }
.hex[data-dir="se"]:not(.is-visible) .hex-content { transform: translate(50%, 50%); }
.hex[data-dir="sw"]:not(.is-visible) .hex-content { transform: translate(-50%, 50%); }

.hex.is-visible .hex-content {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.hex-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 0.6rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px dashed var(--graphite);
    width: 60%;
    text-align: center;
}

.hex-title {
    font-family: var(--font-sub);
    font-size: clamp(0.95rem, 1.5vw, 1.4rem);
    line-height: 1.05;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.55rem;
    font-weight: 500;
}

.hex-center .hex-title {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.3vw, 2.1rem);
    letter-spacing: 0.08em;
    line-height: 0.95;
}

.hex-body {
    font-family: var(--font-body);
    font-size: clamp(0.72rem, 0.95vw, 0.85rem);
    line-height: 1.5;
    color: var(--fog);
    margin-bottom: 0.6rem;
    max-width: 85%;
}

.hex-meta {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: var(--silver);
    text-transform: uppercase;
    margin-top: auto;
}

/* --- Block glitch (random horizontal shift on hex content) --------------- */
.hex.is-glitching .hex-content {
    animation: block-glitch 150ms steps(1) 1;
}
@keyframes block-glitch {
    0%   { transform: translate(0, 0); }
    25%  { transform: translate(8px, 0); clip-path: polygon(0 20%, 100% 20%, 100% 28%, 0 28%); }
    50%  { transform: translate(-10px, 2px); clip-path: polygon(0 55%, 100% 55%, 100% 65%, 0 65%); }
    75%  { transform: translate(6px, -1px); clip-path: polygon(0 80%, 100% 80%, 100% 88%, 0 88%); }
    100% { transform: translate(0, 0); clip-path: none; }
}

/* ==========================================================================
   TERMINAL FOOTER
   ========================================================================== */
.terminal {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: clamp(4rem, 8vh, 6rem) 4vw 4rem;
    background: var(--void);
    z-index: 2;
    overflow: hidden;
}

.terminal::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 3px);
    pointer-events: none;
}

.terminal-head {
    max-width: 1000px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1rem;
    border: 1px solid var(--graphite);
    background: var(--charcoal);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--silver);
    letter-spacing: 0.08em;
}
.term-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--graphite);
    border: 1px solid var(--ash);
}
.term-title { margin-left: 0.6rem; color: var(--bone); }
.term-spacer { flex: 1; }
.term-path { color: var(--silver); }

.terminal-body {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1.6rem 1.4rem;
    border: 1px solid var(--graphite);
    background: #0e0e0e;
    min-height: 44vh;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    line-height: 1.7;
}

.term-line {
    color: var(--silver);
    white-space: nowrap;
    overflow: hidden;
    max-width: 0;
    width: 100%;
    letter-spacing: 0.02em;
    position: relative;
}
.term-line::before {
    content: attr(data-line);
    display: inline-block;
    padding-right: 0.5ch;
}
.term-line.is-typed {
    max-width: 100%;
    transition: max-width 520ms steps(42, end);
}
.term-line.is-typed::after {
    content: "";
    display: inline-block;
    width: 0.55ch;
    height: 1em;
    margin-left: 0.1ch;
    vertical-align: middle;
    background: var(--silver);
    animation: term-cursor 900ms steps(1) infinite;
}
.term-line.is-typed.term-done::after { display: none; }

@keyframes term-cursor {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.terminal-brand {
    max-width: 1000px;
    margin: clamp(2rem, 4vh, 4rem) auto 0;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--graphite);
}

.terminal-mark {
    font-family: var(--font-display);
    font-size: clamp(3rem, 12vw, 10rem);
    letter-spacing: 0.1em;
    color: var(--white);
    text-transform: uppercase;
    line-height: 0.88;
}

.terminal-footline {
    margin-top: 1.4rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.4rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--silver);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* ==========================================================================
   GLITCH TEXT EFFECT (fires on JS-added class)
   ========================================================================== */
.glitch-target { position: relative; display: inline-block; }
.glitch-target.is-glitch {
    animation: text-glitch 220ms steps(1) 1;
}

@keyframes text-glitch {
    0% {
        text-shadow:
            0 0 0 var(--white);
    }
    20% {
        text-shadow:
            -2px 0 var(--glitch-r),
            2px 0 var(--glitch-b),
            0 0 var(--glitch-g);
        transform: translate(-1px, 0);
    }
    40% {
        text-shadow:
            2px 0 var(--glitch-r),
            -2px 0 var(--glitch-b),
            0 1px var(--glitch-g);
        transform: translate(2px, -1px);
    }
    60% {
        text-shadow:
            -1px 0 var(--glitch-g),
            1px 0 var(--glitch-r),
            0 -1px var(--glitch-b);
        transform: translate(-1px, 1px);
    }
    80% {
        text-shadow:
            1px 0 var(--glitch-b),
            -1px 0 var(--glitch-g),
            0 2px var(--glitch-r);
        transform: translate(1px, 0);
    }
    100% {
        text-shadow: none;
        transform: translate(0, 0);
    }
}

/* ==========================================================================
   Responsive adjustments
   ========================================================================== */
@media (max-width: 900px) {
    .hero-mosaic { grid-template-columns: repeat(5, 1fr); }
    .hex-cluster {
        --hex-size: clamp(140px, 34vw, 220px);
        width: calc(var(--hex-size) * 3);
        height: calc(var(--hex-size) * 3);
    }
    .hero-meta { gap: 0.6rem; font-size: 0.7rem; }
    .hud-bracket { width: 28px; height: 28px; }
}

@media (max-width: 600px) {
    .hero-mosaic { grid-template-columns: repeat(4, 1fr); gap: 2px; padding: 2px; }
    .hex-cluster {
        --hex-size: 40vw;
        width: calc(var(--hex-size) * 2.9);
        height: calc(var(--hex-size) * 2.9);
    }
    .hex-eyebrow { font-size: 0.62rem; }
    .hex-body { font-size: 0.7rem; max-width: 90%; }
    .hero-meta { position: static; margin-top: 2rem; flex-direction: column; }
    .terminal-body { font-size: 0.75rem; padding: 1rem; }
}
