:root {
  --ink: #0e0d12;
  --ink2: #161520;
  --ink3: #1e1d2a;
  --brand: #39364C;
  --slate: #2a293a;
  --mist: #a8a6b8;
  --fog: #6b6980;
  --pearl: #eae9f0;
  --white: #f8f7fc;
  --glow: #7b6ef6;
  --glow2: #42ddb6;
  --display: 'Syne', sans-serif;
  --body: 'DM Sans', 'Noto Sans JP', sans-serif;
  --jp: 'Noto Sans JP', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); background: var(--ink); color: var(--pearl); line-height: 1.75; -webkit-font-smoothing: antialiased; }
::selection { background: var(--glow); color: var(--ink); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 4rem); }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* NAV */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 999; padding: 0 clamp(1.5rem, 4vw, 4rem); transition: background .4s, backdrop-filter .4s; }
header.scrolled { background: rgba(14,13,18,0.85); backdrop-filter: blur(20px) saturate(1.5); }
.nav-bar { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { font-family: var(--display); font-weight: 800; font-size: 1.35rem; color: var(--pearl); text-decoration: none; letter-spacing: 2px; }
.nav-menu { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-menu a { font-family: var(--display); font-size: 0.72rem; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; color: var(--fog); text-decoration: none; transition: color .3s; position: relative; }
.nav-menu a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--glow); transition: width .3s; }
.nav-menu a:hover { color: var(--pearl); }
.nav-menu a:hover::after { width: 100%; }
.nav-cta-btn { font-family: var(--display); font-size: 0.7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--ink); background: var(--pearl); padding: 10px 24px; border-radius: 4px; text-decoration: none; transition: all .3s; }
.nav-cta-btn:hover { background: var(--glow); color: var(--white); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.mobile-toggle span { width: 24px; height: 1.5px; background: var(--pearl); display: block; }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: flex-end; position: relative; padding: 0 0 8vh; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 65% 25%, rgba(123,110,246,0.08) 0%, transparent 70%), radial-gradient(ellipse 50% 50% at 15% 85%, rgba(66,221,182,0.05) 0%, transparent 60%); }
.hero-lines { position: absolute; inset: 0; overflow: hidden; opacity: 0.035; }
.hero-lines::before { content: ''; position: absolute; top: -50%; left: 50%; width: 200%; height: 200%; background: repeating-linear-gradient(-35deg, transparent, transparent 120px, var(--pearl) 120px, var(--pearl) 121px); }
.hero-inner { position: relative; width: 100%; }
.hero-content { padding-top: 20vh; }
.hero-eyebrow { font-family: var(--display); font-size: 0.7rem; font-weight: 600; letter-spacing: 5px; text-transform: uppercase; color: var(--glow); margin-bottom: 2.5rem; display: flex; align-items: center; gap: 1rem; }
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--glow); }
.hero-title { font-family: var(--jp); font-weight: 700; font-size: clamp(2.4rem, 6vw, 4.5rem); line-height: 1.25; color: var(--white); max-width: 800px; margin-bottom: 2rem; letter-spacing: 0.02em; }
.hero-title em { font-style: normal; position: relative; display: inline; }
.hero-title em::after { content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--glow), var(--glow2)); border-radius: 2px; }
.hero-sub { font-size: 1rem; color: var(--mist); max-width: 520px; line-height: 2; margin-bottom: 3.5rem; }
.hero-cta { display: inline-flex; align-items: center; gap: 12px; font-family: var(--display); font-size: 0.75rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--pearl); text-decoration: none; padding: 16px 0; border-bottom: 1px solid var(--fog); transition: all .3s; }
.hero-cta:hover { color: var(--glow); border-color: var(--glow); gap: 20px; }
.hero-cta svg { width: 20px; height: 20px; transition: transform .3s; }
.hero-cta:hover svg { transform: translateX(4px); }
.hero-metrics { display: flex; gap: 5rem; margin-top: 6rem; }
.metric-val { font-family: var(--display); font-size: 2.8rem; font-weight: 800; color: var(--white); line-height: 1; }
.metric-val span { color: var(--glow); font-size: 1.6rem; }
.metric-label { font-size: 0.78rem; color: var(--fog); margin-top: 8px; letter-spacing: 0.5px; }

/* SECTIONS */
.section { padding: clamp(5rem, 10vw, 9rem) 0; }
.section-border { border-top: 1px solid rgba(168,166,184,0.08); }
.sec-header { margin-bottom: clamp(3rem, 6vw, 5rem); }
.sec-eyebrow { font-family: var(--display); font-size: 0.68rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--glow); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem; }
.sec-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--glow); }
.sec-title { font-family: var(--jp); font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 700; color: var(--white); line-height: 1.35; max-width: 600px; }
.sec-desc { font-size: 0.92rem; color: var(--mist); max-width: 560px; margin-top: 1.2rem; line-height: 1.9; }

/* MESSAGE */
.msg-body { max-width: 760px; }
.msg-body blockquote { font-family: var(--jp); font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 600; color: var(--white); line-height: 1.6; margin-bottom: 2.5rem; padding-left: 1.5rem; border-left: 2px solid var(--glow); }
.msg-text p { font-size: 0.92rem; color: var(--mist); margin-bottom: 1.5rem; line-height: 2; }
.msg-sig { display: flex; align-items: baseline; gap: 1.5rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(168,166,184,0.08); }
.msg-sig-name { font-family: var(--jp); font-size: 1.1rem; font-weight: 700; color: var(--white); }
.msg-sig-title { font-size: 0.78rem; color: var(--fog); letter-spacing: 0.5px; }

/* CHALLENGES */
.challenges-bg { background: var(--ink2); }
.ch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(168,166,184,0.06); border-radius: 8px; overflow: hidden; }
.ch-card { background: var(--ink2); padding: clamp(2rem, 3vw, 3rem); transition: background .4s; }
.ch-card:hover { background: var(--ink3); }
.ch-num { font-family: var(--display); font-size: 3rem; font-weight: 800; color: rgba(123,110,246,0.12); line-height: 1; margin-bottom: 1.5rem; }
.ch-card h3 { font-family: var(--jp); font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.ch-card p { font-size: 0.85rem; color: var(--mist); line-height: 1.85; }

/* SERVICES */
.svc-grid { display: flex; flex-direction: column; gap: 1px; background: rgba(168,166,184,0.06); border-radius: 8px; overflow: hidden; }
.svc-card { display: grid; grid-template-columns: 280px 1fr; gap: clamp(2rem, 4vw, 4rem); background: var(--ink); padding: clamp(2.5rem, 4vw, 4rem); transition: background .4s; align-items: start; }
.svc-card:hover { background: var(--ink2); }
.svc-num { font-family: var(--display); font-size: 0.68rem; font-weight: 700; letter-spacing: 3px; color: var(--glow); margin-bottom: 1rem; }
.svc-card h3 { font-family: var(--jp); font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
.svc-en { font-family: var(--display); font-size: 0.72rem; color: var(--fog); letter-spacing: 2px; text-transform: uppercase; }
.svc-body p { font-size: 0.9rem; color: var(--mist); margin-bottom: 1.5rem; line-height: 1.9; }
.svc-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.svc-list li { font-size: 0.82rem; color: var(--mist); padding: 10px 0 10px 20px; position: relative; border-bottom: 1px solid rgba(168,166,184,0.05); }
.svc-list li::before { content: ''; position: absolute; left: 0; top: 50%; width: 6px; height: 1px; background: var(--glow); transform: translateY(-50%); }

/* WHY */
.why-bg { background: var(--ink2); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(168,166,184,0.06); border-radius: 8px; overflow: hidden; }
.why-card { background: var(--ink2); padding: clamp(2rem, 3vw, 3rem); transition: background .4s; position: relative; }
.why-card:hover { background: var(--ink3); }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: linear-gradient(to bottom, var(--glow), var(--glow2)); transition: height .4s; }
.why-card:hover::before { height: 100%; }
.why-card h3 { font-family: var(--jp); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.8rem; }
.why-card p { font-size: 0.85rem; color: var(--mist); line-height: 1.85; }

/* TEAM */
.team-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 6rem); align-items: start; }
.team-lead { padding: clamp(2rem, 3vw, 3rem); border-radius: 8px; background: var(--ink2); border: 1px solid rgba(168,166,184,0.06); }
.team-lead-tag { font-family: var(--display); font-size: 0.65rem; font-weight: 700; letter-spacing: 3px; color: var(--glow); margin-bottom: 1.2rem; text-transform: uppercase; }
.team-lead h4 { font-family: var(--jp); font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
.team-lead .team-role { font-size: 0.82rem; color: var(--fog); margin-bottom: 1.2rem; }
.team-lead p { font-size: 0.85rem; color: var(--mist); line-height: 1.85; }
.team-members { display: flex; flex-direction: column; gap: 1px; background: rgba(168,166,184,0.06); border-radius: 8px; overflow: hidden; }
.team-row { display: flex; justify-content: space-between; align-items: center; background: var(--ink); padding: 1.5rem clamp(1.5rem, 2vw, 2rem); transition: background .3s; }
.team-row:hover { background: var(--ink2); }
.team-row-role { font-family: var(--display); font-size: 0.68rem; font-weight: 700; letter-spacing: 2px; color: var(--glow); min-width: 50px; }
.team-row-spec { font-size: 0.82rem; color: var(--mist); }
.team-note { font-size: 0.75rem; color: var(--fog); margin-top: 1.5rem; }
.team-founders {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-bottom: 0;
}

@media (max-width: 960px) {
  .team-founders { grid-template-columns: 1fr; }
}

/* COMPANY */
.company-bg { background: var(--ink2); }
.co-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1px; background: rgba(168,166,184,0.06); border-radius: 8px; overflow: hidden; }
.co-item { background: var(--ink2); padding: 1.5rem 2rem; }
.co-item dt { font-size: 0.72rem; color: var(--fog); letter-spacing: 1px; margin-bottom: 0.4rem; font-weight: 500; }
.co-item dd { font-size: 0.92rem; color: var(--white); font-weight: 500; }

/* PHILOSOPHY */
.philosophy { text-align: center; padding: clamp(6rem, 12vw, 10rem) 2rem; position: relative; overflow: hidden; }
.philosophy::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(123,110,246,0.06) 0%, transparent 70%); }
.phil-eyebrow { font-family: var(--display); font-size: 0.68rem; font-weight: 600; letter-spacing: 5px; text-transform: uppercase; color: var(--glow); margin-bottom: 2rem; position: relative; }
.phil-text { font-family: var(--jp); font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 500; color: var(--white); line-height: 1.8; max-width: 700px; margin: 0 auto; position: relative; }
.phil-sub { font-size: 0.88rem; color: var(--fog); margin-top: 1.5rem; max-width: 560px; margin-left: auto; margin-right: auto; position: relative; }

/* CONTACT */
.contact-section { position: relative; text-align: center; padding: clamp(5rem, 10vw, 8rem) 2rem; background: linear-gradient(170deg, var(--brand) 0%, var(--ink) 100%); overflow: hidden; }
.contact-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 20%, rgba(123,110,246,0.12) 0%, transparent 60%); }
.contact-inner { position: relative; }
.contact-title { font-family: var(--jp); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.contact-desc { font-size: 0.92rem; color: var(--mist); max-width: 480px; margin: 0 auto 3rem; }
.contact-btn { display: inline-flex; align-items: center; gap: 12px; font-family: var(--display); font-size: 0.78rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; padding: 18px 48px; border-radius: 6px; border: none; background: var(--white); color: var(--ink); text-decoration: none; transition: all .3s; cursor: pointer; }
.contact-btn:hover { background: var(--glow); color: var(--white); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(123,110,246,0.3); }
.contact-btn svg { width: 16px; height: 16px; }
.contact-email { margin-top: 2rem; font-size: 0.85rem; color: var(--fog); }
.contact-email a { color: var(--mist); text-decoration: none; border-bottom: 1px solid var(--fog); transition: all .2s; }
.contact-email a:hover { color: var(--glow); border-color: var(--glow); }

/* FOOTER */
footer { border-top: 1px solid rgba(168,166,184,0.06); padding: 2.5rem clamp(1.5rem, 4vw, 4rem); }
.footer-inner { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 0.75rem; color: var(--fog); text-decoration: none; letter-spacing: 0.5px; transition: color .2s; }
.footer-links a:hover { color: var(--pearl); }
.footer-copy { font-size: 0.72rem; color: rgba(168,166,184,0.35); letter-spacing: 0.5px; }

/* RESPONSIVE */
@media (max-width: 960px) {
  header, header.scrolled { background: var(--ink); backdrop-filter: none; }
  .nav-menu { display: none; }
  .nav-menu.show {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(14,13,18,1); backdrop-filter: blur(20px);
    padding: 2rem; gap: 0; align-items: flex-start;
    z-index: 998;
  }
  .nav-menu.show li { width: 100%; }
  .nav-menu.show a {
    display: block; padding: 1rem 0;
    font-size: 0.85rem; border-bottom: 1px solid rgba(168,166,184,0.08);
  }
  .nav-menu.show .nav-cta-btn {
    margin-top: 1rem; text-align: center; border-bottom: none;
  }
  .mobile-toggle { display: flex; }
  .team-layout { grid-template-columns: 1fr; }
  .ch-grid { grid-template-columns: 1fr; }
  .svc-card { grid-template-columns: 1fr; }
  .svc-list { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-metrics { gap: 2.5rem; flex-wrap: wrap; }
  .news-bar-inner { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .partner-logos { flex-direction: column; gap: 1.5rem; padding: 2rem; }
  .partner-logo-sep { display: none; }
}

/* ─── SUB-PAGES ─── */
.sub-hero { padding: 10rem 0 4rem; border-bottom: 1px solid rgba(168,166,184,0.08); }
.sub-hero .sec-title { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.sub-content { padding: clamp(3rem, 6vw, 5rem) 0; }
.article { max-width: 760px; }
.article h3 { font-family: var(--jp); font-size: 1.05rem; font-weight: 700; color: var(--white); margin: 2.5rem 0 0.8rem; }
.article p, .article li { font-size: 0.9rem; color: var(--mist); line-height: 2; margin-bottom: 1rem; }
.article ul { list-style: none; padding: 0; }
.article ul li { padding-left: 1.2rem; position: relative; }
.article ul li::before { content: ''; position: absolute; left: 0; top: 14px; width: 5px; height: 1px; background: var(--glow); }
.article .sig { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(168,166,184,0.08); font-size: 0.85rem; color: var(--fog); line-height: 2; }

/* ─── SUB-PAGE HERO ─── */
.page-hero {
  padding: clamp(8rem, 14vw, 12rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 30% 40%, rgba(123,110,246,0.07) 0%, transparent 70%);
}
.page-hero-inner { position: relative; }
.page-hero-title {
  font-family: var(--jp); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--white); line-height: 1.35; margin-bottom: 1rem;
}
.page-hero-desc { font-size: 0.92rem; color: var(--mist); max-width: 520px; line-height: 1.9; }

/* ─── FORM ─── */
.form-section { padding: 0 0 clamp(5rem, 10vw, 8rem); }
.form-container {
  max-width: 680px; background: var(--ink2);
  border: 1px solid rgba(168,166,184,0.06);
  border-radius: 12px; padding: clamp(2rem, 4vw, 3.5rem);
}
.form-group { margin-bottom: 2rem; }
.form-label {
  display: block; font-family: var(--jp); font-size: 0.85rem; font-weight: 600;
  color: var(--pearl); margin-bottom: 0.6rem;
}
.form-label .required {
  font-size: 0.68rem; font-weight: 600; color: var(--glow);
  margin-left: 0.5rem; letter-spacing: 1px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 16px;
  background: var(--ink); border: 1px solid rgba(168,166,184,0.1);
  border-radius: 6px; color: var(--pearl); font-family: var(--body);
  font-size: 0.9rem; transition: border-color .3s, box-shadow .3s; outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--fog); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--glow); box-shadow: 0 0 0 3px rgba(123,110,246,0.1);
}
.form-select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b6980' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.form-select option { background: var(--ink2); color: var(--pearl); }
.form-textarea { min-height: 180px; resize: vertical; line-height: 1.8; }
.form-submit {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 16px 48px; border-radius: 6px; border: none;
  background: var(--pearl); color: var(--ink); cursor: pointer; transition: all .3s;
}
.form-submit:hover {
  background: var(--glow); color: var(--white);
  transform: translateY(-2px); box-shadow: 0 8px 30px rgba(123,110,246,0.25);
}
.form-submit svg { width: 16px; height: 16px; }
.form-note {
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(168,166,184,0.06);
  font-size: 0.78rem; color: var(--fog); line-height: 1.8;
}
.form-note a { color: var(--mist); text-decoration: none; border-bottom: 1px solid rgba(168,166,184,0.15); transition: all .2s; }
.form-note a:hover { color: var(--glow); border-color: var(--glow); }

/* ─── SUB-PAGE BODY (privacy, security etc.) ─── */
.page-body { padding: clamp(3rem, 6vw, 5rem) 0; }
.page-body .container { max-width: 800px; }
.page-body h3 { font-family: var(--jp); font-size: 1.05rem; font-weight: 700; color: var(--white); margin: 2.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(168,166,184,0.08); }
.page-body p, .page-body li { font-size: 0.9rem; color: var(--mist); line-height: 2; margin-bottom: 1rem; }
.page-body ul { list-style: none; padding: 0; }
.page-body ul li { padding-left: 1.2rem; position: relative; }
.page-body ul li::before { content: ''; position: absolute; left: 0; top: 12px; width: 6px; height: 1px; background: var(--glow); }
.page-body .sig { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(168,166,184,0.08); font-size: 0.85rem; color: var(--fog); line-height: 2; }

/* ─── 2026/5/6 NEWS SECTION ─── */
.news-bar {
  padding: 1.5rem 0; border-bottom: 1px solid rgba(168,166,184,0.08);
}
.news-bar-inner {
  display: flex; align-items: center; gap: 2rem;
}
.news-bar-tag {
  font-family: var(--display); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--glow);
  flex-shrink: 0;
}
.news-bar-link {
  display: flex; align-items: center; gap: 1.5rem;
  text-decoration: none; transition: opacity .3s;
}
.news-bar-link:hover { opacity: 0.7; }
.news-bar-date {
  font-family: var(--display); font-size: 0.78rem; font-weight: 500;
  color: var(--fog); flex-shrink: 0;
}
.news-bar-title {
  font-size: 0.85rem; color: var(--mist);
}
.news-date {
  font-family: var(--display); font-size: 0.82rem; font-weight: 500;
  color: var(--fog); margin-bottom: 1rem;
}

/* ─── PARTNER LOGOS ─── */
.partner-logos {
  display: flex; align-items: center; justify-content: center; gap: 2rem;
  padding: 3rem 0; margin-bottom: 2.5rem;
  border: 1px solid rgba(168,166,184,0.06); border-radius: 12px;
  background: var(--ink2);
}
.partner-logo-item { flex: 1; text-align: center; }
.partner-logo-item img {
  max-height: 40px; width: auto; opacity: 0.85;
}
.partner-logo-item img:hover { opacity: 1; }
.partner-logo-sep {
  font-family: var(--display); font-size: 1.2rem; color: rgba(168,166,184,0.2);
  font-weight: 300;
}

@media (max-width: 960px) {
  .news-bar-inner { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .partner-logos { flex-direction: column; gap: 1.5rem; padding: 2rem; }
  .partner-logo-sep { display: none; }
}

/* GRAIN */
body::after { content: ''; position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0.025; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"); background-repeat: repeat; background-size: 256px; }
