:root {
  --bg: #080c18;
  --bg-soft: #0d1324;
  --surface: rgba(17, 25, 45, 0.76);
  --surface-strong: #111a2d;
  --surface-light: #f6f8fc;
  --line: rgba(255, 255, 255, 0.09);
  --line-light: #dfe5ef;
  --text: #f5f7fb;
  --text-soft: #aeb8cb;
  --ink: #111827;
  --ink-soft: #5f6b7d;
  --primary: #7c6cff;
  --primary-2: #33b7ff;
  --accent: #56e0c5;
  --max-width: 1200px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shadow: 0 22px 70px rgba(0, 0, 0, .28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% -20%, rgba(92, 100, 255, .15), transparent 36rem),
    var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: block;
}

.page-shell {
  overflow: hidden;
}

.site-header {
  width: min(calc(100% - 40px), var(--max-width));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 38px;
  height: 38px;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-mark path:first-child {
  fill: none;
  stroke: url(#brandGradient);
}

.brand-mark svg path:first-child {
  stroke: #7c6cff;
  stroke-width: 3;
}

.brand-mark .brand-line {
  stroke: #56e0c5;
  stroke-width: 3;
  stroke-linecap: round;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  letter-spacing: .16em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--text-soft);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .21em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a,
.header-cta {
  transition: .2s ease;
}

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

.header-cta {
  border: 1px solid var(--line);
  padding: 11px 17px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.header-cta:hover {
  border-color: rgba(124, 108, 255, .6);
  background: rgba(124, 108, 255, .08);
}

.hero {
  width: min(calc(100% - 40px), var(--max-width));
  min-height: 720px;
  margin: 0 auto;
  padding: 94px 0 86px;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 72px;
  align-items: center;
  position: relative;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero-glow-one {
  width: 420px;
  height: 420px;
  right: -150px;
  top: 40px;
  background: rgba(124, 108, 255, .09);
}

.hero-glow-two {
  width: 280px;
  height: 280px;
  left: 33%;
  bottom: 10px;
  background: rgba(51, 183, 255, .05);
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #92a0b8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.hero h1,
.section-heading h2,
.approach h2,
.contact h2 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -.045em;
}

.hero h1 {
  max-width: 740px;
  margin: 24px 0 26px;
  font-size: clamp(54px, 6.4vw, 84px);
  line-height: .99;
  font-weight: 700;
}

.gradient-text {
  display: inline-block;
  background: linear-gradient(120deg, #b9b1ff 4%, #6ed4ff 52%, #73ead2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 650px;
  margin: 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  gap: 13px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 750;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

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

.button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  background: linear-gradient(135deg, #7b6cf6, #6859e7);
  box-shadow: 0 12px 30px rgba(111, 93, 238, .25);
}

.button-secondary {
  border: 1px solid var(--line);
  color: #c7d0df;
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .03);
}

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

.hero-proof div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: 13px;
  margin-bottom: 7px;
}

.hero-proof span {
  color: #7f8ca2;
  font-size: 11px;
  line-height: 1.55;
}

.visual-window {
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018)),
    #0c1323;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 25px;
  box-shadow: var(--shadow);
  transform: perspective(1300px) rotateY(-4deg) rotateX(2deg);
}

.window-bar {
  height: 39px;
  padding: 0 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #68758a;
  font: 500 10px "Space Grotesk", sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #354056;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mini-card {
  min-height: 112px;
  padding: 18px;
  display: flex;
  align-items: flex-end;
  gap: 13px;
  background: rgba(255, 255, 255, .025);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.mini-card::after {
  content: "";
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: absolute;
  right: -60px;
  top: -70px;
  background: currentColor;
  opacity: .08;
}

.card-bot { color: #887aff; }
.card-game { color: #4cc4ff; }
.card-web { color: #61e2c7; }
.card-auto { color: #d7a0ff; }

.mini-icon {
  width: 37px;
  height: 37px;
  flex: 0 0 37px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 10px;
  background: rgba(255, 255, 255, .025);
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.mini-card div:last-child {
  min-width: 0;
}

.mini-card span,
.mini-card strong {
  display: block;
}

.mini-card span {
  margin-bottom: 5px;
  color: #748198;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.mini-card strong {
  color: #eef2f8;
  font: 600 13px "Space Grotesk", sans-serif;
}

.code-panel {
  margin-top: 10px;
  padding: 20px 17px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;
  background: #090f1c;
  font: 500 12px/1.8 "Space Grotesk", monospace;
}

.code-row {
  display: flex;
  gap: 17px;
  color: #a8b3c5;
}

.code-num {
  color: #39465d;
  user-select: none;
}

.code-muted {
  color: #56647a;
}

.code-row b {
  color: #8477ff;
  font-weight: 600;
}

.code-success {
  color: var(--accent);
}

.section {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.services {
  padding: 104px 0 120px;
}

.section-heading {
  max-width: 660px;
}

.section-heading h2,
.approach h2 {
  margin: 20px 0 16px;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.06;
}

.section-heading p {
  max-width: 600px;
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.75;
}

.service-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-card {
  min-height: 390px;
  padding: 27px 24px 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  position: relative;
  transition: transform .25s ease, border-color .25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(124, 108, 255, .35);
}

.service-number {
  position: absolute;
  top: 25px;
  right: 25px;
  color: #49566c;
  font: 600 11px "Space Grotesk", sans-serif;
}

.service-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(124, 108, 255, .25);
  border-radius: 12px;
  background: rgba(124, 108, 255, .07);
  color: #a49cff;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 28px 0 13px;
  font: 600 20px "Space Grotesk", sans-serif;
}

.service-card p {
  min-height: 116px;
  margin: 0;
  color: #929eb2;
  font-size: 13px;
  line-height: 1.72;
}

.service-card ul {
  margin: 23px 0 0;
  padding: 20px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.service-card li {
  margin: 8px 0;
  color: #728098;
  font-size: 11px;
}

.service-card li::before {
  content: "•";
  margin-right: 8px;
  color: var(--accent);
}

.approach {
  padding-bottom: 120px;
}

.approach-panel {
  padding: 64px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 80px;
  border-radius: var(--radius-lg);
  background: var(--surface-light);
  color: var(--ink);
}

.approach .eyebrow {
  color: #69758a;
}

.steps {
  display: grid;
  gap: 0;
}

.step {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 8px;
  border-bottom: 1px solid var(--line-light);
}

.step:first-child {
  padding-top: 0;
}

.step:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.step > span {
  color: #7c6cff;
  font: 700 12px "Space Grotesk", sans-serif;
}

.step strong {
  display: block;
  margin-bottom: 7px;
  font: 600 18px "Space Grotesk", sans-serif;
}

.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.contact {
  padding-bottom: 90px;
}

.contact-card {
  padding: 58px 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 5%, rgba(86, 224, 197, .22), transparent 19rem),
    linear-gradient(125deg, #6757e9, #4b41be);
  box-shadow: 0 28px 80px rgba(61, 48, 181, .22);
}

.eyebrow.light {
  color: rgba(255, 255, 255, .66);
}

.eyebrow.light span {
  background: rgba(255, 255, 255, .72);
}

.contact h2 {
  margin: 19px 0 13px;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.05;
}

.contact p {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
}

.button-light {
  flex: 0 0 auto;
  background: white;
  color: #251d77;
}

.site-footer {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  min-height: 102px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #68758b;
}

.brand-mark.small {
  width: 31px;
  height: 31px;
}

.footer-brand .brand-copy strong {
  color: #dfe5ef;
  font-size: 13px;
}

.footer-brand .brand-copy small {
  font-size: 7px;
}

.site-footer p {
  font-size: 11px;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-top: 72px;
  }

  .hero-content {
    max-width: 800px;
  }

  .hero-visual {
    width: min(100%, 660px);
  }

  .visual-window {
    transform: none;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card p {
    min-height: 0;
  }

  .approach-panel {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .contact-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: min(calc(100% - 28px), var(--max-width));
    height: 74px;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    padding: 9px 13px;
    font-size: 11px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .hero,
  .section,
  .site-footer {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .hero {
    min-height: auto;
    padding: 70px 0 72px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .visual-grid {
    grid-template-columns: 1fr;
  }

  .services {
    padding: 80px 0 90px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .approach {
    padding-bottom: 90px;
  }

  .approach-panel {
    padding: 36px 26px;
  }

  .contact {
    padding-bottom: 70px;
  }

  .contact-card {
    padding: 38px 26px;
  }

  .site-footer {
    padding: 28px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }
}


/* OZY Admin legal pages */
.footer-meta {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 8px;
}

.footer-meta p {
  margin: 0;
}

.footer-legal-link {
  color: #95a2b8;
  font-size: 11px;
  font-weight: 650;
  transition: color .2s ease;
}

.footer-legal-link:hover {
  color: var(--text);
}

.legal-page {
  background:
    radial-gradient(circle at 50% -18%, rgba(92, 100, 255, .14), transparent 34rem),
    var(--bg);
}

.legal-header {
  margin-bottom: 0;
}

.legal-main {
  width: min(calc(100% - 40px), 900px);
  margin: 0 auto;
  padding: 76px 0 100px;
}

.legal-hero {
  margin-bottom: 34px;
}

.legal-kicker {
  margin: 18px 0 0;
  color: #dfe5ef;
  font: 600 18px "Space Grotesk", sans-serif;
}

.legal-document {
  padding: 54px 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.018));
  box-shadow: var(--shadow);
}

.legal-document h1,
.legal-document h2 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -.035em;
}

.legal-document h1 {
  margin: 0 0 14px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.04;
}

.legal-document h2 {
  margin: 44px 0 14px;
  padding-top: 10px;
  font-size: 24px;
  line-height: 1.25;
}

.legal-document h2:first-of-type {
  margin-top: 38px;
}

.legal-document p,
.legal-document li {
  color: #aeb8cb;
  font-size: 14px;
  line-height: 1.8;
}

.legal-document p {
  margin: 12px 0;
}

.legal-document ul {
  margin: 14px 0 22px;
  padding-left: 22px;
}

.legal-document li {
  margin: 7px 0;
}

.legal-document strong {
  color: #eef2f8;
}

.legal-document a {
  color: #8ad9ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-document hr {
  height: 1px;
  margin: 46px 0;
  border: 0;
  background: var(--line);
}

.legal-footer {
  width: min(calc(100% - 40px), 900px);
}

@media (max-width: 720px) {
  .footer-meta {
    align-items: flex-start;
  }

  .legal-main,
  .legal-footer {
    width: min(calc(100% - 28px), 900px);
  }

  .legal-main {
    padding: 58px 0 72px;
  }

  .legal-document {
    padding: 34px 24px;
    border-radius: 20px;
  }

  .legal-document h2 {
    margin-top: 36px;
    font-size: 21px;
  }
}
\n\n/* Public product showcase */\n.products {\n  padding-top: 10px;\n}\n\n.product-grid {\n  display: grid;\n  grid-template-columns: repeat(2, minmax(0, 1fr));\n  gap: 18px;\n}\n\n.product-card {\n  padding: 30px;\n  border: 1px solid var(--line);\n  border-radius: var(--radius-md);\n  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.018));\n  box-shadow: 0 12px 34px rgba(0,0,0,.16);\n}\n\n.product-topline {\n  display: flex;\n  align-items: center;\n  justify-content: space-between;\n  gap: 12px;\n  margin-bottom: 22px;\n}\n\n.product-badge {\n  display: inline-flex;\n  padding: 6px 9px;\n  border: 1px solid rgba(124,108,255,.25);\n  border-radius: 999px;\n  background: rgba(124,108,255,.08);\n  color: #c9c3ff;\n  font-size: 10px;\n  font-weight: 750;\n  letter-spacing: .08em;\n  text-transform: uppercase;\n}\n\n.product-status {\n  color: var(--accent);\n  font: 700 11px "Space Grotesk", sans-serif;\n  letter-spacing: .12em;\n}\n\n.product-card h3 {\n  margin: 0 0 12px;\n  font: 600 26px "Space Grotesk", sans-serif;\n  letter-spacing: -.035em;\n}\n\n.product-card p {\n  margin: 0;\n  color: var(--text-soft);\n  line-height: 1.75;\n}\n\n.product-links {\n  display: flex;\n  flex-wrap: wrap;\n  gap: 10px 18px;\n  margin-top: 24px;\n}\n\n.product-links a {\n  color: #8ad9ff;\n  font-size: 12px;\n  font-weight: 700;\n}\n\n.product-links a:hover { color: var(--text); }\n\n.footer-products {\n  display: flex;\n  flex-wrap: wrap;\n  justify-content: flex-end;\n  gap: 8px 24px;\n}\n\n.footer-product {\n  display: flex;\n  align-items: center;\n  gap: 9px;\n}\n\n.footer-product strong {\n  color: #c7d0df;\n  font-size: 11px;\n}\n\n.legal-switcher {\n  display: flex;\n  flex-wrap: wrap;\n  gap: 8px;\n  margin-top: 18px;\n}\n\n.legal-switcher a {\n  display: inline-flex;\n  padding: 7px 11px;\n  border: 1px solid var(--line);\n  border-radius: 999px;\n  color: var(--text-soft);\n  font-size: 11px;\n  font-weight: 700;\n}\n\n.legal-switcher a[href]:hover {\n  border-color: rgba(124,108,255,.45);\n  color: var(--text);\n}\n\n.legal-switcher-current {\n  border-color: rgba(86,224,197,.28) !important;\n  background: rgba(86,224,197,.07);\n  color: var(--accent) !important;\n}\n\n.legal-callout,\n.legal-document .callout {\n  margin: 22px 0;\n  padding: 16px 18px;\n  border: 1px solid rgba(86,224,197,.18);\n  border-radius: var(--radius-sm);\n  background: rgba(86,224,197,.055);\n  color: var(--text-soft);\n  line-height: 1.75;\n}\n\n.legal-document code {\n  padding: 2px 6px;\n  border: 1px solid var(--line);\n  border-radius: 6px;\n  background: rgba(255,255,255,.04);\n  color: #dfe5ef;\n  font-size: .92em;\n}\n\n.legal-footer-meta {\n  display: flex;\n  flex-direction: column;\n  align-items: flex-end;\n  gap: 5px;\n  color: var(--text-soft);\n  font-size: 11px;\n}\n\n.legal-footer-meta a { color: #8ad9ff; }\n\n.error-page {\n  min-height: 100vh;\n  display: grid;\n  place-items: center;\n  padding: 40px 20px;\n}\n\n.error-card {\n  width: min(100%, 700px);\n  padding: 52px;\n  border: 1px solid var(--line);\n  border-radius: var(--radius-lg);\n  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.018));\n  text-align: center;\n  box-shadow: var(--shadow);\n}\n\n.error-code {\n  color: var(--accent);\n  font: 700 12px "Space Grotesk", sans-serif;\n  letter-spacing: .14em;\n}\n\n.error-card h1 {\n  margin: 14px 0 12px;\n  font: 600 clamp(36px, 7vw, 64px) "Space Grotesk", sans-serif;\n  letter-spacing: -.045em;\n}\n\n.error-card p { color: var(--text-soft); }\n\n.error-card .button { margin-top: 18px; }\n\n@media (max-width: 720px) {\n  .product-grid { grid-template-columns: 1fr; }\n  .product-card { padding: 24px; }\n  .footer-products { justify-content: flex-start; }\n  .footer-product { flex-wrap: wrap; }\n  .legal-footer-meta { align-items: flex-start; }\n  .error-card { padding: 38px 24px; }\n}\n