@font-face {
  font-family: "Landour Black";
  src: url("assets/fonts/Landour-BlackDisplay.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: "Landour ExtraBold Italic";
  src: url("assets/fonts/Landour-ExtBdDisplayIta.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Landour Light Italic";
  src: url("assets/fonts/Landour-ExtLtDisplayIta.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

:root {
  --bg-top: #6a1573;
  --bg-mid: #4a0862;
  --bg-deep: #150226;
  --ink: #f5eefc;
  --ink-dim: #c9b3da;
  --accent: #c3a6ff;
  --whats: #25d366;
  --whats-dark: #1ea854;
  --card: rgba(255,255,255,0.06);
  --card-border: rgba(255,255,255,0.12);
  --radius: 18px;
  --max: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 15% -10%, var(--bg-top), transparent 60%),
    radial-gradient(1000px 800px at 100% 20%, #7a1a86, transparent 55%),
    linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 65%, #0a0113 100%);
  background-attachment: fixed;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    repeating-radial-gradient(circle at 20% 30%, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 60px);
  pointer-events: none;
  z-index: 0;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

h1, h2, h3 {
  font-family: "Landour Black", sans-serif;
  font-weight: 900;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

em {
  font-family: "Landour ExtraBold Italic", sans-serif;
  font-style: italic;
  font-weight: 800;
  color: var(--accent);
}

.eyebrow {
  font-family: "Landour ExtraBold Italic", sans-serif;
  font-style: italic;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  margin: 0 0 12px;
}

.lead {
  font-family: "Landour Light Italic", sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 2.4vw, 22px);
  color: var(--ink);
  max-width: 640px;
  margin: 0 0 16px;
}

.body-text {
  color: var(--ink-dim);
  font-size: 16px;
  max-width: 640px;
  margin: 0 0 8px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(21, 2, 38, 0.55);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo-side { height: 34px; width: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(135deg, var(--whats), var(--whats-dark));
  color: #06210f;
  box-shadow: 0 10px 30px -8px rgba(37,211,102,0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -8px rgba(37,211,102,0.7); }
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 10px 20px;
  font-size: 14px;
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); }
.btn-link {
  background: transparent;
  color: var(--ink-dim);
  padding: 14px 8px;
}
.btn-link:hover { color: var(--ink); }
.btn-block { width: 100%; padding: 16px; font-size: 16px; }
.btn-lg { padding: 18px 34px; font-size: 16.5px; }
.btn-glow { position: relative; overflow: hidden; }
.btn-glow::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  animation: btn-shine 3.2s ease-in-out infinite;
}
@keyframes btn-shine {
  0% { left: -60%; }
  40% { left: 130%; }
  100% { left: 130%; }
}

/* Hero */
.hero {
  position: relative;
  padding: 64px 0 56px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  animation: hero-zoom 24s ease-in-out infinite alternate;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21,2,38,0.55) 0%, rgba(21,2,38,0.88) 65%, var(--bg-mid) 100%),
    linear-gradient(100deg, rgba(21,2,38,0.9) 20%, rgba(74,8,98,0.55) 60%, rgba(21,2,38,0.75) 100%);
  z-index: 0;
}
@keyframes hero-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}
.hero-inner { text-align: left; }
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-dim);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 6px 14px 6px 10px;
  margin: 0 0 20px;
}
.live-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--whats);
  box-shadow: 0 0 0 0 rgba(37,211,102,0.7);
  animation: live-pulse 1.8s ease-out infinite;
}
@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.hero h1 {
  font-size: clamp(38px, 7vw, 68px);
}
.hero-sub {
  font-family: "Landour Light Italic", sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 2.6vw, 23px);
  color: var(--ink-dim);
  max-width: 560px;
  margin: 0 0 32px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
}
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.stat-card {
  flex: 1 1 150px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 16px 18px;
  backdrop-filter: blur(6px);
}
.stat-icon { font-size: 22px; line-height: 1; margin-bottom: 2px; }
.stat-value {
  font-family: "Landour Black", sans-serif;
  font-size: 30px;
  color: var(--ink);
  line-height: 1.05;
}
.stat-value--text { font-size: 20px; }
.stat-label { font-size: 12.5px; font-weight: 600; color: var(--ink-dim); }
.stat-card--highlight {
  background: linear-gradient(135deg, rgba(195,166,255,0.22), rgba(195,166,255,0.05));
  border-color: rgba(195,166,255,0.5);
  box-shadow: 0 14px 32px -16px rgba(195,166,255,0.55);
}
.stat-card--highlight .stat-value { color: var(--accent); }
.stat-card--highlight .stat-label { color: var(--ink); }

/* Sections */
.section { padding: 72px 0; position: relative; }
.section-alt {
  background: rgba(0,0,0,0.18);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
}
.section h2 { font-size: clamp(28px, 4.2vw, 42px); max-width: 720px; }

/* Ambient orbs (tech glow) */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
.orb-a {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(195,166,255,0.5), transparent 70%);
  top: -120px; left: -80px;
  animation: orb-float-a 16s ease-in-out infinite alternate;
}
.orb-b {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(122,26,134,0.55), transparent 70%);
  bottom: -160px; right: -100px;
  animation: orb-float-b 20s ease-in-out infinite alternate;
}
@keyframes orb-float-a {
  from { transform: translate(0,0) scale(1); }
  to { transform: translate(40px,30px) scale(1.15); }
}
@keyframes orb-float-b {
  from { transform: translate(0,0) scale(1); }
  to { transform: translate(-30px,-40px) scale(1.1); }
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  text-align: center;
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(195,166,255,0.18), transparent 70%),
    linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.3));
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cta-band-inner { display: flex; flex-direction: column; align-items: center; }
.cta-band .eyebrow { text-align: center; }
.cta-band h2 { max-width: 680px; font-size: clamp(26px, 4vw, 38px); }
.cta-band .lead { text-align: center; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .btn { margin-top: 8px; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.3,1), transform 0.7s cubic-bezier(.2,.7,.3,1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.values-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.values-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.values-grid .reveal:nth-child(4) { transition-delay: 0.24s; }

/* Team photo */
.team-photo {
  margin: 32px 0 40px;
}
.team-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6);
}
.team-photo figcaption {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--ink-dim);
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.value-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px;
}
.value-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
  color: var(--accent);
}
.value-card p { margin: 0; color: var(--ink-dim); font-size: 15px; }

/* Services accordion */
.accordion {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.acc-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.acc-item.is-open {
  border-color: rgba(195,166,255,0.4);
  box-shadow: 0 16px 40px -22px rgba(195,166,255,0.5);
}
.acc-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--ink);
  text-align: left;
  font-family: inherit;
}
.acc-icon {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(195,166,255,0.12);
  color: var(--accent);
  transition: transform 0.3s ease, background 0.3s ease;
}
.acc-icon svg { width: 19px; height: 19px; }
.is-open .acc-icon { background: var(--accent); color: #2c0018; transform: rotate(-8deg) scale(1.05); }
.acc-title {
  flex: 1;
  font-family: "Landour Black", sans-serif;
  font-size: clamp(16px, 2.2vw, 20px);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.acc-num { color: var(--accent); font-size: 13px; }
.acc-chevron {
  flex: none;
  font-size: 22px;
  color: var(--ink-dim);
  transition: transform 0.3s ease, color 0.3s ease;
}
.is-open .acc-chevron { transform: rotate(45deg); color: var(--accent); }
.acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.is-open .acc-panel { grid-template-rows: 1fr; }
.acc-panel-inner { overflow: hidden; min-height: 0; }
.acc-list {
  list-style: none;
  margin: 0;
  padding: 0 20px 22px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  color: var(--ink-dim);
  font-size: 14.5px;
}
.acc-list li { padding-left: 20px; position: relative; }
.acc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.more-services { margin-top: 44px; }
.more-services-title { color: var(--ink-dim); font-size: 15px; max-width: 640px; margin: 0 0 16px; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tags span {
  border: 1px solid var(--card-border);
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13.5px;
  color: var(--ink-dim);
}

/* Work / video showcase */
.work-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  align-items: stretch;
}
.work-phrase {
  flex: 1 1 100%;
  min-width: 0;
  margin: 0 0 4px;
  font-family: "Landour Black", sans-serif;
  font-weight: 900;
  font-size: clamp(21px, 4vw, 27px);
  line-height: 1.18;
}
.work-card {
  position: relative;
  width: 118px;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--card-border);
  box-shadow: 0 16px 36px -18px rgba(0,0,0,0.65);
  cursor: pointer;
}
.work-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
  pointer-events: none;
}
.work-card.is-playing .work-video { pointer-events: auto; }
.work-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border: none;
  cursor: pointer;
  background: transparent;
  color: #1a0326;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.work-play svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  margin-left: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 8px 20px -6px rgba(0,0,0,0.6);
  transition: transform 0.2s ease, background 0.2s ease;
}
.work-play span {
  font-size: 11.5px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.work-play:hover svg { transform: scale(1.1); background: #fff; }
.work-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 8px 8px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.8));
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  line-height: 1.25;
  display: flex;
  flex-direction: column;
  gap: 1px;
  pointer-events: none;
}
.work-caption small { font-weight: 500; opacity: 0.8; font-size: 9.5px; }
.work-card.is-playing .work-play,
.work-card.is-playing .work-caption {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

/* Clients */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.logo-tile {
  background: rgba(245,238,252,0.94);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 22px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.logo-tile:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -14px rgba(0,0,0,0.5); }
.logo-tile img {
  max-width: 100%;
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.clients-note { margin-top: 20px; color: var(--ink-dim); font-size: 14px; }

/* Contact */
.section-contact {
  background: radial-gradient(800px 500px at 50% 0%, rgba(195,166,255,0.12), transparent 70%);
}
.contact-inner { max-width: 560px; }
.lead-form { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 14px; color: var(--ink-dim); font-weight: 600; }
.field input,
.field select {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 16px;
  font-size: 16px;
  color: var(--ink);
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9b3da' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.field select option { background: var(--bg-deep); color: var(--ink); }
.field input::placeholder { color: rgba(245,238,252,0.4); }
.field input:focus,
.field select:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.form-error { color: #ffb4b4; font-size: 14px; margin: -8px 0 0; }
.privacy-note { color: var(--ink-dim); font-size: 13px; margin: 4px 0 0; text-align: center; }

/* Footer */
.site-footer { padding: 56px 0 40px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.logo-stack { width: 64px; height: auto; opacity: 0.9; }
.footer-inner p { color: var(--ink-dim); font-size: 14px; margin: 0; }
.footer-whats { color: var(--whats); font-weight: 700; text-decoration: none; font-size: 15px; }
.footer-whats:hover { text-decoration: underline; }
.copyright { font-size: 12.5px; opacity: 0.6; margin-top: 8px; }

/* Gift badge */
.gift-badge {
  position: fixed;
  top: 78px;
  left: 12px;
  right: 12px;
  z-index: 90;
  max-width: 300px;
  background: linear-gradient(135deg, var(--accent), #8a63e0);
  border-radius: 16px;
  box-shadow: 0 16px 36px -14px rgba(0,0,0,0.55);
  display: flex;
  align-items: stretch;
  opacity: 0;
  transform: translateY(-16px) scale(0.96);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.gift-badge.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  animation: gift-pulse 2.6s ease-in-out 1.5s 2;
}
@keyframes gift-pulse {
  0%, 100% { box-shadow: 0 16px 36px -14px rgba(0,0,0,0.55); }
  50% { box-shadow: 0 16px 36px -14px rgba(0,0,0,0.55), 0 0 0 8px rgba(195,166,255,0.25); }
}
.gift-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  text-decoration: none;
  flex: 1;
  min-width: 0;
}
.gift-icon { font-size: 26px; line-height: 1; flex: none; }
.gift-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.gift-text strong { color: #1a0326; font-size: 14px; font-weight: 800; line-height: 1.2; }
.gift-text small { color: rgba(26,3,38,0.75); font-size: 11.5px; font-weight: 600; line-height: 1.2; }
.gift-close {
  flex: none;
  width: 28px;
  align-self: flex-start;
  margin: 4px 4px 0 0;
  background: rgba(26,3,38,0.12);
  border: none;
  border-radius: 50%;
  height: 28px;
  color: #1a0326;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gift-close:hover { background: rgba(26,3,38,0.22); }

@media (min-width: 480px) {
  .gift-badge { left: 16px; right: auto; }
}
@media (min-width: 900px) {
  .gift-badge { top: 88px; }
}

/* Floating WhatsApp */
.whats-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whats);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 100;
  color: #06210f;
  transition: transform 0.2s ease;
}
.whats-float:hover { transform: scale(1.08); }
.whats-float svg { width: 30px; height: 30px; position: relative; z-index: 1; }
.pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--whats);
  animation: pulse-ring 2.2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}

@media (min-width: 720px) {
  .hero { padding: 96px 0 72px; }
  .section { padding: 96px 0; }
  .acc-list { grid-template-columns: 1fr 1fr; column-gap: 24px; }
  .logo-wall { grid-template-columns: repeat(4, 1fr); }
  .work-phrase { flex: 1 1 220px; }
  .work-card { width: 140px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg, .orb, .pulse-ring, .live-badge .dot, .btn-glow::after { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
