/* ============================================
   NEURAPHIC — Pearl gray + Rich black
   Space Grotesk + Inter
   ============================================ */

:root {
    --bg:       #f0f1f3;
    --black:    #131314;
    --gray:     #6b7280;
    --head:     'Space Grotesk', -apple-system, system-ui, sans-serif;
    --sans:     'Inter', -apple-system, system-ui, sans-serif;
    --w:        1280px;
    --nav-h:    64px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale }
body { font-family: var(--sans); background: var(--bg); color: var(--gray); font-size: 16px; line-height: 1.7; overflow-x: hidden }
a { color: inherit; text-decoration: none }
img, video, svg { display: block; max-width: 100% }
button { font-family: inherit; cursor: pointer; border: none; background: none }
.wrap { max-width: var(--w); margin: 0 auto; padding: 0 clamp(24px, 4vw, 48px) }

/* Dark page */
.page--dark { background: #0e0e10; color: #9ca3af }
.page--dark .header--s { background: rgba(14,14,16,0.92); border-bottom-color: rgba(255,255,255,0.06) }
.page--dark .nav__name { color: #f0f1f3 }
.page--dark .nav__links a { color: #f0f1f3 }
.page--dark .nav__cta { background: #f0f1f3; color: #0e0e10 }
.page--dark .nav__cta:hover { background: #d5d6d9 }
.page--dark .burger span { background: #f0f1f3 }
.page--dark .mobile-menu { background: #0e0e10 }
.page--dark .mobile-menu a { color: #f0f1f3; border-bottom-color: rgba(255,255,255,0.06) }
.page--dark .mobile-menu hr { border-top-color: rgba(255,255,255,0.06) }
.page--dark .preloader { background: #0e0e10 }
.page--dark .preloader__text { color: #f0f1f3 }

/* ============================================
   NAV
   ============================================ */

.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: 80px; background: transparent;
    transition: background .25s, backdrop-filter .25s;
}
.header--s {
    background: rgba(240,241,243,0.88);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(19,19,20,0.06);
}
.nav {
    max-width: var(--w); margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 48px);
    height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav__right-group { display: flex; align-items: center; gap: 8px }
.nav__brand { display: flex; align-items: center; padding: 6px 4px 6px 0; transition: opacity .2s }
.nav__brand:hover { opacity: 0.6 }
.nav__name { font-family: var(--head); font-size: 22px; font-weight: 700; color: var(--black); letter-spacing: -0.03em; text-transform: uppercase }
.nav__links { display: flex; gap: 0 }
.nav__links a { font-size: 15px; font-weight: 500; color: var(--black); padding: 10px 20px; transition: opacity .2s }
.nav__links a:hover { opacity: 0.6 }
.nav__cta { display: inline-flex; align-items: center; background: var(--black); color: var(--bg); border-radius: 8px; font-size: 14px; font-weight: 500; padding: 8px 16px; transition: background .2s }
.nav__cta:hover { background: #2a2a2e }
.burger { display: none; flex-direction: column; gap: 4px; padding: 8px }
.burger span { width: 18px; height: 1.5px; background: var(--black); transition: all .2s }
.mobile-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0; background: var(--bg); z-index: 99; padding: 24px; flex-direction: column; overflow-y: auto }
.mobile-menu.active { display: flex }
.mobile-menu a { font-size: 16px; font-weight: 500; color: var(--black); padding: 16px 0; border-bottom: 1px solid rgba(19,19,20,0.08) }
.mobile-menu hr { border: none; border-top: 1px solid rgba(19,19,20,0.08); margin: 8px 0 }

/* ============================================
   HERO — Two-column editorial
   ============================================ */

.hero {
    padding-top: calc(var(--nav-h) + clamp(80px, 14vh, 160px));
    padding-bottom: clamp(60px, 10vh, 120px);
}

.hero__layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: clamp(48px, 6vw, 96px);
    align-items: end;
}

.hero__title {
    font-family: var(--head);
    font-size: clamp(40px, 5.5vw, 76px);
    font-weight: 700;
    color: var(--black);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.hero__u {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.hero__right {
    padding-bottom: 6px;
}

.hero__desc {
    font-family: var(--sans);
    font-size: clamp(16px, 1.5vw, 19px);
    color: var(--black);
    line-height: 1.65;
    font-weight: 400;
}

/* Divider */
.divider {
    border: none;
    border-top: 1px solid rgba(19,19,20,0.08);
    margin: 0 clamp(24px, 4vw, 48px);
    max-width: calc(var(--w) - clamp(48px, 8vw, 96px));
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   FEATURED — Dark editorial (like Project Glasswing)
   ============================================ */

.featured {
    background: var(--black);
}

.featured__inner {
    padding: clamp(80px, 12vh, 140px) 0;
}

.featured__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 6vw, 80px);
    align-items: center;
}

.featured__label {
    display: block;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.3);
    margin-bottom: 24px;
}

.featured__title {
    font-family: var(--head);
    font-size: clamp(56px, 8vw, 120px);
    font-weight: 700;
    color: var(--bg);
    letter-spacing: -0.05em;
    line-height: 0.95;
    margin-bottom: 24px;
}

.featured__sub {
    font-family: var(--sans);
    font-size: clamp(15px, 1.5vw, 18px);
    color: rgba(255,255,255,0.4);
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 380px;
}

.featured__link {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    transition: color .2s;
}

.featured__link:hover { color: var(--bg) }

.featured__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured__svg {
    width: 100%;
    max-width: 480px;
    height: auto;
}

/* ============================================
   LATEST
   ============================================ */

.latest {
    padding: clamp(60px, 10vh, 100px) 0;
}

.latest__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(19,19,20,0.08);
}

.latest__item {
    padding: clamp(24px, 3vh, 36px) 0;
    display: flex;
    flex-direction: column;
    transition: opacity .2s;
}

.latest__item:hover { opacity: 0.7 }

.latest__item:not(:last-child) {
    padding-right: clamp(20px, 3vw, 36px);
    margin-right: clamp(20px, 3vw, 36px);
    border-right: 1px solid rgba(19,19,20,0.08);
}

.latest__date {
    display: block;
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 10px;
}

.latest__title {
    font-family: var(--head);
    font-size: clamp(16px, 1.5vw, 19px);
    font-weight: 600;
    color: var(--black);
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-bottom: 8px;
}

.latest__desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    flex: 1;
}

.latest__link {
    font-size: 13px;
    font-weight: 500;
    color: var(--black);
    margin-top: 16px;
}

/* ============================================
   MISSION — Two-column with links
   ============================================ */

.mission {
    padding: clamp(60px, 10vh, 100px) 0 clamp(80px, 12vh, 140px);
    border-top: 1px solid rgba(19,19,20,0.08);
}

.mission__layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(48px, 6vw, 96px);
    align-items: start;
}

.mission__text {
    font-family: var(--head);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    color: var(--black);
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.mission__links {
    display: flex;
    flex-direction: column;
}

.mission__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(19,19,20,0.08);
    transition: padding-left .2s, opacity .2s;
}

.mission__link:last-child {
    border-bottom: 1px solid rgba(19,19,20,0.08);
}

.mission__link:hover {
    padding-left: 8px;
}

.mission__link-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
}

.mission__link-arrow {
    font-size: 18px;
    color: var(--black);
    transition: transform .2s;
    margin-left: 24px;
    flex-shrink: 0;
}

.mission__link:hover .mission__link-arrow {
    transform: translateX(4px);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--black);
    padding: clamp(64px, 8vh, 100px) 0 clamp(32px, 4vh, 48px);
}
.footer__main {
    display: grid;
    grid-template-columns: 160px repeat(4, 1fr);
    gap: clamp(24px, 3vw, 40px);
    margin-bottom: clamp(48px, 6vh, 80px);
}
.footer__brand-col { display: flex; flex-direction: column; align-items: flex-start }
.footer__logo { font-family: var(--head); font-size: 22px; font-weight: 700; color: var(--bg); letter-spacing: 0.08em; text-transform: uppercase }
.footer__col h5 { font-size: 13px; font-weight: 600; color: var(--bg); margin-bottom: 16px }
.footer__col-sep { margin-top: 28px }
.footer__col a { display: block; font-size: 13px; color: var(--gray); padding: 4px 0; transition: color .2s; line-height: 1.6 }
.footer__col a:hover { color: var(--bg) }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: clamp(24px, 3vh, 36px); border-top: 1px solid rgba(255,255,255,0.06); gap: 16px; flex-wrap: wrap }
.footer__copy { font-size: 12px; color: var(--gray) }
.footer__social { display: flex; gap: 18px }
.footer__social a { color: var(--gray); transition: color .2s }
.footer__social a:hover { color: var(--bg) }

/* ============================================
   SUBPAGES
   ============================================ */

.page-hero { padding-top: calc(var(--nav-h) + clamp(80px, 12vh, 140px)); padding-bottom: clamp(40px, 6vh, 80px) }
.page-hero__title { font-family: var(--head); font-size: clamp(40px, 6vw, 72px); font-weight: 700; color: var(--black); letter-spacing: -0.04em; line-height: 1.08; margin-bottom: 20px }
.page-hero__sub { font-size: clamp(16px, 1.8vw, 20px); color: var(--gray); max-width: 620px; line-height: 1.7 }
.page-content { padding-bottom: clamp(80px, 12vh, 160px) }
.page-content .wrap { max-width: 820px }
.page-section { margin-bottom: 56px }
.page-section:last-child { margin-bottom: 0 }
.page-section h2 { font-family: var(--head); font-size: clamp(22px, 2.5vw, 30px); font-weight: 700; color: var(--black); letter-spacing: -0.02em; margin-bottom: 16px }
.page-section h3 { font-family: var(--head); font-size: clamp(18px, 2vw, 22px); font-weight: 600; color: var(--black); margin-bottom: 12px; margin-top: 32px }
.page-section p { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 16px }
.page-section ul { list-style: none; padding: 0; margin-bottom: 16px }
.page-section ul li { font-size: 16px; color: var(--gray); line-height: 1.8; padding-left: 20px; position: relative; margin-bottom: 6px }
.page-section ul li::before { content: ''; position: absolute; left: 0; top: 12px; width: 5px; height: 5px; border-radius: 50%; background: var(--gray) }
.page-section a { color: var(--black); font-weight: 500; border-bottom: 1px solid rgba(19,19,20,0.2); transition: border-color .2s }
.page-section a:hover { border-color: var(--black) }
.page-section strong { color: var(--black); font-weight: 600 }

/* ============================================
   NEWS PAGE — Newsroom
   ============================================ */

.news-hero {
    padding-top: calc(var(--nav-h) + clamp(80px, 14vh, 140px));
    padding-bottom: clamp(40px, 6vh, 60px);
}

.news-hero__layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: clamp(48px, 6vw, 96px);
    align-items: start;
}

.news-hero__title {
    font-family: var(--head);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.04em;
}

.news-hero__contact { margin-bottom: 16px }
.news-hero__contact-label { font-size: 13px; color: var(--gray); margin-bottom: 2px }
.news-hero__contact-value { font-size: 14px; font-weight: 500; color: var(--black); border-bottom: 1px solid rgba(19,19,20,0.15); transition: border-color .2s }
.news-hero__contact-value:hover { border-color: var(--black) }

/* Featured highlight card */
.news-highlight {
    padding-bottom: clamp(48px, 6vh, 72px);
}

.news-highlight__card {
    display: block;
    background: #e6e7e9;
    border-radius: 16px;
    padding: clamp(36px, 5vw, 56px);
    transition: background .2s;
}

.news-highlight__card:hover { background: #dddee1 }

.news-highlight__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray);
    margin-bottom: 16px;
}

.news-highlight__title {
    font-family: var(--head);
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.news-highlight__desc {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.75;
    max-width: 640px;
}

/* News table */
.news-table {
    padding-bottom: clamp(80px, 12vh, 140px);
}

.news-table__list {
    display: flex;
    flex-direction: column;
}

.news-table__row {
    display: grid;
    grid-template-columns: 110px 90px 1fr;
    gap: clamp(16px, 2vw, 32px);
    align-items: baseline;
    padding: clamp(16px, 2vh, 22px) 0;
    border-top: 1px solid rgba(19,19,20,0.08);
    transition: padding-left .2s;
}

.news-table__row:last-child {
    border-bottom: 1px solid rgba(19,19,20,0.08);
}

.news-table__row:hover { padding-left: 8px }

.news-table__date {
    font-size: 13px;
    color: var(--gray);
    white-space: nowrap;
}

.news-table__cat {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray);
    white-space: nowrap;
}

.news-table__title {
    font-family: var(--head);
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    letter-spacing: -0.01em;
}

/* ============================================
   ARTICLE (individual news post)
   ============================================ */

.article {
    padding-top: calc(var(--nav-h) + clamp(60px, 10vh, 100px));
    padding-bottom: clamp(80px, 12vh, 140px);
}

.article__wrap {
    max-width: 720px;
}

.article__back {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    margin-bottom: 32px;
    transition: color .2s;
}

.article__back:hover { color: var(--black) }

.article__date {
    display: block;
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 16px;
}

.article__title {
    font-family: var(--head);
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.035em;
    line-height: 1.1;
    margin-bottom: clamp(40px, 6vh, 64px);
}

.article__body h2 {
    font-family: var(--head);
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.02em;
    margin-top: 48px;
    margin-bottom: 16px;
}

.article__body p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.85;
    margin-bottom: 20px;
}

.article__body p a {
    color: var(--black);
    font-weight: 500;
    border-bottom: 1px solid rgba(19,19,20,0.2);
    transition: border-color .2s;
}

.article__body p a:hover { border-color: var(--black) }

.article__body strong { color: var(--black); font-weight: 600 }

/* Components */
.status-item { display: flex; align-items: center; gap: 12px; padding: 16px 0; border-bottom: 1px solid rgba(19,19,20,0.08) }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; flex-shrink: 0 }
.status-name { font-size: 16px; font-weight: 500; color: var(--black) }
.status-label { font-size: 14px; color: var(--gray); margin-left: auto }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 32px }
.pricing-card { background: #e6e7e9; border-radius: 14px; padding: 32px }
.pricing-card h3 { font-family: var(--head); font-size: 22px; font-weight: 700; color: var(--black); margin-bottom: 8px; margin-top: 0 }
.pricing-card .pricing-desc { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 24px }
.pricing-card .pricing-cta { display: inline-flex; font-size: 14px; font-weight: 500; color: var(--black); border-bottom: 1px solid rgba(19,19,20,0.2); padding: 0; transition: border-color .2s }
.pricing-card .pricing-cta:hover { border-color: var(--black) }
.changelog-entry { padding: 24px 0; border-bottom: 1px solid rgba(19,19,20,0.08) }
.changelog-date { font-size: 13px; font-weight: 500; color: var(--gray); margin-bottom: 8px }
.changelog-title { font-family: var(--head); font-size: 20px; font-weight: 600; color: var(--black); margin-bottom: 8px }
.changelog-desc { font-size: 15px; color: var(--gray); line-height: 1.7 }
.post-list { display: flex; flex-direction: column }
.post-item { display: block; padding: 24px 0; border-bottom: 1px solid rgba(19,19,20,0.08); transition: opacity .2s }
.post-item:hover { opacity: 0.7 }
.post-date { font-size: 13px; color: var(--gray); margin-bottom: 6px }
.post-title { font-family: var(--head); font-size: 20px; font-weight: 600; color: var(--black); margin-bottom: 6px }
.post-excerpt { font-size: 15px; color: var(--gray); line-height: 1.6 }
.docs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 32px }
.docs-card { background: #e6e7e9; border-radius: 14px; padding: 28px; transition: background .2s }
.docs-card:hover { background: #dddee1 }
.docs-card h3 { font-family: var(--head); font-size: 18px; font-weight: 600; color: var(--black); margin-bottom: 8px; margin-top: 0 }
.docs-card p { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 0 }
.console-btn { display: inline-flex; font-size: 15px; font-weight: 500; padding: 12px 28px; border-radius: 100px; background: var(--black); color: var(--bg); transition: background .2s; margin-top: 24px }
.console-btn:hover { background: #2a2a2e }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin: 32px 0 }
.feature-card { background: #e6e7e9; border-radius: 14px; padding: 28px; transition: background .2s }
.feature-card:hover { background: #dddee1 }
.feature-card h3 { font-family: var(--head); font-size: 18px; font-weight: 600; color: var(--black); margin-bottom: 8px; margin-top: 0 }
.feature-card p { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 0 }
.code-block { background: var(--black); color: #e6e7e9; font-family: 'SF Mono', 'Fira Code', monospace; font-size: 14px; padding: 24px; border-radius: 12px; overflow-x: auto; line-height: 1.7; margin: 16px 0 24px }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 40px }
.contact-item h3 { font-family: var(--head); font-size: 18px; font-weight: 600; color: var(--black); margin-bottom: 8px }
.contact-item p { font-size: 15px; color: var(--gray); margin-bottom: 8px }
.contact-item a { color: var(--black); font-weight: 500 }

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 960px) {
    .nav__links, .nav__right-group { display: none }
    .burger { display: flex }
    .hero { padding-top: calc(var(--nav-h) + 80px); padding-bottom: 60px }
    .hero__layout { grid-template-columns: 1fr; gap: 24px }
    .hero__right { padding-bottom: 0 }
    .hero__desc { font-size: 16px }
    .featured__layout { grid-template-columns: 1fr; gap: 40px }
    .featured__visual { max-width: 300px; margin: 0 auto }
    .featured__title { font-size: clamp(48px, 10vw, 80px) !important }
    .news-hero__layout { grid-template-columns: 1fr }
    .news-hero__sidebar { border-top: 1px solid rgba(19,19,20,0.08); padding-top: 24px }
    .news-table__row { grid-template-columns: 1fr; gap: 4px }
    .news-table__cat { display: none }
    .latest__grid { grid-template-columns: 1fr }
    .latest__item:not(:last-child) { border-right: none; padding-right: 0; margin-right: 0; border-bottom: 1px solid rgba(19,19,20,0.08) }
    .mission__layout { grid-template-columns: 1fr; gap: 32px }
    .article__wrap { max-width: 100% }
    .page-content .wrap { max-width: 100% }
    .footer__main { grid-template-columns: repeat(3, 1fr) }
    .footer__brand-col { grid-column: 1 / -1; margin-bottom: 8px }
}

/* Mobile */
@media (max-width: 640px) {
    .hero { padding-top: calc(var(--nav-h) + 60px); padding-bottom: 40px }
    .hero__title { font-size: clamp(32px, 8vw, 48px) }
    .hero__desc { font-size: 15px; line-height: 1.6 }
    .featured__inner { padding: clamp(60px, 10vh, 80px) 0 }
    .featured__title { font-size: clamp(40px, 12vw, 64px) !important }
    .featured__sub { font-size: 14px }
    .featured__visual { max-width: 240px }
    .divider { margin: 0 20px }
    .latest__heading { font-size: 12px }
    .latest__title { font-size: 16px }
    .mission__text { font-size: clamp(22px, 6vw, 28px) }
    .mission__link { padding: 16px 0 }
    .mission__link-title { font-size: 14px }
    .article__title { font-size: clamp(28px, 7vw, 40px) }
    .article__body h2 { font-size: clamp(18px, 5vw, 22px) }
    .article__body p { font-size: 15px }
    .news-highlight__title { font-size: clamp(20px, 6vw, 28px) }
    .news-highlight__card { padding: 28px }
    .news-table__row { padding: 14px 0 }
    .news-table__title { font-size: 15px }
    .page-section h2 { font-size: clamp(20px, 5vw, 24px) }
    .page-section p { font-size: 15px }
    .footer { padding: 48px 0 32px }
    .footer__main { grid-template-columns: 1fr 1fr; gap: 24px }
    .footer__brand-col { grid-column: 1 / -1; margin-bottom: 8px }
    .footer__col h5 { font-size: 12px; margin-bottom: 12px }
    .footer__col a { font-size: 12px; padding: 3px 0 }
    .footer__col-sep { margin-top: 20px }
    .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px }
    .footer__copy { font-size: 11px }
    .contact-grid { grid-template-columns: 1fr; gap: 32px }
}

/* Small mobile (iPhone SE, Galaxy Fold) */
@media (max-width: 400px) {
    .wrap { padding: 0 16px }
    .hero__title { font-size: 28px }
    .featured__title { font-size: 36px !important }
    .footer__main { grid-template-columns: 1fr }
    .nav { padding: 0 16px }
}

/* Watch / ultra-small screens */
@media (max-width: 280px) {
    .hero__title { font-size: 22px; letter-spacing: -0.02em }
    .hero__desc { font-size: 13px }
    .nav__name { font-size: 18px }
    .featured__inner { padding: 40px 0 }
    .featured__title { font-size: 28px !important }
    .footer__col { display: none }
    .footer__brand-col { display: block }
    .footer__bottom { display: block }
}

/* Large screens / TV (1920px+) */
@media (min-width: 1920px) {
    :root { --w: 1400px }
    .hero__title { font-size: 88px }
    .featured__title { font-size: 128px !important }
    .article__body p { font-size: 17px }
}

/* Ultra-wide / 4K (2560px+) */
@media (min-width: 2560px) {
    :root { --w: 1600px }
    .hero__title { font-size: 96px }
    .footer__main { gap: 56px }
}

/* Print */
@media print {
    .header, .burger, .mobile-menu, .footer, .featured__visual { display: none }
    .hero { padding-top: 40px }
    body { color: #000; background: #fff }
    a { color: #000 }
}

::selection { background: rgba(19,19,20,0.12); color: var(--black) }
.page--dark ::selection { background: rgba(255,255,255,0.25); color: #f0f1f3 }
.featured ::selection, .products-dark ::selection { background: rgba(255,255,255,0.25); color: #f0f1f3 }
.footer ::selection { background: rgba(255,255,255,0.25); color: #f0f1f3 }
