:root {
  --color-bg: #1700c2;
  --color-surface: #00009c;
  --color-surface-alt: #00009c;
  --color-primary: #ffffff;         /* vivid accent */
  --color-primary-soft: #6fbaffa1;
  --color-primary-dark: #0072a8;
  --color-text: #f9fafb;
  --color-muted: #9ca3af;
  --color-border-subtle: #27272f;
  --shadow-soft: 0 26px 60px rgba(0, 0, 0, 0.55);
  --radius-lg: 1.3rem;
  --radius-pill: 999px;
}

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

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #111827 0, #030712 50%, #000000 100%);
  color: var(--color-text);
  line-height: 1.6;
}

/* Layout */
.container {
  width: min(1120px, 100% - 3rem);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.section-alt {
  background:
    linear-gradient(135deg, #001b96 0%, #020617 40%, #0b1120 100%);
}

.section-title {
  font-size: clamp(2rem, 2.4vw + 1.2rem, 2.6rem);
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-intro {
  max-width: 36rem;
  color: var(--color-muted);
  margin-bottom: 2.5rem;
}

/* Angled separators */
.angled-top::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -10%;
  width: 120%;
  height: 40px;
  background: #020617;
  transform: skewY(-3.5deg);
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(3, 7, 18, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.8));
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  letter-spacing: 0.24em;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.logo-sub {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.6rem;
  color: var(--color-muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  font-size: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-list a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: color 0.18s ease, opacity 0.18s ease;
  opacity: 0.8;
}

.nav-list a:hover {
  color: #e5e7eb;
  opacity: 1;
}

.nav-cta {
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top left, #1f2937 0, #020617 55%);
}

/* Language selector */
.lang-select {
  background: transparent;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 0.25rem 0.9rem;
  color: var(--color-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Hero */
.hero {
  padding: 4.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 20% 0%, #f9731640 0, transparent 50%),
    radial-gradient(circle at 90% 10%, #22d3ee33 0, transparent 55%),
    radial-gradient(circle at 50% 100%, #4f46e533 0, transparent 55%);
  opacity: 0.6;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: center;
  z-index: 1;
}

.hero-kicker {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--color-muted);
  margin-bottom: 0.9rem;
}

.hero h1 {
  font-size: clamp(2.7rem, 3.3vw + 1.4rem, 3.8rem);
  margin-bottom: 0.6rem;
}

.hero p {
  color: var(--color-muted);
  max-width: 34rem;
}

.hero-actions {
  margin-top: 1.7rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background 0.15s ease,
    border-color 0.15s ease;
}

.btn.primary {
  background:
    linear-gradient(120deg, #166df9, #166df9, #3c7cfb);
  color: #0b0f19;
  box-shadow: var(--shadow-soft);
}

.btn.primary:hover {
  background: linear-gradient(120deg, #fb923c, #f97316);
  transform: translateY(-1px) translateX(1px);
}

.btn.ghost {
  background: rgba(15, 23, 42, 0.5);
  border-color: rgba(148, 163, 184, 0.4);
  color: #e5e7eb;
}

.btn.ghost:hover {
  background: rgba(15, 23, 42, 0.9);
  transform: translateY(-1px);
}

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

.hero-meta {
  margin-top: 1.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-meta span {
  font-size: 0.78rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-panel {
  display: flex;
  justify-content: center;
}

.hero-card {
  position: relative;
  background: radial-gradient(circle at top left, #1f2937 0, #020617 50%);
  border-radius: 1.8rem;
  padding: 1.8rem 1.9rem 1.9rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.38);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(120deg, #f9731622, transparent 50%),
    linear-gradient(-145deg, #0ea5e922, transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.7;
  pointer-events: none;
}

.hero-card h2 {
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-card ul {
  padding-left: 1.2rem;
  margin: 0;
  color: #e5e7eb;
  font-size: 0.92rem;
}

.hero-strip {
  margin-top: 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background: rgba(15, 23, 42, 0.85);
}

/* Grids & Cards */
.grid {
  display: grid;
  gap: 1.7rem;
}

.work-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  position: relative;
  background: radial-gradient(circle at top, #020617 0, #020617 50%, #000000 100%);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.7rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border-subtle);
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    linear-gradient(135deg, #f9731620, transparent 55%),
    linear-gradient(-120deg, #22d3ee14, transparent 60%);
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.card:hover::after {
  opacity: 1;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.card p {
  margin-top: 0.3rem;
  color: var(--color-muted);
}

/* "Disruptive" slants */
.card-slant-left {
  transform: rotate(-0.6deg);
}

.card-slant-right {
  transform: rotate(0.6deg);
}

.card-slant-left:hover {
  transform: rotate(-0.2deg) translateY(-2px);
}

.card-slant-right:hover {
  transform: rotate(0.2deg) translateY(-2px);
}

/* Work section */
.work-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.work-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.85);
}

.work-meta {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: #cbd5f5;
}

/* Services */
.card-split {
  border-radius: 1.5rem;
  background:
    linear-gradient(120deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.85)),
    radial-gradient(circle at top left, #f9731615, transparent 55%);
}

.tag-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-list li {
  font-size: 0.78rem;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight {
  display: flex;
  gap: 1rem;
  align-items: baseline;
}

.highlight-number {
  display: inline-block;
  min-width: 2.5rem;
  text-align: right;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-primary);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-grid {
  grid-template-columns: 1fr;
  justify-items: center;
}

.contact-grid > * {
  max-width: 600px;
  text-align: center;
}

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

.contact-info a {
  color: #e5e7eb;
  text-decoration: none;
}

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

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.6rem 0.8rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  font: inherit;
  resize: vertical;
  background: rgba(15, 23, 42, 0.9);
  color: var(--color-text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--color-primary-soft);
  border-color: transparent;
}

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

/* Footer */
.site-footer {
  padding: 2rem 0 2.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-muted);
  border-top: none;
  background: #020617;
}

.footer-small {
  margin-top: 0.3rem;
}

/* Responsive nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-list {
    position: absolute;
    right: 1.5rem;
    top: 3.3rem;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1rem;
    background: #020617;
    border-radius: 0.9rem;
    box-shadow: var(--shadow-soft);
    display: none;
  }

  .nav-list.open {
    display: flex;
  }
}

/* Responsive layout */
@media (max-width: 960px) {
  .hero-inner,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    order: -1;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .header-inner {
    padding-inline: 0.25rem;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
  }

  .site-header {
    position: static;
  }

  .container {
    width: min(100% - 2rem, 100%);
  }
  
}
#contact {
  background:
    linear-gradient(
      rgba(2, 6, 23, 0.82),
      rgba(2, 6, 23, 0.82)
    ),
    url("contact-bg.jpeg");
  background-size: cover;
  background-position: center 68%;
  background-repeat: no-repeat;

  box-shadow: inset 0 -2px 0 rgba(2, 6, 23, 1);
}