/* ============================================================
   Fishison Inc. — Main Stylesheet
   fishison.ca | roman@fishison.ca
   ============================================================ */

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

:root {
  --navy:   #1E293B;
  --orange: #F97316;
  --slate:  #E2E8F0;
  --grey6:  #4A5568;
  --grey3:  #B0B8C4;
  --mono:   'JetBrains Mono', monospace;
  --sans:   'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }
body { background: #0A0F1A; color: var(--slate); font-family: var(--sans); overflow-x: hidden; }

/* ── NAV ──────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 3rem;
  background: rgba(10,15,26,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(249,115,22,0.12);
}
.nav-logo { font-family: var(--mono); font-size: 1.15rem; letter-spacing: -0.02em; color: var(--slate); text-decoration: none; }
.nav-logo span.d  { font-weight: 700; }
.nav-logo span.is { font-weight: 400; font-style: italic; color: var(--orange); }
.nav-logo span.b  { font-weight: 300; color: var(--orange); }
.nav-logo span.on { font-weight: 700; }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a { color: var(--grey3); text-decoration: none; font-size: 0.875rem; font-weight: 400; letter-spacing: 0.04em; transition: color 0.2s; }
.nav-links a:hover { color: var(--orange); }
.nav-cta { background: var(--orange); color: #fff !important; padding: 0.45rem 1.2rem; border-radius: 4px; font-weight: 600 !important; transition: background 0.2s, transform 0.15s !important; }
.nav-cta:hover { background: #ea6a04 !important; transform: translateY(-1px); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero { min-height: 100vh; display: grid; place-items: center; position: relative; padding: 8rem 3rem 5rem; overflow: hidden; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(249,115,22,0.07) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(249,115,22,0.07) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
}
.hero-glow { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 900px; }
.hero-eyebrow { font-family: var(--mono); font-size: 0.9rem; letter-spacing: 0.06em; color: var(--orange); margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 0.8s 0.2s forwards; }
.hero-eyebrow-white { color: white; }
.hero-title { font-family: var(--mono); font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 700; line-height: 1.05; color: var(--slate); margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 0.8s 0.4s forwards; }
.hero-title .accent { color: var(--orange); }
.hero-title .light { font-weight: 300; }
.hero-sub { font-size: 1.15rem; font-weight: 300; color: var(--grey3); max-width: 620px; margin: 0 auto 2.5rem; line-height: 1.75; opacity: 0; animation: fadeUp 0.8s 0.6s forwards; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.8s 0.8s forwards; }
.btn-primary { background: var(--orange); color: #fff; padding: 0.75rem 2rem; border-radius: 4px; font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: background 0.2s, transform 0.15s; border: 2px solid var(--orange); }
.btn-primary:hover { background: #ea6a04; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--slate); padding: 0.75rem 2rem; border-radius: 4px; font-size: 0.9rem; font-weight: 400; text-decoration: none; transition: border-color 0.2s, color 0.2s, transform 0.15s; border: 1px solid rgba(226,232,240,0.25); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

/* Terminal */
.hero-terminal { margin: 3.5rem auto 0; background: rgba(30,41,59,0.6); border: 1px solid rgba(249,115,22,0.2); border-radius: 8px; padding: 1.25rem 1.5rem; font-family: var(--mono); font-size: 0.82rem; text-align: left; max-width: 520px; opacity: 0; animation: fadeUp 0.8s 1s forwards; }
.terminal-bar { display: flex; gap: 6px; margin-bottom: 0.85rem; }
.terminal-dot { width: 10px; height: 10px; border-radius: 50%; }
.td-r { background: #ff5f57; }
.td-y { background: #febc2e; }
.td-g { background: #28c840; }
.terminal-line { display: block; margin-bottom: 0.35rem; color: var(--grey3); }
.terminal-line .prompt { color: var(--orange); }
.terminal-line .out { color: #5DCAA5; }
.cursor { display: inline-block; width: 8px; height: 1em; background: var(--orange); animation: blink 1s step-end infinite; vertical-align: text-bottom; margin-left: 2px; }

/* ── SECTIONS ─────────────────────────────────────────────── */
section { padding: 6rem 3rem; }
.section-label { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.22em; color: var(--orange); text-transform: uppercase; margin-bottom: 0.75rem; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--slate); line-height: 1.2; margin-bottom: 1.25rem; }
.section-desc { font-size: 1.05rem; color: var(--grey3); font-weight: 300; line-height: 1.75; max-width: 560px; }

/* ── STATS ────────────────────────────────────────────────── */
.stats-bar { background: rgba(30,41,59,0.5); border-top: 1px solid rgba(249,115,22,0.12); border-bottom: 1px solid rgba(249,115,22,0.12); padding: 2.5rem 3rem; display: flex; justify-content: center; }
.stat-item { text-align: center; padding: 0 3.5rem; border-right: 1px solid rgba(226,232,240,0.1); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--mono); font-size: 2.2rem; font-weight: 700; color: var(--orange); display: block; line-height: 1; margin-bottom: 0.4rem; }
.stat-lbl { font-size: 0.8rem; color: var(--grey3); letter-spacing: 0.08em; text-transform: uppercase; }

/* ── SERVICES ─────────────────────────────────────────────── */
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.division-card { background: linear-gradient(135deg, rgba(30,41,59,0.8) 0%, rgba(10,15,26,0.9) 100%); border: 1px solid rgba(249,115,22,0.2); border-radius: 12px; padding: 2.5rem; position: relative; overflow: hidden; transition: transform 0.3s, border-color 0.3s; }
.division-card:hover { transform: translateY(-4px); border-color: rgba(249,115,22,0.5); }
.division-card::before { content: ''; position: absolute; top: -40px; right: -40px; width: 180px; height: 180px; background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%); border-radius: 50%; }
.division-tag { display: inline-flex; background: rgba(249,115,22,0.12); border: 1px solid rgba(249,115,22,0.25); color: var(--orange); font-family: var(--mono); font-size: 0.7rem; padding: 0.3rem 0.75rem; border-radius: 20px; letter-spacing: 0.1em; margin-bottom: 1.25rem; }
.division-title { font-size: 1.5rem; font-weight: 700; color: var(--slate); margin-bottom: 0.9rem; line-height: 1.2; }
.division-desc { font-size: 0.95rem; color: var(--grey3); line-height: 1.7; margin-bottom: 1.75rem; font-weight: 300; }
.service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; list-style: none; margin-bottom: 1.75rem; }
.service-list li { display: flex; align-items: center; gap: 0.5rem; font-family: var(--mono); font-size: 0.78rem; color: var(--grey3); }
.service-list li::before { content: ''; width: 5px; height: 5px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
.div-link { font-family: var(--mono); font-size: 0.8rem; color: var(--orange); text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; transition: gap 0.2s; }
.div-link:hover { gap: 0.7rem; }
.div-link::after { content: '→'; }

/* ── INFOSEC ──────────────────────────────────────────────── */
.infosec-bg { background: rgba(10,15,26,0.7); }
.infosec-inner { max-width: 1200px; margin: 0 auto; }
.infosec-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; }
.code-log { background: rgba(30,41,59,0.6); border: 1px solid rgba(249,115,22,0.15); border-radius: 10px; padding: 1.5rem; font-family: var(--mono); font-size: 0.78rem; line-height: 1.75; position: relative; }
.code-log::before { content: 'INFOSEC.log'; font-size: 0.65rem; color: var(--orange); position: absolute; top: 0.75rem; right: 1rem; opacity: 0.7; }
.log-line { display: block; }
.lt   { color: var(--grey6); }
.lok  { color: #28c840; }
.lwarn { color: #febc2e; }
.lcrit { color: #ff5f57; }
.lmsg { color: var(--grey3); }

/* ── WEB APPS ─────────────────────────────────────────────── */
.webapps-bg { background: rgba(30,41,59,0.3); border-top: 1px solid rgba(249,115,22,0.1); border-bottom: 1px solid rgba(249,115,22,0.1); }
.webapps-inner { max-width: 1200px; margin: 0 auto; }
.webapps-top { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 4rem; }
.process-card { background: rgba(30,41,59,0.5); border: 1px solid rgba(255,255,255,0.07); border-radius: 8px; padding: 1.25rem; display: flex; gap: 1rem; align-items: flex-start; }
.process-num { width: 36px; height: 36px; background: rgba(249,115,22,0.12); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--mono); color: var(--orange); font-size: 0.9rem; }
.process-title { font-weight: 600; color: var(--slate); margin-bottom: 0.3rem; font-size: 0.9rem; }
.process-desc { font-size: 0.82rem; color: var(--grey3); line-height: 1.6; }

/* ── PROJECT TABS ─────────────────────────────────────────── */
.project-tabs { display: flex; border-bottom: 1px solid rgba(226,232,240,0.1); }
.tab-btn { background: none; border: none; border-bottom: 2px solid transparent; color: var(--grey3); font-family: var(--mono); font-size: 0.78rem; padding: 0.65rem 1.25rem; cursor: pointer; transition: color 0.2s, border-color 0.2s; position: relative; bottom: -1px; }
.tab-btn.active { color: var(--orange); border-bottom-color: var(--orange); }
.tab-btn:hover:not(.active) { color: var(--slate); }
.tab-panel { display: none; background: rgba(30,41,59,0.5); border: 1px solid rgba(249,115,22,0.15); border-top: none; border-radius: 0 0 10px 10px; overflow: hidden; animation: panelIn 0.35s ease; }
.tab-panel.active { display: block; }

.project-card { display: grid; grid-template-columns: 1fr 1fr; }
.project-preview { background: var(--navy); min-height: 280px; display: flex; align-items: center; justify-content: center; padding: 1.75rem; overflow: hidden; }
.project-screen { width: 100%; background: #0f172a; border: 1px solid rgba(249,115,22,0.2); border-radius: 8px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.5); transform: perspective(800px) rotateY(-5deg) rotateX(2deg); transition: transform 0.4s ease; }
.project-screen:hover { transform: perspective(800px) rotateY(0deg) rotateX(0deg); }
.screen-bar { background: rgba(30,41,59,0.9); padding: 0.5rem 0.75rem; display: flex; align-items: center; gap: 6px; border-bottom: 1px solid rgba(249,115,22,0.1); }
.sb-dot { width: 7px; height: 7px; border-radius: 50%; }
.sb-url { flex: 1; background: rgba(255,255,255,0.05); border-radius: 3px; height: 16px; margin: 0 0.5rem; display: flex; align-items: center; padding: 0 0.5rem; font-family: var(--mono); font-size: 0.6rem; color: var(--grey3); }
.screen-body { padding: 1rem; min-height: 165px; }

/* Derby mock styles */
.derby-topbar { display:flex; justify-content:space-between; align-items:center; margin-bottom:0.65rem; }
.derby-brand { font-family:var(--mono); font-size:0.72rem; font-weight:700; color:var(--orange); }
.derby-event-tag { font-family:var(--mono); font-size:0.55rem; color:var(--grey6); background:rgba(249,115,22,0.1); padding:2px 6px; border-radius:3px; }
.derby-live { background:rgba(249,115,22,0.15); color:var(--orange); font-family:var(--mono); font-size:0.5rem; padding:2px 5px; border-radius:3px; animation:pulse 1.5s infinite; }
.derby-head { font-family:var(--mono); font-size:0.58rem; color:var(--grey6); letter-spacing:0.1em; text-transform:uppercase; border-bottom:1px solid rgba(255,255,255,0.06); padding-bottom:0.3rem; margin-bottom:0.4rem; }
.derby-row { display:grid; grid-template-columns:1.2rem 1fr auto auto; gap:0.5rem; align-items:center; font-family:var(--mono); font-size:0.6rem; color:var(--grey3); padding:0.28rem 0; border-bottom:1px solid rgba(255,255,255,0.04); }
.derby-rank { color:var(--orange); font-weight:700; }
.derby-angler { color:var(--slate); }
.derby-weight { color:#5DCAA5; font-weight:700; }
.derby-sp { font-size:0.5rem; color:var(--grey6); }
.derby-tv { margin-top:0.6rem; background:rgba(249,115,22,0.07); border:1px solid rgba(249,115,22,0.15); border-radius:3px; padding:0.3rem 0.5rem; display:flex; justify-content:space-between; font-family:var(--mono); font-size:0.53rem; color:var(--grey3); }

/* TrollOG mock styles */
.tlog-topbar { display:flex; justify-content:space-between; align-items:center; margin-bottom:0.55rem; font-family:var(--mono); }
.tlog-brand { font-size:0.72rem; font-weight:700; color:#1D9E75; }
.tlog-meta { font-size:0.53rem; color:var(--grey6); background:rgba(29,158,117,0.1); padding:2px 6px; border-radius:3px; }
.tlog-3d { background:linear-gradient(180deg,#061822 0%,#0a2a1e 100%); border-radius:4px; height:76px; margin-bottom:0.45rem; position:relative; overflow:hidden; }
.tlog-surface { position:absolute; top:20px; left:0; right:0; height:1px; background:rgba(29,158,117,0.3); }
.tlog-line { position:absolute; width:1px; background:linear-gradient(180deg,rgba(29,158,117,0.7),rgba(29,158,117,0.1)); transform-origin:top center; }
.tlog-lure { position:absolute; width:5px; height:5px; border-radius:50%; box-shadow:0 0 4px currentColor; }
.tlog-label { position:absolute; bottom:3px; width:100%; text-align:center; font-family:var(--mono); font-size:0.46rem; color:rgba(29,158,117,0.45); }
.tlog-catches { display:grid; grid-template-columns:1fr 1fr; gap:0.3rem; margin-bottom:0.35rem; font-family:var(--mono); }
.tlog-catch { background:rgba(29,158,117,0.08); border:1px solid rgba(29,158,117,0.15); border-radius:3px; padding:0.28rem 0.4rem; }
.tlog-fish { color:#1D9E75; font-weight:700; font-size:0.58rem; }
.tlog-detail { color:var(--grey6); font-size:0.5rem; margin-top:1px; }
.tlog-stats { display:flex; gap:0.3rem; font-family:var(--mono); }
.tlog-stat { flex:1; background:rgba(255,255,255,0.03); border-radius:3px; padding:0.22rem 0.3rem; text-align:center; }
.tlog-val { color:#1D9E75; font-weight:700; font-size:0.6rem; display:block; }
.tlog-key { color:var(--grey6); font-size:0.48rem; }

/* MaritimePlus mock styles */
.mar-wrap { display:flex; height:210px; background:#F7F9FB; font-family:var(--sans); }
.mar-sidebar { width:50px; background:#071830; border-right:1px solid rgba(255,255,255,0.06); display:flex; flex-direction:column; align-items:center; padding:8px 0; gap:3px; flex-shrink:0; }
.mar-logo { width:26px; height:26px; border-radius:50%; background:#1B3A6B; border:1px solid #0F6E56; display:flex; align-items:center; justify-content:center; font-size:0.46rem; font-weight:700; color:#1D9E75; margin-bottom:5px; }
.mar-navitem { width:30px; height:22px; border-radius:4px; background:rgba(255,255,255,0.04); display:flex; align-items:center; justify-content:center; font-size:0.5rem; color:rgba(255,255,255,0.3); }
.mar-navitem.on { background:rgba(15,110,86,0.2); color:#1D9E75; }
.mar-main { flex:1; display:flex; flex-direction:column; overflow:hidden; }
.mar-topbar { background:#fff; border-bottom:1px solid #E8EDF5; padding:5px 8px; display:flex; justify-content:space-between; align-items:center; }
.mar-title { font-size:0.68rem; font-weight:700; color:#1A2332; }
.mar-sub { font-size:0.42rem; color:#6B82A0; }
.mar-actions { display:flex; gap:3px; }
.mar-btn { font-size:0.45rem; padding:2px 5px; border-radius:3px; border:1px solid #E8EDF5; color:#6B82A0; background:#fff; }
.mar-body { background:#F7F9FB; padding:6px 8px; flex:1; overflow:hidden; }
.mar-kpis { display:grid; grid-template-columns:repeat(4,1fr); gap:3px; margin-bottom:5px; }
.mar-kpi { background:#fff; border:1px solid #E8EDF5; border-radius:4px; padding:4px 5px; }
.mar-kpi-lbl { font-size:0.42rem; color:#6B82A0; text-transform:uppercase; letter-spacing:0.05em; margin-bottom:2px; }
.mar-kpi-val { font-size:0.72rem; font-weight:700; }
.mar-kpi-val.red { color:#E24B4A; }
.mar-kpi-val.grn { color:#0F6E56; }
.mar-kpi-val.nvy { color:#1B3A6B; }
.mar-sms-hdr { display:flex; justify-content:space-between; align-items:center; margin-bottom:3px; }
.mar-sms-title { font-size:0.56rem; font-weight:700; color:#1A2332; }
.mar-badge { background:rgba(226,75,74,0.1); color:#E24B4A; font-size:0.42rem; padding:1px 5px; border-radius:3px; }
.mar-row { display:flex; justify-content:space-between; align-items:center; padding:2.5px 0; border-bottom:1px solid rgba(0,0,0,0.04); font-size:0.5rem; }
.mar-sec { color:#1A2332; }
.mar-status { padding:1px 5px; border-radius:2px; font-size:0.42rem; font-weight:600; }
.mar-status.draft    { background:rgba(254,188,46,0.15); color:#854F0B; }
.mar-status.approved { background:rgba(15,110,86,0.12);  color:#0F6E56; }
.mar-status.ns       { background:rgba(107,130,160,0.12); color:#6B82A0; }

/* ── PROJECT INFO ─────────────────────────────────────────── */
.project-info { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.project-label { font-family: var(--mono); font-size: 0.68rem; color: var(--orange); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.5rem; }
.project-name { font-size: 1.3rem; font-weight: 700; color: var(--slate); margin-bottom: 0.75rem; }
.project-desc { font-size: 0.88rem; color: var(--grey3); line-height: 1.7; font-weight: 300; margin-bottom: 1.25rem; }
.project-tech { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.25rem; }
.tech-tag { font-family: var(--mono); font-size: 0.65rem; color: var(--grey3); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 0.2rem 0.55rem; border-radius: 3px; }
.project-link { font-family: var(--mono); font-size: 0.75rem; color: var(--orange); text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; transition: gap 0.2s; }
.project-link:hover { gap: 0.7rem; }
.project-link::after { content: '↗'; }
.project-link.disabled { opacity: 0.5; pointer-events: none; }

/* ── CONTACT FORM ─────────────────────────────────────────── */
.contact-section { background: linear-gradient(135deg, rgba(30,41,59,0.7) 0%, rgba(10,15,26,0.95) 100%); border-top: 1px solid rgba(249,115,22,0.15); border-bottom: 1px solid rgba(249,115,22,0.15); }
.contact-inner { max-width: 700px; margin: 0 auto; }
.contact-header { text-align: center; margin-bottom: 3rem; }
.contact-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--slate); margin-bottom: 1rem; font-family: var(--mono); }
.contact-title .accent { color: var(--orange); }
.contact-sub { font-size: 1rem; color: var(--grey3); font-weight: 300; line-height: 1.7; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-family: var(--mono); font-size: 0.72rem; color: var(--orange); letter-spacing: 0.12em; text-transform: uppercase; }
.form-input,
.form-select,
.form-textarea {
  background: rgba(30,41,59,0.6);
  border: 1px solid rgba(226,232,240,0.12);
  border-radius: 6px;
  color: var(--slate);
  font-family: var(--sans);
  font-size: 0.9rem;
  padding: 0.7rem 1rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--grey6); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: rgba(249,115,22,0.5); background: rgba(30,41,59,0.9); }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B0B8C4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: rgba(30,41,59,0.6);
  padding-right: 2.5rem;
  cursor: pointer;
  appearance: none;
}
.form-select option { background: #1E293B; color: var(--slate); }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-submit { background: var(--orange); color: #fff; border: none; border-radius: 6px; padding: 0.85rem 2.5rem; font-family: var(--sans); font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: background 0.2s, transform 0.15s; align-self: flex-start; }
.form-submit:hover { background: #ea6a04; transform: translateY(-2px); }
.form-submit:disabled { opacity: 0.7; transform: none; cursor: default; }

/* Form response messages */
.form-message { display: none; padding: 1rem 1.25rem; border-radius: 6px; font-family: var(--mono); font-size: 0.82rem; margin-top: 0.5rem; }
.form-message.success { display: block; background: rgba(40,200,64,0.1); border: 1px solid rgba(40,200,64,0.3); color: #28c840; }
.form-message.error   { display: block; background: rgba(255,95,87,0.1);  border: 1px solid rgba(255,95,87,0.3);  color: #ff5f57; }

.contact-note { margin-top: 1.5rem; text-align: center; font-family: var(--mono); font-size: 0.75rem; color: var(--grey6); }
.contact-note a { color: var(--orange); text-decoration: none; }
.contact-note a:hover { text-decoration: underline; }

/* ── FOOTER ───────────────────────────────────────────────── */
footer { padding: 2.5rem 3rem; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-logo { font-family: var(--mono); font-size: 0.9rem; color: var(--grey6); }
.footer-logo span { color: var(--orange); }
.footer-copy { font-size: 0.75rem; color: var(--grey6); font-family: var(--mono); }

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp    { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes panelIn   { from { opacity:0; transform:translateY(8px);  } to { opacity:1; transform:translateY(0); } }
@keyframes blink     { 0%,100% { opacity:1; } 50% { opacity:0; } }
@keyframes pulse     { 0%,100% { opacity:1; } 50% { opacity:0.5; } }

.reveal { opacity:0; transform:translateY(30px); transition:opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:0.15s; }
.reveal-delay-2 { transition-delay:0.3s; }
.reveal-delay-3 { transition-delay:0.45s; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-links { gap: 1.5rem; }
  section { padding: 4rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; gap: 2rem; }
  .webapps-top { grid-template-columns: 1fr; gap: 2rem; }
  .project-card { grid-template-columns: 1fr; }
  .infosec-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-bar { flex-wrap: wrap; gap: 2rem; padding: 2rem 1.5rem; }
  .stat-item { border-right: none; padding: 0 1.5rem; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
  .service-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
