:root {
  --ink: #101114;
  --muted: #626977;
  --paper: #f7f7f3;
  --white: #ffffff;
  --line: rgba(16, 17, 20, .12);
  --navy: #071522;
  --gold: #e3b957;
  --red: #ee5b45;
  --teal: #1eb7a6;
  --blue: #2e6ef7;
  --shadow: 0 24px 70px rgba(8, 18, 32, .16);
  --radius: 8px;
}

* { box-sizing: border-box; }

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

img,
video,
iframe {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(247, 247, 243, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  text-transform: lowercase;
  font-size: 1.18rem;
}

.brand small {
  color: var(--muted);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: var(--radius);
  color: #2c3038;
  font-weight: 700;
  font-size: .95rem;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--ink);
  box-shadow: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero,
.page-hero {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(46px, 8vw, 92px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 86% 12%, rgba(227, 185, 87, .24), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f5f1e7 50%, #eef7f4 100%);
}

.page-hero {
  min-height: 58vh;
  display: block;
  padding-top: clamp(58px, 10vw, 110px);
  padding-bottom: clamp(58px, 10vw, 110px);
}

.page-hero.compact { min-height: 42vh; }

.page-hero h1,
.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 6.8rem);
  line-height: .92;
  letter-spacing: 0;
}

.page-hero p,
.hero-text {
  max-width: 680px;
  color: #4d5360;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}

.hero-actions,
.footer-links,
.trust-row,
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn,
.filter-btn,
.modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
}

.btn.primary {
  color: var(--white);
  background: var(--ink);
}

.btn.ghost {
  background: rgba(255, 255, 255, .7);
  border-color: var(--line);
}

.btn.ghost.dark {
  background: var(--white);
  color: var(--ink);
}

.btn.full { width: 100%; }

.trust-row { margin-top: 30px; }

.trust-row span {
  padding: 10px 14px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero-visual {
  display: grid;
  place-items: center;
}

.phone-frame {
  width: min(100%, 370px);
  min-height: 560px;
  padding: 18px;
  border: 10px solid #17191e;
  border-radius: 34px;
  background: #0b0c10;
  color: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.story-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.story-bar span {
  height: 5px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .42);
}

.reel-card {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .78) 82%),
    linear-gradient(135deg, #28313b, #e0a94f 36%, #f06e55 62%, #1a8d84);
}

.play-badge {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  color: var(--ink);
  font-size: .8rem;
  font-weight: 900;
}

.metric-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.metric-strip span {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .1);
}

.section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.service-grid,
.pricing-grid,
.video-grid,
.demo-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.price-card,
.video-card,
.demo-card,
.team-card,
.contact-form,
.contact-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(12, 16, 24, .06);
}

.service-card .icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-weight: 900;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, 1fr);
  gap: 36px;
  background: var(--navy);
  color: var(--white);
}

.split-band p { color: rgba(255, 255, 255, .76); }

.steps {
  display: grid;
  gap: 12px;
}

.steps div {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
}

.dark-panel {
  background: #121316;
  color: var(--white);
}

.work-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.work-strip a {
  min-height: 150px;
  display: flex;
  align-items: end;
  padding: 20px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(227, 185, 87, .9), rgba(238, 91, 69, .86));
  font-weight: 900;
}

.pricing-grid,
.demo-grid,
.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card.featured {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-14px);
}

.price-card ul {
  padding-left: 20px;
  margin: 24px 0;
}

.pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-cloud span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 800;
}

.filter-btn {
  background: var(--white);
  border-color: var(--line);
}

.filter-btn.active {
  color: var(--white);
  background: var(--ink);
}

.video-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 24px; }

.video-thumb,
.demo-preview,
.portrait {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 250px;
  margin: -24px -24px 20px;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  color: var(--white);
  font-weight: 900;
}

.video-thumb.property { background: linear-gradient(135deg, #153e52, #e3b957); }
.video-thumb.brand { background: linear-gradient(135deg, #33254a, #ee5b45); }
.video-thumb.food { background: linear-gradient(135deg, #1d4d3f, #f09535); }
.video-thumb.event { background: linear-gradient(135deg, #15171c, #2e6ef7); }
.video-thumb.gaming { background: linear-gradient(135deg, #17151f, #2e6ef7 45%, #ee5b45); }
.video-thumb.two { filter: saturate(1.25); }

.case-video,
.video-card video,
.video-card iframe {
  width: calc(100% + 48px);
  max-width: calc(100% + 48px);
  height: 250px;
  display: block;
  object-fit: cover;
  margin: -24px -24px 20px;
  border: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  background: #101114;
}

.play-button {
  width: 82px;
  height: 82px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.demo-preview {
  min-height: 210px;
  font-size: 1.3rem;
}

.real-estate { background: linear-gradient(135deg, #163b4d, #9bb77c); }
.restaurant { background: linear-gradient(135deg, #4a1f24, #e0a94f); }
.salon { background: linear-gradient(135deg, #5b2a4a, #f0a5b7); }
.clinic { background: linear-gradient(135deg, #113e49, #53c2ba); }
.fashion { background: linear-gradient(135deg, #15151c, #d75678); }
.corporate { background: linear-gradient(135deg, #222b3d, #2e6ef7); }
.security { background: linear-gradient(135deg, #101114, #e3b957); }
.product-service { background: linear-gradient(135deg, #17413d, #ee5b45 58%, #e3b957); }

.founder-block {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.portrait {
  width: 100%;
  min-height: 280px;
  margin: 0;
  font-size: 3rem;
  border-radius: var(--radius);
}

.portrait img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: block;
  object-fit: contain;
  background: inherit;
  border-radius: inherit;
}

.founder-block h2 span {
  color: var(--muted);
  font-size: .48em;
  font-weight: 800;
}

.portrait.founder { background: linear-gradient(135deg, #101114, #e3b957); }
.portrait.model { background: linear-gradient(135deg, #6b2d4d, #ee8c73); }
.portrait.editor { background: linear-gradient(135deg, #101114, #2e6ef7); }
.portrait.creative { background: linear-gradient(135deg, #143b37, #e3b957); }

.mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.mini-stats span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.role {
  color: var(--red);
  font-weight: 900;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(290px, .8fr);
  gap: 24px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 15px;
  font: inherit;
  background: #fbfbf8;
}

.form-note,
.contact-details {
  color: var(--muted);
  font-size: .92rem;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, .72);
}

.modal.open { display: grid; }

.modal-box {
  width: min(820px, 100%);
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px;
}

.modal-close {
  margin-left: auto;
  margin-bottom: 10px;
  background: var(--ink);
  color: var(--white);
}

.modal-video {
  min-height: 390px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #101114, #2e6ef7 48%, #e3b957);
  color: var(--white);
}

.modal-video span {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--ink);
}

.site-footer p {
  max-width: 640px;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .66);
}

.footer-links a {
  color: var(--white);
  font-weight: 900;
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-visual { order: -1; }
  .phone-frame {
    min-height: 440px;
    transform: none;
  }
  .reel-card { min-height: 300px; }
  .service-grid,
  .work-strip,
  .pricing-grid,
  .video-grid,
  .demo-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .split-band,
  .founder-block,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {

  .site-header {
    padding: 14px 16px;
  }

  .brand {
    min-width: auto;
  }

  .brand small {
    display: none;
  }

  .hero,
  .page-hero,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .service-grid,
  .work-strip,
  .pricing-grid,
  .video-grid,
  .demo-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .founder-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: center;
  }

  .portrait,
  .founder-block .portrait,
  .team-card .portrait {
    width: 100%;
    max-width: 320px;
    min-height: auto;
    margin: 0 auto;
    overflow: hidden;
  }

  .portrait img,
  .founder-block img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 0;
  }

  .founder-block h2,
  .founder-block p,
  .founder-block .mini-stats {
    text-align: center;
  }

  .mini-stats {
    justify-content: center;
  }

  .video-card {
    overflow: hidden;
  }

  .case-video,
  .video-card video,
  .video-card iframe {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin: -24px 0 20px;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .site-footer {
    display: block;
  }

  .footer-links {
    margin-top: 20px;
  }
}.page-hero h1,
.hero h1 {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

html,
body {
  width: 100%;
  overflow-x: hidden !important;
}