/* =============================================================
   scientific.quest — generative-art / aurora gradient on deep space
   Palette:
     #0A0F1A  primary background  (deep space)
     #111827  secondary panel
     #1F2937  tertiary surface
     #E5E7EB  primary text
     #00F0FF  accent cyan
     #7B61FF  accent violet
     #34D399  accent emerald
     #F59E0B  warning amber
   ============================================================= */

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: #0A0F1A;
    color: #E5E7EB;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.75;
    font-feature-settings: "tnum" 1, "ss01" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(60% 40% at 18% 12%, rgba(123, 97, 255, 0.10), transparent 60%),
        radial-gradient(50% 35% at 82% 28%, rgba(0, 240, 255, 0.08), transparent 60%),
        radial-gradient(60% 50% at 50% 80%, rgba(52, 211, 153, 0.06), transparent 70%),
        #0A0F1A;
}

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

/* ---- Persistent canvas ---- */
.particle-canvas {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    background: transparent;
}

/* ---- Top bar ---- */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 50;
    background: linear-gradient(to bottom, rgba(10, 15, 26, 0.85), rgba(10, 15, 26, 0));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Syne', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.01em;
    color: #E5E7EB;
}

.brand-mark {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #00F0FF, #7B61FF 70%);
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.55);
    animation: pulse-mark 3.5s ease-in-out infinite;
}

@keyframes pulse-mark {
    0%, 100% { box-shadow: 0 0 8px rgba(0, 240, 255, 0.5); transform: scale(1); }
    50%      { box-shadow: 0 0 18px rgba(123, 97, 255, 0.7); transform: scale(1.08); }
}

.brand-dot { color: #00F0FF; }

.topnav {
    display: flex;
    gap: 28px;
}

.topnav a {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #E5E7EB;
    opacity: 0.65;
    transition: opacity 240ms ease, color 240ms ease, text-shadow 240ms ease;
    position: relative;
}

.topnav a::before {
    content: attr(data-section);
    color: #00F0FF;
    margin-right: 8px;
    opacity: 0.7;
}

.topnav a:hover {
    opacity: 1;
    color: #00F0FF;
    text-shadow: 0 0 12px rgba(0, 240, 255, 0.5);
}

.topbar-stamp {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #34D399;
    opacity: 0.7;
}

/* ---- Compass ---- */
.compass {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 60;
    width: 64px;
    height: 78px;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.compass svg { display: block; }

.compass-arc {
    transition: stroke-dashoffset 200ms linear;
    filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.45));
}

.compass-label {
    margin-top: 4px;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    color: #00F0FF;
}

/* ---- Sections ---- */
main {
    position: relative;
    z-index: 10;
    padding-top: 64px;
}

.section {
    position: relative;
    width: 100%;
    padding: 140px 0;
    z-index: 2;
}

.section-hero {
    min-height: 100vh;
    padding: 120px 64px 100px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.section-observation { background: linear-gradient(180deg, transparent 0%, rgba(17, 24, 39, 0.55) 14%, rgba(17, 24, 39, 0.55) 86%, transparent 100%); }
.section-hypothesis  { background: linear-gradient(180deg, transparent 0%, rgba(10, 15, 26, 0.55) 14%, rgba(10, 15, 26, 0.55) 86%, transparent 100%); }
.section-experiment  { background: linear-gradient(180deg, transparent 0%, rgba(17, 24, 39, 0.55) 14%, rgba(17, 24, 39, 0.55) 86%, transparent 100%); }
.section-discovery   { background: linear-gradient(180deg, transparent 0%, rgba(10, 15, 26, 0.55) 14%, rgba(10, 15, 26, 0.55) 86%, transparent 100%); }

/* ---- Hero ---- */
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.meta-chip {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 12px;
    border: 1px solid #1F2937;
    border-radius: 2px;
    background: rgba(17, 24, 39, 0.65);
    color: #E5E7EB;
}

.meta-chip:nth-child(1) { border-left: 2px solid #00F0FF; }
.meta-chip:nth-child(2) { border-left: 2px solid #7B61FF; }
.meta-chip:nth-child(3) { border-left: 2px solid #34D399; }

.hero-title {
    font-family: 'Syne', 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(48px, 9vw, 128px);
    line-height: 1.0;
    letter-spacing: -0.04em;
    margin: 0 0 28px 0;
    background: linear-gradient(135deg, #00F0FF 0%, #7B61FF 60%, #34D399 110%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: flex;
    flex-wrap: wrap;
}

.hero-letter {
    display: inline-block;
    transition: transform 600ms cubic-bezier(0.22, 0.61, 0.36, 1), opacity 1200ms ease;
}

.hero-dot {
    color: #00F0FF;
    -webkit-text-fill-color: #00F0FF;
}

.hero-rule {
    display: block;
    height: 1px;
    width: 0;
    background: #00F0FF;
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.55);
    margin: 8px 0 36px 2px;
    transition: width 500ms ease 1300ms;
}

body.loaded .hero-rule { width: 240px; }

.hero-sub {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.65;
    color: #E5E7EB;
    max-width: 620px;
    margin: 0 0 48px 0;
    opacity: 0.85;
}

.hero-coords {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #E5E7EB;
    opacity: 0.7;
}

.hero-coords em {
    font-style: normal;
    color: #34D399;
    margin-right: 8px;
}

.hero-scrollcue {
    position: absolute;
    bottom: 36px;
    left: 64px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #00F0FF;
    opacity: 0;
    transition: opacity 600ms ease 1700ms;
}

body.loaded .hero-scrollcue { opacity: 0.85; }

.hero-scrollcue svg { animation: cue-bob 2.4s ease-in-out infinite; }

@keyframes cue-bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(8px); }
}

/* ---- Loading state for hero letters (crystallisation effect) ---- */
body.loading .hero-title { opacity: 0; }
body.loaded  .hero-title { opacity: 1; transition: opacity 1200ms ease; }

body.loading .hero-letter {
    opacity: 0;
}

body.loaded .hero-letter {
    opacity: 1;
}

/* ---- Data corridor (ticker tape) ---- */
.data-corridor {
    position: relative;
    height: 48px;
    width: 100vw;
    background: #1F2937;
    overflow: hidden;
    border-top: 1px solid rgba(0, 240, 255, 0.12);
    border-bottom: 1px solid rgba(0, 240, 255, 0.12);
    z-index: 5;
}

.ticker-track {
    display: flex;
    align-items: center;
    height: 100%;
    width: max-content;
    animation: ticker-scroll 60s linear infinite;
    will-change: transform;
}

.data-corridor[data-speed="48"] .ticker-track { animation-duration: 48s; }
.data-corridor[data-speed="56"] .ticker-track { animation-duration: 56s; }
.data-corridor[data-speed="60"] .ticker-track { animation-duration: 60s; }
.data-corridor[data-speed="80"] .ticker-track { animation-duration: 80s; }

.data-corridor-reverse .ticker-track { animation-direction: reverse; }

.data-corridor:hover .ticker-track {
    animation-duration: 240s;
    transition: animation-duration 1s ease;
}

@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.ticker-set {
    display: inline-flex;
    align-items: center;
    gap: 56px;
    padding-right: 56px;
    white-space: nowrap;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.06em;
    color: #E5E7EB;
    opacity: 0.85;
}

.ticker-set span { color: #E5E7EB; }
.ticker-set span:nth-child(3n)   { color: #00F0FF; }
.ticker-set span:nth-child(5n+1) { color: #7B61FF; }
.ticker-set span:nth-child(7n+2) { color: #34D399; }
.ticker-set span:nth-child(11n+4){ color: #F59E0B; }

/* ---- Broken grid ---- */
.grid-broken {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 64px;
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    grid-auto-rows: minmax(40px, auto);
    gap: 24px;
}

.grid-broken-alt { grid-template-rows: auto auto auto auto; }

.panel {
    position: relative;
    background: #111827;
    padding: 40px 36px;
    z-index: 1;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(31, 41, 55, 0.8);
}

.panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(120% 80% at 0% 0%, rgba(0, 240, 255, 0.04), transparent 55%),
                radial-gradient(120% 80% at 100% 100%, rgba(123, 97, 255, 0.04), transparent 55%);
}

.tilt-left  { transform: rotate(-0.8deg); }
.tilt-right { transform: rotate(0.8deg); }

.bleed-left  { margin-left: -64px; padding-left: 88px; }
.bleed-right { margin-right: -64px; padding-right: 88px; }

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 700ms ease-out, transform 700ms ease-out;
}

.reveal[data-side="left"]  { transform: translate3d(-30px, 40px, 0); }
.reveal[data-side="right"] { transform: translate3d(30px, 40px, 0); }

.reveal.in-view {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.reveal.in-view.tilt-left  { transform: translate3d(0, 0, 0) rotate(-0.8deg); }
.reveal.in-view.tilt-right { transform: translate3d(0, 0, 0) rotate(0.8deg); }

/* ---- Panel placement (broken grid spans) ---- */
.panel-a { grid-column: 1 / span 7;  grid-row: 1 / span 2; }
.panel-b { grid-column: 9 / span 8;  grid-row: 1 / span 2; margin-top: 60px; }
.panel-c { grid-column: 4 / span 9;  grid-row: 3 / span 1; margin-top: -40px; }

.panel-d { grid-column: 1 / span 9;  grid-row: 1 / span 1; }
.panel-e { grid-column: 8 / span 9;  grid-row: 2 / span 2; margin-top: -32px; }
.panel-f { grid-column: 1 / span 7;  grid-row: 3 / span 1; margin-top: 60px; }

.panel-g { grid-column: 1 / span 7;  grid-row: 1 / span 2; }
.panel-h { grid-column: 8 / span 9;  grid-row: 1 / span 2; margin-top: 40px; }
.panel-i { grid-column: 2 / span 11; grid-row: 3 / span 1; margin-top: -20px; }

.panel-j { grid-column: 1 / span 9;  grid-row: 1 / span 1; }
.panel-k { grid-column: 9 / span 8;  grid-row: 2 / span 2; margin-top: -40px; }
.panel-l { grid-column: 1 / span 7;  grid-row: 3 / span 1; margin-top: 80px; }
.panel-m { grid-column: 8 / span 8;  grid-row: 4 / span 1; margin-top: -20px; }

/* ---- Panel content typography ---- */
.panel-tag {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #34D399;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Syne', 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #E5E7EB;
    margin: 0 0 24px 0;
}

.lede {
    font-size: 17px;
    line-height: 1.7;
    color: #E5E7EB;
    opacity: 0.92;
    margin: 0 0 16px 0;
    max-width: 56ch;
}

.panel p {
    font-size: 15px;
    line-height: 1.75;
    color: #E5E7EB;
    opacity: 0.78;
    margin: 0 0 14px 0;
    max-width: 56ch;
}

.micro-list {
    list-style: none;
    margin: 28px 0 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.micro-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #E5E7EB;
    opacity: 0.85;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex: 0 0 8px;
}

.dot-cyan    { background: #00F0FF; box-shadow: 0 0 8px rgba(0, 240, 255, 0.55); }
.dot-violet  { background: #7B61FF; box-shadow: 0 0 8px rgba(123, 97, 255, 0.55); }
.dot-emerald { background: #34D399; box-shadow: 0 0 8px rgba(52, 211, 153, 0.55); }

/* ---- Data viz ---- */
.dataviz {
    width: 100%;
    height: auto;
    display: block;
    background: #0A0F1A;
    border: 1px solid #1F2937;
    margin-bottom: 14px;
}

.dataviz-caption {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.06em;
    color: #E5E7EB;
    opacity: 0.6;
    text-transform: uppercase;
}

.scatter-points circle {
    transform-origin: center;
    transform-box: fill-box;
}

/* ---- Logbook ---- */
.logbook {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    line-height: 1.7;
    color: #34D399;
    background: #0A0F1A;
    border-left: 2px solid #34D399;
    padding: 18px 20px;
    margin: 0;
    white-space: pre;
    overflow-x: auto;
}

/* ---- Hypothesis list ---- */
.hypothesis-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hypothesis-list li {
    display: grid;
    grid-template-columns: 56px 1fr 100px;
    gap: 16px;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid #1F2937;
}

.hypothesis-list li:first-child { border-top: none; }

.hyp-id {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: #00F0FF;
    letter-spacing: 0.08em;
}

.hyp-text {
    font-size: 14px;
    line-height: 1.55;
    color: #E5E7EB;
    opacity: 0.9;
}

.hyp-status {
    justify-self: end;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    border: 1px solid currentColor;
}

.status-cyan    { color: #00F0FF; }
.status-violet  { color: #7B61FF; }
.status-emerald { color: #34D399; }
.status-amber   { color: #F59E0B; }

/* ---- Method grid ---- */
.method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #1F2937;
    border: 1px solid #1F2937;
}

.method-cell {
    background: #0A0F1A;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.method-label {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #34D399;
    opacity: 0.85;
}

.method-value {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #E5E7EB;
    font-weight: 500;
    font-feature-settings: "tnum" 1;
}

/* ---- Conclusion / link ---- */
.conclusion {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.65;
    color: #E5E7EB;
    opacity: 0.92;
    max-width: 50ch;
    margin: 0 0 28px 0;
}

.quest-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #00F0FF;
    padding: 12px 18px;
    border: 1px solid #00F0FF;
    transition: box-shadow 300ms ease, color 300ms ease, background 300ms ease;
}

.quest-link:hover {
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.3), inset 0 0 12px rgba(0, 240, 255, 0.08);
    background: rgba(0, 240, 255, 0.04);
}

/* ---- Colophon ---- */
.colophon {
    margin: 0;
    display: grid;
    grid-template-columns: 100px 1fr;
    row-gap: 16px;
    column-gap: 24px;
}

.colophon dt {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #34D399;
}

.colophon dd {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #E5E7EB;
    opacity: 0.92;
}

.swatch {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 6px;
    border: 1px solid #1F2937;
    vertical-align: middle;
}

/* ---- Footer ---- */
.site-footer {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 64px 64px 80px 64px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #E5E7EB;
    opacity: 0.6;
}

.footer-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, #1F2937, #7B61FF, #1F2937);
    opacity: 0.6;
}

/* ---- Floating ambient shapes ---- */
.ambient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.float-shape {
    position: absolute;
    opacity: 0.18;
    will-change: transform;
}

.shape-circle   { width: 14px; height: 14px; border-radius: 50%; background: #00F0FF; }
.shape-triangle { width: 0; height: 0; border-left: 8px solid transparent; border-right: 8px solid transparent; border-bottom: 14px solid #7B61FF; opacity: 0.14; }
.shape-hex      { width: 14px; height: 14px; background: #34D399; clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%); opacity: 0.12; }

.s1 { top: 14%; left: 8%;  animation: drift-a 28s ease-in-out infinite; }
.s2 { top: 32%; left: 78%; animation: drift-b 36s ease-in-out infinite; }
.s3 { top: 58%; left: 12%; animation: drift-c 22s ease-in-out infinite; }
.s4 { top: 72%; left: 64%; animation: drift-a 40s ease-in-out infinite; animation-delay: -10s; }
.s5 { top: 18%; left: 52%; animation: drift-b 26s ease-in-out infinite; animation-delay: -6s; }
.s6 { top: 86%; left: 30%; animation: drift-c 32s ease-in-out infinite; animation-delay: -12s; }
.s7 { top: 44%; left: 88%; animation: drift-a 18s ease-in-out infinite; animation-delay: -4s; }
.s8 { top: 64%; left: 44%; animation: drift-b 30s ease-in-out infinite; animation-delay: -8s; }

@keyframes drift-a {
    0%   { transform: translate(0,0) rotate(0deg); }
    50%  { transform: translate(30px, -40px) rotate(80deg); }
    100% { transform: translate(0,0) rotate(0deg); }
}

@keyframes drift-b {
    0%   { transform: translate(0,0) rotate(0deg); }
    50%  { transform: translate(-40px, 30px) rotate(-110deg); }
    100% { transform: translate(0,0) rotate(0deg); }
}

@keyframes drift-c {
    0%   { transform: translate(0,0) rotate(0deg); }
    50%  { transform: translate(20px, 50px) rotate(60deg); }
    100% { transform: translate(0,0) rotate(0deg); }
}

/* ---- Network nodes/edges ---- */
.net-node {
    transition: r 200ms ease;
}

.net-edge {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    transition: stroke-dashoffset 900ms ease;
}

.in-view .net-edge {
    stroke-dashoffset: 0;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .grid-broken {
        padding: 0 32px;
    }
    .panel-a, .panel-b, .panel-c,
    .panel-d, .panel-e, .panel-f,
    .panel-g, .panel-h, .panel-i,
    .panel-j, .panel-k, .panel-l, .panel-m {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
        margin-top: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .bleed-left, .bleed-right {
        margin-left: -32px !important;
        margin-right: -32px !important;
        padding-left: 56px;
        padding-right: 56px;
    }
    .topnav { display: none; }
    .section-hero { padding: 100px 32px 80px; }
    .hero-scrollcue { left: 32px; }
    .site-footer { padding: 40px 32px; flex-wrap: wrap; }
    .method-grid { grid-template-columns: repeat(2, 1fr); }
    .colophon { grid-template-columns: 80px 1fr; }
    .hypothesis-list li { grid-template-columns: 48px 1fr; }
    .hyp-status { grid-column: 2; justify-self: start; margin-top: 4px; }
    .tilt-left, .tilt-right { transform: none; }
    .reveal.in-view.tilt-left, .reveal.in-view.tilt-right { transform: translate3d(0,0,0); }
}

@media (max-width: 600px) {
    .hero-title { font-size: 44px; letter-spacing: -0.03em; }
    .hero-meta { gap: 8px; }
    .meta-chip { font-size: 9px; padding: 5px 10px; }
    .panel { padding: 28px 22px; }
    .topbar-stamp { display: none; }
    .compass { bottom: 16px; right: 16px; }
}
