:root {
  --ink:       #0f0e0c;
  --cream:     #f5f0e8;
  --sand:      #e8dfd0;
  --terracotta:#c4623a;
  --gold:      #b8924a;
  --mist:      #d9d2c8;
  --deep:      #1c1a16;
  --accent:    #3a5c8f;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ── */
#cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--terracotta);
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: transform .15s ease, width .25s ease, height .25s ease, background .25s ease;
  mix-blend-mode: multiply;
}
#cursor.big { width: 48px; height: 48px; background: var(--gold); opacity: .5; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 56px;
  transition: background .4s, backdrop-filter .4s;
}
nav.scrolled {
  background: rgba(245,240,232,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--mist);
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 600; letter-spacing: .04em;
  color: var(--ink);
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-bridge {
  display: inline-block;
  width: 28px; height: 14px;
  border: 2px solid var(--terracotta);
  border-radius: 0 0 28px 28px;
  border-top: none;
  position: relative; top: 4px;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--terracotta);
  transition: width .3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--terracotta); color: #fff;
  border: none; padding: 10px 24px;
  font-family: 'DM Sans', sans-serif; font-size: .82rem;
  letter-spacing: .1em; text-transform: uppercase;
  cursor: none; transition: background .25s;
}
.nav-cta:hover { background: var(--ink); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 56px 80px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 75% 50%, rgba(196,98,58,.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 20% 80%, rgba(58,92,143,.07) 0%, transparent 60%);
  z-index: 0;
}
.hero-noise {
  position: absolute; inset: 0; opacity: .025; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-left { position: relative; z-index: 1; }
.hero-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { content:''; display:block; width:40px; height:1px; background:var(--terracotta); }
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.6rem, 6vw, 6.5rem);
  font-weight: 300; line-height: 1.02;
  letter-spacing: -.01em; margin-bottom: 28px;
}
h1 em { font-style: italic; color: var(--terracotta); }
.hero-sub {
  font-size: 1.05rem; line-height: 1.75; color: #5a5448;
  max-width: 420px; margin-bottom: 44px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--ink); color: var(--cream);
  padding: 14px 36px; font-size: .88rem; letter-spacing: .1em;
  text-transform: uppercase; border: none; cursor: none;
  transition: background .25s, transform .2s;
}
.btn-primary:hover { background: var(--terracotta); transform: translateY(-2px); }
.btn-secondary {
  background: transparent; color: var(--ink);
  padding: 14px 36px; font-size: .88rem; letter-spacing: .1em;
  text-transform: uppercase; border: 1.5px solid var(--mist); cursor: none;
  transition: border-color .25s, transform .2s;
}
.btn-secondary:hover { border-color: var(--ink); transform: translateY(-2px); }

/* Hero visual */
.hero-right {
  position: relative; z-index: 1;
  display: flex; justify-content: center; align-items: center;
}
.bridge-visual {
  width: 360px; height: 260px; position: relative;
}
.bridge-visual svg { width: 100%; height: 100%; }

/* Stats row */
.hero-stats {
  position: absolute; bottom: 52px; left: 56px; right: 56px;
  display: flex; gap: 0; border-top: 1px solid var(--mist);
  padding-top: 28px; z-index: 1;
}
.stat {
  flex: 1; padding: 0 28px 0 0;
  border-right: 1px solid var(--mist);
}
.stat:last-child { border-right: none; padding-left: 28px; padding-right: 0; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 600; color: var(--terracotta);
  display: block; line-height: 1;
}
.stat-label {
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: #8a8278; margin-top: 6px;
}

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--ink); color: var(--cream);
  overflow: hidden; padding: 14px 0;
  border-top: 1px solid #2a2820; border-bottom: 1px solid #2a2820;
}
.marquee-track {
  display: flex; gap: 64px; width: max-content;
  animation: marquee 28s linear infinite;
  font-family: 'Space Mono', monospace; font-size: .72rem; letter-spacing: .18em;
  text-transform: uppercase;
}
.marquee-track span { white-space: nowrap; }
.marquee-track .dot { color: var(--terracotta); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION COMMONS ── */
section { padding: 100px 56px; }
.section-tag {
  font-family: 'Space Mono', monospace;
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300; line-height: 1.1;
}
h2 em { font-style: italic; color: var(--terracotta); }

/* ── FEATURES ── */
#features { background: var(--deep); color: var(--cream); }
#features .section-tag { color: var(--gold); }
#features h2 { color: var(--cream); }
#features h2 em { color: var(--terracotta); }
.features-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end; margin-bottom: 72px;
}
.features-desc { font-size: .95rem; line-height: 1.8; color: #b0a898; max-width: 380px; }

.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: #2a2820;
}
.feature-card {
  background: var(--deep); padding: 44px 36px;
  transition: background .3s;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--terracotta);
  transition: height .4s ease;
}
.feature-card:hover::before { height: 100%; }
.feature-card:hover { background: #1e1c18; }
.feature-icon {
  font-size: 2rem; margin-bottom: 20px; display: block;
}
.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 400; color: var(--cream);
  margin-bottom: 12px;
}
.feature-text { font-size: .88rem; line-height: 1.75; color: #8a8278; }

/* ── EVENTS ── */
#events { background: var(--sand); }
.events-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.event-card {
  background: var(--cream); padding: 36px;
  border: 1px solid var(--mist); position: relative;
  transition: transform .3s, box-shadow .3s;
  cursor: none;
}
.event-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(15,14,12,.12); }
.event-date {
  font-family: 'Space Mono', monospace; font-size: .72rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 14px;
}
.event-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 400; line-height: 1.3;
  margin-bottom: 12px;
}
.event-meta { font-size: .82rem; color: #8a8278; line-height: 1.6; }
.event-badge {
  position: absolute; top: 28px; right: 28px;
  background: var(--terracotta); color: #fff;
  font-size: .65rem; letter-spacing: .16em; text-transform: uppercase;
  padding: 4px 10px;
}

/* ── ALUMNI SPOTLIGHT ── */
#spotlight { background: var(--cream); }
.spotlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.alumni-card {
  border: 1px solid var(--mist); padding: 32px 28px;
  text-align: center; transition: border-color .3s, transform .3s;
  cursor: none;
}
.alumni-card:hover { border-color: var(--terracotta); transform: translateY(-4px); }
.alumni-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600;
  color: #fff; margin: 0 auto 18px;
}
.alumni-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 600; margin-bottom: 6px;
}
.alumni-role { font-size: .8rem; color: #8a8278; line-height: 1.5; }
.alumni-year {
  display: inline-block; margin-top: 12px;
  font-family: 'Space Mono', monospace; font-size: .65rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--terracotta);
}

/* ── HOW IT WORKS ── */
#how { background: var(--ink); color: var(--cream); }
#how h2 { color: var(--cream); }
#how h2 em { color: var(--gold); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 72px; }
.step { padding: 0 36px; border-right: 1px solid #2a2820; }
.step:last-child { border-right: none; }
.step-num {
  font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 300;
  color: #2a2820; line-height: 1; margin-bottom: 20px;
}
.step-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400;
  color: var(--cream); margin-bottom: 12px;
}
.step-text { font-size: .85rem; line-height: 1.75; color: #8a8278; }

/* ── JOBS BOARD ── */
#jobs { background: var(--sand); }
.jobs-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.jobs-list { display: flex; flex-direction: column; gap: 1px; background: var(--mist); }
.job-row {
  display: grid; grid-template-columns: 2fr 1.5fr 1fr 1fr auto;
  align-items: center; gap: 20px;
  background: var(--cream); padding: 24px 32px;
  transition: background .2s; cursor: none;
}
.job-row:hover { background: #f0ebe2; }
.job-title-col { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 400; }
.job-company { font-size: .85rem; color: #8a8278; }
.job-location { font-size: .82rem; color: #8a8278; }
.job-type {
  display: inline-block; padding: 4px 12px;
  border: 1px solid var(--mist); font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase; color: #6a6258;
}
.job-type.full { border-color: var(--terracotta); color: var(--terracotta); }
.job-apply {
  background: transparent; border: 1.5px solid var(--ink);
  padding: 8px 20px; font-size: .75rem; letter-spacing: .1em;
  text-transform: uppercase; cursor: none; color: var(--ink);
  transition: background .2s, color .2s;
}
.job-apply:hover { background: var(--ink); color: var(--cream); }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--cream); }
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; }
.testi-card {
  border: 1px solid var(--mist); padding: 44px;
  position: relative; transition: border-color .3s;
}
.testi-card:hover { border-color: var(--gold); }
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-style: italic; font-weight: 300;
  line-height: 1.7; margin-bottom: 28px; color: var(--ink);
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--terracotta));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1rem;
  font-weight: 600; color: #fff;
}
.testi-name { font-weight: 500; font-size: .9rem; }
.testi-role { font-size: .78rem; color: #8a8278; margin-top: 2px; }
.open-quote {
  position: absolute; top: 24px; right: 32px;
  font-family: 'Cormorant Garamond', serif; font-size: 5rem;
  color: var(--mist); line-height: 1;
}

/* ── CTA BANNER ── */
#cta {
  background: var(--terracotta); color: #fff;
  text-align: center; padding: 100px 56px;
}
#cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 300; color: #fff; margin-bottom: 16px;
}
#cta h2 em { font-style: italic; color: rgba(255,255,255,.7); }
#cta p { font-size: 1rem; color: rgba(255,255,255,.75); margin-bottom: 44px; max-width: 520px; margin-left: auto; margin-right: auto; }
.btn-white {
  background: #fff; color: var(--terracotta);
  padding: 16px 44px; font-size: .9rem; letter-spacing: .12em;
  text-transform: uppercase; border: none; cursor: none;
  font-family: 'DM Sans', sans-serif; font-weight: 500;
  transition: transform .2s;
}
.btn-white:hover { transform: translateY(-3px); }

/* ── FOOTER ── */
footer {
  background: var(--deep); color: #8a8278;
  padding: 72px 56px 40px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid #2a2820; margin-bottom: 36px;
}
.footer-brand .logo { color: var(--cream); margin-bottom: 16px; display: inline-flex; }
.footer-brand p { font-size: .85rem; line-height: 1.75; max-width: 280px; }
.footer-col h4 {
  font-family: 'Space Mono', monospace; font-size: .68rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--cream); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: .85rem; color: #8a8278; text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: var(--cream); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem;
}
.footer-bottom a { color: #8a8278; text-decoration: none; }
.footer-bottom a:hover { color: var(--cream); }
.social-links { display: flex; gap: 20px; }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(15,14,12,.8);
  backdrop-filter: blur(6px); z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--cream); max-width: 460px; width: 90%;
  padding: 52px; position: relative;
  transform: translateY(20px); transition: transform .3s;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; font-size: 1.4rem;
  cursor: none; color: var(--ink);
}
.modal h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; margin-bottom: 6px;
}
.modal p { font-size: .88rem; color: #8a8278; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: .75rem; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 6px; color: #6a6258;
}
.form-group input, .form-group select {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--mist); background: #fff;
  font-family: 'DM Sans', sans-serif; font-size: .9rem;
  outline: none; color: var(--ink);
  transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus { border-color: var(--terracotta); }
.btn-submit {
  width: 100%; background: var(--terracotta); color: #fff;
  border: none; padding: 14px; font-family: 'DM Sans', sans-serif;
  font-size: .88rem; letter-spacing: .12em; text-transform: uppercase;
  cursor: none; margin-top: 8px; transition: background .2s;
}
.btn-submit:hover { background: var(--ink); }

/* Modal tab switcher */
.modal-tabs {
  display: flex; gap: 0; margin-bottom: 4px;
  border-bottom: 2px solid var(--mist);
}
.modal-tab {
  flex: 1; background: none; border: none;
  padding: 12px 0; font-family: 'DM Sans', sans-serif;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: #8a8278; cursor: none; position: relative;
  transition: color .2s;
}
.modal-tab::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--terracotta);
  transition: width .3s ease;
}
.modal-tab.active { color: var(--ink); }
.modal-tab.active::after { width: 100%; }
.modal-tab:hover { color: var(--ink); }

/* Modal helper text */
.modal-switch {
  text-align: center; margin-top: 18px;
  font-size: .8rem; color: #8a8278;
}
.modal-switch a { color: var(--terracotta); text-decoration: none; }
.modal-switch a:hover { text-decoration: underline; }
.modal-forgot {
  text-align: right; margin-bottom: 16px; margin-top: -4px;
}
.modal-forgot a { font-size: .78rem; color: #8a8278; text-decoration: none; }
.modal-forgot a:hover { color: var(--terracotta); }

/* ── MODAL FORM ENHANCED COMPONENTS ── */

/* Two-column row for paired fields (name/father, course/dept, regNo/year) */
.modal-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Input wrapper with leading icon */
.modal-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.modal-input-wrap > i:first-child {
  position: absolute;
  left: 12px;
  color: #a8a098;
  font-size: .82rem;
  pointer-events: none;
  z-index: 1;
}
.modal-input-wrap input,
.modal-input-wrap select {
  width: 100%;
  padding: 11px 12px 11px 36px;
  border: 1px solid var(--mist);
  background: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  outline: none;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.modal-input-wrap input:focus,
.modal-input-wrap select:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196,98,58,.10);
}
.modal-input-wrap input:focus ~ i:first-child,
.modal-input-wrap select:focus ~ i:first-child,
.modal-input-wrap:focus-within > i:first-child {
  color: var(--terracotta);
}
.modal-input-wrap select:disabled {
  background: #f5f0e8;
  cursor: not-allowed;
  opacity: .6;
}
.modal-input-wrap select option {
  background: #fff;
  color: var(--ink);
}

/* Password eye-toggle icon */
.modal-toggle-pwd {
  position: absolute !important;
  right: 12px !important;
  left: auto !important;
  cursor: pointer;
  color: #a8a098 !important;
  font-size: .85rem;
  z-index: 2;
  transition: color .2s;
}
.modal-toggle-pwd:hover { color: var(--terracotta) !important; }

/* Remember me / forgot row */
.modal-form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 4px 0 14px;
}
.modal-forgot-link {
  font-size: .78rem;
  color: #8a8278;
  text-decoration: none;
  transition: color .2s;
}
.modal-forgot-link:hover { color: var(--terracotta); }

/* Terms row */
.modal-terms-row { margin: 4px 0; }

/* Custom checkbox */
.modal-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  color: #6a6258;
  cursor: pointer;
  user-select: none;
}
.modal-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.modal-checkmark {
  width: 16px; height: 16px;
  border: 1.5px solid var(--mist);
  background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color .2s, background .2s;
}
.modal-checkbox-label input[type="checkbox"]:checked ~ .modal-checkmark {
  background: var(--terracotta);
  border-color: var(--terracotta);
}
.modal-checkbox-label input[type="checkbox"]:checked ~ .modal-checkmark::after {
  content: '';
  width: 4px; height: 7px;
  border: 2px solid #fff;
  border-top: none; border-left: none;
  transform: rotate(45deg);
  margin-top: -2px;
}
.modal-checkbox-label a { color: var(--terracotta); text-decoration: none; }
.modal-checkbox-label a:hover { text-decoration: underline; }

/* Submit button with icon (override plain btn-submit) */
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-submit i { font-size: .85rem; transition: transform .2s; }
.btn-submit:hover i { transform: translateX(3px); }

/* ── TOAST NOTIFICATION ── */
.setu-toast-container {
  position: fixed;
  top: 24px; right: 24px;
  z-index: 9000;
  transform: translateX(140%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.setu-toast-container.show { transform: translateX(0); }
.setu-toast {
  background: var(--deep);
  color: var(--cream);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  min-width: 280px;
  border-left: 4px solid var(--terracotta);
  font-size: .86rem;
  box-shadow: 0 8px 30px rgba(0,0,0,.18);
}
.setu-toast.error { border-left-color: #e05252; }
.setu-toast #setuToastIcon { color: var(--terracotta); font-size: 1.1rem; }
.setu-toast.error #setuToastIcon { color: #e05252; }

/* ── MODAL SCROLL ── */
.modal { max-height: 90vh; overflow-y: auto; }

/* Nav Login ghost button */
.nav-login {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--mist); padding: 9px 22px;
  font-family: 'DM Sans', sans-serif; font-size: .82rem;
  letter-spacing: .1em; text-transform: uppercase;
  cursor: none; transition: border-color .25s, color .25s;
}
.nav-login:hover { border-color: var(--ink); }

/* search bar in nav */
.search-wrap {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--mist); overflow: hidden;
}
.search-wrap input {
  border: none; background: transparent; padding: 8px 14px;
  font-family: 'DM Sans', sans-serif; font-size: .82rem;
  outline: none; width: 180px; color: var(--ink);
}
.search-wrap button {
  background: none; border: none; padding: 8px 12px;
  cursor: none; color: var(--ink); font-size: .9rem;
}
