:root {
  color-scheme: dark;
  --bg: #060d19;
  --bg-soft: #0a1527;
  --panel: rgba(14, 28, 49, 0.76);
  --panel-solid: #101e33;
  --text: #f7f9fc;
  --muted: #a8b5c8;
  --line: rgba(165, 195, 230, 0.15);
  --orange: #ff9c12;
  --cyan: #08bffc;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  max-width: 100%;
  min-width: 320px;
  overflow-x: hidden;
  overflow-x: clip;
  background:
    radial-gradient(circle at 15% 10%, rgba(8, 191, 252, 0.10), transparent 28rem),
    radial-gradient(circle at 85% 22%, rgba(255, 156, 18, 0.08), transparent 26rem),
    var(--bg);
  color: var(--text);
  font: 16px/1.6 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 40px), var(--max));
  margin: 18px auto 0;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(6, 13, 25, 0.82);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.02em; }
.brand-image { display: flex; width: 52px; height: 38px; flex: 0 0 auto; align-items: center; justify-content: center; }
.brand-image img { width: 100%; height: 100%; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a, .site-footer nav a { color: var(--muted); transition: color .2s ease, background .2s ease; }
.site-nav a { padding: 8px 13px; border-radius: 10px; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--text); background: rgba(255,255,255,.06); }
.site-nav .language-link { border: 1px solid var(--line); color: var(--text); font-weight: 750; }
.menu-button { display: none; border: 0; background: transparent; color: var(--text); cursor: pointer; }

main, .site-footer { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  overflow: clip;
  display: flex;
  align-items: center;
  min-height: 760px;
  padding: 90px 0 70px;
}
.hero::after { position: absolute; z-index: -1; right: 2%; width: min(36vw, 450px); aspect-ratio: 1; border: 1px solid rgba(8,191,252,.2); border-radius: 42% 58% 62% 38%; background: radial-gradient(circle at 38% 30%, rgba(8,191,252,.22), rgba(255,156,18,.06) 38%, transparent 69%); box-shadow: 0 0 0 42px rgba(8,191,252,.025), 0 0 0 84px rgba(255,156,18,.018); content: ""; transform: rotate(17deg); }
.hero-copy { max-width: 900px; }

.eyebrow { margin: 0 0 14px; color: var(--cyan); font-size: .78rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 { margin: 0; font-size: clamp(3.25rem, 7vw, 6.6rem); line-height: .96; letter-spacing: -.065em; }
h1 span { color: transparent; background: linear-gradient(90deg, var(--orange), #ffd36a 35%, var(--cyan)); background-clip: text; -webkit-background-clip: text; }
h2 { margin: 0; font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1.06; letter-spacing: -.045em; }
h3 { margin: 12px 0 8px; font-size: 1.25rem; }
.hero-lead { max-width: 620px; margin: 28px 0 0; color: var(--muted); font-size: clamp(1.05rem, 1.8vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 11px 20px; border: 1px solid transparent; border-radius: 13px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button.primary { background: linear-gradient(135deg, var(--orange), #ffbc35); color: #151008; box-shadow: 0 12px 30px rgba(255, 156, 18, .18); }
.button.secondary { border-color: var(--line); background: rgba(255,255,255,.045); }
.platform-note { margin: 18px 0 0; color: #718298; font-size: .88rem; }

.section { margin-top: 78px; }
.studio-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; padding: 70px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(140deg, rgba(15,30,53,.9), rgba(9,20,36,.7)); box-shadow: var(--shadow); }
.studio-copy { color: var(--muted); font-size: 1.1rem; }
.studio-copy p:first-child { margin-top: 0; }

.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.principles article { min-height: 210px; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: var(--panel); }
.principles p { color: var(--muted); }
.number { color: var(--orange); font-size: .78rem; font-weight: 900; letter-spacing: .12em; }

.coming-soon-card { position: relative; overflow: hidden; padding: clamp(42px, 8vw, 92px); border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(120deg, #0c213c, #10172b 58%, #25180b); }
.coming-soon-card::after { position: absolute; right: -80px; bottom: -120px; width: 340px; height: 340px; border: 1px solid rgba(8,191,252,.3); border-radius: 50%; box-shadow: 0 0 0 50px rgba(8,191,252,.04), 0 0 0 100px rgba(255,156,18,.03); content: ""; }
.coming-soon-card p:not(.eyebrow) { max-width: 650px; color: var(--muted); font-size: 1.1rem; }
.status-chip { display: inline-flex; margin-top: 18px; padding: 7px 12px; border: 1px solid rgba(8,191,252,.24); border-radius: 999px; background: rgba(8,191,252,.08); color: #7edfff; font-size: .82rem; font-weight: 800; }

.contact-panel { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 56px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.035); }
.contact-panel p:not(.eyebrow) { max-width: 600px; color: var(--muted); }
.contact-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; flex: 0 0 auto; }
.text-link { color: var(--cyan); font-weight: 750; }

.site-footer { display: grid; grid-template-columns: 1fr auto; gap: 26px; align-items: center; margin-top: 80px; padding: 36px 0 46px; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 20px; }
.site-footer p { grid-column: 1 / -1; margin: 0; }
.site-footer .operator-note { color: #c6d2e2; }
.site-footer .operator-note strong { color: var(--text); font-weight: 800; }
.footer-brand { color: var(--text); }

.page-hero { max-width: 800px; padding: 110px 0 42px; }
.page-hero h1 { font-size: clamp(3rem, 7vw, 5.6rem); }
.page-hero p { color: var(--muted); font-size: 1.15rem; }
.content-shell { display: grid; grid-template-columns: 230px minmax(0, 760px); gap: 70px; padding: 32px 0 90px; }
.content-nav { position: sticky; top: 100px; align-self: start; display: grid; gap: 8px; }
.content-nav a { padding: 7px 0; color: var(--muted); font-size: .92rem; }
.legal-content section { padding: 0 0 32px; }
.legal-content h2 { margin-bottom: 16px; font-size: 1.7rem; letter-spacing: -.02em; }
.legal-content h3 { font-size: 1.05rem; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }
.legal-content ul { padding-left: 22px; }
.updated { color: #718298; font-size: .88rem; }
.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 28px 0 50px; }
.support-card { padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: var(--panel); }
.support-card p { color: var(--muted); }
.support-card a { color: var(--cyan); font-weight: 750; }
.notice { padding: 22px; border: 1px solid rgba(255,156,18,.23); border-radius: 18px; background: rgba(255,156,18,.065); color: #f7d9a3; }
.contact-form-section { display: grid; grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr); gap: clamp(34px, 7vw, 86px); margin: 22px 0 70px; padding: clamp(28px, 5vw, 58px); border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(140deg, rgba(15,30,53,.9), rgba(9,20,36,.72)); box-shadow: var(--shadow); }
.form-intro p:not(.eyebrow) { color: var(--muted); }
.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.contact-form label { display: grid; gap: 7px; color: #dce5f1; font-size: .92rem; font-weight: 700; }
.contact-form label small { color: #718298; font-weight: 500; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; min-width: 0; border: 1px solid rgba(165,195,230,.22); border-radius: 12px; outline: none; background: rgba(3,10,20,.7); color: var(--text); padding: 12px 14px; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(8,191,252,.12); }
.contact-form .consent { display: flex; grid-template-columns: none; align-items: flex-start; gap: 10px; color: var(--muted); font-weight: 500; }
.contact-form .consent input { width: 18px; margin-top: 4px; accent-color: var(--cyan); }
.contact-form .consent a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }
.honeypot { position: absolute !important; overflow: hidden !important; width: 1px !important; height: 1px !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; }
.form-submit-row { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; }
.form-status { margin: 0; color: var(--muted); }
.form-status.success { color: #7ee6ad; }
.form-status.error { color: #ff9e9e; }

@media (max-width: 800px) {
  .site-header { width: min(calc(100% - 24px), var(--max)); }
  .menu-button { display: block; }
  .site-nav { position: absolute; top: calc(100% + 8px); right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; padding: 10px; border: 1px solid var(--line); border-radius: 16px; background: #091425; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav .language-link { margin-top: 4px; text-align: center; }
  main, .site-footer { width: min(calc(100% - 28px), var(--max)); }
  .hero { min-height: 620px; padding: 72px 0 30px; }
  .hero::after { right: -18%; width: 68vw; opacity: .55; }
  .studio-section { grid-template-columns: 1fr; gap: 24px; padding: 34px; }
  .principles { grid-template-columns: 1fr; }
  .contact-panel { align-items: flex-start; flex-direction: column; padding: 34px; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer p { grid-column: auto; }
  .content-shell { grid-template-columns: 1fr; gap: 28px; }
  .content-nav { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); padding-bottom: 20px; border-bottom: 1px solid var(--line); }
  .support-grid { grid-template-columns: 1fr; }
  .contact-form-section, .form-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
