/* Neon — estilos e responsividade. O hero mantém width: 100% e height: auto. */

:root {
  color-scheme:dark;
  --bg:#070912;
  --surface:#10131f;
  --text:#f5f6fa;
  --muted:#a7abba;
  --line:rgba(255,255,255,.1);
  --cyan:#4ae2ff;
  --purple:#9768ff;
  --pink:#e23ddb;
  --radius:24px;
  --wrap:1280px;
}

*,*::before,*::after {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:104px;
}

body {
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Inter,"Segoe UI",Arial,sans-serif;
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}

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

button {
  font:inherit;
}

button,a {
  -webkit-tap-highlight-color:transparent;
}

button {
  color:inherit;
}

img {
  display:block;
  max-width:100%;
}

svg {
  display:block;
  flex-shrink:0;
}

h1,h2,h3,p {
  margin:0;
}

button:disabled {
  cursor:not-allowed;
}

button:not(:disabled) {
  cursor:pointer;
}

::selection {
  background:#754be7;
  color:white;
}

:focus-visible {
  outline:3px solid var(--cyan);
  outline-offset:5px;
}

.wrap {
  width:min(calc(100% - 96px),var(--wrap));
  margin-inline:auto;
}

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

.icons {
  position:absolute;
  width:0;
  height:0;
  overflow:hidden;
}

.site-bar {
  position:relative;
  z-index:30;
  background:linear-gradient(90deg,#123a4f,#1a1635 55%,#3a1848);
  border-bottom:1px solid #5b7f9a55;
  color:#e8eef8;
  font-size:.875rem;
}

.site-bar-inner {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
  padding:11px 0;
  text-align:center;
}

.site-bar-inner p {
  margin:0;
  color:#d7e0ef;
}

.site-bar-link {
  color:var(--cyan);
  font-weight:650;
  text-decoration:underline;
  text-underline-offset:3px;
}

.site-bar-link:hover {
  color:#a3f5ff;
}

.skip {
  position:fixed;
  top:12px;
  left:16px;
  transform:translateY(-180%);
  z-index:100;
  background:white;
  color:#080b14;
  padding:12px 18px;
  border-radius:8px;
}

.skip:focus {
  transform:none;
}

.header {
  height:96px;
  position:relative;
  z-index:20;
  border-bottom:1px solid var(--line);
  background:rgba(7,9,18,.9);
}

.header-inner {
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.brand {
  display:inline-flex;
  align-items:center;
  flex-shrink:0;
}

.brand img {
  width:143px;
  height:auto;
}

.nav {
  display:flex;
  align-items:center;
  gap:34px;
  margin-left:auto;
  margin-right:28px;
}

.nav a {
  font-size:.925rem;
  color:#babdca;
  transition:color .2s;
}

.nav a:hover {
  color:white;
}

.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-height:54px;
  padding:14px 25px;
  border:1px solid transparent;
  border-radius:11px;
  font-size:.95rem;
  font-weight:650;
  line-height:1.4;
  transition:background .2s,transform .2s,border-color .2s,box-shadow .2s;
  text-align:center;
}

.btn-primary {
  color:#07131e;
  background:linear-gradient(108deg,#75efff,#47c9fb);
  box-shadow:0 6px 32px rgba(31,181,233,.12);
}

.btn-primary:hover {
  background:linear-gradient(108deg,#a3f5ff,#80dcff);
  transform:translateY(-2px);
  box-shadow:0 10px 38px #27b9ea26;
}

.btn-secondary {
  border-color:rgba(255,255,255,.15);
  background:#ffffff04;
  color:#eceef7;
}

.btn-secondary:hover {
  border-color:#ffffff40;
  background:#ffffff0a;
  transform:translateY(-2px);
}

.btn-small {
  min-height:43px;
  padding:10px 18px;
  font-size:.875rem;
}

.btn .icon {
  width:19px;
  height:19px;
}

.menu-toggle {
  display:none;
  background:none;
  border:1px solid var(--line);
  padding:10px;
  border-radius:9px;
}

.hero {
  position:relative;
  overflow:hidden;
  padding:91px 0 88px;
}

.hero::before {
  content:"";
  position:absolute;
  width:960px;
  height:730px;
  top:-170px;
  right:-170px;
  background:radial-gradient(ellipse,#4b26a527,transparent 65%);
  pointer-events:none;
}

.hero::after {
  content:"";
  position:absolute;
  width:720px;
  height:550px;
  top:30px;
  right:120px;
  background:radial-gradient(ellipse,#008cce1a,transparent 66%);
  pointer-events:none;
}

.hero-grid {
  display:grid;
  grid-template-columns:.88fr 1.12fr;
  align-items:center;
  gap:40px;
  position:relative;
  z-index:1;
}

.hero-copy {
  position:relative;
  z-index:3;
}

.eyebrow {
  display:flex;
  align-items:center;
  gap:11px;
  color:#b7bfd3;
  font-size:.75rem;
  letter-spacing:.17em;
  font-weight:650;
  text-transform:uppercase;
}

.eyebrow::before {
  content:"";
  width:27px;
  height:2px;
  background:linear-gradient(90deg,var(--cyan),var(--purple));
  flex-shrink:0;
}

h1 {
  font-size:clamp(3.6rem,5.65vw,5.25rem);
  font-weight:720;
  letter-spacing:-.061em;
  line-height:1.08;
  margin:27px 0 26px;
}

.gradient-text {
  background:linear-gradient(105deg,#5fe4ff 5%,#6594ff 50%,#c17aff 98%);
  background-clip:text;
  -webkit-background-clip:text;
  color:transparent;
}

.hero-description {
  font-size:1.12rem;
  color:var(--muted);
  line-height:1.85;
  max-width:405px;
}

.hero-trial {
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:22px;
  max-width:420px;
  color:#9eb0c8;
  font-size:.875rem;
  line-height:1.45;
}

.hero-trial .icon {
  width:16px;
  height:16px;
  color:var(--cyan);
  flex-shrink:0;
}

.hero-trial strong {
  color:#d7f7ff;
  font-weight:650;
}

.hero-actions {
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:20px;
  flex-wrap:wrap;
}

.hero-note {
  display:flex;
  align-items:center;
  gap:9px;
  margin-top:24px;
  color:#8e95a9;
  font-size:.81rem;
}

.hero-note .icon {
  width:16px;
  height:16px;
  color:#81a2c0;
}

.hero-visual {
  position:relative;
  min-width:0;
  padding:29px 0 107px;
  margin-right:-74px;
  margin-left:3px;
  isolation:isolate;
}

.hero-visual::before {
  content:"";
  position:absolute;
  inset:8% 7% 14% 1%;
  background:linear-gradient(140deg,#117dc54d,#8056fe25 60%,#ea32e021);
  filter:blur(60px);
  z-index:-1;
}

.main-screen {
  padding:7px;
  border:1px solid #6f8bac50;
  border-radius:21px;
  background:linear-gradient(150deg,#202838,#0b0c15);
  box-shadow:0 35px 90px #0008;
  transform:perspective(1400px) rotateY(-9deg) rotateZ(-2.3deg);
  overflow:hidden;
}

.screen-top {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:9px 12px 13px;
  font-size:.7rem;
  color:#a7b2c5;
  letter-spacing:.06em;
}

.screen-top span {
  display:flex;
  align-items:center;
  gap:7px;
}

.screen-top .icon {
  width:13px;
  height:13px;
}

.screen-dots {
  display:flex;
  gap:5px;
}

.screen-dots i {
  width:5px;
  height:5px;
  border-radius:50%;
  background:#71768b;
}

.main-screen>img {
  display:block;
  width:100%;
  height:auto;
  border-radius:13px;
  aspect-ratio:1909/1078;
  object-fit:contain;
  background:#081122;
}

.sports-screen {
  position:absolute;
  left:-30px;
  bottom:16px;
  width:49%;
  padding:5px;
  border-radius:14px;
  overflow:hidden;
  background:#151b2b;
  border:1px solid #6997bb55;
  box-shadow:0 24px 65px #000a;
  transform:rotate(3deg);
}

.sports-screen img {
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
  border-radius:9px;
  aspect-ratio:1918/1069;
}

.visual-label {
  position:absolute;
  right:35px;
  bottom:31px;
  font-size:.75rem;
  color:#7e8a9e;
  letter-spacing:.04em;
  display:flex;
  align-items:center;
  gap:10px;
}

.visual-label::before {
  content:"";
  width:23px;
  height:1px;
  background:#546882;
}

.category-bar {
  position:relative;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:#0c0f18;
}

.category-inner {
  display:grid;
  grid-template-columns:repeat(5,1fr);
  padding-block:25px;
}

.category-item {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  border-right:1px solid var(--line);
  color:#c7ccd9;
  font-size:.91rem;
}

.category-item:last-child {
  border:0;
}

.category-item .icon {
  color:#83a4bd;
  width:23px;
  height:23px;
}

section[id] {
  scroll-margin-top:32px;
}

.section {
  padding:99px 0;
}

.section-heading {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:45px;
  margin-bottom:42px;
}

.section-heading h2,.download-copy h2 {
  font-size:clamp(2.1rem,3.3vw,3.125rem);
  font-weight:650;
  letter-spacing:-.045em;
  line-height:1.17;
  margin-top:17px;
}

.section-heading>p {
  max-width:345px;
  color:var(--muted);
  font-size:1rem;
  line-height:1.8;
}

.quiet {
  color:#9ca3b7;
}

.tutorials-section[hidden] {
  display:none !important;
}

.tutorial-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:24px;
}

.tutorial-card {
  display:flex;
  flex-direction:column;
  gap:18px;
  min-width:0;
}

.tutorial-card[hidden] {
  display:none !important;
}

.tutorial-media {
  position:relative;
  display:block;
  width:100%;
  aspect-ratio:16 / 9;
  overflow:hidden;
  border:1px solid #56627b55;
  border-radius:20px;
  background:
    radial-gradient(ellipse at 20% 20%,#12545b55,transparent 55%),
    radial-gradient(ellipse at 80% 80%,#7736a340,transparent 60%),
    #0c101b;
  padding:0;
  cursor:pointer;
  color:inherit;
  text-align:left;
}

.tutorial-media:hover .tutorial-play-badge,
.tutorial-media:focus-visible .tutorial-play-badge {
  transform:scale(1.06);
  background:linear-gradient(108deg,#93ebff,#75efff);
}

.tutorial-media:focus-visible {
  outline:2px solid #72def3;
  outline-offset:3px;
}

.tutorial-cover {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.tutorial-cover[hidden] {
  display:none !important;
}

.tutorial-media-shade {
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 35%,#070912cc 100%);
  pointer-events:none;
}

.tutorial-play-badge {
  position:absolute;
  left:50%;
  top:50%;
  width:64px;
  height:64px;
  margin:-32px 0 0 -32px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(108deg,#75efff,#47c9fb);
  color:#07131e;
  box-shadow:0 10px 30px #00000066;
  transition:transform .18s ease;
  pointer-events:none;
}

.tutorial-play-badge .icon {
  width:22px;
  height:22px;
  margin-left:2px;
}

.tutorial-copy h3 {
  margin:0 0 8px;
  font-size:1.2rem;
  font-weight:650;
  letter-spacing:-.02em;
}

.tutorial-copy p {
  margin:0;
  color:var(--muted);
  font-size:.95rem;
  line-height:1.75;
  max-width:38ch;
}

.video-dialog {
  width:min(96vw,1080px);
  max-width:1080px;
  padding:0;
  border:1px solid #56627b88;
  border-radius:18px;
  background:#090c14;
  color:var(--text);
  overflow:hidden;
}

.video-dialog::backdrop {
  background:#05070fcc;
}

.video-dialog-toolbar {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 16px;
  border-bottom:1px solid var(--line);
}

.video-dialog-toolbar h2 {
  margin:0;
  font-size:1rem;
  font-weight:650;
}

.video-dialog-frame {
  position:relative;
  width:100%;
  aspect-ratio:16 / 9;
  background:#000;
}

.video-dialog-frame iframe,
.video-dialog-frame video {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  display:block;
  background:#000;
}

.video-dialog[open] {
  animation:open-dialog .18s ease-out;
}

@media (prefers-reduced-motion: reduce) {
  .tutorial-play-badge,
  .video-dialog[open] {
    transition:none;
    animation:none;
  }
}

.showcase {
  padding-top:34px;
}

.showcase .section-heading {
  margin-bottom:30px;
}

.section-link {
  display:flex;
  align-items:center;
  gap:10px;
  font-size:.925rem;
  color:#cfd7e7;
  white-space:nowrap;
}

.section-link:hover {
  color:var(--cyan);
}

.section-link .icon {
  width:18px;
  height:18px;
}

.tabs {
  display:flex;
  align-items:center;
  gap:7px;
  padding:6px;
  border:1px solid var(--line);
  background:#10131d;
  border-radius:12px;
  width:fit-content;
  max-width:100%;
  margin-bottom:25px;
  overflow-x:auto;
  scrollbar-width:thin;
}

.tab {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  background:transparent;
  border:1px solid transparent;
  border-radius:8px;
  color:#a1a8bb;
  padding:11px 20px;
  font-size:.9rem;
  white-space:nowrap;
  min-height:44px;
  transition:background .2s,color .2s;
}

.tab .icon {
  width:18px;
  height:18px;
}

.tab:hover {
  color:#eef5ff;
  background:#ffffff05;
}

.tab[aria-selected="true"] {
  color:#80e6ff;
  background:#173043;
  border-color:#32648288;
  box-shadow:0 2px 9px #0002;
}

.tabs:focus-within {
  outline:1px solid #5b809777;
  outline-offset:3px;
}

.gallery {
  position:relative;
  border-radius:24px;
  padding:9px;
  background:linear-gradient(130deg,#465d7880,#1e233f,#6b3d744d);
  border:1px solid #ffffff14;
  box-shadow:0 34px 90px #0003;
}

.gallery-screen {
  position:relative;
  overflow:hidden;
  background:#08101f;
  border-radius:17px;
  aspect-ratio:16/9;
}

.gallery-screen img {
  width:100%;
  height:100%;
  object-fit:contain;
}

.enlarge {
  position:absolute;
  right:17px;
  bottom:17px;
  display:flex;
  align-items:center;
  gap:8px;
  color:white;
  background:#070912df;
  border:1px solid #ffffff38;
  padding:10px 14px;
  border-radius:9px;
  backdrop-filter:blur(12px);
  font-size:.8rem;
  min-height:42px;
}

.enlarge:hover {
  background:#26334beb;
}

.enlarge .icon {
  width:17px;
  height:17px;
}

.gallery-caption {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:30px;
  margin-top:22px;
}

.caption-copy h3 {
  font-size:1.06rem;
  font-weight:600;
  margin-bottom:4px;
}

.caption-copy p {
  font-size:.9rem;
  color:#9da6bb;
}

.gallery-count {
  color:#8f98ae;
  font-size:.81rem;
  white-space:nowrap;
  padding-top:5px;
  font-variant-numeric:tabular-nums;
}

.gallery-count strong {
  color:#dee4ef;
  font-weight:500;
}

.download-section {
  position:relative;
  padding:28px 0 100px;
}

.compat-section {
  padding:40px 0 28px;
}

.compat-heading {
  margin-bottom:36px;
  max-width:640px;
}

.compat-heading h2 {
  font-size:clamp(1.75rem,3vw,2.5rem);
  font-weight:650;
  letter-spacing:-.04em;
  line-height:1.2;
  margin:14px 0 14px;
}

.compat-lead {
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.7;
  max-width:520px;
}

.compat-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:20px;
  align-items:stretch;
}

.compat-card {
  display:flex;
  flex-direction:column;
  height:100%;
  padding:24px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#10131f;
  cursor:default;
}

.compat-icon {
  width:40px;
  height:40px;
  margin-bottom:18px;
  border:1px solid #4ad8f02b;
  border-radius:12px;
  background:#0e2833;
  color:#67d6f2;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.compat-icon .icon {
  width:22px;
  height:22px;
}

.compat-card:nth-child(2) .compat-icon {
  background:#12263a;
  color:#6ec8ff;
  border-color:#3d7ea83d;
}

.compat-card:nth-child(3) .compat-icon {
  background:#1a1f36;
  color:#8eb6ff;
  border-color:#5a6fb83d;
}

.compat-card:nth-child(4) .compat-icon {
  background:#1b1630;
  color:#c4a6ff;
  border-color:#7a5ab83d;
}

.compat-copy h3 {
  font-size:1.125rem;
  font-weight:650;
  letter-spacing:-.015em;
  margin-bottom:10px;
  line-height:1.35;
}

.compat-copy p {
  color:var(--muted);
  font-size:1rem;
  line-height:1.6;
}

@media(max-width:1023px) {
  .compat-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:639px) {
  .compat-section {
    padding:24px 0 12px;
  }
  .compat-heading {
    margin-bottom:24px;
  }
  .compat-heading h2 {
    font-size:1.75rem;
  }
  .compat-lead {
    font-size:1rem;
  }
  .compat-grid {
    grid-template-columns:1fr;
    gap:14px;
  }
  .compat-card {
    display:grid;
    grid-template-columns:40px 1fr;
    column-gap:16px;
    align-items:start;
    padding:20px;
  }
  .compat-icon {
    margin-bottom:0;
  }
  .compat-copy h3 {
    font-size:1.05rem;
    margin-bottom:6px;
  }
  .compat-copy p {
    font-size:1rem;
    line-height:1.6;
  }
}

.download-box {
  position:relative;
  overflow:hidden;
  padding:62px;
  display:flex;
  flex-direction:column;
  gap:0;
  border:1px solid #4255756b;
  border-radius:30px;
  background:radial-gradient(ellipse at 0% 0%,#12545b38,transparent 55%),radial-gradient(ellipse at 100% 100%,#7736a323,transparent 65%),#101320;
}

.download-top {
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:66px;
  align-items:center;
}

.downloader-install,
.ntdown-install {
  width:100%;
  margin-top:24px;
  padding-top:24px;
  border-top:1px solid #56627b55;
}

.downloader-layout,
.ntdown-layout {
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:22px 36px;
  align-items:start;
}

.downloader-identity,
.ntdown-identity {
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:14px;
}

.downloader-mark,
.ntdown-mark {
  flex-shrink:0;
  width:48px;
  height:48px;
  border-radius:12px;
  overflow:hidden;
  background:#0a0d17;
  border:1px solid #56627b55;
}

.downloader-mark img,
.ntdown-mark img {
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
}

.downloader-identity h3,
.ntdown-identity h3 {
  margin:0 0 6px;
  font-size:1.05rem;
  font-weight:650;
  letter-spacing:-.02em;
  line-height:1.25;
}

.downloader-lead,
.ntdown-lead {
  margin:0;
  color:var(--muted);
  font-size:.84rem;
  line-height:1.55;
}

.downloader-code-label,
.ntdown-code-label {
  margin:0 0 6px;
  color:#a8b3c6;
  font-size:.72rem;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.downloader-code,
.ntdown-code {
  margin:0 0 10px;
  padding:10px 14px;
  border:1px solid #5ad6ec44;
  border-radius:12px;
  background:#0a0d17cc;
  color:#7ef0ff;
  font-size:clamp(1.35rem,2.4vw,1.75rem);
  font-weight:700;
  letter-spacing:.1em;
  line-height:1.2;
  user-select:text;
  -webkit-user-select:text;
  word-break:break-all;
}

.downloader-copy,
.ntdown-copy {
  width:100%;
  max-width:240px;
  min-height:42px;
  margin-bottom:8px;
  font-size:.875rem;
}

.downloader-code-hint,
.ntdown-code-hint {
  margin:0;
  color:#8490a7;
  font-size:.78rem;
  line-height:1.5;
}

.downloader-steps,
.ntdown-steps {
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.downloader-steps li,
.ntdown-steps li {
  display:flex;
  align-items:flex-start;
  gap:12px;
}

.downloader-step-num,
.ntdown-step-num {
  flex-shrink:0;
  width:28px;
  height:28px;
  border-radius:8px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#1a3a4a,#2a1f4a);
  border:1px solid #5ad6ec44;
  color:#7ef0ff;
  font-size:.78rem;
  font-weight:700;
}

.downloader-step-title,
.ntdown-step-title {
  margin:0 0 2px;
  font-weight:650;
  font-size:.9rem;
  letter-spacing:-.01em;
}

.downloader-step-text,
.ntdown-step-text {
  margin:0;
  color:var(--muted);
  font-size:.8rem;
  line-height:1.5;
}

.download-box::before {
  content:"";
  height:1px;
  position:absolute;
  left:60px;
  right:60px;
  top:0;
  background:linear-gradient(90deg,transparent,#5ad6ec8f,#a75fffa8,transparent);
}

.download-copy h2 {
  margin-bottom:20px;
}

.download-copy>p {
  color:var(--muted);
  max-width:365px;
  font-size:1rem;
  line-height:1.8;
}

.download-card {
  background:#0a0d17cc;
  border:1px solid #56627b55;
  border-radius:19px;
  padding:28px;
}

.app-identity {
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:26px;
}

.app-mark {
  height:64px;
  width:64px;
  overflow:hidden;
  flex-shrink:0;
  background:#090c19;
  border:1px solid #413971;
  border-radius:16px;
  padding:8px;
}

.app-mark img {
  width:auto;
  height:100%;
  max-width:none;
}

.app-name {
  font-weight:650;
  font-size:1.15rem;
  letter-spacing:-.02em;
}

.app-subtitle {
  font-size:.84rem;
  color:#8f9bb4;
}

.download-meta {
  border-top:1px solid var(--line);
  padding-top:20px;
  margin-bottom:19px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:15px;
  color:#a8b3c6;
  font-size:.84rem;
}

.availability {
  color:#ad9ce4;
  display:inline-flex;
  align-items:center;
  gap:7px;
}

.availability .icon {
  width:15px;
  height:15px;
}

.download-action {
  width:100%;
  border:1px solid #50617c4d;
  background:#222b3c;
  color:#a8b8d1;
  min-height:53px;
}

.download-action.is-ready {
  background:linear-gradient(108deg,#75efff,#47c9fb);
  color:#07131e;
}

.download-action.is-ready:hover {
  background:#93ebff;
}

.download-info {
  font-size:.8rem;
  color:#8490a7;
  text-align:center;
  margin-top:15px;
  line-height:1.7;
}

.download-info a {
  text-decoration:underline;
  text-underline-offset:3px;
}

.footer {
  border-top:1px solid var(--line);
  padding:31px 0 26px;
}

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

.footer-brand {
  display:flex;
  align-items:center;
  gap:25px;
}

.footer-brand img {
  width:109px;
  height:auto;
}

.footer-brand p {
  font-size:.84rem;
  color:#858ea2;
}

.footer-nav {
  display:flex;
  gap:26px;
  font-size:.83rem;
  color:#a6afc0;
}

.footer-nav a:hover {
  color:#69d9fa;
}

.footer-bottom {
  padding-top:20px;
  margin-top:21px;
  border-top:1px solid #ffffff06;
  display:flex;
  justify-content:space-between;
  gap:20px;
  font-size:.75rem;
  color:#747e91;
}

.lightbox {
  max-width:min(94vw,1450px);
  width:1450px;
  padding:13px;
  border:1px solid #445a7a;
  border-radius:19px;
  background:#0c1120;
  color:white;
  box-shadow:0 30px 150px #000c;
}

.lightbox::backdrop {
  background:#02050de8;
  backdrop-filter:blur(10px);
}

.lightbox-toolbar {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:1px 4px 12px;
}

.lightbox-toolbar h2 {
  font-size:1rem;
  font-weight:500;
  letter-spacing:0;
}

.close-dialog {
  display:flex;
  align-items:center;
  justify-content:center;
  background:#ffffff08;
  border:1px solid #ffffff20;
  width:42px;
  height:42px;
  border-radius:9px;
}

.lightbox img {
  max-height:75vh;
  width:100%;
  object-fit:contain;
  border-radius:9px;
}

.lightbox-hint {
  font-size:.75rem;
  color:#8b96ab;
  text-align:center;
  padding-top:10px;
}

.lightbox[open] {
  animation:open-dialog .18s ease-out;
}

@keyframes open-dialog {
  from {
    opacity:0;
    transform:translateY(8px);
  }
  to {
    opacity:1;
    transform:translateY(0);
  }
}

@media(min-width:1600px) {
  .hero {
    padding-top:115px;
    padding-bottom:110px;
  }
  .hero-visual {
    margin-right:-95px;
  }
}

@media(max-width:1100px) {
  .wrap {
    width:calc(100% - 64px);
  }
  .header {
    height:85px;
  }
  .nav {
    gap:23px;
    margin-right:8px;
  }
  .hero {
    padding-top:75px;
    padding-bottom:68px;
  }
  .hero-grid {
    grid-template-columns:.94fr 1.06fr;
    gap:25px;
  }
  h1 {
    font-size:4rem;
  }
  .hero-visual {
    margin-right:-50px;
  }
  .hero-actions {
    gap:10px;
  }
  .hero-actions .btn {
    padding:13px 18px;
    font-size:.875rem;
  }
  .visual-label {
    right:4px;
  }
  .section {
    padding-block:78px;
  }
  .showcase {
    padding-top:20px;
  }
  .download-box {
    padding:43px;
  }
  .download-top {
    gap:35px;
  }
  .download-copy h2 {
    font-size:2.6rem;
  }
  .tutorial-grid {
    gap:18px;
  }
  .download-section {
    padding-bottom:78px;
  }
}

@media(max-width:850px) {
  .hero-grid {
    grid-template-columns:1fr;
    gap:32px;
  }
  .hero {
    padding:54px 0 51px;
  }
  .hero-copy {
    max-width:630px;
  }
  .hero h1 {
    font-size:clamp(3.8rem,9vw,5rem);
    max-width:650px;
  }
  .hero-description {
    max-width:490px;
  }
  .hero-visual {
    margin:5px 3% 0 6%;
    padding:0 0 92px;
  }
  .main-screen {
    transform:perspective(1400px) rotateY(-5deg) rotateZ(-1.7deg);
  }
  .sports-screen {
    left:-25px;
    bottom:0;
    width:43%;
  }
  .visual-label {
    right:30px;
    bottom:24px;
  }
  .nav {
    gap:22px;
    margin-right:0;
  }
  .header-inner {
    gap:18px;
  }
  .brand img {
    width:124px;
  }
  .header-download {
    font-size:.81rem;
    padding:10px 13px;
  }
  .category-inner {
    padding-block:23px;
  }
  .category-item {
    flex-direction:column;
    gap:9px;
    font-size:.8rem;
  }
  .category-item .icon {
    width:21px;
    height:21px;
  }
  .section-heading {
    gap:30px;
  }
  .section-heading>p {
    max-width:280px;
    font-size:.925rem;
  }
  .tutorial-grid {
    grid-template-columns:1fr;
    gap:22px;
  }
  .download-box {
    padding:40px;
  }
  .download-top {
    grid-template-columns:1fr;
    gap:33px;
  }
  .downloader-layout,
  .ntdown-layout {
    grid-template-columns:1fr;
    gap:20px;
  }
  .download-copy {
    max-width:510px;
  }
  .download-copy>p {
    max-width:440px;
  }
  .download-card {
    max-width:100%;
    width:100%;
  }
  .footer-brand {
    gap:16px;
  }
  .footer-brand p {
    max-width:175px;
  }
  .section-heading h2 {
    font-size:2.4rem;
  }
  .download-section {
    padding-top:10px;
  }
}

@media(max-width:640px) {
  .wrap {
    width:calc(100% - 40px);
  }
  .header {
    height:77px;
  }
  .header-inner {
    gap:13px;
  }
  .brand img {
    width:119px;
  }
  .header-download {
    margin-left:auto;
    min-height:40px;
    padding:10px 12px;
    gap:7px;
    font-size:.8rem;
  }
  .header-download .icon {
    width:16px;
    height:16px;
  }
  .menu-toggle {
    display:flex;
    align-items:center;
    justify-content:center;
    width:41px;
    height:41px;
  }
  .nav {
    display:none;
    position:absolute;
    top:76px;
    left:0;
    right:0;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    margin:0;
    padding:12px 20px 19px;
    background:#0d1120;
    border-bottom:1px solid #ffffff21;
    box-shadow:0 22px 40px #0005;
  }
  .nav.is-open {
    display:flex;
  }
  .nav a {
    padding:12px 14px;
    font-size:1rem;
    border-radius:7px;
  }
  .nav a:hover {
    background:#ffffff09;
  }
  .hero {
    padding:43px 0 38px;
    overflow-x:hidden;
  }
  .eyebrow {
    font-size:.66rem;
    letter-spacing:.14em;
    gap:9px;
  }
  .eyebrow::before {
    width:20px;
  }
  h1,.hero h1 {
    font-size:clamp(2.7rem,11vw,4.2rem);
    letter-spacing:-.058em;
    line-height:1.09;
    margin-top:23px;
    margin-bottom:22px;
  }
  .hero-description {
    font-size:1rem;
    line-height:1.8;
    max-width:365px;
  }
  .hero-trial {
    margin-top:18px;
    font-size:.8rem;
    gap:8px;
    align-items:flex-start;
    max-width:100%;
  }
  .hero-trial .icon {
    margin-top:2px;
  }
  .hero-actions {
    margin-top:18px;
    gap:10px;
  }
  .hero-actions .btn {
    min-height:50px;
    padding:13px 17px;
    font-size:.875rem;
    flex:1 1 100%;
  }
  .hero-note {
    font-size:.75rem;
    margin-top:19px;
    gap:7px;
  }
  .hero-visual {
    margin:8px 0 0;
    padding-bottom:72px;
    overflow:visible;
  }
  .screen-top {
    font-size:.58rem;
    padding:5px 7px 8px;
  }
  .screen-top .icon {
    width:10px;
    height:10px;
  }
  .main-screen {
    padding:4px;
    border-radius:13px;
    transform:perspective(1400px) rotateY(-5deg) rotateZ(-1deg);
  }
  .main-screen>img {
    border-radius:8px;
  }
  .sports-screen {
    left:0;
    width:46%;
    bottom:8px;
    padding:3px;
    border-radius:9px;
  }
  .sports-screen img {
    border-radius:6px;
  }
  .visual-label {
    right:0;
    bottom:8px;
    font-size:.58rem;
    gap:6px;
    max-width:48%;
  }
  .visual-label::before {
    width:12px;
  }
  .category-inner {
    padding:19px 0;
  }
  .category-item {
    font-size:.7rem;
    gap:8px;
  }
  .category-item .icon {
    width:20px;
    height:20px;
  }
  .category-item {
    border-color:#ffffff0a;
  }
  .site-bar-inner {
    gap:10px;
    padding:10px 0;
  }
  .site-bar-inner p,
  .site-bar-link {
    font-size:.8rem;
  }
  .gallery-caption {
    flex-direction:column;
    gap:10px;
  }
  .section {
    padding:58px 0;
  }
  .section-heading {
    display:block;
    margin-bottom:28px;
  }
  .section-heading h2,.download-copy h2 {
    font-size:2.15rem;
    margin-top:14px;
    line-height:1.2;
  }
  .section-heading>p {
    margin-top:20px;
    max-width:360px;
    font-size:.95rem;
    line-height:1.8;
  }
  .tutorial-grid {
    gap:18px;
  }
  .tutorial-media {
    border-radius:16px;
  }
  .tutorial-play-badge {
    width:56px;
    height:56px;
    margin:-28px 0 0 -28px;
  }
  .tutorial-copy h3 {
    font-size:1.08rem;
  }
  .tutorial-copy p {
    font-size:.9rem;
  }
  .showcase {
    padding-top:10px;
  }
  .showcase .section-heading {
    margin-bottom:23px;
  }
  .section-link {
    margin-top:22px;
    font-size:.875rem;
  }
  .tabs {
    gap:3px;
    padding:5px;
    margin-bottom:18px;
    width:100%;
    overflow-x:auto;
    overscroll-behavior-x:contain;
    -webkit-overflow-scrolling:touch;
    scroll-snap-type:x proximity;
    scrollbar-width:thin;
    mask-image:linear-gradient(90deg,#000 0%,#000 calc(100% - 28px),transparent);
  }
  .tab {
    padding:10px 12px;
    gap:6px;
    font-size:.78rem;
    min-height:44px;
    flex:0 0 auto;
    scroll-snap-align:start;
  }
  .tab .icon {
    width:15px;
    height:15px;
  }
  .gallery {
    padding:4px;
    border-radius:13px;
  }
  .gallery-screen {
    border-radius:9px;
  }
  .enlarge {
    right:9px;
    bottom:9px;
    min-height:35px;
    padding:8px;
    font-size:.75rem;
  }
  .enlarge span {
    display:none;
  }
  .enlarge .icon {
    width:16px;
    height:16px;
  }
  .gallery-caption {
    margin-top:18px;
    gap:17px;
  }
  .caption-copy h3 {
    font-size:1rem;
  }
  .caption-copy p {
    font-size:.85rem;
    line-height:1.7;
  }
  .gallery-count {
    font-size:.7rem;
    padding-top:4px;
  }
  .download-section {
    padding:0 0 55px;
  }
  .download-box {
    padding:28px 23px;
    border-radius:22px;
  }
  .download-top {
    gap:27px;
  }
  .downloader-install,
  .ntdown-install {
    margin-top:22px;
    padding-top:22px;
  }
  .downloader-identity,
  .ntdown-identity {
    gap:12px;
    margin-bottom:12px;
  }
  .downloader-mark,
  .ntdown-mark {
    width:44px;
    height:44px;
    border-radius:11px;
  }
  .downloader-identity h3,
  .ntdown-identity h3 {
    font-size:1rem;
  }
  .downloader-code,
  .ntdown-code {
    font-size:1.4rem;
    letter-spacing:.08em;
    padding:10px 12px;
  }
  .downloader-copy,
  .ntdown-copy {
    max-width:none;
  }
  .download-box::before {
    left:30px;
    right:30px;
  }
  .download-copy>p {
    font-size:.95rem;
  }
  .download-copy h2 {
    font-size:2.05rem;
    margin-bottom:16px;
  }
  .download-card {
    padding:22px 19px;
    border-radius:15px;
  }
  .app-mark {
    width:57px;
    height:57px;
  }
  .app-identity {
    gap:13px;
    margin-bottom:22px;
  }
  .app-name {
    font-size:1.1rem;
  }
  .app-subtitle {
    font-size:.79rem;
  }
  .download-meta {
    font-size:.78rem;
    padding-top:17px;
  }
  .download-info {
    font-size:.75rem;
  }
  .footer {
    padding-top:25px;
  }
  .footer-top {
    align-items:flex-start;
    gap:23px;
    flex-direction:column;
  }
  .footer-brand img {
    width:102px;
  }
  .footer-brand p {
    max-width:none;
    font-size:.8rem;
  }
  .footer-nav {
    gap:24px;
    font-size:.8rem;
  }
  .footer-bottom {
    font-size:.69rem;
    gap:15px;
    flex-wrap:wrap;
    padding-top:17px;
    margin-top:23px;
  }
  .lightbox {
    padding:9px;
    max-width:97vw;
    border-radius:13px;
  }
  .lightbox-hint {
    font-size:.7rem;
  }
  .lightbox-toolbar h2 {
    font-size:.9rem;
  }
}

@media(max-width:359px) {
  .wrap {
    width:calc(100% - 28px);
  }
  .brand img {
    width:103px;
  }
  .header-download {
    padding:9px 10px;
    font-size:.73rem;
  }
  .header-download .icon {
    display:none;
  }
  .hero-actions {
    align-items:stretch;
  }
  .hero-actions .btn {
    flex:1;
    padding:12px;
    font-size:.81rem;
  }
  .hero-actions .icon {
    width:17px;
    height:17px;
  }
  .hero-note {
    font-size:.68rem;
  }
  .category-item {
    font-size:.64rem;
  }
  .download-box {
    padding:24px 18px;
  }
}

.screen-top,.visual-label {
  font-size:.75rem;
}

@media(max-width:640px) {
  .eyebrow,.hero-note,.visual-label,.screen-top,.category-item,.gallery-count,.footer-bottom {
    font-size:.75rem;
  }
  .visual-label {
    max-width:46%;
    line-height:1.5;
    bottom:6px;
  }
  .header-download {
    font-size:.875rem;
  }
  .hero-actions .btn {
    font-size:.875rem;
  }
  .category-item {
    line-height:1.35;
    text-align:center;
  }
  .category-item span {
    max-width:60px;
  }
  .screen-top {
    letter-spacing:.02em;
  }
  .footer-nav {
    font-size:.875rem;
  }
}

@media(max-width:359px) {
  .header-download {
    font-size:.8rem;
  }
}

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