/* ==============================================
   ALESSON VIANA PORTFOLIO — STYLE.CSS
   Dark theme · Orange accent · Poppins
   ============================================== */

/* --- Variables --- */
:root {
  --bg:       #0d0d0d;
  --bg2:      #141414;
  --bg3:      #1a1a1a;
  --accent:   #ff4500;
  --accent-a: rgba(255,69,0,0.12);
  --accent-b: rgba(255,69,0,0.4);
  --text:     #ffffff;
  --muted:    #aaaaaa;
  --border:   rgba(255,255,255,0.08);
  --radius:   8px;
  --nav-h:    68px;
  --ease:     cubic-bezier(0.4,0,0.2,1);
  --glow-sm:  0 0 18px rgba(255,69,0,0.35);
  --glow-lg:  0 0 40px rgba(255,69,0,0.55), 0 0 80px rgba(255,69,0,0.2);
  --font:     'Poppins', sans-serif;
  --mono:     'JetBrains Mono', monospace;
}

/* --- Reset --- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  background:var(--bg);
  color:var(--text);
  font-family:var(--font);
  line-height:1.6;
  overflow-x:hidden;
  cursor:none;
}
@media (pointer:coarse) { body { cursor:auto; } }
img { display:block; max-width:100%; }
a  { color:inherit; }
ul { list-style:none; }
button { font-family:var(--font); }

/* Scrollbar */
::-webkit-scrollbar        { width:4px; }
::-webkit-scrollbar-track  { background:var(--bg); }
::-webkit-scrollbar-thumb  { background:var(--accent); border-radius:2px; }
::selection                { background:var(--accent); color:var(--bg); }

/* --- Custom Cursor --- */
.cursor {
  position:fixed; width:8px; height:8px; border-radius:50%;
  background:var(--accent); pointer-events:none; z-index:10000;
  transform:translate(-50%,-50%);
  transition:width .2s var(--ease), height .2s var(--ease);
}
.cursor-follower {
  position:fixed; width:32px; height:32px; border-radius:50%;
  border:1px solid var(--accent); pointer-events:none; z-index:9999;
  transform:translate(-50%,-50%); opacity:.45;
  transition:width .3s var(--ease), height .3s var(--ease), opacity .3s;
}
.cursor.hover          { width:16px; height:16px; }
.cursor-follower.hover { width:50px; height:50px; opacity:.25; }

/* --- Container --- */
.container { max-width:1180px; margin:0 auto; padding:0 2rem; }

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

/* --- Section header --- */
.section-header { text-align:center; margin-bottom:56px; }
.section-label {
  display:inline-block; font-family:var(--mono); font-size:.7rem;
  color:var(--accent); text-transform:uppercase; letter-spacing:4px; margin-bottom:10px;
}
.section-title {
  font-size:clamp(2rem,4vw,3rem); font-weight:700; line-height:1.1;
  display:inline-block; position:relative;
}
.section-title::after {
  content:''; position:absolute; bottom:-14px; left:50%; transform:translateX(-50%);
  width:56px; height:3px; background:var(--accent); border-radius:2px;
}

/* --- Buttons --- */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 30px; border-radius:4px; font-size:.88rem; font-weight:600;
  letter-spacing:.4px; cursor:pointer; text-decoration:none; border:none;
  position:relative; overflow:hidden; transition:color .3s var(--ease), box-shadow .3s;
}
.btn::before {
  content:''; position:absolute; inset:0;
  background:#fff; transform:scaleX(0); transform-origin:left;
  transition:transform .4s var(--ease); opacity:.1;
}
.btn:hover::before { transform:scaleX(1); }

.btn-primary          { background:var(--accent); color:#fff; }
.btn-primary:hover    { box-shadow:var(--glow-sm); }
.btn-outline          { background:transparent; color:var(--text); border:1px solid var(--border); }
.btn-outline:hover    { border-color:var(--accent); color:var(--accent); }
.btn-block            { width:100%; justify-content:center; }

/* ======================================
   NAVBAR
   ====================================== */
.navbar {
  position:fixed; inset:0 0 auto; height:var(--nav-h); z-index:900;
  border-bottom:1px solid transparent;
  transition:background .3s var(--ease), border-color .3s;
}
.navbar.scrolled {
  background:rgba(13,13,13,.88);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom-color:var(--border);
}
.nav-container {
  max-width:1180px; margin:0 auto; padding:0 2rem;
  height:100%; display:flex; align-items:center; justify-content:space-between;
}
.nav-logo { font-size:1.35rem; font-weight:800; text-decoration:none; letter-spacing:-.5px; }
.nav-logo span { color:var(--accent); }

.nav-links { display:flex; gap:2.5rem; }
.nav-link {
  color:var(--muted); text-decoration:none; font-size:.85rem; font-weight:500;
  position:relative; transition:color .25s;
}
.nav-link::after {
  content:''; position:absolute; bottom:-4px; left:0; width:0; height:2px;
  background:var(--accent); transition:width .3s var(--ease);
}
.nav-link:hover, .nav-link.active { color:var(--text); }
.nav-link:hover::after, .nav-link.active::after { width:100%; }

/* Mobile toggle */
.nav-toggle {
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; cursor:none; padding:4px;
}
.nav-toggle span {
  display:block; width:22px; height:2px; background:var(--text);
  transition:transform .3s var(--ease), opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity:0; }
.nav-toggle.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

@media (max-width:768px) {
  .nav-toggle { display:flex; }
  .nav-links {
    position:fixed; top:var(--nav-h); inset-inline:0; bottom:0;
    background:rgba(13,13,13,.97); backdrop-filter:blur(20px);
    flex-direction:column; align-items:center; justify-content:center; gap:2rem;
    transform:translateX(100%); transition:transform .35s var(--ease); z-index:800;
  }
  .nav-links.open { transform:translateX(0); }
  .nav-link { font-size:1.2rem; }
  .nav-container { padding:0 1.25rem; }
}

/* ======================================
   HERO
   ====================================== */
.hero {
  position:relative; min-height:100vh; display:flex; align-items:center;
  overflow:hidden; padding-top:var(--nav-h);
}
/* Dot grid */
.hero::before {
  content:''; position:absolute; inset:0; pointer-events:none; z-index:0;
  background-image:radial-gradient(rgba(255,69,0,.1) 1px, transparent 1px);
  background-size:38px 38px;
}
.hero-canvas { position:absolute; inset:0; z-index:0; pointer-events:none; }

.hero-container {
  position:relative; z-index:1; width:100%; max-width:1180px; margin:0 auto; padding:0 2rem;
  display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center;
  min-height:calc(100vh - var(--nav-h));
}

.hero-greeting {
  display:block; font-family:var(--mono); font-size:.9rem;
  color:var(--accent); letter-spacing:3px; margin-bottom:10px;
}
.hero-name {
  font-size:clamp(1.4rem,2.5vw,1.8rem); font-weight:500; color:var(--muted); margin-bottom:6px;
}
.hero-title {
  font-size:clamp(2.4rem,5vw,4.2rem); font-weight:800; line-height:1.05;
  margin-bottom:22px; min-height:1.2em;
}
.typewriter { color:var(--accent); }
.typewriter-cursor { color:var(--accent); animation:blink 1s step-end infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-desc {
  font-size:.975rem; color:var(--muted); line-height:1.75;
  max-width:480px; margin-bottom:32px;
}
.hero-buttons { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:36px; }

.hero-tech-icons { display:flex; gap:10px; flex-wrap:wrap; }
.tech-pill {
  font-family:var(--mono); font-size:.65rem; font-weight:700; letter-spacing:1.5px;
  text-transform:uppercase; color:var(--muted); padding:5px 14px;
  background:var(--bg2); border:1px solid var(--border); border-radius:3px;
  transition:border-color .25s, color .25s, box-shadow .25s;
}
.tech-pill:hover { border-color:var(--accent); color:var(--accent); box-shadow:var(--glow-sm); }

/* Profile image */
.hero-image {
  display:flex; align-items:center; justify-content:center; position:relative;
}
.profile-photo {
  width:300px; height:300px; border-radius:50%; object-fit:cover;
  position:relative; z-index:2; filter:brightness(.92);
  transition:filter .3s;
}
.profile-photo:hover { filter:brightness(1); }
.profile-ring {
  position:absolute; width:340px; height:340px; border-radius:50%;
  border:2px solid var(--accent); z-index:1;
  animation:glow-pulse 3s ease-in-out infinite;
}
.profile-ring-2 {
  position:absolute; width:385px; height:385px; border-radius:50%;
  border:1px solid rgba(255,69,0,.18); z-index:1;
  animation:glow-pulse 3s ease-in-out infinite 1.4s;
}
@keyframes glow-pulse {
  0%,100% { box-shadow:0 0 14px rgba(255,69,0,.28),0 0 28px rgba(255,69,0,.12); opacity:1; }
  50%      { box-shadow:0 0 30px rgba(255,69,0,.55),0 0 60px rgba(255,69,0,.28),0 0 100px rgba(255,69,0,.1); opacity:.8; }
}

/* Scroll indicator */
.hero-scroll-indicator {
  position:absolute; bottom:36px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:7px; z-index:1;
}
.hero-scroll-indicator span {
  font-family:var(--mono); font-size:.6rem; letter-spacing:3px;
  text-transform:uppercase; color:var(--muted);
}
.scroll-line {
  width:1px; height:38px;
  background:linear-gradient(to bottom, var(--accent), transparent);
  animation:scroll-anim 1.6s ease-in-out infinite;
}
@keyframes scroll-anim { 0%,100%{transform:scaleY(1);opacity:1} 50%{transform:scaleY(.4);opacity:.4} }

@media (max-width:1024px) {
  .hero-container { gap:2.5rem; }
  .profile-photo  { width:250px; height:250px; }
  .profile-ring   { width:284px; height:284px; }
  .profile-ring-2 { width:322px; height:322px; }
}
@media (max-width:768px) {
  .hero-container {
    grid-template-columns:1fr; text-align:center; gap:2.5rem;
    padding-top:2rem; padding-bottom:5rem;
  }
  .hero-text  { order:2; }
  .hero-image { order:1; }
  .hero-desc  { margin-inline:auto; }
  .hero-buttons, .hero-tech-icons { justify-content:center; }
  .profile-photo  { width:200px; height:200px; }
  .profile-ring   { width:228px; height:228px; }
  .profile-ring-2 { width:260px; height:260px; }
}

/* ======================================
   TECH SCROLL BAR
   ====================================== */
.tech-bar {
  border-top:1px solid var(--accent); border-bottom:1px solid var(--accent);
  background:var(--bg2); overflow:hidden; padding:14px 0;
}
.tech-track {
  display:flex; width:max-content;
  animation:marquee 32s linear infinite;
}
.tech-group { display:flex; align-items:center; flex-shrink:0; }
.tech-group span {
  font-family:var(--mono); font-size:.72rem; font-weight:700;
  letter-spacing:2px; text-transform:uppercase; color:var(--muted);
  padding:0 22px; white-space:nowrap;
  transition:color .25s;
}
.tech-group span:hover { color:var(--accent); }
.tech-group em {
  color:var(--accent); font-style:normal; font-size:.45rem;
  flex-shrink:0; line-height:1;
}
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ======================================
   ABOUT
   ====================================== */
.about { background:var(--bg); }
.about-grid {
  display:grid; grid-template-columns:1fr 1.6fr; gap:4.5rem; align-items:start;
}
.service-card {
  display:flex; gap:18px; align-items:flex-start;
  background:var(--bg2); border:1px solid var(--border); border-radius:var(--radius);
  padding:24px; margin-bottom:14px;
  transition:border-color .3s, transform .3s, box-shadow .3s;
}
.service-card:hover { border-color:var(--accent); transform:translateY(-4px); box-shadow:0 8px 28px rgba(255,69,0,.09); }
.service-icon { font-size:1.7rem; flex-shrink:0; }
.service-card h3 { font-size:.95rem; font-weight:600; margin-bottom:5px; }
.service-card p  { font-size:.82rem; color:var(--muted); line-height:1.6; }

.about-content p {
  font-size:.94rem; color:var(--muted); line-height:1.8; margin-bottom:16px;
}
.about-content a { color:var(--accent); text-decoration:none; }
.about-content a:hover { text-decoration:underline; }

.about-counters {
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
  margin-top:36px; padding-top:36px; border-top:1px solid var(--border);
}
.counter-item { text-align:center; }
.counter-top  { display:flex; align-items:baseline; justify-content:center; gap:2px; }
.counter-number { font-size:2.4rem; font-weight:800; color:var(--accent); line-height:1; }
.counter-suffix { font-size:2rem; font-weight:800; color:var(--accent); }
.counter-label  {
  display:block; font-size:.7rem; color:var(--muted);
  letter-spacing:1px; text-transform:uppercase; margin-top:6px;
}

@media (max-width:1024px) { .about-grid { gap:2.5rem; } }
@media (max-width:768px) {
  .about-grid { grid-template-columns:1fr; gap:2rem; }
  .about-counters { grid-template-columns:repeat(3,1fr); }
}
@media (max-width:420px) { .about-counters { grid-template-columns:1fr; text-align:left; } }

/* ======================================
   EXPERIENCE
   ====================================== */
.experience { background:var(--bg3); }

.timeline { position:relative; padding-left:28px; }
.timeline::before {
  content:''; position:absolute; left:0; top:8px; bottom:0; width:2px;
  background:linear-gradient(to bottom, var(--accent) 0%, rgba(255,69,0,0) 100%);
}
.timeline-item { position:relative; padding-left:36px; padding-bottom:44px; }
.timeline-item:last-child { padding-bottom:0; }
.timeline-dot {
  position:absolute; left:-35px; top:18px;
  width:14px; height:14px; border-radius:50%; background:var(--accent);
  box-shadow:0 0 0 4px var(--accent-a);
  transition:box-shadow .3s;
}
.timeline-item:hover .timeline-dot { box-shadow:0 0 0 6px var(--accent-a), var(--glow-sm); }
.timeline-card {
  background:var(--bg2); border:1px solid var(--border); border-radius:var(--radius);
  padding:26px;
  transition:border-color .3s, transform .3s;
}
.timeline-card:hover { border-color:rgba(255,69,0,.3); transform:translateX(4px); }
.timeline-header {
  display:flex; justify-content:space-between; align-items:flex-start;
  flex-wrap:wrap; gap:8px; margin-bottom:6px;
}
.timeline-header h3 { font-size:1.15rem; font-weight:700; }
.timeline-period {
  font-family:var(--mono); font-size:.7rem; color:var(--accent);
  background:var(--accent-a); padding:4px 12px; border-radius:20px; white-space:nowrap;
}
.timeline-role {
  font-size:.88rem; color:var(--muted); margin-bottom:5px;
  display:flex; align-items:center; gap:8px; flex-wrap:wrap;
}
.badge {
  font-size:.62rem; font-weight:700; text-transform:uppercase; letter-spacing:1px;
  background:var(--accent); color:#fff; padding:2px 8px; border-radius:3px;
}
.timeline-loc { font-size:.78rem; color:var(--muted); margin-bottom:14px; }
.timeline-loc i { color:var(--accent); margin-right:4px; }
.timeline-card ul { display:flex; flex-direction:column; gap:4px; }
.timeline-card li {
  font-size:.84rem; color:var(--muted); padding-left:14px;
  position:relative; line-height:1.6;
}
.timeline-card li::before {
  content:'▸'; position:absolute; left:0; color:var(--accent); font-size:.7rem;
}

/* ======================================
   SKILLS
   ====================================== */
.skills { background:var(--bg); }
.skills-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:18px;
}
.skill-card {
  background:var(--bg2); border:1px solid var(--border); border-radius:var(--radius);
  padding:22px; transition:border-color .3s, transform .3s, box-shadow .3s;
}
.skill-card:hover { border-color:var(--accent); transform:translateY(-4px); box-shadow:0 8px 28px rgba(255,69,0,.1); }
.skill-card-icon { font-size:1.4rem; margin-bottom:10px; }
.skill-card h3 {
  font-size:.78rem; font-weight:700; text-transform:uppercase; letter-spacing:1.5px;
  color:var(--accent); margin-bottom:14px; padding-bottom:10px; border-bottom:1px solid var(--border);
}
.skill-card li {
  font-size:.81rem; color:var(--muted); padding:3px 0;
  display:flex; align-items:center; gap:7px;
}
.skill-card li::before {
  content:''; width:4px; height:4px; border-radius:50%;
  background:var(--accent); flex-shrink:0;
}
.tag-cert {
  font-size:.58rem; font-weight:700; text-transform:uppercase; letter-spacing:1px;
  background:var(--accent); color:#fff; padding:1px 6px; border-radius:2px;
}

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

/* ======================================
   ACHIEVEMENTS
   ====================================== */
.achievements { background:var(--bg3); }
.achieve-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.achieve-card {
  background:var(--bg2); border:1px solid var(--border); border-radius:var(--radius);
  padding:30px; transition:border-color .3s, transform .3s, box-shadow .3s;
}
.achieve-card:hover { border-color:var(--accent); transform:translateY(-4px); box-shadow:0 8px 28px rgba(255,69,0,.1); }
.achieve-icon  { font-size:2rem; margin-bottom:14px; }
.achieve-card h3 { font-size:1.05rem; font-weight:700; margin-bottom:10px; }
.achieve-card p  { font-size:.84rem; color:var(--muted); line-height:1.7; margin-bottom:14px; }
.achieve-link {
  font-size:.78rem; font-weight:600; color:var(--accent); text-decoration:none;
  display:inline-flex; align-items:center; gap:6px;
  transition:gap .25s;
}
.achieve-link:hover { gap:10px; }
@media (max-width:768px) { .achieve-grid { grid-template-columns:1fr; } }

/* ======================================
   ARTICLES
   ====================================== */
.articles { background:var(--bg); }
.articles-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.article-card {
  background:var(--bg2); border:1px solid var(--border); border-radius:var(--radius);
  padding:26px; text-decoration:none; color:var(--text);
  display:flex; flex-direction:column; gap:12px;
  transition:border-color .3s, transform .3s, box-shadow .3s;
}
.article-card:hover { border-color:var(--accent); transform:translateY(-4px); box-shadow:0 8px 28px rgba(255,69,0,.1); }
.article-source {
  font-family:var(--mono); font-size:.68rem; color:var(--accent);
  text-transform:uppercase; letter-spacing:2px;
}
.article-card h3  { font-size:.92rem; font-weight:600; line-height:1.5; flex:1; }
.article-cta {
  font-size:.78rem; font-weight:600; color:var(--accent);
  display:flex; align-items:center; gap:6px; margin-top:auto;
  transition:gap .25s;
}
.article-card:hover .article-cta { gap:10px; }
.article-card--all {
  background:var(--accent-a); border-color:rgba(255,69,0,.25);
  align-items:center; justify-content:center; text-align:center; gap:10px;
}
.article-card--all i    { font-size:1.8rem; color:var(--accent); }
.article-card--all strong { font-size:.95rem; font-weight:700; }
.article-card--all span  { font-family:var(--mono); font-size:.7rem; color:var(--muted); }

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

/* ======================================
   EDUCATION
   ====================================== */
.education { background:var(--bg3); }
.edu-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.edu-card {
  background:var(--bg2); border:1px solid var(--border); border-radius:var(--radius);
  padding:26px; display:flex; gap:18px; align-items:flex-start;
  transition:border-color .3s, transform .3s;
}
.edu-card:hover { border-color:rgba(255,69,0,.3); transform:translateY(-2px); }
.edu-icon { font-size:1.5rem; color:var(--accent); flex-shrink:0; }
.edu-card h3    { font-size:.93rem; font-weight:600; margin-bottom:7px; line-height:1.4; }
.edu-school     { font-size:.82rem; color:var(--accent); margin-bottom:3px; }
.edu-period     { font-size:.78rem; color:var(--muted); }
.edu-period strong { color:var(--text); }
@media (max-width:768px) { .edu-grid { grid-template-columns:1fr; } }

/* ======================================
   CERTIFICATIONS
   ====================================== */
.certifications { background:var(--bg); }
.certs-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.cert-card {
  background:var(--bg2); border:1px solid var(--border); border-radius:var(--radius);
  padding:22px; display:flex; align-items:center; gap:18px;
  transition:border-color .3s, transform .3s;
}
.cert-card:hover { border-color:var(--accent); transform:translateX(4px); }
.cert-badge {
  width:58px; height:58px; border-radius:6px; background:var(--accent); color:#fff;
  font-family:var(--mono); font-size:.72rem; font-weight:700; letter-spacing:1px;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.cert-card h3  { font-size:.88rem; font-weight:600; margin-bottom:4px; line-height:1.4; }
.cert-card p   { font-size:.78rem; color:var(--muted); }
.cert-id       { font-family:var(--mono); font-size:.62rem; color:var(--accent); opacity:.7; }
@media (max-width:768px) { .certs-grid { grid-template-columns:1fr; } }

/* ======================================
   CONTACT
   ====================================== */
.contact { background:#111; }
.contact-grid { display:grid; grid-template-columns:1fr 1.5fr; gap:5rem; align-items:start; }
.contact-info h3 { font-size:1.9rem; font-weight:700; line-height:1.2; margin-bottom:14px; }
.contact-info p  { font-size:.9rem; color:var(--muted); line-height:1.75; margin-bottom:28px; }
.contact-links { display:flex; flex-direction:column; gap:14px; }
.contact-link {
  display:flex; align-items:center; gap:12px;
  color:var(--muted); text-decoration:none; font-size:.86rem;
  transition:color .25s;
}
.contact-link i { width:18px; color:var(--accent); }
.contact-link:hover { color:var(--text); }

/* Form */
.contact-form { display:flex; flex-direction:column; gap:18px; }
.form-group { display:flex; flex-direction:column; gap:7px; }
.form-group label {
  font-size:.72rem; font-weight:600; text-transform:uppercase;
  letter-spacing:1px; color:var(--muted);
}
.form-group input, .form-group textarea {
  background:var(--bg2); border:1px solid var(--border); border-radius:4px;
  padding:13px 16px; color:var(--text); font-family:var(--font); font-size:.9rem;
  outline:none; resize:none; transition:border-color .25s, box-shadow .25s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color:#444; }
.form-group input:focus, .form-group textarea:focus {
  border-color:var(--accent); box-shadow:0 0 0 3px var(--accent-a);
}
.form-msg { font-size:.8rem; text-align:center; min-height:1.2em; color:var(--muted); }
.form-msg.ok  { color:#4caf50; }
.form-msg.err { color:#f44336; }
@media (max-width:768px) { .contact-grid { grid-template-columns:1fr; gap:3rem; } }

/* ======================================
   FOOTER
   ====================================== */
.footer { background:var(--bg2); border-top:1px solid var(--border); padding:36px 0; }
.footer-inner {
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px;
}
.footer-logo      { font-size:1.2rem; font-weight:800; }
.footer-logo span { color:var(--accent); }
.footer-brand p   { font-size:.72rem; color:var(--muted); margin-top:3px; }
.footer-copy      { font-size:.78rem; color:var(--muted); }
.footer-social    { display:flex; gap:12px; }
.footer-social a {
  display:flex; align-items:center; justify-content:center;
  width:36px; height:36px; border:1px solid var(--border); border-radius:4px;
  color:var(--muted); text-decoration:none; font-size:.9rem;
  transition:border-color .25s, color .25s, box-shadow .25s;
}
.footer-social a:hover { border-color:var(--accent); color:var(--accent); box-shadow:var(--glow-sm); }
@media (max-width:768px) { .footer-inner { flex-direction:column; text-align:center; } }

/* ======================================
   SCROLL REVEAL
   ====================================== */
[data-reveal] {
  opacity:0; transform:translateY(28px);
  transition:opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].revealed { opacity:1; transform:translateY(0); }

/* ======================================
   RESPONSIVE — container
   ====================================== */
@media (max-width:768px)  { .container { padding:0 1.25rem; } }
@media (max-width:768px)  { section { padding:70px 0; } }
@media (max-width:480px)  { section { padding:56px 0; } }
