:root {
  --bg: #08090b;
  --bg-soft: #0d1014;
  --surface: rgba(255,255,255,.045);
  --text: #f7f8fa;
  --muted: #a4aab4;
  --line: rgba(255,255,255,.11);
  --accent-cyan: #19b7d8;
  --accent-pink: #e92c91;
  --accent-gold: #f7bd1f;
  --max: 1180px;
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at 10% 0%, rgba(25,183,216,.08), transparent 28rem),
    radial-gradient(circle at 100% 20%, rgba(233,44,145,.06), transparent 32rem),
    var(--bg);
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8,9,11,.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand img { width: 118px; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 650;
}
.nav a:hover { color: var(--text); }
.nav-cta {
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero { padding: 92px 0 110px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.16fr) minmax(360px,.84fr);
  gap: clamp(48px,8vw,110px);
  align-items: center;
}
.eyebrow {
  margin: 0 0 16px;
  color: #c5cad1;
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
h1,h2,h3 {
  margin-top: 0;
  line-height: 1.04;
  letter-spacing: -.04em;
}
h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: clamp(3.5rem,7.8vw,7.1rem);
  font-weight: 800;
}
h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg,#fff 0%,#dadce0 42%,#999fa8 100%);
  background-clip: text;
  -webkit-background-clip: text;
}
h2 { margin-bottom: 22px; font-size: clamp(2.25rem,4.2vw,4.25rem); }
h3 { font-size: 1.4rem; }

.hero-copy {
  max-width: 730px;
  margin: 0;
  color: var(--muted);
  font-size: 1.14rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 750;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}
.button:hover { transform: translateY(-2px); }
.primary { background: white; color: #090a0c; border-color: white; }
.secondary { background: rgba(255,255,255,.025); }
.secondary:hover { background: rgba(255,255,255,.065); }

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
  margin-top: 52px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.quick-facts div { display: flex; flex-direction: column; gap: 3px; }
.quick-facts strong { font-size: .92rem; }
.quick-facts span { color: var(--muted); font-size: .8rem; }

.portrait-wrap {
  position: relative;
  max-width: 480px;
  margin-left: auto;
}
.portrait-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 42px 42px 42px 10px;
  background: #0e1013;
  box-shadow: 0 28px 80px rgba(0,0,0,.42);
}
.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 55%, rgba(0,0,0,.32)),
    linear-gradient(120deg, rgba(25,183,216,.06), transparent 45%, rgba(233,44,145,.05));
}
.portrait-frame img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  object-position: center top;
}
.portrait-badge {
  position: absolute;
  left: -45px;
  bottom: -42px;
  width: 140px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(5,6,8,.92);
  box-shadow: 0 18px 50px rgba(0,0,0,.42);
  backdrop-filter: blur(10px);
}

.section { padding: 104px 0; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0,1.3fr) minmax(260px,.7fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 44px;
}
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { margin: 0 0 8px; color: var(--muted); }

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 20px;
}
.portfolio-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg,rgba(255,255,255,.035),rgba(255,255,255,.014)),var(--bg-soft);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.2);
  background: linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.018)),var(--bg-soft);
}
.portfolio-card.feature {
  grid-row: span 2;
  min-height: 680px;
  background:
    radial-gradient(circle at 0 0,rgba(25,183,216,.10),transparent 35%),
    radial-gradient(circle at 100% 100%,rgba(233,44,145,.08),transparent 40%),
    var(--bg-soft);
}
.card-number { color: rgba(255,255,255,.28); font-weight: 800; }
.tag {
  display: inline-block;
  margin-bottom: 14px;
  color: #c2c7ce;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.portfolio-card p,.service p,.about-copy p,.contact-box p { color: var(--muted); }
.text-link { width: fit-content; text-decoration: none; font-weight: 750; }

.services-section {
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.018);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service {
  min-height: 255px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service > span {
  display: block;
  margin-bottom: 54px;
  color: rgba(255,255,255,.3);
  font-size: .76rem;
  font-weight: 800;
}

.about-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(50px,8vw,120px);
  align-items: center;
}
.about-logo {
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 25% 10%,rgba(247,189,31,.08),transparent 30%),
    radial-gradient(circle at 80% 90%,rgba(233,44,145,.09),transparent 34%),
    #050607;
}
.about-logo img { width: 72%; }
.about-copy p { font-size: 1.04rem; }

.contact-section { padding-top: 50px; }
.contact-box {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: center;
  padding: 50px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 0 0,rgba(25,183,216,.08),transparent 38%),
    radial-gradient(circle at 100% 100%,rgba(233,44,145,.07),transparent 38%),
    #0c0f13;
}
.contact-box h2 { margin-bottom: 16px; }
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer { padding: 52px 0 38px; }
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.footer-wrap > img { width: 110px; }
.footer-wrap > div {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: .84rem;
}

@media (max-width: 900px) {
  .hero-grid,.about-grid,.contact-box,.section-heading { grid-template-columns: 1fr; }
  .portrait-wrap { max-width: 540px; margin: 10px auto 0; }
  .portrait-badge { left: 18px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card.feature { grid-row: auto; min-height: 430px; }
  .contact-actions { justify-content: flex-start; }
}
@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px),var(--max)); }
  .site-header { position: static; }
  .nav-wrap { min-height: 66px; }
  .brand img { width: 96px; }
  .nav a:not(.nav-cta) { display: none; }
  .hero { padding: 64px 0 84px; }
  h1 { font-size: clamp(3.1rem,15vw,5rem); }
  .quick-facts,.services-grid { grid-template-columns: 1fr; }
  .portrait-frame { border-radius: 26px 26px 26px 8px; }
  .portrait-badge { width: 108px; bottom: -30px; }
  .section { padding: 78px 0; }
  .service { min-height: auto; }
  .service > span { margin-bottom: 34px; }
  .about-logo { min-height: 330px; }
  .contact-box { padding: 30px 24px; }
  .contact-actions .button { width: 100%; }
  .footer-wrap,.footer-wrap > div { align-items: flex-start; flex-direction: column; }
  .footer-wrap > div { gap: 6px; }
}
