
:root {
  --bg: #0f0f10;
  --card: rgba(17, 17, 19, 0.68);
  --card-border: rgba(255, 255, 255, 0.1);
  --text: #f5f5f5;
  --muted: rgba(245, 245, 245, 0.72);
  --button: rgba(255, 255, 255, 0.06);
  --button-hover: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  --radius: 28px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
}
html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
img, video {
  display: block;
  max-width: 100%;
}
body {
  position: relative;
}
.page-bg {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(8, 8, 10, 0.62), rgba(8, 8, 10, 0.9)),
    url("../images/section1.png") center top / cover no-repeat;
  transform: scale(1.03);
}
.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.glass {
  background: var(--card);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 20px 0;
}
.brand,
.nav a {
  border-radius: 999px;
  background: rgba(15, 15, 16, 0.48);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.brand {
  padding: 12px 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.nav {
  display: flex;
  gap: 10px;
}
.nav a {
  padding: 12px 16px;
  color: var(--muted);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.nav a:hover,
.brand:hover,
.button:hover,
.socials a:hover,
.footer-links a:hover {
  background: rgba(255,255,255,0.12);
  color: var(--text);
  transform: translateY(-1px);
}
.hero {
  padding: 72px 0 40px;
}
.hero-card {
  border-radius: 36px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 28px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}
h1, h2, h3, p {
  margin-top: 0;
}
h1 {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  max-width: 10ch;
  margin-bottom: 18px;
}
.lead {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 22px;
}
.hero-actions,
.socials,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.button,
.socials a,
.footer-links a {
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--button);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.18s ease, transform 0.18s ease, color 0.18s ease;
}
.button.primary {
  background: rgba(255,255,255,0.92);
  color: #111;
  font-weight: 700;
}
.button.primary:hover {
  background: #fff;
  color: #111;
}
.hero-profile{
  display:flex;
  justify-content:right;
  align-items:center;
  margin-left:64px;
}
.avatar{
  width:215px;
  height:215px;
  border-radius: 14%;
  display:block;
}
.section {
  padding: 24px 0 44px;
}
.section-head {
  margin-bottom: 18px;
}
h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
  margin-bottom: 0;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.feature-card,
.video-panel,
.about-card,
.footer-card {
  border-radius: 30px;
  overflow: hidden;
}
.feature-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.feature-copy {
  padding: 18px 20px 22px;
}
.feature-copy p,
.panel-head p,
.about-text {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}
.video-panel {
  padding: 22px;
}
.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 16px;
}
.work-card{
  width:100%;
  padding:40px 24px;
  box-sizing:border-box;
  border-radius:32px;
  display:flex;
  flex-direction:column;
  gap:24px;
  overflow:hidden;
}

.work-copy{
  width:100%;
}

.video-grid{
  width:100%;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
  box-sizing:border-box;
}

.video-card{
  width:100%;
  aspect-ratio:16/9;
  border-radius:20px;
  overflow:hidden;
}

.video-card video{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  border-radius:20px;
}

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

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  padding: 26px 28px;
}
.footer {
  padding: 0 0 48px;
}
.footer-card {
  padding: 26px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

@media (max-width: 980px) {
  .hero-card,
  .split,
  .portfolio-grid,
  .video-grid,
  .footer-card {
    grid-template-columns: 1fr;
  }
  .hero-card{
    padding:32px;
  }
  .footer-card {
    display: grid;
  }
  .panel-head {
    display: block;
  }
}

@media (max-width: 768px) {
  .site-header {
    width: calc(100% - 28px);
    padding: 14px 0;
  }
  .shell {
    width: calc(100% - 28px);
  }
  .nav {
    display: none;
  }
  .hero {
    padding-top: 38px;
  }
  .hero-card,
  .video-panel,
  .split,
  .footer-card {
    padding: 20px;
    border-radius: 24px;
  }
  .feature-card,
  .video-panel,
  .about-card,
  .footer-card,
  .avatar {
    border-radius: 24px;
  }
}

.extra{
  display:none;
}

.portfolio-more{
  margin-top: 28pxpx;
  display:flex;
  justify-content:center;
  color:white;
  
}

#showMoreBtn{
  color:white;
}
.extra{
  display:none;
}