:root {
  --bg: #050608;
  --bg-alt: #0c1015;
  --card: #151922;
  --accent: #2e86ff;
  --accent-soft: rgba(46, 134, 255, 0.15);
  --text: #f4f5f7;
  --muted: #a5acb8;
  --border-subtle: #262b36;
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --max-width: 1120px;
  --transition-fast: 0.18s ease-out;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
}

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

html {
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: #050608; /* dark base so the bounce doesn't show white */
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at top, #101728 0, #050608 55%, #020308 100%);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
}

/* Layout helpers */

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

.section {
  padding: 30px 0;
}

.section-alt {
  background: radial-gradient(circle at top left, #141a26 0, #050608 70%);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.section-subtitle {
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 640px;
}

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

@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.two-column {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .two-column {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: start;
  }
}

/* Header & nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(5, 6, 8, 0.9), rgba(5, 6, 8, 0.75));
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--text);
}

.logo span {
  color: var(--accent);
}

.nav {
  display: none;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 6px 0;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-fast);
}

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

.nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  border: 1px solid var(--border-subtle);
  background: rgba(10, 12, 18, 0.9);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  font-size: 1.1rem;
  cursor: pointer;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

.nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 56px;
  right: 20px;
  background: #050608;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-subtle);
}

@media (min-width: 768px) {
  .nav.open {
    position: static;
    flex-direction: row;
    box-shadow: none;
    background: transparent;
    border: none;
    padding: 0;
  }
}

/* Hero */

.hero {
  padding: 38px 0 26px;
}

.hero-inner {
  display: grid;
  gap: 32px;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    align-items: center;
  }
}

.hero-text h1 {
  font-size: clamp(2.3rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.hero-text p {
  color: var(--muted);
  max-width: 520px;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast), border-color var(--transition-fast),
    color var(--transition-fast);
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), #67a4ff);
  color: #fff;
  box-shadow: 0 13px 30px rgba(46, 134, 255, 0.45);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 50px rgba(46, 134, 255, 0.6);
}

.btn.ghost {
  background: rgba(5, 6, 8, 0.7);
  border-color: var(--border-subtle);
  color: var(--text);
}

.btn.ghost:hover {
  background: rgba(21, 25, 35, 0.95);
}

.btn.full-width {
  width: 100%;
}

/* Cards */

.card {
  background: radial-gradient(circle at top left, #1f2432 0, #11141d 55%, #070912 100%);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-soft);
}

.hero-card {
  border: 1px solid var(--accent-soft);
}

.hero-card h2 {
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
}

.hero-card li + li {
  margin-top: 0.35rem;
}

/* Lists */

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bullet-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

/* Projects */

.project-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.project-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.placeholder {
  background: radial-gradient(circle at top left, var(--accent-soft), #131623);
  border: 1px dashed rgba(255, 255, 255, 0.15);
}

/* Contact */

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  color: var(--muted);
}

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

.contact-list a:hover {
  text-decoration: underline;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 4px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: rgba(2, 3, 6, 0.9);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.9rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(46, 134, 255, 0.6);
}

.form-note {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.8rem;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 18px 0 26px;
  background: #050608;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--muted);
}

.small-text {
  font-size: 0.78rem;
  opacity: 0.8;
}

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

  .hero-inner,
  .two-column {
    grid-template-columns: 1fr;
  }

  .project-image {
    height: auto;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 32px 0;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 32px 0 28px;
  }
}
.hero-delivers {
  text-align: center;
}

.hero-logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  margin: 0 auto 14px;
  display: block;
}
[13:40, 14/01/2026] ~Arj: }
[13:45, 14/01/2026] ~Arj: .hero-logo {
  display: block;
  margin: 0 auto 14px;

  width: 100%;
  max-width: 220px;
  height: auto;

  border-radius: 16px;

  /* Soft edge blend */
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 24px rgba(0, 0, 0, 0.45);

  filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.35));
}
@media (max-width: 768px) {
  .hero-logo {
    max-width: 180px;
    margin-bottom: 12px;
  }
}
[13:46, 14/01/2026] ~Arj:   }
}
[13:53, 14/01/2026] ~Arj: img.hero-logo {
  display: block !important;
  margin: 0 auto 14px !important;

  width: 100% !important;
  max-width: 220px !important;
  height: auto !important;

  border-radius: 18px !important;

  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 28px rgba(0, 0, 0, 0.55) !important;

  filter: drop-shadow(0 0 14px rgba(0, 0, 0, 0.45)) !important;
}
.hero-logo-wrap {
  max-width: 220px;
  margin: 0 auto 16px;

  border-radius: 18px;
  overflow: hidden;

  /* Soft fade & blend */
  background: #050608;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 28px rgba(0, 0, 0, 0.55);

  /* Edge softening */
  filter: drop-shadow(0 0 14px rgba(0, 0, 0, 0.45));
}

.hero-logo-wrap img {
  display: block;
  width: 100%;
  height: auto;

  /* subtle fade toward edges */
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    rgba(0,0,0,1) 65%,
    rgba(0,0,0,0.85) 78%,
    rgba(0,0,0,0) 100%
  );
  mask-image: radial-gradient(
    ellipse at center,
    rgba(0,0,0,1) 65%,
    rgba(0,0,0,0.85) 78%,
    rgba(0,0,0,0) 100%
  );
}
@media (max-width: 768px) {
  .hero-logo-wrap {
    max-width: 180px;
    margin-bottom: 12px;
  }
}