/* ============================================
   Rule 1 Ventures — Shared Styles
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-primary:    #0a0e17;
  --bg-secondary:  #111827;
  --bg-card:       #0f172a;
  --border:        #1e293b;
  --accent:        #00e5a0;
  --accent-dark:   #00c48a;
  --text:          #ffffff;
  --text-secondary:#94a3b8;
  --text-muted:    #64748b;
  --radius:        12px;
  --radius-sm:     8px;
  --max-w:         1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ---------- Typography ---------- */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 680px;
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: #0a0e17;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--text-secondary);
  background: rgba(255,255,255,0.03);
}

.btn-submit {
  background: var(--accent);
  color: #0a0e17;
  width: 100%;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
}

.btn-submit:hover {
  background: var(--accent-dark);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(30,41,59,0.5);
}

.nav {
  background: transparent !important;
  backdrop-filter: none !important;
  border-bottom: none !important;
}

body.landing-page .footer {
  border-top: none;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.nav-logo-hidden {
  visibility: hidden;
}

.nav-logo .ventures {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-links .btn {
  padding: 8px 20px;
  font-size: 0.85rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.nav-links .btn:hover {
  background: var(--accent);
  color: #0a0e17;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
  }
  .nav-links.active { display: flex; }
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  margin-top: 100px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-size: 1rem;
  font-weight: 800;
}

.footer-logo .ventures {
  color: var(--accent);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ---------- Wireframe Backgrounds ---------- */

/* ---------- Hero (Homepage) ---------- */
.hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0,229,160,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Green glow on all pages — behind content */
body.has-wireframe-bg::before {
  content: '';
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0,229,160,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-logo {
  display: block;
  width: 280px;
  height: auto;
  margin: 0 auto 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,229,160,0.08);
  border: 1px solid rgba(0,229,160,0.2);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 600px;
  margin: 0 auto 24px;
}

.hero p {
  color: var(--text-secondary);
  font-size: 1.35rem;
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Stats ---------- */
.stats {
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-item {
  background: var(--bg-secondary);
  padding: 36px 24px;
  text-align: center;
}

.stat-value {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ---------- Section Wrapper ---------- */
.section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 56px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-subtitle {
  margin: 0 auto;
}

/* ---------- Tech Focus Cards ---------- */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.focus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s;
}

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

.focus-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: #fff;
}

.focus-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.focus-card .focus-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.focus-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Icon colors */
.icon-as, .icon-sc, .icon-ew, .icon-am, .icon-ws, .icon-pn {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
}

@media (max-width: 900px) {
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ---------- Fund II / Two Column ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col-text .section-subtitle {
  margin-bottom: 20px;
}

.fund-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fund-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
}

.fund-stat .value {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.fund-stat .label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Deck Access Section ---------- */
.deck-section {
  padding: 100px 0;
}

.deck-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.deck-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.deck-badge svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
}

.deck-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.deck-info p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.deck-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.deck-note::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.deck-form {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group:last-of-type {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
}

@media (max-width: 768px) {
  .deck-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Leadership / Team Cards ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}

.team-avatar {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.1rem;
  font-weight: 800;
  background: rgba(0,229,160,0.08);
  color: var(--accent);
  object-fit: cover;
}

.team-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
}

.team-card .bio {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* Advisory board — 3-col variant */
.advisory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .advisory-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ---------- Page Header (Team, Thesis, Contact) ---------- */
.page-header {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Full-page wireframe backdrop + repeating dot grid */
body.has-wireframe-bg {
  background-image: url('/images/dot-grid.png'), var(--page-wireframe-bg);
  background-size: 80px 80px, max(100%, 1200px) auto;
  background-position: 0 0, center top;
  background-repeat: repeat, no-repeat;
  background-attachment: scroll, scroll;
}

.page-header .section-subtitle {
  margin: 0 auto;
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.contact-card h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-card > p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.accredited-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 20px;
}

.accredited-note::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

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

/* ---------- Thesis Page ---------- */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.advantage-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.advantage-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

.advantage-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.thesis-highlight {
  text-align: center;
  padding: 40px 0;
  font-size: 1rem;
  color: var(--text-secondary);
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

.thesis-callout {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  margin: 60px 0;
}

.thesis-callout p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.thesis-callout .highlight {
  color: var(--accent);
  font-weight: 700;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.opportunity-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.opportunity-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.opportunity-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .advantage-grid { grid-template-columns: repeat(2, 1fr); }
  .opportunity-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .advantage-grid { grid-template-columns: 1fr; }
  .opportunity-grid { grid-template-columns: 1fr; }
}

.cost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cost-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px;
}

.cost-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cost-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.georgia-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.georgia-section h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.georgia-section > div p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.georgia-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.georgia-list-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.georgia-list-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .georgia-section { grid-template-columns: 1fr; }
}

/* ---------- HUD Frame (Landing Page) ---------- */
.hud-frame {
  position: relative;
  padding: 48px 56px;
  max-width: 680px;
  margin: 0 auto;
}

/* Corner brackets */
.hud-frame::before,
.hud-frame::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: var(--accent);
  border-style: solid;
  opacity: 0.5;
}

.hud-frame::before {
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
}

.hud-frame::after {
  top: 0;
  right: 0;
  border-width: 1px 1px 0 0;
}

.hero-subtitle {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 28px;
  opacity: 0.7;
}

/* Bottom corner brackets */
.hud-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: var(--accent);
  border-style: solid;
  opacity: 0.5;
}

.hud-corner--bl {
  bottom: 0;
  left: 0;
  border-width: 0 0 1px 1px;
}

.hud-corner--br {
  bottom: 0;
  right: 0;
  border-width: 0 1px 1px 0;
}

/* Accent lines spanning viewport */
.accent-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,229,160,0.15) 20%, rgba(0,229,160,0.15) 80%, transparent 100%);
}

.accent-line--top {
  top: 90px;
}

.accent-line--bottom {
  bottom: 40px;
}

/* Animated scan line */
.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,229,160,0.08) 30%, rgba(0,229,160,0.15) 50%, rgba(0,229,160,0.08) 70%, transparent 100%);
  animation: scanMove 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scanMove {
  0% { top: 10%; }
  50% { top: 85%; }
  100% { top: 10%; }
}

/* HUD status indicators - small dots in viewport corners */
.hud-indicator {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.4;
}

.hud-indicator::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 1px;
  background: var(--accent);
  opacity: 0.3;
  top: 50%;
  transform: translateY(-50%);
}

.hud-indicator::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 20px;
  background: var(--accent);
  opacity: 0.3;
  left: 50%;
  transform: translateX(-50%);
}

.hud-indicator--tl { top: 100px; left: 24px; }
.hud-indicator--tl::before { left: 8px; }
.hud-indicator--tl::after { top: 8px; }

.hud-indicator--tr { top: 100px; right: 24px; }
.hud-indicator--tr::before { right: 8px; left: auto; }
.hud-indicator--tr::after { top: 8px; }

.hud-indicator--bl { bottom: 60px; left: 24px; }
.hud-indicator--bl::before { left: 8px; }
.hud-indicator--bl::after { bottom: 8px; top: auto; }

.hud-indicator--br { bottom: 60px; right: 24px; }
.hud-indicator--br::before { right: 8px; left: auto; }
.hud-indicator--br::after { bottom: 8px; top: auto; }

/* Pulsing animation on indicators */
.hud-indicator--tl,
.hud-indicator--br {
  animation: hudPulse 3s ease-in-out infinite;
}

.hud-indicator--tr,
.hud-indicator--bl {
  animation: hudPulse 3s ease-in-out infinite 1.5s;
}

@keyframes hudPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

@media (max-width: 768px) {
  .hud-frame { padding: 32px 24px; }
  .hud-indicator { display: none; }
  .accent-line { display: none; }
  .hero-subtitle::before,
  .hero-subtitle::after { display: none; }
}

/* ---------- Utilities ---------- */
.linkedin-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  transition: opacity 0.2s;
}
.linkedin-link:hover {
  opacity: 0.7;
}

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
