/* ============================================================
   STYLE.CSS — Portfolio Landry Allard · BTS SIO SLAM
   ============================================================ */

:root {
    --bg:       #0d1117;
    --bg-card:  #161b22;
    --bg-alt:   #111318;
    --border:   #21262d;
    --fg:       #e6edf3;
    --fg-muted: #7d8590;
    --fg-soft:  #c9d1d9;
    --green:    #3fb950;
    --cyan:     #39c5cf;
    --accent:   #3fb950;

    --font:  'Sora', system-ui, sans-serif;
    --mono:  'JetBrains Mono', monospace;
    --r:     8px;
    --nav:   60px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--fg);
    line-height: 1.65;
    min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; background: none; border: none; color: inherit; }

/* ── Utilities ─────────────────────────────────────────── */
.section__label {
    font-family: var(--mono);
    font-size: .78rem;
    color: var(--accent);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* ── Nav ────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav);
    z-index: 100;
    display: flex;
    align-items: center;
    transition: background .3s, border-color .3s;
}
.nav--scrolled {
    background: rgba(13,17,23,.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}
.nav__inner {
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav__brand {
    font-weight: 600;
    font-size: .95rem;
    color: var(--fg);
    letter-spacing: -.01em;
}
.nav__links { display: flex; gap: 4px; }
.nav__links a {
    font-size: .84rem;
    color: var(--fg-muted);
    padding: 6px 12px;
    border-radius: 6px;
    transition: color .18s, background .18s;
}
.nav__links a:hover { color: var(--fg); background: rgba(255,255,255,.04); }

/* Burger */
.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}
.nav__burger span {
    width: 22px; height: 2px;
    background: var(--fg-muted);
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
    display: block;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer mobile */
.nav__drawer {
    position: fixed;
    top: var(--nav); left: 0; right: 0;
    background: rgba(13,17,23,.97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
    z-index: 99;
    padding: 8px 16px 16px;
    display: none;
}
.nav__drawer.open { display: block; }
.nav__drawer a {
    display: block;
    font-size: .9rem;
    color: var(--fg-muted);
    padding: 10px 12px;
    border-radius: 6px;
    transition: color .18s, background .18s;
}
.nav__drawer a:hover { color: var(--fg); background: rgba(255,255,255,.04); }

@media (max-width: 620px) {
    .nav__links { display: none; }
    .nav__burger { display: flex; }
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    position: relative;
    overflow: hidden;
    text-align: center;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(63,185,80,.07) 0%, transparent 70%);
}

.hero__inner { max-width: 720px; position: relative; z-index: 2; }

.hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(22,27,34,.6);
    font-family: var(--mono);
    font-size: .75rem;
    color: var(--fg-muted);
    margin-bottom: 36px;
    animation: fadeDown .55s .2s both;
}
.hero__dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2.2s infinite;
    flex-shrink: 0;
}

.hero__greeting {
    font-family: var(--mono);
    font-size: 1rem;
    color: var(--fg-muted);
    animation: fadeUp .55s .4s both;
    margin-bottom: 6px;
}
.hero__name {
    font-size: clamp(2.8rem, 9vw, 5rem);
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 1.08;
    animation: fadeUp .55s .55s both;
    margin-bottom: 14px;
}
.hero__role {
    font-family: var(--mono);
    font-size: clamp(.95rem, 2.5vw, 1.3rem);
    color: var(--accent);
    animation: fadeUp .55s .7s both;
    margin-bottom: 48px;
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    animation: fadeUp .55s .9s both;
}
.hero__scroll {
    position: absolute;
    bottom: 28px; left: 50%;
    transform: translateX(-50%);
    font-family: var(--mono);
    font-size: .7rem;
    color: var(--fg-muted);
    opacity: .5;
    animation: fadeUp .55s 1.2s both, bob 2.5s 2s ease-in-out infinite;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 22px;
    border-radius: var(--r);
    font-size: .85rem;
    font-weight: 500;
    transition: all .18s;
    line-height: 1;
}
.btn--fill { background: var(--accent); color: #0d1117; }
.btn--fill:hover { opacity: .85; }
.btn--ghost { border: 1px solid var(--border); color: var(--fg-soft); }
.btn--ghost:hover { border-color: rgba(63,185,80,.4); color: var(--accent); }

/* ── Sections ───────────────────────────────────────────── */
.section { padding: 88px 24px; }
.section--alt { background: var(--bg-alt); }
.section__inner { max-width: 980px; margin: 0 auto; }
.section__inner--center { text-align: center; }
.section__head { margin-bottom: 56px; }
.section__head h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -.03em;
}

/* ── Skills ─────────────────────────────────────────────── */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.skill-card {
    padding: 24px;
    border-radius: var(--r);
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: border-color .2s;
}
.skill-card:hover { border-color: rgba(63,185,80,.3); }
.skill-card__title {
    font-weight: 600;
    font-size: .95rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.skill-card__icon {
    font-family: var(--mono);
    font-size: .65rem;
    color: var(--accent);
    background: rgba(63,185,80,.08);
    border: 1px solid rgba(63,185,80,.15);
    border-radius: 5px;
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.skill-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 11px;
}
.skill-bar:last-child { margin-bottom: 0; }
.skill-bar span {
    font-family: var(--mono);
    font-size: .78rem;
    color: var(--fg-soft);
    width: 100px;
    flex-shrink: 0;
}
.bar {
    flex: 1;
    height: 5px;
    border-radius: 99px;
    background: rgba(255,255,255,.06);
    overflow: hidden;
}
.bar__fill {
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--green), var(--cyan));
    width: 0;
    transition: width .85s cubic-bezier(.4,0,.2,1);
}

/* ── Projects ───────────────────────────────────────────── */
.projects { display: flex; flex-direction: column; gap: 12px; }
.project {
    padding: 26px 28px;
    border-radius: var(--r);
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: border-color .2s, box-shadow .2s;
}
.project:hover {
    border-color: rgba(63,185,80,.35);
    box-shadow: 0 6px 30px rgba(63,185,80,.04);
}
.project__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.project__year {
    font-family: var(--mono);
    font-size: .73rem;
    color: var(--fg-muted);
}
.project__type {
    font-family: var(--mono);
    font-size: .72rem;
    color: var(--fg-muted);
    padding: 2px 8px;
    background: rgba(255,255,255,.05);
    border-radius: 4px;
}
.project h3 {
    font-size: 1.08rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 7px;
    transition: color .18s;
}
.project:hover h3 { color: var(--accent); }
.project__arrow {
    opacity: 0;
    color: var(--accent);
    transition: opacity .18s;
    flex-shrink: 0;
}
.project:hover .project__arrow { opacity: 1; }
.project p { color: var(--fg-muted); font-size: .9rem; max-width: 600px; }
.project__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.tags li {
    font-family: var(--mono);
    font-size: .72rem;
    color: var(--accent);
    padding: 3px 9px;
    border-radius: 4px;
    border: 1px solid rgba(63,185,80,.2);
    background: rgba(63,185,80,.05);
}
.project__links { display: flex; gap: 4px; }
.icon-link {
    padding: 7px;
    border-radius: 6px;
    color: var(--fg-muted);
    display: inline-flex;
    transition: background .18s, color .18s;
}
.icon-link:hover { background: rgba(255,255,255,.06); color: var(--fg); }

/* ── Contact ────────────────────────────────────────────── */
#contact .section__head h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}
.contact__desc {
    color: var(--fg-muted);
    font-size: 1rem;
    max-width: 420px;
    margin: 12px auto 36px;
}
.contact__btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
}
.contact__socials {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 60px;
}
.social {
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: var(--r);
    color: var(--fg-muted);
    display: inline-flex;
    transition: border-color .18s, color .18s;
}
.social:hover { border-color: var(--accent); color: var(--accent); }
.footer-note {
    font-family: var(--mono);
    font-size: .72rem;
    color: var(--fg-muted);
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

/* ── Topbar (competences page) ─────────────────────────── */
.topbar {
    position: sticky;
    top: 0; z-index: 90;
    height: var(--nav);
    background: rgba(13,17,23,.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
}
.topbar__inner {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.topbar__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--mono);
    font-size: .82rem;
    color: var(--fg-muted);
    transition: color .18s;
}
.topbar__back:hover { color: var(--accent); }
.topbar__sep {
    width: 1px; height: 18px;
    background: var(--border);
}
.topbar__title {
    font-family: var(--mono);
    font-size: .82rem;
    color: var(--fg-soft);
}

/* Comp header */
.comp-header { padding: 56px 24px 32px; }
.comp-header__inner { max-width: 1080px; margin: 0 auto; }
.comp-header h1 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -.03em;
    margin-bottom: 10px;
}
.comp-header p { color: var(--fg-muted); }

.comp-main {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px 88px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

/* Blocks */
.comp-block__head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.comp-block__head h2 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--fg-soft);
    padding-top: 2px;
}

/* Badges */
.badge {
    font-family: var(--mono);
    font-size: .75rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 5px;
    flex-shrink: 0;
}
.badge--green  { color: hsl(140,60%,55%); background: hsl(140 60% 55%/.1); border: 1px solid hsl(140 60% 55%/.2); }
.badge--cyan   { color: hsl(185,75%,52%); background: hsl(185 75% 52%/.1); border: 1px solid hsl(185 75% 52%/.2); }
.badge--red    { color: hsl(0,80%,62%);   background: hsl(0 80% 62%/.1);   border: 1px solid hsl(0 80% 62%/.2); }
.badge--yellow { color: hsl(45,100%,52%); background: hsl(45 100% 52%/.1); border: 1px solid hsl(45 100% 52%/.2); }
.badge--purple { color: hsl(270,90%,70%); background: hsl(270 90% 70%/.1); border: 1px solid hsl(270 90% 70%/.2); }
.badge--orange { color: hsl(28,100%,58%); background: hsl(28 100% 58%/.1); border: 1px solid hsl(28 100% 58%/.2); }

/* Grid */
.comp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
}
.comp-item {
    text-align: left;
    padding: 16px 18px;
    border-radius: var(--r);
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: border-color .2s, box-shadow .2s;
    width: 100%;
}
.comp-item:not(:disabled):hover {
    border-color: rgba(63,185,80,.4);
    box-shadow: 0 3px 16px rgba(63,185,80,.05);
}
.comp-item--disabled, .comp-item:disabled { opacity: .4; cursor: not-allowed; }
.comp-item__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 7px;
}
.comp-item__code {
    font-family: var(--mono);
    font-size: .73rem;
    color: var(--accent);
    font-weight: 600;
}
.comp-item__dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}
.comp-item__label {
    font-size: .86rem;
    font-weight: 500;
    color: var(--fg);
    line-height: 1.4;
    transition: color .18s;
}
.comp-item:not(:disabled):hover .comp-item__label { color: var(--accent); }
.comp-item__hint {
    font-family: var(--mono);
    font-size: .68rem;
    color: var(--fg-muted);
    margin-top: 7px;
    opacity: 0;
    transition: opacity .18s;
}
.comp-item:not(:disabled):hover .comp-item__hint { opacity: 1; }

/* ── Modal ──────────────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(0,0,0,.65);
    backdrop-filter: blur(8px);
    visibility: hidden;
    opacity: 0;
    transition: opacity .22s, visibility .22s;
}
.modal-overlay.open { visibility: visible; opacity: 1; }
.modal {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    box-shadow: 0 20px 70px rgba(0,0,0,.6);
    overflow: hidden;
    transform: translateY(14px) scale(.97);
    transition: transform .28s cubic-bezier(.34,1.48,.64,1);
}
.modal-overlay.open .modal { transform: none; }
.modal__bar {
    display: flex;
    align-items: center;
    padding: 9px 14px;
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,.02);
    gap: 10px;
}
.modal__dots { display: flex; gap: 5px; }
.modal__dots span { width: 11px; height: 11px; border-radius: 50%; }
.modal__dots span:nth-child(1) { background: rgba(255,95,86,.7); }
.modal__dots span:nth-child(2) { background: rgba(255,189,46,.7); }
.modal__dots span:nth-child(3) { background: rgba(39,201,63,.7); }
.modal__fname { font-family: var(--mono); font-size: .73rem; color: var(--fg-muted); flex: 1; }
.modal__close {
    padding: 4px;
    border-radius: 4px;
    display: inline-flex;
    color: var(--fg-muted);
    transition: background .18s, color .18s;
}
.modal__close:hover { background: rgba(255,255,255,.07); color: var(--fg); }
.modal__body { padding: 22px 24px 26px; }
.modal__badge-row {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 7px;
}
.modal__body h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 10px; }
.modal__body p { color: var(--fg-muted); line-height: 1.65; margin-bottom: 16px; }
.modal__meta {
    padding: 13px 15px;
    border-radius: 7px;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    font-family: var(--mono);
    font-size: .78rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.modal__row { display: flex; align-items: flex-start; gap: 10px; flex-wrap: wrap; }
.modal__key { color: var(--fg-muted); flex-shrink: 0; }
.modal__tool { color: var(--accent); margin-right: 6px; }
.modal__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 14px;
    font-family: var(--mono);
    font-size: .8rem;
    color: var(--accent);
    transition: opacity .18s;
}
.modal__link:hover { opacity: .7; }
.modal__img-label {
    font-family: var(--mono);
    font-size: .7rem;
    color: var(--fg-muted);
    margin: 16px 0 7px;
}
.modal__img {
    width: 100%;
    max-height: 65vh;
    object-fit: contain;
    border-radius: 5px;
    border: 1px solid var(--border);
    cursor: zoom-in;
    transition: transform .2s;
}
.modal__img:hover { transform: scale(1.01); }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.93);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    animation: fadeIn .16s ease;
}
.lightbox img {
    max-width: 94vw;
    max-height: 94vh;
    object-fit: contain;
    border-radius: 6px;
}

/* ── Animations ─────────────────────────────────────────── */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: none; }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: none; }
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .45; transform: scale(.8); }
}
@keyframes bob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(7px); }
}
@keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s ease-out, transform .55s ease-out;
}
.reveal.revealed { opacity: 1; transform: none; }

/* ── Parcours ────────────────────────────────────────────── */
.parcours-block {
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}
.parcours-block:last-child { border-bottom: none; }
.parcours-block__title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent);
    font-family: var(--mono);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.parcours-block__title::before {
    content: '//';
    color: var(--fg-muted);
    font-weight: 400;
}
.parcours-block__body {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.parcours-block__body p {
    color: var(--fg-soft);
    line-height: 1.75;
    font-size: .95rem;
}
.parcours-block__body strong { color: var(--fg); font-weight: 600; }
.parcours-block__note {
    font-size: .82rem !important;
    color: var(--fg-muted) !important;
    font-style: italic;
    padding-left: 12px;
    border-left: 2px solid var(--border);
}
.parcours-block__btn {
    align-self: flex-start;
    margin-top: 4px;
    font-size: .82rem;
    padding: 8px 16px;
}

/* ── Veille ─────────────────────────────────────────────── */
.veille-main {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px 88px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.veille-section__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.veille-section__head h2 {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -.02em;
}
.veille-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--mono);
    font-size: .72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 5px;
    flex-shrink: 0;
}
.veille-badge--neutral { color: var(--fg-muted); background: rgba(255,255,255,.05); border: 1px solid var(--border); }
.veille-badge--red    { color: hsl(0,80%,62%);   background: hsl(0 80% 62%/.1);   border: 1px solid hsl(0 80% 62%/.25); }
.veille-badge--yellow { color: hsl(45,100%,52%); background: hsl(45 100% 52%/.1); border: 1px solid hsl(45 100% 52%/.25); }
.veille-badge--green  { color: hsl(140,60%,55%); background: hsl(140 60% 55%/.1); border: 1px solid hsl(140 60% 55%/.25); }
.veille-card {
    padding: 22px 24px;
    border-radius: var(--r);
    border: 1px solid var(--border);
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.veille-card p { color: var(--fg-soft); line-height: 1.75; font-size: .95rem; }
.veille-card strong { color: var(--fg); font-weight: 600; }
.veille-btn { font-size: .84rem; padding: 9px 18px; align-self: flex-start; }
.veille-doc-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.veille-examples {
    margin-top: 10px;
    padding: 16px 20px;
    border-radius: var(--r);
    border: 1px dashed var(--border);
    background: rgba(255,255,255,.02);
}
.veille-examples__label {
    font-family: var(--mono);
    font-size: .7rem;
    color: var(--fg-muted);
    margin-bottom: 10px;
}
.veille-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.veille-tags span {
    font-family: var(--mono);
    font-size: .72rem;
    color: var(--accent);
    padding: 3px 9px;
    border-radius: 4px;
    border: 1px solid rgba(63,185,80,.2);
    background: rgba(63,185,80,.05);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 560px) {
    .section { padding: 60px 16px; }
    .hero__actions { flex-direction: column; align-items: center; }
    .skills-grid, .comp-grid { grid-template-columns: 1fr; }
    .project { padding: 20px 16px; }
    .comp-main { padding: 0 16px 60px; }
    .comp-header { padding: 40px 16px 24px; }
    .modal { margin: 8px; }
}
