:root {
  --bg: #0b0d12;
  --surface: #131722;
  --surface-2: #191f2d;
  --text: #f6f7fb;
  --muted: #aab2c5;
  --line: rgba(255,255,255,.09);
  --cyan: #38d7ff;
  --purple: #925cff;
  --green: #55e6a5;
  --danger: #ff6b7d;
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --radius: 22px;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 15% -10%, rgba(56, 215, 255, .18), transparent 32%),
    radial-gradient(circle at 90% 10%, rgba(146, 92, 255, .18), transparent 34%);
  background-attachment: fixed, fixed;
  background-position: left top, left top;
  background-repeat: no-repeat, no-repeat;
  background-size: 100vw 100vh, 100vw 100vh;
  line-height: 1.6;
}

a { color: inherit; }
img { max-width: 100%; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(11, 13, 18, .76);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -.03em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  box-shadow: 0 10px 28px rgba(93, 116, 255, .28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  padding: 10px 13px;
  border-radius: 12px;
  font-weight: 650;
  font-size: .95rem;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
  background: rgba(255,255,255,.06);
}

.hero {
  padding: 94px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid rgba(85, 230, 165, .28);
  background: rgba(85, 230, 165, .08);
  color: #bff9dc;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(85,230,165,.11);
}

h1, h2, h3 {
  line-height: 1.1;
  letter-spacing: -.045em;
}

h1 {
  max-width: 800px;
  margin: 20px 0 18px;
  font-size: clamp(3rem, 8vw, 6.6rem);
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 { margin: 0 0 8px; }

.gradient-text {
  background: linear-gradient(90deg, var(--cyan), #b1a2ff 55%, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.15rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid var(--line);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.button:hover { transform: translateY(-2px); }

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #061019;
}

.button.secondary {
  background: rgba(255,255,255,.04);
  color: var(--text);
}

.hero-card,
.card,
.policy-shell {
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  min-height: 360px;
  border-radius: 30px;
  padding: 26px;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,215,255,.30), transparent 70%);
}

.window-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.18); }
.dot:nth-child(1) { background: #ff6b7d; }
.dot:nth-child(2) { background: #ffd166; }
.dot:nth-child(3) { background: #55e6a5; }

.fake-terminal {
  display: grid;
  gap: 14px;
  font-family: "SFMono-Regular", Consolas, monospace;
  color: #d8e2ff;
  font-size: .95rem;
}

.term-line {
  padding: 13px 15px;
  border-radius: 14px;
  background: rgba(8,11,16,.58);
  border: 1px solid var(--line);
}

.term-line span { color: var(--cyan); }
.term-line strong { color: var(--green); }

.section {
  padding: 78px 0;
}

.section-heading {
  max-width: 690px;
  margin-bottom: 30px;
}

.muted { color: var(--muted); }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  border-radius: var(--radius);
  padding: 24px;
}

.card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 18px;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(56,215,255,.2), rgba(146,92,255,.24));
  border: 1px solid rgba(255,255,255,.09);
}

.app-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
}

.app-card .tag {
  margin-top: auto;
  align-self: flex-start;
}

.tag {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  color: #dce5ff;
  background: rgba(255,255,255,.055);
  border: 1px solid var(--line);
  font-size: .78rem;
  font-weight: 750;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.025);
}

.stat {
  padding: 24px;
  text-align: center;
}

.stat + .stat { border-left: 1px solid var(--line); }
.stat strong { display: block; font-size: 1.8rem; letter-spacing: -.04em; }
.stat span { color: var(--muted); font-size: .9rem; }

.page-hero {
  padding: 70px 0 36px;
}

.policy-shell {
  border-radius: 24px;
  padding: clamp(22px, 4vw, 42px);
  margin: 20px auto 70px;
}

.policy-placeholder {
  border: 1px dashed rgba(255,255,255,.2);
  border-radius: 18px;
  padding: 24px;
  background: rgba(255,255,255,.025);
}

.policy-placeholder code {
  display: block;
  overflow-x: auto;
  padding: 16px;
  margin-top: 14px;
  border-radius: 12px;
  background: #090b10;
  color: #bdefff;
}

.notice {
  border-left: 3px solid var(--cyan);
  padding: 14px 18px;
  background: rgba(56,215,255,.06);
  border-radius: 0 14px 14px 0;
  color: #d8e9ff;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 42px;
  color: var(--muted);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover { color: var(--text); }

.mobile-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  border-radius: 11px;
  padding: 9px 11px;
}

@media (max-width: 820px) {
  .hero-grid,
  .grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding-top: 64px; }
  .hero-card { min-height: 300px; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--line); }

  .mobile-toggle { display: inline-flex; }

  .nav-links {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 64px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    background: #11151f;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .nav-links.open { display: flex; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 26px, 1120px); }
  .grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(2.7rem, 16vw, 4.4rem); }
  .footer-row { align-items: flex-start; flex-direction: column; }
}


.legal-doc {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 28px);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(7,10,16,.66), rgba(12,16,24,.78));
  border: 1px solid rgba(255,255,255,.07);
}

.legal-doc [data-custom-class='body'],
.legal-doc [data-custom-class='body'] * {
  background: transparent !important;
}

.legal-doc [data-custom-class='title'],
.legal-doc [data-custom-class='title'] * {
  font-family: inherit !important;
  font-size: clamp(2rem, 4vw, 2.8rem) !important;
  color: var(--text) !important;
  letter-spacing: -.04em;
}

.legal-doc [data-custom-class='subtitle'],
.legal-doc [data-custom-class='subtitle'] * {
  font-family: inherit !important;
  color: var(--muted) !important;
  font-size: .98rem !important;
}

.legal-doc [data-custom-class='heading_1'],
.legal-doc [data-custom-class='heading_1'] *,
.legal-doc [data-custom-class='heading_2'],
.legal-doc [data-custom-class='heading_2'] * {
  font-family: inherit !important;
  color: var(--text) !important;
  letter-spacing: -.03em;
}

.legal-doc [data-custom-class='heading_1'],
.legal-doc [data-custom-class='heading_1'] * {
  font-size: clamp(1.2rem, 2vw, 1.45rem) !important;
}

.legal-doc [data-custom-class='heading_2'],
.legal-doc [data-custom-class='heading_2'] * {
  font-size: 1.06rem !important;
}

.legal-doc [data-custom-class='body_text'],
.legal-doc [data-custom-class='body_text'] * {
  color: #d5dced !important;
  font-size: .98rem !important;
  line-height: 1.75 !important;
  font-family: inherit !important;
}

.legal-doc [data-custom-class='link'],
.legal-doc [data-custom-class='link'] * {
  color: var(--cyan) !important;
  font-size: inherit !important;
  font-family: inherit !important;
  word-break: break-word !important;
  text-decoration: none;
}

.legal-doc a:hover {
  color: #ffffff !important;
}

.legal-doc h1,
.legal-doc h2,
.legal-doc h3,
.legal-doc h4 {
  margin-top: 0;
}

.legal-doc ul,
.legal-doc ol {
  padding-left: 1.35rem;
}

.legal-doc li {
  margin: .28rem 0;
  color: #d5dced;
}

.legal-doc div[style*='display: none'] {
  display: none !important;
}

.legal-doc br + div {
  margin-top: 0;
}


/* Legal-page request and disclosure controls */
.privacy-request-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-bottom: 22px;
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid rgba(85, 230, 165, .23);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(85, 230, 165, .10), rgba(56, 215, 255, .045)),
    rgba(255,255,255,.025);
}

.privacy-request-card h2 {
  margin: 7px 0 10px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.privacy-request-card p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.privacy-request-kicker {
  color: #bff9dc;
  font-size: .8rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-toggle {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 19px;
  border: 1px solid rgba(56, 215, 255, .22);
  border-radius: 16px;
  color: var(--text);
  background: rgba(56, 215, 255, .055);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.legal-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(56, 215, 255, .48);
  background: rgba(56, 215, 255, .09);
}

.legal-toggle:focus-visible {
  outline: 3px solid rgba(56, 215, 255, .28);
  outline-offset: 3px;
}

.legal-toggle-arrow {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  font-size: 1.25rem;
  line-height: 1;
}

.legal-collapse {
  margin-top: 18px;
}

.legal-collapse[hidden] {
  display: none !important;
}

.legal-frame {
  display: block;
  width: 100%;
  min-height: 440px;
  border: 0;
  background: transparent;
  overflow: hidden;
}

.legal-frame-body {
  min-height: 0;
  margin: 0;
  padding: 0;
  color: var(--text);
  background: transparent;
}

.legal-frame-body .legal-doc {
  max-width: none;
}

@media (max-width: 700px) {
  .privacy-request-card {
    grid-template-columns: 1fr;
  }

  .privacy-request-card .button {
    width: 100%;
  }
}


/* Broader studio and project layouts */
.capability-grid .card { min-height: 245px; }
.project-section { padding-top: 34px; }
.compact-section { padding-top: 10px; }
.project-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.project-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 13px;
  border-radius: 999px;
  color: #dce5ff;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: .92rem;
}
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}
.contact-panel h2 { margin: 7px 0 10px; word-break: break-word; }
.legal-shell { overflow: visible; }

/* First-party privacy request form */
.privacy-form-card {
  display: block;
  margin-bottom: 24px;
}
.privacy-request-form { margin-top: 24px; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.form-grid label {
  display: grid;
  gap: 7px;
  color: #dce5ff;
  font-weight: 750;
  font-size: .92rem;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 13px;
  color: var(--text);
  background: rgba(7,10,16,.72);
  font: inherit;
  outline: none;
}
.form-grid textarea { min-height: 138px; resize: vertical; }
.form-grid select { color-scheme: dark; }
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: rgba(56,215,255,.62);
  box-shadow: 0 0 0 3px rgba(56,215,255,.10);
}
.form-full { grid-column: 1 / -1; }
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.form-actions button { font: inherit; cursor: pointer; }
.form-hidden { position: absolute; left: -9999px; }

@media (max-width: 820px) {
  .contact-panel { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: auto; }
  .form-actions .button { width: 100%; }
}

.form-success {
  margin-top: 22px;
  padding: 14px 16px;
  border: 1px solid rgba(124, 247, 193, 0.35);
  border-radius: 12px;
  background: rgba(124, 247, 193, 0.08);
  color: var(--text);
  font-weight: 700;
}

.form-success[hidden] { display: none; }


/* Our Team */
.team-hero {
  padding-bottom: 18px;
  text-align: center;
}

.team-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-heading h1 {
  margin-bottom: 14px;
}

.team-heading .lead {
  margin: 0 auto;
}

.team-section {
  padding-top: 24px;
}

.team-grid {
  width: min(100%, 1000px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.team-card {
  position: relative;
  min-height: 158px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.058), rgba(255,255,255,.022)),
    var(--surface);
  box-shadow: var(--shadow);
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--role-color);
}

.team-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -82px;
  bottom: -86px;
  border-radius: 50%;
  background: var(--role-color);
  opacity: .075;
  filter: blur(2px);
  pointer-events: none;
}

.team-avatar {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 94px;
  height: 94px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.13);
  box-shadow: 0 12px 28px rgba(0,0,0,.34);
  background: var(--surface-2);
}

.team-avatar-falter {
  object-position: 67% 48%;
}

.team-avatar-zyric {
  object-position: 50% 38%;
}

.team-avatar-placeholder {
  display: grid;
  place-items: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.28), transparent 34%),
    linear-gradient(135deg, #5d355f, #21192e 65%, #120f1a);
  font-size: 2.4rem;
  font-weight: 900;
  text-transform: uppercase;
}

.team-member-details {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.team-member-details h2 {
  margin: 0 0 8px;
  font-size: 1.55rem;
  letter-spacing: -.035em;
}

.team-role {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--role-color);
  color: #111318;
  font-size: .8rem;
  font-weight: 900;
  line-height: 1;
}

.team-card-ceo .team-role,
.team-card-manager .team-role,
.team-card-staff .team-role {
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.20);
}

.team-member-details p {
  margin: 11px 0 0;
  color: #dce5ff;
  overflow-wrap: anywhere;
}

.team-member-details p span {
  margin-right: 7px;
  color: var(--muted);
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .team-grid {
    grid-template-columns: 1fr;
    width: min(100%, 600px);
  }
}

@media (max-width: 480px) {
  .team-card {
    min-height: 0;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 17px;
    padding: 28px 20px;
  }

  .team-avatar {
    width: 104px;
    height: 104px;
  }

  .team-member-details p span {
    display: block;
    margin: 0 0 2px;
  }
}
