/* ==========================================
   DHRUMIL SONI — PORTFOLIO STYLESHEET
   ========================================== */

/* ——— CSS VARIABLES ——— */
:root {
  /* Dark theme (default) */
  --bg: #0e0f13;
  --bg-alt: #13151b;
  --bg-card: #181b23;
  --bg-card-hover: #1e2230;
  --border: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(255, 255, 255, 0.15);
  --text: #e8eaf0;
  --text-muted: #8891a8;
  --text-faint: #545c72;
  --accent: #4f8ef7;
  --accent-light: rgba(79, 142, 247, 0.12);
  --accent-glow: rgba(79, 142, 247, 0.25);
  --accent2: #6ad4b0;
  --accent2-light: rgba(106, 212, 176, 0.12);
  --gold: #e8c87a;
  --gold-light: rgba(232, 200, 122, 0.12);
  --nav-bg: rgba(14, 15, 19, 0.85);
  --shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.3);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --transition: 0.22s ease;
}

[data-theme="light"] {
  --bg: #f5f6fa;
  --bg-alt: #ececf3;
  --bg-card: #ffffff;
  --bg-card-hover: #f0f2f8;
  --border: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(0, 0, 0, 0.16);
  --text: #181b23;
  --text-muted: #545c72;
  --text-faint: #9097aa;
  --accent: #2563eb;
  --accent-light: rgba(37, 99, 235, 0.08);
  --accent-glow: rgba(37, 99, 235, 0.15);
  --accent2: #10876a;
  --accent2-light: rgba(16, 135, 106, 0.08);
  --gold: #b47b10;
  --gold-light: rgba(180, 123, 16, 0.08);
  --nav-bg: rgba(245, 246, 250, 0.9);
  --shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.06);
}

/* ——— RESET ——— */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  transition: background-color 0.3s, color 0.3s;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ——— TYPOGRAPHY ——— */
h1, h2, h3 { line-height: 1.2; font-weight: 600; }

.serif { font-family: 'DM Serif Display', serif; }

/* ——— UTILITY ——— */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: 20px;
}

.section-title.no-margin { margin-bottom: 8px; }

.section-sub {
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 56px;
  font-size: 1.05rem;
}

/* ——— BUTTONS ——— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.92rem;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.btn-primary:hover {
  background: color-mix(in srgb, var(--accent) 85%, white);
  box-shadow: 0 0 20px var(--accent-glow);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1.5px solid var(--border-hover);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
  transform: translateY(-1px);
}

.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-lg { padding: 14px 30px; font-size: 1rem; }

/* ——————————————————————————————
   NAVBAR
—————————————————————————————— */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), background var(--transition);
}

.nav-wrapper.scrolled {
  box-shadow: var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--text);
}

.dot { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--accent-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 0.9rem;
}
.theme-toggle:hover { color: var(--accent); border-color: var(--accent); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile nav */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--nav-bg);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 20px 24px;
    gap: 4px;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a { padding: 10px 14px; }
}

/* ——————————————————————————————
   HERO
—————————————————————————————— */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  opacity: 0.6;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.hero-photo-wrap {
  position: relative;
  display: inline-block;
}

.hero-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent);
  box-shadow: 0 0 0 6px var(--accent-light), var(--shadow);
  background: var(--bg-card);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--text-faint);
  background: var(--bg-card);
}

.hero-badge {
  position: absolute;
  bottom: 4px;
  right: -4px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.hero-text { display: flex; flex-direction: column; align-items: center; gap: 16px; }

.hero-greeting {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-name {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1.0;
  color: var(--text);
}

.hero-name em {
  font-style: italic;
  color: var(--accent);
}

.hero-typewriter {
  font-size: 1.1rem;
  color: var(--text-muted);
  min-height: 1.7em;
}

.cursor {
  display: inline-block;
  animation: blink 0.9s infinite;
  color: var(--accent);
  font-weight: 300;
}
@keyframes blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }

.hero-intro {
  max-width: 540px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-location {
  font-size: 0.85rem;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-location i { color: var(--accent); font-size: 0.75rem; }

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-faint);
  font-size: 1rem;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ——————————————————————————————
   ABOUT
—————————————————————————————— */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 1.02rem;
  line-height: 1.8;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--text); }

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color var(--transition);
}

.info-card:hover { border-color: var(--border-hover); }

.info-card i {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.info-card div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-card strong { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-faint); }
.info-card span { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 500px) {
  .about-cards { grid-template-columns: 1fr; }
}

/* ——————————————————————————————
   SKILLS
—————————————————————————————— */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.skill-group {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
}
.skill-group:hover { border-color: var(--border-hover); transform: translateY(-2px); }

.skill-group-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.skill-group-title i { color: var(--accent); }

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all var(--transition);
}

.skill-tag--primary   { background: var(--accent-light);  color: var(--accent);  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent); }
.skill-tag--secondary { background: var(--accent2-light); color: var(--accent2); border: 1px solid color-mix(in srgb, var(--accent2) 30%, transparent); }
.skill-tag--neutral   { background: var(--bg-alt); color: var(--text-muted); border: 1px solid var(--border); }
.skill-tag--soft      { background: var(--gold-light); color: var(--gold); border: 1px solid color-mix(in srgb, var(--gold) 30%, transparent); }

.skill-tag:hover { filter: brightness(1.1); transform: translateY(-1px); }

@media (max-width: 700px) {
  .skills-grid { grid-template-columns: 1fr; }
}

/* ——————————————————————————————
   EDUCATION TIMELINE
—————————————————————————————— */
.timeline {
  position: relative;
  max-width: 760px;
}

.timeline-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.timeline-marker {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent);
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

.timeline-marker--future {
  background: var(--bg-alt);
  box-shadow: 0 0 0 2px var(--text-faint);
  border-color: var(--text-faint);
}

.timeline-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  flex: 1;
  transition: border-color var(--transition), transform var(--transition);
  margin-bottom: 0;
}
.timeline-card:hover { border-color: var(--border-hover); transform: translateX(4px); }

.timeline-card--future {
  border-style: dashed;
  background: transparent;
}

.timeline-year {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 6px;
}

.timeline-degree {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.timeline-school {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.timeline-note {
  font-size: 0.88rem;
  color: var(--text-faint);
  line-height: 1.6;
  margin-bottom: 14px;
}

.timeline-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--accent-light);
  color: var(--accent);
}
.timeline-badge--completed { background: var(--accent2-light); color: var(--accent2); }
.timeline-badge--learning  { background: var(--gold-light); color: var(--gold); }

.timeline-connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(var(--accent), var(--border));
  margin-left: 8px;
  margin-top: 4px;
  margin-bottom: 4px;
}

/* ——————————————————————————————
   PROJECTS
—————————————————————————————— */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.project-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 0 1px var(--accent-light);
}

.project-card--placeholder {
  border-style: dashed;
  background: transparent;
  align-items: flex-start;
}
.project-card--placeholder:hover {
  border-color: var(--border-hover);
  transform: none;
  box-shadow: none;
}

.project-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.project-icon--muted {
  background: var(--bg-alt);
  color: var(--text-faint);
}

.project-links a {
  color: var(--text-faint);
  font-size: 1.1rem;
  transition: color var(--transition);
}
.project-links a:hover { color: var(--accent); }

.project-title {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--text);
}

.project-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.project-tags span {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 3px 10px;
  background: var(--bg-alt);
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
}

/* ——————————————————————————————
   LEADERSHIP
—————————————————————————————— */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.activity-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color var(--transition), transform var(--transition);
}
.activity-card:hover { border-color: var(--accent); transform: translateY(-3px); }

.activity-icon {
  width: 50px; height: 50px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--gold-light);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.activity-body { flex: 1; }

.activity-role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.activity-org {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 4px 0 2px;
}

.activity-school {
  font-size: 0.82rem;
  color: var(--text-faint);
  margin-bottom: 12px;
}

.activity-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.activity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.activity-tags span {
  font-size: 0.73rem;
  font-weight: 500;
  padding: 3px 10px;
  background: var(--gold-light);
  color: var(--gold);
  border-radius: var(--radius-pill);
}



/* ——————————————————————————————
   RESUME SECTION
—————————————————————————————— */
.resume-section {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.resume-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.resume-cta-text p {
  color: var(--text-muted);
  margin-top: 10px;
  max-width: 420px;
}

/* ——————————————————————————————
   CONTACT
—————————————————————————————— */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 640px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all var(--transition);
}
.contact-card:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}

.contact-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-info strong { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-faint); }
.contact-info span { font-size: 0.95rem; color: var(--text); }

.contact-arrow {
  color: var(--text-faint);
  transition: all var(--transition);
  font-size: 0.85rem;
}
.contact-card:hover .contact-arrow { color: var(--accent); transform: translateX(4px); }

/* ——————————————————————————————
   FOOTER
—————————————————————————————— */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-faint);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 4px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-links a i { font-size: 0.85rem; }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-faint);
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ——————————————————————————————
   SCROLL REVEAL ANIMATIONS
—————————————————————————————— */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ——————————————————————————————
   RESPONSIVE
—————————————————————————————— */
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .hero { padding: 100px 20px 60px; }
  .hero-content { gap: 28px; }
  .hero-name { font-size: clamp(2.5rem, 12vw, 4rem); }
  .timeline-item { gap: 16px; }
  .timeline-card { padding: 18px 20px; }
  .resume-cta { flex-direction: column; text-align: center; }
  .resume-cta-text p { margin: 10px auto 0; }
}

@media (max-width: 500px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .btn { justify-content: center; width: 100%; max-width: 220px; }
  .projects-grid { grid-template-columns: 1fr; }
  .activity-grid { grid-template-columns: 1fr; }
  .activity-card { flex-direction: column; }
}

/* ——— SCROLLBAR ——— */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-hover); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ——— SELECTION ——— */
::selection { background: var(--accent); color: #fff; }
