:root {
  --bg: #f7f9fc;
  --paper: #ffffff;
  --ink: #10141a;
  --muted: #5d6570;
  --line: #dfe5ed;
  --accent: #2e6bff;
  --accent-dark: #0b49db;
  --acid: #a9f323;
  --tint: #eef3ff;
  --panel: #111820;
  --danger: #b42318;
  --success: #067647;
  --shadow: 0 24px 70px rgba(16, 20, 26, .11);
  --radius: 10px;
  color-scheme: light;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .42;
  background-image:
    linear-gradient(rgba(46, 107, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 107, 255, .035) 1px, transparent 1px);
  background-size: 32px 32px;
}

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

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 55%, white);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--ink);
  color: white;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.page { min-height: 100vh; overflow: clip; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1228px, 100%);
  margin-inline: auto;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(223, 229, 237, .8);
  background: rgba(247, 249, 252, .88);
  backdrop-filter: blur(16px);
}

.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: -.02em; }
.brand img { width: auto; height: 30px; object-fit: contain; }
.brand span { font-family: Georgia, "Times New Roman", serif; font-size: 22px; }

.nav { display: flex; align-items: center; gap: 22px; color: #303b47; font-size: 14px; font-weight: 800; }
.nav a { transition: color .18s ease, transform .18s ease; }
.nav a:hover { color: var(--accent-dark); transform: translateY(-1px); }
.nav-cta {
  padding: 11px 16px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: white !important;
}

.menu {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
  cursor: pointer;
}
.menu span, .menu::before, .menu::after {
  content: "";
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 58px;
  min-height: calc(100vh - 81px);
  padding-block: 74px 60px;
}
.hero::before {
  content: "MOVIX";
  position: absolute;
  top: 12%;
  left: -11%;
  z-index: -1;
  color: rgba(46, 107, 255, .055);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(120px, 20vw, 310px);
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: .8;
}
.hero-copy { max-width: 620px; animation: enter-left .7s ease both; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow.light { color: var(--acid); }

h1, h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.045em;
}
h1 { font-size: clamp(48px, 6.2vw, 82px); line-height: .98; }
h2 { font-size: clamp(36px, 4.4vw, 58px); line-height: 1.02; }
.lead { margin: 24px 0 0; color: var(--muted); font-size: clamp(18px, 2vw, 22px); line-height: 1.48; }

.actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); border-color: var(--accent); box-shadow: 0 10px 24px rgba(46, 107, 255, .12); }
.button.primary { border-color: var(--accent); background: var(--accent); color: white; }
.button.primary:hover { border-color: var(--accent-dark); background: var(--accent-dark); }
.button svg { width: 17px; height: 17px; }
.button.small { min-height: 40px; padding: 9px 13px; font-size: 13px; }
.button:disabled { cursor: wait; opacity: .7; transform: none; }

.quick-info { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 40px; padding-top: 25px; border-top: 1px solid var(--line); }
.quick-info span { color: var(--accent-dark); font-size: 11px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.quick-info strong { display: block; margin-top: 4px; color: var(--ink); font-size: 14px; letter-spacing: 0; text-transform: none; }

.hero-media {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid #cbd8ef;
  border-radius: var(--radius);
  background: linear-gradient(145deg, white, #edf2fa);
  box-shadow: var(--shadow);
  animation: enter-right .8s .08s ease both;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 14px;
  pointer-events: none;
  border: 1px solid rgba(46, 107, 255, .15);
  border-radius: 6px;
}
.hero-media > img { position: relative; z-index: 1; width: 100%; height: 540px; padding: 38px; object-fit: contain; }
.hero-orbit {
  position: absolute;
  top: 8%;
  right: -18%;
  width: 430px;
  aspect-ratio: 1;
  border: 58px solid rgba(169, 243, 35, .22);
  border-radius: 50%;
}
.media-note {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 19px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 7px;
  background: rgba(17, 24, 32, .92);
  color: white;
  backdrop-filter: blur(12px);
}
.media-note span { color: rgba(255, 255, 255, .63); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.media-note strong { font-size: 14px; }

.section { padding-block: 86px; border-top: 1px solid var(--line); }
.section.tint { background: linear-gradient(180deg, rgba(238, 243, 255, .78), rgba(255, 255, 255, .9)); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 38px; }
.section-head > div { max-width: 700px; }
.section-head > p { max-width: 440px; margin: 0; color: var(--muted); font-size: 17px; }
.section-head.stacked { display: block; margin: 0; }
.section-head.stacked h2 { margin-bottom: 18px; }
.section-head.stacked > p:last-child { max-width: 520px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature {
  position: relative;
  min-height: 245px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid #d6deeb;
  border-radius: 8px;
  background: white;
}
.feature::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 100px;
  aspect-ratio: 1;
  border: 22px solid rgba(46, 107, 255, .08);
  border-radius: 50%;
}
.feature:nth-child(2) { transform: translateY(18px); background: var(--panel); color: white; }
.feature:nth-child(2) h3 { color: white; }
.feature:nth-child(2) p { color: rgba(255, 255, 255, .68); }
.feature:nth-child(2) .feature-index { color: var(--acid); }
.feature-index { color: var(--accent); font-family: Georgia, "Times New Roman", serif; font-size: 31px; font-weight: 800; }
.feature h3 { margin: 34px 0 10px; color: var(--ink); font-size: 21px; }
.feature p { margin: 0; color: var(--muted); }

.process { display: grid; grid-template-columns: .82fr 1fr; gap: 70px; align-items: start; }
.process-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.step { display: grid; grid-template-columns: 75px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.step:first-child { padding-top: 0; }
.step-num { color: var(--accent); font-family: Georgia, "Times New Roman", serif; font-size: 35px; line-height: 1; }
.step h3 { margin: 0 0 7px; font-size: 19px; }
.step p { margin: 0; color: var(--muted); }

.showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.showcase-item {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 285px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid #d7e0ed;
  border-radius: 8px;
  background: white;
  transition: transform .2s ease, box-shadow .2s ease;
}
.showcase-item:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(16, 20, 26, .09); }
.showcase-item::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, var(--accent), var(--acid)); }
.showcase-item img { width: 100%; height: 205px; object-fit: contain; }
.showcase-item span { padding-top: 15px; border-top: 1px solid var(--line); font-weight: 900; }

.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 23px 50px 23px 0; cursor: pointer; font-size: 18px; font-weight: 900; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 17px; right: 4px; color: var(--accent); font-family: Georgia, serif; font-size: 30px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { max-width: 680px; margin: -5px 0 23px; color: var(--muted); }

.contact-section { position: relative; background: var(--panel); color: white; }
.contact-section::before { content: ""; position: absolute; inset: 0; opacity: .08; background: radial-gradient(circle at 20% 10%, var(--acid), transparent 27%), radial-gradient(circle at 90% 80%, var(--accent), transparent 33%); }
.contact-layout { position: relative; display: grid; grid-template-columns: .68fr 1.32fr; gap: 64px; align-items: start; }
.contact-intro { position: sticky; top: 118px; }
.contact-intro h2 { color: white; }
.contact-intro > p:not(.eyebrow) { margin: 20px 0 0; color: rgba(255, 255, 255, .7); font-size: 17px; }
.contact-checks { display: grid; gap: 12px; margin: 34px 0 0; padding: 0; list-style: none; }
.contact-checks li { position: relative; padding-left: 28px; color: rgba(255, 255, 255, .82); }
.contact-checks li::before { content: "✓"; position: absolute; left: 0; color: var(--acid); font-weight: 900; }
.contact-email { color: white; font-weight: 900; text-decoration-color: var(--acid); text-underline-offset: 4px; }
.inline-link { color: var(--accent); font-weight: 850; text-underline-offset: 3px; }

.reseller-hero { display: grid; grid-template-columns: 1.08fr .92fr; gap: 72px; align-items: center; min-height: 680px; padding-top: 72px; padding-bottom: 84px; }
.reseller-hero-copy { max-width: 720px; }
.reseller-hero-copy h1 { margin-bottom: 24px; }
.direct-contact { margin: 22px 0 0; color: var(--muted); }
.direct-contact a { color: var(--ink); font-weight: 900; text-underline-offset: 4px; }
.reseller-brief { position: relative; overflow: hidden; padding: 46px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 34px; background: var(--panel); color: white; box-shadow: 0 34px 90px rgba(10, 17, 35, .23); }
.reseller-brief::after { content: ""; position: absolute; width: 250px; height: 250px; right: -95px; bottom: -115px; border: 40px solid var(--accent); border-radius: 50%; opacity: .38; }
.brief-label { display: inline-flex; margin-bottom: 38px; padding: 8px 12px; border: 1px solid rgba(255, 255, 255, .22); border-radius: 999px; color: var(--acid); font-size: 12px; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; }
.reseller-brief h2 { max-width: 400px; color: white; font-size: clamp(34px, 4vw, 52px); }
.reseller-brief ol { position: relative; z-index: 1; display: grid; gap: 18px; margin: 34px 0; padding: 0; list-style: none; }
.reseller-brief li { display: grid; grid-template-columns: 38px 1fr; gap: 14px; align-items: start; color: rgba(255, 255, 255, .9); font-weight: 760; }
.reseller-brief li span { color: var(--acid); font-family: Georgia, serif; font-weight: 400; }
.reseller-brief > p { position: relative; z-index: 1; margin: 0; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .16); color: rgba(255, 255, 255, .68); }
.reseller-cta { background: var(--panel); color: white; }
.reseller-cta-inner { display: flex; align-items: end; justify-content: space-between; gap: 48px; }
.reseller-cta h2 { max-width: 760px; margin-bottom: 14px; color: white; }
.reseller-cta p:not(.eyebrow) { margin: 0; color: rgba(255, 255, 255, .7); }
.button.on-dark { border-color: rgba(255, 255, 255, .35); background: transparent; color: white; }
.button.on-dark:hover { border-color: white; background: white; color: var(--panel); }

.contact-form { padding: 32px; border: 1px solid rgba(255, 255, 255, .16); border-radius: var(--radius); background: white; color: var(--ink); box-shadow: 0 30px 90px rgba(0, 0, 0, .25); }
.form-heading { margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.form-heading > span { color: var(--accent-dark); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.form-heading h3 { margin: 6px 0 5px; font-family: Georgia, "Times New Roman", serif; font-size: 31px; letter-spacing: -.03em; }
.form-heading p { margin: 0; color: var(--muted); font-size: 13px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; }
.field { display: grid; gap: 7px; margin: 0; }
.field.full { grid-column: 1 / -1; }
.field > span, .field legend { color: #303b47; font-size: 13px; font-weight: 900; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background: #fbfcfe;
  color: var(--ink);
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: white; box-shadow: 0 0 0 4px rgba(46, 107, 255, .11); }
.field small { color: var(--muted); font-size: 12px; }
.product-options { padding: 0; border: 0; }
.product-options legend { margin-bottom: 9px; }
.check-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.check-grid label { display: flex; align-items: center; gap: 8px; min-height: 44px; padding: 9px 11px; border: 1px solid var(--line); border-radius: 6px; background: #fbfcfe; cursor: pointer; }
.check-grid label:has(input:checked) { border-color: var(--accent); background: var(--tint); }
.check-grid input, .consent input { width: 17px; height: 17px; accent-color: var(--accent); }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin-top: 22px; color: var(--muted); font-size: 12px; }
.consent input { flex: 0 0 auto; margin-top: 2px; }
.consent a { color: var(--accent-dark); font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.form-actions { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 18px; margin-top: 22px; }
.submit-button { min-width: 175px; }
.form-status { margin: 0; font-size: 13px; font-weight: 800; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }

.footer { padding-block: 38px 48px; background: #0b1016; color: rgba(255, 255, 255, .62); }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 22px 40px; align-items: start; }
.footer-inner > div { display: grid; gap: 4px; }
.footer strong { color: white; font-family: Georgia, "Times New Roman", serif; font-size: 22px; }
.footer nav { display: flex; gap: 20px; font-size: 13px; font-weight: 800; }
.footer nav a:hover { color: white; }
.footer small { grid-column: 1 / -1; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .1); }

.consent-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  width: min(460px, calc(100% - 36px));
  padding: 17px;
  border: 1px solid #ccd5e0;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}
.consent-banner[hidden] { display: none; }
.consent-banner p { margin: 0 0 13px; color: var(--muted); font-size: 13px; }
.consent-banner p strong { color: var(--ink); }
.consent-banner > div { display: flex; gap: 8px; }

.privacy-page { background: white; }
.privacy-main { width: min(760px, calc(100% - 40px)); margin: 0 auto; padding-block: 70px 100px; }
.privacy-main h1 { font-size: clamp(42px, 8vw, 68px); }
.privacy-main h2 { margin-top: 42px; font-size: 28px; }
.privacy-main p, .privacy-main li { color: var(--muted); }
.privacy-main .updated { margin: 18px 0 44px; color: var(--accent-dark); font-size: 13px; font-weight: 900; }
.privacy-main a { color: var(--accent-dark); font-weight: 800; text-decoration: underline; }

@keyframes enter-left { from { opacity: 0; transform: translateX(-18px); } to { opacity: 1; transform: translateX(0); } }
@keyframes enter-right { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: translateX(0); } }

@media (max-width: 960px) {
  .topbar { padding: 14px 18px; }
  .menu { display: block; }
  .nav {
    position: absolute;
    top: 69px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 12px; }
  .nav-cta { text-align: center; }
  .hero { grid-template-columns: 1fr; min-height: auto; gap: 36px; padding-block: 52px; }
  .hero-media, .hero-media > img { min-height: 400px; height: 400px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature:nth-child(2) { transform: none; }
  .process, .faq-layout, .contact-layout, .reseller-hero { grid-template-columns: 1fr; gap: 38px; }
  .reseller-hero { min-height: 0; padding-top: 58px; }
  .reseller-cta-inner { display: grid; align-items: start; }
  .contact-intro { position: static; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 32px, 1180px); }
  h1 { font-size: clamp(42px, 12vw, 58px); }
  .section { padding-block: 62px; }
  .section-head { display: block; }
  .section-head > p { margin-top: 15px; }
  .showcase { grid-template-columns: 1fr; }
  .showcase-item { min-height: 255px; }
  .showcase-item img { height: 180px; }
  .media-note { display: block; }
  .media-note strong { display: block; margin-top: 5px; }
  .contact-form { padding: 23px 18px; }
  .reseller-brief { padding: 30px 24px; border-radius: 24px; }
  .reseller-hero { padding-top: 42px; padding-bottom: 58px; }
  .reseller-cta .actions { align-items: stretch; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .check-grid { grid-template-columns: 1fr 1fr; }
  .form-actions { grid-template-columns: 1fr; }
  .submit-button { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer small { grid-column: auto; }
}

@media (max-width: 460px) {
  .brand img { display: none; }
  .quick-info { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .hero-media, .hero-media > img { min-height: 330px; height: 330px; }
  .hero-media > img { padding: 24px; }
  .media-note { right: 16px; bottom: 16px; left: 16px; }
  .check-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
