:root {
  --blue-deep:  #2563eb;
  --blue-mid:   #60a5fa;
  --blue-light: #bfdbfe;
  --blue-pale:  #eff6ff;
  --white:      #ffffff;
  --text-dark:  #0f172a;
  --text-mid:   #334155;
  --text-soft:  #64748b;
  --violet:     #7c3aed;
  --violet-light: #ddd6fe;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

.hero-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, #dbeafe 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 80%, #eff6ff 0%, transparent 55%),
    #ffffff;
  z-index: -1;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(147, 197, 253, 0.25);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 36px;
  width: 36px;
  border-radius: 9px;
  object-fit: cover;
}

.nav-logo span {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--blue-deep);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover { color: var(--blue-deep); }

.nav-cta {
  background: var(--blue-deep) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 40px;
  font-size: .875rem !important;
  font-weight: 600 !important;
  transition: background .2s, transform .15s !important;
}

.nav-cta:hover {
  background: #1d4ed8 !important;
  transform: translateY(-1px);
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 72px 24px 64px;
  gap: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(219, 234, 254, 0.8);
  border: 1px solid rgba(147, 197, 253, 0.5);
  color: var(--blue-deep);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 28px;
  animation: fadeUp .6s ease both;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 1.8s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--text-dark);
  max-width: 820px;
  animation: fadeUp .7s .1s ease both;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--blue-deep), #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero > p {
  margin-top: 0;
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 580px;
  line-height: 1.75;
  font-weight: 400;
  animation: fadeUp .7s .15s ease both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  margin-bottom: 0;
  animation: fadeUp .7s .25s ease both;
}

.btn-primary {
  background: var(--blue-deep);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(37, 99, 235, .3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, .4);
}

.btn-outline {
  background: transparent;
  color: var(--blue-deep);
  padding: 13px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border: 1.5px solid rgba(37, 99, 235, .3);
  transition: border-color .2s, background .2s;
}

.btn-outline:hover {
  border-color: var(--blue-deep);
  background: rgba(219, 234, 254, .4);
}

.hero-banner-wrap {
  margin-top: 0;
  margin-bottom: 52px;
  width: 100%;
  max-width: 900px;
  position: relative;
  animation: fadeUp .6s ease both;
  perspective: 1000px;
}

.hero-banner {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(37, 99, 235, .18), 0 4px 16px rgba(0, 0, 0, .06);
  position: relative;
  cursor: default;
  transform-style: preserve-3d;
  transition: box-shadow .3s ease, transform .1s ease;
  will-change: transform;
}

.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  transition: filter .3s ease;
  transform-style: preserve-3d;
}

.hero-banner.is-hovered {
  box-shadow: 0 40px 90px rgba(37, 99, 235, .3), 0 8px 28px rgba(0, 0, 0, .1);
}

.hero-banner.is-hovered img {
  filter: brightness(1.04) saturate(1.06);
}

.hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.12) 0%, transparent 65%);
  opacity: 0;
  transition: opacity .3s ease;
}

.hero-banner.is-hovered::after {
  opacity: 1;
}

.hero-banner-wrap::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(37, 99, 235, .4), rgba(129, 140, 248, .3), transparent 70%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  z-index: -1;
}

.hero-banner.is-hovered ~ .hero-banner-wrap::before,
.hero-banner-wrap:has(.is-hovered)::before {
  opacity: 1;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

section {
  padding: 96px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--text-dark);
  line-height: 1.12;
  max-width: 600px;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-soft);
  max-width: 520px;
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 52px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(147, 197, 253, .35);
  border-radius: 20px;
  padding: 32px 28px;
  backdrop-filter: blur(12px);
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue-mid));
  opacity: 0;
  transition: opacity .25s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, .12);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--blue-deep);
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: .875rem;
  color: var(--text-soft);
  line-height: 1.7;
}

#team {
  background: linear-gradient(135deg, rgba(219, 234, 254, .5) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 56px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.team-card {
  background: var(--white);
  border: 1px solid rgba(147, 197, 253, .3);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, .1);
}

.team-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-deep), #818cf8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin: 0 auto 16px;
}

.team-card h3 {
  font-weight: 700;
  font-size: .95rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.team-card .role {
  font-size: .78rem;
  color: var(--blue-deep);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.team-card p {
  font-size: .85rem;
  color: var(--text-soft);
  line-height: 1.65;
}

.press-box {
  background: linear-gradient(135deg, var(--blue-deep) 0%, #3b82f6 60%, #818cf8 100%);
  border-radius: 28px;
  padding: 56px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.press-box::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
}

.press-box::after {
  content: '';
  position: absolute;
  right: 80px; bottom: -80px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
}

.press-text h2 {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.4px;
}

.press-text p {
  color: rgba(255, 255, 255, .82);
  font-size: .98rem;
  max-width: 440px;
  line-height: 1.7;
}

.press-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.press-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  color: white;
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 40px;
}

.press-badge i { font-size: .78rem; }

.press-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: white;
  color: var(--blue-deep);
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
  position: relative;
  z-index: 1;
}

.press-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .2);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.project-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(147, 197, 253, .3);
  transition: transform .25s, box-shadow .25s;
  background: white;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(37, 99, 235, .14);
}

.project-banner {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}

.project-banner-placeholder {
  width: 100%;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.project-banner-ezint {
  background: linear-gradient(135deg, #f5f3ff, #ddd6fe, #a78bfa);
  color: var(--violet);
}

.project-body { padding: 26px 28px 30px; }

.project-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.tag-blue   { background: #dbeafe; color: var(--blue-deep); }
.tag-violet { background: #ede9fe; color: var(--violet); }

.project-body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -.2px;
}

.project-body p {
  font-size: .875rem;
  color: var(--text-soft);
  line-height: 1.72;
}

.ezint-gradient {
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 40%, #c4b5fd 100%);
  border: 1px solid rgba(167, 139, 250, .3) !important;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(147, 197, 253, .4), transparent);
}

footer {
  border-top: 1px solid rgba(147, 197, 253, .2);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: rgba(255, 255, 255, .8);
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.foot-brand img {
  height: 28px;
  width: 28px;
  border-radius: 7px;
  object-fit: cover;
}

.foot-brand span {
  font-weight: 800;
  font-size: 1rem;
  color: var(--blue-deep);
}

footer p { font-size: .82rem; color: var(--text-soft); }

footer a {
  font-size: .82rem;
  color: var(--blue-deep);
  text-decoration: none;
  font-weight: 500;
}

footer a:hover { text-decoration: underline; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 640px) {
  nav          { padding: 14px 20px; }
  .nav-links   { display: none; }
  #team        { padding: 48px 24px; }
  .press-box   { padding: 36px 28px; }
  footer       { padding: 28px 24px; }
}