@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  --bg: #050b07;
  --bg2: #020503;
  --text: #e9fff2;
  --muted: #93c8a6;
  --primary: #3dff8a;
  --accent: #8effc0;
  --card: rgba(6, 18, 10, 0.8);
  --border: rgba(61, 255, 138, 0.25);
}

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

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: radial-gradient(900px 600px at 10% -20%, rgba(61, 255, 138, 0.12), transparent),
              radial-gradient(800px 600px at 90% 10%, rgba(35, 140, 84, 0.25), transparent),
              linear-gradient(180deg, var(--bg2), var(--bg));
  background-size: 140% 140%;
  animation: bg-drift 26s ease-in-out infinite;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

@keyframes bg-drift {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 0%; }
}

.matrix-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.75;
}

header,
main,
.footer {
  position: relative;
  z-index: 1;
}

.bg-glow {
  position: fixed;
  inset: -20% 0 auto 0;
  height: 400px;
  filter: blur(120px);
  background: radial-gradient(circle, rgba(61, 255, 138, 0.25) 0%, transparent 60%);
  z-index: -1;
}

.nav {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
  padding: 20px 8vw;
  background: rgba(4, 16, 9, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.brand { display: flex; gap: 10px; align-items: center; font-weight: 600; }
.brand-name {
  padding: 6px 12px;
  border-radius: 10px;
  background: #000000;
  border: 1px solid rgba(61, 255, 138, 0.6);
  color: #38f28c;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}
.logo { width: 34px; height: 34px; display: grid; place-items: center; background: rgba(61, 255, 138, 0.12); border: 1px solid var(--border); border-radius: 10px; }

.links { display: none; }
.auth-actions { display: flex; gap: 10px; align-items: center; position: relative; }
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #3fbf6f;
  color: #ffffff;
  font-weight: 700;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.user-menu {
  position: absolute;
  top: 48px;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(61, 255, 138, 0.5);
  border-radius: 12px;
  padding: 10px 12px;
  min-width: 200px;
  display: none;
  gap: 6px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
  z-index: 20;
}
.user-menu.open { display: grid; }
.user-name { color: #38f28c; font-weight: 600; font-size: 14px; }
.user-email { color: #e9fff2; font-size: 12px; opacity: 0.85; }
.menu-action {
  margin-top: 6px;
  border: 1px solid rgba(61, 255, 138, 0.35);
  background: rgba(6, 18, 10, 0.85);
  color: var(--text);
  border-radius: 10px;
  padding: 6px 10px;
  font-size: 12px;
  cursor: pointer;
}
.menu-action:hover {
  border-color: rgba(61, 255, 138, 0.7);
  box-shadow: 0 0 14px rgba(61, 255, 138, 0.25);
}
.links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}
.links a.active, .links a:hover { color: var(--primary); border-bottom-color: var(--primary); }

.burger {
  border: 1px solid var(--border);
  background: rgba(6, 18, 10, 0.8);
  color: var(--primary);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  box-shadow: 0 0 14px rgba(61, 255, 138, 0.25);
  order: -1;
}

.burger span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 8px rgba(61, 255, 138, 0.6);
}

.auth-actions {
  margin-left: auto;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 3, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 11;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: min(280px, 82vw);
  height: 100vh;
  background: rgba(6, 18, 10, 0.95);
  border-right: 1px solid var(--border);
  border-radius: 0;
  padding: 90px 16px 20px;
  display: grid;
  gap: 10px;
  transform: translateX(-12px);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
  z-index: 12;
}

.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(10, 26, 15, 0.7);
  border: 1px solid rgba(61, 255, 138, 0.15);
}

.mobile-menu a:hover {
  border-color: rgba(61, 255, 138, 0.5);
  box-shadow: 0 0 14px rgba(61, 255, 138, 0.25);
}

.menu-open .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.menu-open .mobile-menu {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

main { padding: 30px 8vw 80px; }

.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 65vh;
}

.eyebrow { color: var(--primary); font-weight: 600; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.hero h1 { font-size: 46px; line-height: 1.12; margin-bottom: 12px; }
.sub { color: var(--muted); margin-bottom: 20px; }

.cta { display: flex; gap: 12px; }
.btn {
  border: 1px solid var(--border);
  background: #effaf2;
  color: var(--text);
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.2s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(61, 255, 138, 0.25);
}
.btn.primary { background: linear-gradient(90deg, var(--primary), var(--accent)); color: #0b1b12; font-weight: 600; }
.btn.ghost { background: transparent; }
.btn.small { padding: 8px 14px; font-size: 12px; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 30px rgba(61, 255, 138, 0.25); }

.btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  box-shadow: 0 0 18px rgba(61, 255, 138, 0.4), inset 0 0 10px rgba(61, 255, 138, 0.35);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.btn:hover::after {
  opacity: 1;
}

.hero-visual {
  position: relative;
  background: linear-gradient(160deg, rgba(6, 18, 10, 0.95), rgba(6, 24, 14, 0.92));
  border: 1px solid var(--border);
  border-radius: 16px;
  height: 320px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), inset 0 0 30px rgba(61, 255, 138, 0.08);
}

.graph-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(56,225,255,0.7) 0 2px, transparent 3px),
                    radial-gradient(circle at 70% 40%, rgba(138,92,255,0.7) 0 2px, transparent 3px),
                    radial-gradient(circle at 40% 70%, rgba(56,225,255,0.7) 0 2px, transparent 3px);
  background-size: 160px 120px;
  opacity: 0.8;
}

.node { width: 10px; height: 10px; background: var(--primary); border-radius: 50%; position: absolute; box-shadow: 0 0 20px rgba(63,191,111,0.5); }
.node:nth-child(1){ top: 20%; left: 30%; }
.node:nth-child(2){ top: 45%; left: 60%; background: var(--accent); }
.node:nth-child(3){ top: 70%; left: 40%; }
.node:nth-child(4){ top: 30%; left: 75%; }
.node:nth-child(5){ top: 60%; left: 20%; background: var(--accent); }

.locks { position: absolute; bottom: 14px; right: 16px; display: flex; gap: 6px; opacity: 0.8; }

.section { margin-top: 70px; }
.section h2 { font-size: 32px; margin-bottom: 18px; }

.section-header {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.how-showcase {
  margin-top: 80px;
}

.how-flow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  overflow-x: auto;
  padding: 8px 0 12px;
}

.how-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: 14px;
  color: var(--muted);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  min-width: 220px;
  max-width: 260px;
  position: relative;
  overflow: hidden;
}

.how-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(61, 255, 138, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.how-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(61, 255, 138, 0.18);
  border-color: rgba(61, 255, 138, 0.6);
}

.how-card:hover::before {
  opacity: 1;
}

.how-card h3 {
  color: var(--text);
  margin-bottom: 8px;
  font-size: 18px;
}

.how-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(61, 255, 138, 0.35);
  background: rgba(6, 18, 10, 0.7);
  color: var(--primary);
  margin-bottom: 10px;
  box-shadow: 0 0 12px rgba(61, 255, 138, 0.2);
}

.how-icon span {
  display: inline-block;
  width: 22px;
  height: 22px;
  position: relative;
}

.icon-shield::before {
  content: "";
  position: absolute;
  inset: 2px 4px 0 4px;
  border: 2px solid rgba(61, 255, 138, 0.9);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  box-shadow: 0 0 8px rgba(61, 255, 138, 0.7);
}

.icon-mask::before,
.icon-mask::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 14px;
  top: 4px;
  border: 2px solid rgba(61, 255, 138, 0.9);
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(61, 255, 138, 0.6);
}
.icon-mask::before { left: 0; }
.icon-mask::after { right: 0; opacity: 0.7; }

.icon-search::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(61, 255, 138, 0.9);
  border-radius: 50%;
  top: 2px;
  left: 2px;
  box-shadow: 0 0 8px rgba(61, 255, 138, 0.6);
}
.icon-search::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  background: rgba(61, 255, 138, 0.9);
  bottom: 2px;
  right: 1px;
  transform: rotate(45deg);
  box-shadow: 0 0 8px rgba(61, 255, 138, 0.6);
}

.icon-doc::before {
  content: "";
  position: absolute;
  inset: 1px 3px 1px 3px;
  border: 2px solid rgba(61, 255, 138, 0.9);
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(61, 255, 138, 0.6);
}
.icon-doc::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: rgba(61, 255, 138, 0.9);
  top: 8px;
  left: 5px;
  box-shadow: 0 0 6px rgba(61, 255, 138, 0.6);
}

.how-arrow {
  color: rgba(61, 255, 138, 0.7);
  font-size: 26px;
  text-align: center;
  min-width: 28px;
}

.section-header .sub {
  margin-top: 10px;
}

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: 14px;
  color: var(--muted);
}
.card h3 { color: var(--text); margin-bottom: 8px; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: 14px;
  color: var(--muted);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(61, 255, 138, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(56, 225, 255, 0.12);
  border-color: rgba(56, 225, 255, 0.5);
}
.step-card:hover::before {
  opacity: 1;
}
.step-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #effaf2;
  border: 1px solid var(--border);
  margin-bottom: 10px;
  font-size: 18px;
}
.step-card h3 { color: var(--text); margin-bottom: 8px; }

.two-col { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; align-items: start; }

.mock-box { background: rgba(6, 18, 10, 0.85); border: 1px solid rgba(61, 255, 138, 0.35); border-radius: 14px; padding: 14px; display: grid; gap: 8px; color: #d5ffe6; }
.history-title {
  margin: 10px 0 8px;
  font-weight: 600;
  color: var(--primary);
}
.tag { color: var(--primary); font-weight: 600; margin-right: 6px; }
.tag.bot { color: var(--accent); }

.sim-form {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: flex-end;
}
.sim-form textarea {
  flex: 1;
  min-height: 96px;
  resize: vertical;
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(6, 18, 10, 0.9);
  color: #e9fff2;
  border: 1px solid rgba(61, 255, 138, 0.55);
  box-shadow: inset 0 0 18px rgba(61, 255, 138, 0.18);
  font-size: 15px;
}

.sim-form textarea::placeholder {
  color: rgba(233, 255, 242, 0.65);
}

.api-box {
  margin-top: 12px;
  background: rgba(6, 18, 10, 0.85);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
}
.api-title { color: var(--primary); font-weight: 600; margin-bottom: 8px; }
.api-box pre {
  white-space: pre-wrap;
  font-size: 12px;
  color: #d5ffe6;
}

.panel { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 16px; }
.panel ul { margin: 10px 0 16px 18px; color: var(--muted); }
.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(61, 255, 138, 0.12);
  color: var(--muted);
}
.metric-row strong {
  color: var(--text);
}
.panel-subtitle {
  margin-top: 16px;
  font-size: 14px;
  color: var(--primary);
}

.dash { display: grid; grid-template-columns: 1fr 2fr; gap: 18px; }
.dash-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.dash-card.wide { grid-column: span 1; }
.dash-card.chart { margin-top: 18px; }
.percent { font-size: 36px; color: var(--primary); margin: 6px 0; }
.feed { display: grid; gap: 8px; margin-top: 12px; }
.msg { background: rgba(6, 18, 10, 0.82); border: 1px solid rgba(61, 255, 138, 0.35); border-radius: 10px; padding: 10px; color: #d5ffe6; }
.msg.bot { border-color: rgba(61, 255, 138, 0.6); }

.dashboard { position: relative; }
.dashboard-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 18px; }
.dashboard-card {
  background: rgba(6, 18, 10, 0.8);
  border: 1px solid rgba(61, 255, 138, 0.35);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}
.dashboard-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(61, 255, 138, 0.08), transparent 55%);
  pointer-events: none;
}
.card-title {
  color: #e9fff2;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.overview-main {
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(6, 18, 10, 0.9);
  border: 1px solid rgba(61, 255, 138, 0.25);
}
.overview-main h3 { margin: 0 0 6px; font-size: 18px; color: #e9fff2; }
.big-metric { font-size: 44px; color: var(--primary); margin: 6px 0; }
.overview-main p { color: var(--muted); margin: 0; }
.overview-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.mini-metric {
  padding: 12px;
  border-radius: 12px;
  background: rgba(6, 18, 10, 0.85);
  border: 1px solid rgba(61, 255, 138, 0.2);
  display: grid;
  gap: 6px;
}
.mini-metric span { color: var(--muted); font-size: 12px; }
.mini-metric strong { color: #e9fff2; font-size: 18px; }

.activity-list { display: grid; gap: 10px; margin-top: 8px; }
.activity-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(6, 18, 10, 0.85);
  border: 1px solid rgba(61, 255, 138, 0.2);
}
.activity-meta { display: flex; align-items: center; gap: 10px; }
.activity-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(61, 255, 138, 0.4);
  display: grid;
  place-items: center;
  color: var(--primary);
  background: rgba(6, 18, 10, 0.9);
  font-size: 14px;
}
.activity-text { color: #e9fff2; font-size: 14px; }
.activity-time { color: var(--muted); font-size: 12px; }
.dashboard-card.categories { margin-top: 18px; }

.bars {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  margin-top: 16px;
  padding: 12px 6px 4px;
}
.bar {
  display: grid;
  gap: 6px;
  justify-items: center;
  color: var(--muted);
  min-width: 72px;
}
.bar-top {
  height: 160px;
  width: 34px;
  background: rgba(6, 18, 10, 0.85);
  border: 1px solid rgba(61, 255, 138, 0.35);
  border-radius: 10px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  box-shadow: inset 0 0 12px rgba(61, 255, 138, 0.12);
}
.bar-fill {
  width: 100%;
  background: linear-gradient(180deg, var(--primary), #0b8f4c);
  box-shadow: 0 0 12px rgba(61, 255, 138, 0.35);
}
.bars-vertical .bar span { text-transform: lowercase; letter-spacing: 0.04em; }
.bars-vertical .bar strong { color: #e9fff2; }

.preview {
  margin-top: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  overflow: hidden;
}
.preview img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.bullets { margin-top: 12px; color: var(--muted); display: grid; gap: 8px; margin-left: 18px; }
.team { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.person { padding: 6px 0; color: var(--muted); }

.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form { display: grid; gap: 10px; }
input, textarea {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--text);
}

.contact .form input,
.contact .form textarea {
  background: #000000;
  border: 1px solid #38f28c;
  color: #38f28c;
  font-size: 18px;
}

.contact .form input::placeholder,
.contact .form textarea::placeholder {
  color: rgba(56, 242, 140, 0.7);
}

.footer { text-align: center; padding: 30px 0 40px; color: var(--muted); border-top: 1px solid var(--border); margin-top: 60px; }

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  z-index: 50;
}
.modal.open { display: flex; }
.modal-open main, .modal-open header {
  filter: blur(4px);
  pointer-events: none;
}
.modal-card {
  width: min(420px, 90vw);
  background: rgba(6, 18, 10, 0.95);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  color: var(--text);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.modal-header h3 { font-size: 20px; }
.modal-close {
  border: 1px solid var(--border);
  background: rgba(6, 18, 10, 0.8);
  border-radius: 8px;
  padding: 4px 8px;
  cursor: pointer;
  color: var(--text);
}
.modal-form { display: grid; gap: 10px; }
.modal-form label { display: grid; gap: 6px; color: var(--muted); font-size: 15px; }
.modal-note { margin-top: 10px; color: var(--muted); font-size: 13px; }
.modal-divider { text-align: center; color: var(--muted); font-size: 13px; margin: 6px 0; }
.oauth-row { display: grid; gap: 8px; }
.oauth-btn {
  border: 1px solid var(--border);
  background: rgba(6, 18, 10, 0.85);
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
  color: var(--text);
  font-size: 14px;
}
.oauth-btn.google { background: rgba(6, 18, 10, 0.85); }
.oauth-btn.github { background: #0b1b12; color: #ffffff; border-color: #0b1b12; }
.modal-toggle {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}
.modal-toggle button {
  border: none;
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  font-weight: 600;
}
.modal-status {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

.modal-card input,
.modal-card textarea {
  background: rgba(6, 18, 10, 0.9);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 15px;
}

.modal-card input::placeholder,
.modal-card textarea::placeholder {
  color: rgba(233, 255, 242, 0.6);
}

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 60;
}
.toast.show { display: block; }

@media (max-width: 980px) {
  .hero, .two-col, .contact { grid-template-columns: 1fr; }
  .links { display: none; }
  .dash { grid-template-columns: 1fr; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .overview-metrics { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .auth-actions {
    width: 100%;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 10px;
  }
  .auth-actions .btn {
    padding: 8px 12px;
    font-size: 12px;
  }
}
