/* =========================================================================
   Xyphros Studios — design tokens
   ========================================================================= */
:root {
    /* Color */
    --bg: #08070d;
    --bg-elevated: #0d0c15;
    --bg-card: #131120;
    --bg-card-hover: #17142a;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.15);

    --violet: #6d28f9;
    --magenta: #c026e8;
    --gradient: linear-gradient(135deg, var(--violet), var(--magenta));
    --gradient-soft: linear-gradient(135deg, rgba(109, 40, 249, 0.14), rgba(192, 38, 232, 0.14));

    --text: #f5f4f9;
    --text-muted: #a8a2bd;
    --text-faint: #6d6785;

    --online: #3ddc97;
    --beta: #ffc857;
    --soon: #8d85a8;
    --maintenance: #ff6b6b;

    /* Type */
    --font-display: 'Space Grotesk', 'Manrope', -apple-system, sans-serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

    /* Layout */
    --container: 1180px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --shadow-glow: 0 0 40px rgba(109, 40, 249, 0.16);
}

/* =========================================================================
   Reset & base
   ========================================================================= */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.15;
    margin: 0 0 0.5em;
}

p { margin: 0 0 1em; color: var(--text-muted); }

:focus-visible {
    outline: 2px solid var(--magenta);
    outline-offset: 3px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* =========================================================================
   Scroll reveal
   Progressive enhancement only: main.js adds .reveal + observes elements,
   then adds .is-visible once they enter the viewport. If JS never runs,
   nothing here applies and content is visible by default.
   ========================================================================= */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================================
   Smoother page-to-page navigation
   Native browser support only (no JS) — ignored entirely in browsers
   that don't yet support it, so there's no fallback to maintain.
   ========================================================================= */
@view-transition {
    navigation: auto;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 12.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 18px;
}
.eyebrow::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gradient);
    box-shadow: 0 0 8px rgba(192, 38, 232, 0.5);
}

.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--border-top { border-top: 1px solid var(--border); }

.text-center { text-align: center; }
.lede { font-size: 18px; max-width: 640px; }
.lede--center { margin-left: auto; margin-right: auto; }

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    padding: 13px 24px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
    white-space: nowrap;
}
.btn--primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 6px 18px rgba(109, 40, 249, 0.28);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(109, 40, 249, 0.35); }

.btn--ghost {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    border-color: var(--border-strong);
}
.btn--ghost:hover { border-color: var(--magenta); background: rgba(192, 38, 232, 0.05); }

.btn--block { width: 100%; }
.btn--sm { padding: 9px 16px; font-size: 13.5px; }
.btn--danger { background: rgba(255, 107, 107, 0.1); color: #ff9b9b; border-color: rgba(255, 107, 107, 0.35); }
.btn--danger:hover { background: rgba(255, 107, 107, 0.18); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* =========================================================================
   Header / nav
   ========================================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(8, 7, 13, 0.8);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}
.site-header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 36px; width: auto; }

.nav { display: flex; align-items: center; gap: 36px; }
.nav__links { display: flex; gap: 30px; align-items: center; }
.nav__links a {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.15s ease;
    position: relative;
}
.nav__links a:hover, .nav__links a.is-active { color: var(--text); }
.nav__links a.is-active::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -16px;
    height: 2px;
    background: var(--gradient);
}

.nav__toggle {
    display: none;
    background: none;
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    color: var(--text);
    width: 40px; height: 40px;
    font-size: 18px;
    cursor: pointer;
}

@media (max-width: 860px) {
    .nav__toggle { display: block; }
    .nav__links {
        position: absolute;
        top: 100%; left: 16px; right: 16px;
        margin-top: 10px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--bg-card);
        border: 1px solid var(--border-strong);
        border-radius: var(--radius-md);
        box-shadow: 0 24px 56px rgba(0, 0, 0, 0.55);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-8px);
        transition: max-height 0.25s ease, opacity 0.2s ease, transform 0.2s ease;
    }
    .nav--open .nav__links {
        max-height: 360px;
        opacity: 1;
        transform: translateY(0);
    }
    .nav__links a {
        width: 100%;
        padding: 15px 20px;
        border-top: 1px solid var(--border);
    }
    .nav__links li:first-child a { border-top: none; }
    .nav__links a::after { display: none; }
}

/* sign-in dropdown */
/* Broadcast bar — floating, futuristic, doesn't push page content */
@keyframes xbcast-in { from { opacity: 0; transform: translate(-50%, -18px) scale(0.96); } to { opacity: 1; transform: translate(-50%, 0) scale(1); } }
@keyframes xbcast-glow { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
.xbcast {
    display: none;
    position: fixed; top: 16px; left: 50%; z-index: 500;
    align-items: center; gap: 12px;
    max-width: min(600px, calc(100vw - 32px));
    padding: 12px 14px 12px 16px;
    background: rgba(19, 17, 32, 0.72);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.03) inset;
}
.xbcast.is-visible { display: flex; animation: xbcast-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) both; }
.xbcast.is-leaving { animation: xbcast-in 0.2s ease reverse both; }
.xbcast::before {
    content: ''; position: absolute; inset: -1px; border-radius: 100px; z-index: -1;
    padding: 1px; background: linear-gradient(120deg, var(--violet), var(--magenta), var(--violet));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    animation: xbcast-glow 3s ease-in-out infinite;
}
.xbcast__icon {
    width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; background: var(--gradient); color: #fff;
}
.xbcast[data-type="warning"] .xbcast__icon,
.xbcast[data-type="error"] .xbcast__icon { background: linear-gradient(135deg, #ff9b5c, var(--maintenance)); }
.xbcast[data-type="success"] .xbcast__icon { background: linear-gradient(135deg, var(--online), #1fae7a); }
.xbcast__text { font-size: 13.5px; font-weight: 500; color: var(--text); line-height: 1.4; }
.xbcast__link { color: var(--magenta); font-weight: 700; text-decoration: none; margin-left: 4px; white-space: nowrap; }
.xbcast__link:hover { text-decoration: underline; }
.xbcast__close {
    background: rgba(255,255,255,0.06); border: none; color: var(--text-faint); cursor: pointer;
    width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; font-size: 15px; line-height: 1;
    display: flex; align-items: center; justify-content: center; transition: background .15s, color .15s;
}
.xbcast__close:hover { background: rgba(255,255,255,0.12); color: var(--text); }
@media (max-width: 600px) { .xbcast { top: 10px; padding: 10px 10px 10px 12px; } .xbcast__text { font-size: 12.5px; } }

.signin-menu { position: relative; }
.signin-menu__toggle { display: inline-flex; align-items: center; gap: 7px; }

/* Discord button */
.btn--discord {
    background: #5865F2;
    color: #fff;
    border: 1px solid #5865F2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
}
.btn--discord:hover { background: #4752c4; border-color: #4752c4; }
@media (max-width: 560px) {
    .btn--discord__label { display: none; }
    .btn--discord { padding: 9px; }
}
.signin-menu__chevron { font-size: 10px; transition: transform 0.18s ease; display: inline-block; }
.signin-menu.is-open .signin-menu__chevron { transform: rotate(180deg); }

.signin-menu__panel {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: 270px;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-md);
    padding: 8px;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
    z-index: 60;
}
.signin-menu.is-open .signin-menu__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.signin-menu__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    transition: background 0.15s ease;
}
.signin-menu__item:hover, .signin-menu__item:focus-visible { background: rgba(255, 255, 255, 0.05); }
.signin-menu__icon {
    width: 34px; height: 34px;
    border-radius: 9px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.signin-menu__icon img { width: 100%; height: 100%; object-fit: cover; }
.signin-menu__icon-dot { width: 15px; height: 15px; border-radius: 50%; background: var(--gradient); }
.signin-menu__text { flex: 1; min-width: 0; }
.signin-menu__name { display: block; font-size: 14px; font-weight: 700; color: var(--text); }
.signin-menu__sub { display: block; font-size: 12px; color: var(--text-faint); }
.signin-menu__arrow { color: var(--text-faint); font-size: 14px; transition: transform 0.15s ease, color 0.15s ease; }
.signin-menu__item:hover .signin-menu__arrow { color: var(--magenta); transform: translateX(3px); }
.signin-menu__empty { padding: 18px 14px; text-align: center; font-size: 13px; color: var(--text-faint); }

@media (max-width: 480px) {
    .signin-menu__panel { width: calc(100vw - 56px); }
}

/* =========================================================================
   Hero + globe motif
   ========================================================================= */
.hero {
    position: relative;
    padding: 110px 0 100px;
    overflow: hidden;
    text-align: center;
}
.hero__glow {
    position: absolute;
    inset: -200px 0 auto 0;
    height: 600px;
    background: radial-gradient(closest-side, rgba(109, 40, 249, 0.22), rgba(192, 38, 232, 0.08) 55%, transparent 75%);
    filter: blur(10px);
    pointer-events: none;
    z-index: 0;
}
.hero__globe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 780px;
    height: 780px;
    transform: translate(-50%, -50%);
    opacity: 0.16;
    pointer-events: none;
    z-index: 0;
    animation: spin-globe 60s linear infinite;
}
@keyframes spin-globe {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}
.hero__content { position: relative; z-index: 1; }
.hero__logo { max-width: 460px; width: 100%; margin: 0 auto 32px; }
.hero h1 {
    font-size: clamp(34px, 5.4vw, 58px);
    max-width: 820px;
    margin: 0 auto 22px;
}
.hero h1 .grad { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lede { margin: 0 auto 38px; color: var(--text-muted); }
.hero .btn-row { justify-content: center; }

/* small inline status beacon, used in footer / nav strip */
.beacon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12.5px;
    color: var(--text-faint);
    letter-spacing: 0.06em;
}
.beacon__dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--online);
    box-shadow: 0 0 8px var(--online);
    animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

/* =========================================================================
   Cards (products, posts, team, generic)
   ========================================================================= */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
    .grid--3, .grid--2 { grid-template-columns: 1fr; }
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: border-color 0.15s ease, transform 0.15s ease, background 0.15s ease;
}
.card:hover { border-color: var(--border-strong); }

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: start;
}
@media (max-width: 700px) {
    .product-card { grid-template-columns: 1fr; }
}
.product-card__icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.product-card__icon img { width: 100%; height: 100%; object-fit: cover; }
.product-card__icon-fallback {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--gradient);
}

/* Shop */
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin-bottom: 44px; }
.shop-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: border-color .15s, transform .15s, box-shadow .15s; }
.shop-card:hover { border-color: var(--border-strong); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,0,0,.28); }
.shop-card__image { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--bg-elevated); }
.shop-card__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.shop-card__body h3 { font-size: 16px; margin: 0; }
.shop-card__body p { font-size: 13.5px; color: var(--text-muted); margin: 0; flex: 1; line-height: 1.5; }
.shop-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 10px; }
.shop-card__price { font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.product-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}
.product-card h3 { margin: 0; font-size: 24px; text-transform: none; }
.product-card__tagline { color: var(--text); opacity: 0.85; font-weight: 600; margin-bottom: 14px; }

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid var(--border-strong);
    color: var(--text-muted);
}
.status-pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; }
.status--online::before { background: var(--online); box-shadow: 0 0 6px var(--online); }
.status--beta::before { background: var(--beta); box-shadow: 0 0 6px var(--beta); }
.status--soon::before { background: var(--soon); }
.status--maintenance::before { background: var(--maintenance); box-shadow: 0 0 6px var(--maintenance); }

.post-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.post-card__cover { aspect-ratio: 16/9; background: var(--bg-elevated); overflow: hidden; }
.post-card__cover img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-card .post-date { font-family: var(--font-mono); font-size: 12px; color: var(--text-faint); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 10px; }
.post-card h3 { font-size: 19px; text-transform: none; margin-bottom: 10px; }
.post-card p { flex: 1; }
.post-card .read-more { color: var(--magenta); font-weight: 700; font-size: 14px; margin-top: auto; }

.empty-state {
    text-align: center;
    padding: 60px 24px;
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius-md);
    color: var(--text-faint);
}
.empty-state__icon { font-size: 32px; margin-bottom: 12px; }

/* =========================================================================
   Forms
   ========================================================================= */
.field { margin-bottom: 20px; }
.field label {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}
.field--hint { font-size: 12.5px; color: var(--text-faint); margin-top: 6px; }

.settings-group {
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}
.settings-group:last-of-type { border-bottom: none; }
.settings-group__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}
.settings-group__head h2 {
    font-size: 18px;
    text-transform: none;
    margin-bottom: 4px;
}
.settings-group__head p {
    font-size: 13.5px;
    color: var(--text-faint);
    margin: 0;
}
input[type=text], input[type=email], input[type=password], input[type=url], textarea, select {
    width: 100%;
    background: var(--bg-elevated);
    border: 1px solid var(--border-strong);
    color: var(--text);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color 0.15s ease;
}
input:focus, textarea:focus, select:focus { border-color: var(--magenta); outline: none; }
textarea { min-height: 160px; resize: vertical; }
.checkbox-row { display: flex; align-items: center; gap: 10px; }
.checkbox-row input { width: auto; }

.alert {
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    margin-bottom: 24px;
    font-size: 14.5px;
    border: 1px solid var(--border-strong);
}
.alert--success { border-color: rgba(61, 220, 151, 0.4); background: rgba(61, 220, 151, 0.08); color: #b6f5d9; }
.alert--error { border-color: rgba(255, 107, 107, 0.4); background: rgba(255, 107, 107, 0.08); color: #ffc6c6; }

/* honeypot field, hidden from real users */
.hp-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { border-top: 1px solid var(--border); padding: 56px 0 36px; margin-top: 40px; }
.site-footer__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; margin-bottom: 36px; }
.site-footer__brand { max-width: 320px; }
.site-footer__brand img { height: 26px; margin-bottom: 14px; }
.footer-cols { display: flex; align-items: flex-start; gap: 56px; flex-wrap: wrap; }
.footer-col h4 { font-family: var(--font-mono); text-transform: uppercase; font-size: 12.5px; letter-spacing: 0.12em; color: var(--text-faint); margin-bottom: 14px; }
.footer-col a, .footer-col span { display: block; font-size: 14.5px; color: var(--text-muted); margin-bottom: 10px; }
.footer-col a:hover { color: var(--text); }
.site-footer__bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--text-faint);
}

/* =========================================================================
   Misc page bits (about, contact)
   ========================================================================= */
.page-head { padding: 70px 0 10px; text-align: center; }
.page-head h1 { font-size: clamp(30px, 4.5vw, 46px); }
.page-head .lede { margin: 0 auto; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }

.team-card { text-align: center; }
.team-card__avatar {
    width: 84px; height: 84px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: var(--gradient);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 26px;
    color: #fff;
    overflow: hidden;
}
.team-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 17px; text-transform: none; margin-bottom: 2px; }
.team-card .role { font-family: var(--font-mono); font-size: 12px; color: var(--text-faint); letter-spacing: 0.05em; text-transform: uppercase; }

.contact-methods { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.contact-method { display: flex; gap: 14px; align-items: flex-start; }
.contact-method__icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--gradient-soft);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-family: var(--font-mono);
    font-size: 13px;
}
