/* ============================================================
   BLASTWORKS — site stylesheet
   Dark theme · brand orange #ffab01
   ============================================================ */

:root {
  --bg: #0a0a0a;
  --bg-raised: #111111;
  --bg-panel: #141414;
  --accent: #ffab01;
  --border: #1e1e1e;
  --text: #e8e8e8;
  --muted: #888;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: #ffab01;
  color: #0a0a0a;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ------------------------------------------------------------
   Navigation
   ------------------------------------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  min-height: 48px;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 48px;
  padding: 0 16px;
  color: var(--text);
  font-size: 15px;
  letter-spacing: 0.02em;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease;
}

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

.nav-links a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.nav-open .nav-toggle .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle .bar:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */

.hero {
  padding: 56px 0 48px;
  background: radial-gradient(ellipse 70% 60% at 85% 20%, rgba(255, 171, 1, 0.07), transparent 60%);
}

.hero h1 {
  font-size: 52px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.01em;
  max-width: 760px;
}

.hero h1 .accent {
  color: var(--accent);
  display: block;
}

.hero .lede {
  margin-top: 24px;
  max-width: 560px;
  font-size: 18px;
  color: var(--muted);
}

.hero-split {
  display: flex;
  align-items: center;
  gap: 48px;
  justify-content: space-between;
}

.hero-split .hero-text {
  flex: 1 1 60%;
}

.hero-photo {
  flex: 0 0 240px;
}

.hero-photo img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-panel);
}

/* ------------------------------------------------------------
   Sections
   ------------------------------------------------------------ */

.section {
  padding: 52px 0;
}

.section + .section {
  border-top: 1px solid var(--border);
}

.section-dark {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-sub {
  color: var(--muted);
  font-size: 17px;
  max-width: 640px;
  margin-bottom: 40px;
}

.kicker {
  display: block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ------------------------------------------------------------
   Icons — consistent 32px line-style, brand orange
   ------------------------------------------------------------ */

.icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ------------------------------------------------------------
   Cards & grids
   ------------------------------------------------------------ */

.grid {
  display: grid;
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--text);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

a.card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.card .card-label {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card h3 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
}

.card p {
  color: var(--muted);
  font-size: 15px;
  flex-grow: 1;
}

.card .card-arrow {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
}

/* Feature rows (icon + title + one-liner) */
.feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
}

.feature h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature p {
  color: var(--muted);
  font-size: 15px;
}

/* ------------------------------------------------------------
   Tagline row (home, bottom)
   ------------------------------------------------------------ */

.tagline-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tagline {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 0;
}

.tagline .tag-label {
  display: block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.tagline h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 4px;
}

.tagline p {
  color: var(--muted);
  font-size: 14px;
}

/* ------------------------------------------------------------
   Credentials bar
   ------------------------------------------------------------ */

.cred-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.cred {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.cred h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.cred p {
  color: var(--muted);
  font-size: 14px;
}

/* ------------------------------------------------------------
   Two-column panels
   ------------------------------------------------------------ */

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

.panel {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}

.panel h3 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 18px;
}

.panel ul {
  list-style: none;
}

.panel li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 15px;
}

.panel li:last-child {
  border-bottom: none;
}

.panel li .li-mark {
  color: var(--accent);
  margin-right: 10px;
  font-weight: 700;
}

.panel li .li-sub {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-left: 24px;
}

/* ------------------------------------------------------------
   Buttons & CTA
   ------------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 48px;
  padding: 12px 32px;
  background: var(--accent);
  color: #0a0a0a;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

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

.cta-strip {
  text-align: center;
  padding: 52px 0;
}

.cta-strip h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-strip p {
  color: var(--muted);
  margin-bottom: 28px;
}

/* ------------------------------------------------------------
   Module groups
   ------------------------------------------------------------ */

.module-group {
  margin-bottom: 56px;
}

.module-group:last-child {
  margin-bottom: 0;
}

.module-group > h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.module-group > .group-sub {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 24px;
}

/* ------------------------------------------------------------
   Example callout (DaaS)
   ------------------------------------------------------------ */

.callout {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  padding: 32px;
}

.callout .callout-label {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.callout p {
  font-size: 17px;
  line-height: 1.7;
}

.callout p strong {
  color: var(--accent);
}

/* ------------------------------------------------------------
   About — timeline
   ------------------------------------------------------------ */

.timeline {
  list-style: none;
}

.timeline li {
  position: relative;
  padding: 0 0 28px 32px;
  border-left: 1px solid var(--border);
  margin-left: 8px;
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
}

.timeline li span {
  font-size: 16px;
}

/* Footer tagline bar (About) */
.footer-bar {
  text-align: center;
  padding: 56px 0;
}

.footer-bar h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-bar h2 .accent {
  color: var(--accent);
}

.footer-bar p {
  color: var(--muted);
}

/* ------------------------------------------------------------
   Contact
   ------------------------------------------------------------ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.service-selector {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.service-btn {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 20px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 16px;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.service-btn:hover {
  border-color: var(--accent);
}

.service-btn input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-btn:has(input:checked),
.service-btn:focus-within {
  border-color: var(--accent);
  color: var(--accent);
}

.contact-details {
  list-style: none;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 48px;
  padding: 8px 0;
  font-size: 16px;
}

.contact-details a {
  color: var(--text);
}

.contact-details a:hover {
  color: var(--accent);
}

.contact-details .detail-note {
  color: var(--muted);
  font-size: 14px;
  display: block;
}

.contact-form {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
}

.form-field {
  margin-bottom: 22px;
}

.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 16px;
  font-family: inherit;
}

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

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.radio-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  margin-bottom: 0;
}

.radio-group input[type="radio"] {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
}

.radio-group label:has(input:checked) {
  border-color: var(--accent);
  color: var(--accent);
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer img {
  height: 28px;
  width: auto;
}

.site-footer p {
  color: var(--muted);
  font-size: 14px;
}

/* ------------------------------------------------------------
   Responsive — tablet & mobile
   ------------------------------------------------------------ */

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

  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  /* Hamburger nav */
  .nav {
    padding: 10px 20px;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
    padding-top: 12px;
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    justify-content: flex-start;
    min-height: 48px;
    padding: 12px 8px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a.active {
    border-bottom: 1px solid var(--accent);
  }

  /* Hero padding — min 80px top/bottom on mobile */
  .hero {
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero .lede {
    font-size: 16px;
  }

  .hero-split {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 56px 0;
  }

  .grid-3,
  .grid-4,
  .grid-5,
  .tagline-row,
  .cred-bar,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .tagline {
    padding: 16px 0;
  }

  .contact-form {
    padding: 24px;
  }

  .site-footer .container {
    flex-direction: column;
    text-align: center;
  }
}

.card.card-soon {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}

.card.card-soon:hover {
  border-color: var(--border);
  transform: none;
}

.badge-soon {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 12px;
}

.hero .lede-sub {
  margin-top: 12px;
  max-width: 560px;
  font-size: 16px;
  color: var(--muted);
  font-style: italic;
}

.step-num {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 12px;
  line-height: 1;
}

/* ── Language switcher ─────────────────────────────── */
.lang-switcher { display:flex; align-items:center; margin-left:12px; padding-left:12px; border-left:1px solid rgba(255,255,255,0.12); }
.lang-toggle { -webkit-appearance:none; appearance:none; background:none; border:none; cursor:pointer; padding:3px 6px; border-radius:4px; display:flex; align-items:center; gap:5px; color:#ffab01; font-size:12px; font-weight:700; letter-spacing:0.08em; opacity:0.7; transition:opacity 0.15s; }
.lang-toggle:hover { opacity:1; }
.lang-next { display:none; }
.lang-toggle:hover .lang-cur { display:none; }
.lang-toggle:hover .lang-next { display:inline; }
@media (max-width:768px) { .lang-switcher { margin-left:0; padding-left:0; border-left:none; border-top:1px solid rgba(255,255,255,0.08); padding-top:12px; justify-content:center; } }


/* ── Services dropdown nav ────────────────────────────── */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  background: none; border: none; padding: 0 16px; margin: 0;
  font: inherit; font-size: 15px; color: var(--text); cursor: pointer;
  display: inline-flex; align-items: center; gap: 5px;
  letter-spacing: 0.02em; min-height: 48px;
  transition: color 0.2s;
}
.nav-dropdown-toggle::after {
  content: '▾'; font-size: 10px; opacity: 0.55;
  transition: transform 0.2s, opacity 0.2s;
  display: inline-block;
}
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown.open .nav-dropdown-toggle::after { transform: rotate(180deg); opacity: 1; }
.nav-dropdown.active > .nav-dropdown-toggle { color: var(--accent); }
.nav-dropdown-toggle:hover { color: var(--accent); }

/* The floating card */
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%; transform: translateX(-50%);
  background: #131313;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 6px 0;
  min-width: 180px;
  z-index: 300;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  list-style: none !important;
  margin: 0 !important;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }

/* Items inside the card */
.nav-dropdown-menu li {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
}
.nav-dropdown-menu li a {
  display: block !important;
  min-height: 0 !important;
  min-width: 0 !important;
  padding: 9px 20px !important;
  font-size: 13px !important;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(232,232,232,0.7) !important;
  border-bottom: none !important;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-dropdown-menu li a:hover {
  color: var(--accent) !important;
  background: rgba(255,255,255,0.04);
  border-bottom: none !important;
}
.nav-dropdown-menu li a.active {
  color: var(--accent) !important;
  border-bottom: none !important;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-dropdown-menu {
    position: static !important;
    transform: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 4px 0 4px 16px !important;
    display: none;
    min-width: 0 !important;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block !important; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; padding: 2px 0 !important; }
  .nav-dropdown-menu li a { padding: 8px 8px !important; font-size: 14px !important; }
}

/* ── Project Card (elasticdev featured build) ─────────────────────── */
.project-card {
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 28px 32px;
  border-radius: 4px;
}
.project-card-header > div {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.project-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0;
}
.project-status {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #1a1a1a;
  background: var(--accent);
  padding: 3px 10px;
  border-radius: 20px;
}
.project-desc {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 20px;
}
.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.project-tag {
  font-size: 12px;
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 20px;
  color: var(--muted);
}
.link-arrow {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: .01em;
  transition: opacity 0.15s;
}
.link-arrow:hover { opacity: 0.75; }

/* ── Portfolio List (edev-portfolio) ──────────────────────────────── */
.edev-list {
  margin-top: 40px;
  border-top: 1px solid var(--border);
}
.edev-item {
  border-bottom: 1px solid var(--border);
}
.edev-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  background: none;
  border: none;
  color: inherit;
  padding: 28px 0;
  cursor: pointer;
  text-align: left;
}
.edev-header:hover .edev-title { opacity: 0.8; }
.edev-header-inner { flex: 1; }
.edev-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 10px;
  transition: opacity 0.15s;
}
.edev-status {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #1a1a1a;
  background: var(--accent);
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: 10px;
  vertical-align: middle;
}
.edev-summary {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  font-size: 0.93rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.edev-toggle-icon {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 300;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.2s;
  line-height: 1;
}
.edev-item.open .edev-toggle-icon { transform: rotate(45deg); }
.edev-body { display: none; padding-bottom: 40px; }
.edev-item.open .edev-body { display: block; }
.edev-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}
.edev-section h3 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin: 0 0 10px;
}
.edev-section p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}
.edev-built {
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.edev-built h3 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin: 0 0 20px;
}
.edev-visual {
  margin: 0 0 24px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #111;
}
.edev-visual img { width: 100%; height: auto; display: block; }
.edev-visual-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2a2a2a;
  font-size: 0.8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.edev-built-desc { color: var(--muted); line-height: 1.85; }
.edev-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.edev-tag {
  font-size: 11px;
  border: 1px solid var(--border);
  padding: 3px 12px;
  border-radius: 20px;
  color: var(--muted);
}
@media (max-width: 768px) {
  .edev-sections { grid-template-columns: 1fr; }
  .project-card { padding: 20px; }
}

/* footer OSS link */
.footer-links{margin-top:.6rem}
.footer-links a{color:var(--muted);font-size:.85rem;text-decoration:none}
.footer-links a:hover{color:var(--accent)}
