/* ==========================================================================
   ORIZEN — LP institucional (estilo Apple Watch Series 11)
   Totem vertical 43" · 9:16 · HTML/CSS/JS vanilla + GSAP/ScrollTrigger + Lenis
   ========================================================================== */

/* ---------- 1. RESET & VARS ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

:root{
  --orz-black:#0A0A0A;
  --orz-ink:#1A1A1A;
  --orz-graphite:#2E2E2E;
  --orz-stone:#6B6B6B;
  --orz-ash:#9A9A9A;
  --orz-fog:#C8C6C2;
  --orz-white:#FFFFFF;

  /* tipografia fluida */
  --fs-hero: clamp(40px, 8.6vw, 128px);
  --fs-section: clamp(40px, 9vw, 96px);
  --fs-bignum: clamp(80px, 20vw, 240px);
  --fs-lead: clamp(18px, 3vw, 24px);
  --fs-body: clamp(16px, 2.2vw, 18px);
  --fs-label: clamp(11px, 1.4vw, 13px);

  /* espaçamento fluido */
  --space-section-pad: clamp(24px, 6vw, 64px);
  --space-gap: clamp(16px, 3vw, 32px);
  --grid-margin: clamp(20px, 6vw, 80px);

  --ease-apple: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 0.5s;
  --dur-med: 0.9s;
  --dur-slow: 1.4s;
}

html{
  scroll-behavior: auto; /* Lenis assume o smooth scroll */
  background: var(--orz-black);
}

body{
  font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--orz-black);
  color: var(--orz-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: default;
}

/* Modo quiosque — sem barras de rolagem visíveis, sem seleção acidental */
::-webkit-scrollbar{ display: none; }
html{ scrollbar-width: none; -ms-overflow-style: none; }
body{
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
img, svg{ -webkit-user-drag: none; }

a{ color: inherit; text-decoration: none; }
ul, ol{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,p{ margin: 0; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------- 2. LOADER ---------- */
.loader{
  position: fixed; inset: 0; z-index: 9999;
  background: var(--orz-black);
  display: flex; align-items: center; justify-content: center;
}
.loader__logo{
  font-size: clamp(28px, 6vw, 48px);
  letter-spacing: -0.01em;
  color: var(--orz-white);
  opacity: 0.9;
}
.loader__logo strong{ font-weight: 700; font-style: normal; }
.loader__logo em{ font-weight: 300; font-style: normal; }

/* ---------- 3. PROGRESS UI (kiosk) ---------- */
.progress-rail{
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: rgba(255,255,255,0.08);
  z-index: 500;
}
.progress-rail__fill{
  height: 100%; width: 0%;
  background: var(--orz-white);
  transition: width 0.1s linear;
}
.section-counter{
  position: fixed; bottom: clamp(16px, 3vh, 28px); right: clamp(16px, 3vw, 32px);
  z-index: 500;
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--orz-ash);
  display: flex; gap: 4px;
  mix-blend-mode: difference;
}
.section-counter__sep{ opacity: 0.5; }

/* ---------- 4. HEADER FIXO ---------- */
.site-header{
  position: fixed; top: 0; left: 0; right: 0; z-index: 400;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(14px, 2.4vh, 22px) var(--grid-margin);
  mix-blend-mode: difference;
  pointer-events: none;
}
.site-header__logo{
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: -0.01em;
  color: var(--orz-white);
}
.site-header__logo strong{ font-weight: 700; font-style: normal; }
.site-header__logo em{ font-weight: 300; font-style: normal; }
.site-header__tag{
  font-weight: 500;
  font-size: clamp(9px, 1.1vw, 11px);
  letter-spacing: 0.14em;
  color: var(--orz-ash);
  display: none;
}
@media (min-width: 700px){
  .site-header__tag{ display: inline; }
}

/* ---------- 5. LAYOUT DE SEÇÕES ---------- */
main{ position: relative; }

.screen{
  position: relative;
  min-height: 100svh;
  height: 100svh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--space-section-pad) + 40px) var(--grid-margin) var(--space-section-pad);
  overflow: hidden;
  isolation: isolate;
}

/* cor de fundo controlada via JS (data-bg) + transição suave */
.screen[data-bg="black"]{ background: var(--orz-black); }
.screen[data-bg="ink"]{ background: var(--orz-ink); }
.screen[data-bg="white"]{ background: var(--orz-white); color: var(--orz-black); }

.screen__inner{
  position: relative; z-index: 5;
  width: min(100%, 1200px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(10px, 1.6vh, 16px);
}

.screen--split .screen__inner{
  align-items: flex-start;
  text-align: left;
}

/* ---------- 6. TIPOGRAFIA ---------- */
.eyebrow{
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orz-ash);
}
.eyebrow--dark{ color: var(--orz-stone); }

.hero__headline{
  font-size: var(--fs-hero);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-top: clamp(6px, 1.2vh, 12px);
}

.headline{
  font-size: var(--fs-section);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.01em;
  max-width: 18ch;
}
.headline--dark{ color: var(--orz-black); }
.headline--manifesto{ max-width: 20ch; font-weight: 600; }

.lead{
  font-size: var(--fs-lead);
  font-weight: 400;
  color: var(--orz-fog);
  max-width: 42ch;
}

.body-text, .context-p{
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 1.55;
  color: var(--orz-ash);
  max-width: 52ch;
}
.context-p--dark{ color: var(--orz-stone); }

.manifesto-p{
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--orz-fog);
  max-width: 46ch;
  margin-top: 4px;
}

.footnote{
  font-size: clamp(11px, 1.3vw, 13px);
  font-weight: 400;
  color: var(--orz-stone);
  max-width: 56ch;
  margin-top: clamp(8px, 1.4vh, 16px);
}
.footnote--dark{ color: var(--orz-ash); }

/* ---------- 7. HERO — callouts + scroll hint ---------- */
.hero__inner{ gap: clamp(14px, 2vh, 22px); }

.callout-row{
  display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(8px, 1.6vw, 20px);
  margin-top: clamp(6px, 1.4vh, 14px);
}
.callout-row li{
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--orz-fog);
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
}

.scroll-hint{
  position: absolute;
  bottom: clamp(20px, 4vh, 36px);
  left: 50%; transform: translateX(-50%);
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  color: var(--orz-ash);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  z-index: 6;
}
.scroll-hint__arrow{ animation: bob 1.8s ease-in-out infinite; }
@keyframes bob{
  0%,100%{ transform: translateY(0); opacity: 0.5; }
  50%{ transform: translateY(8px); opacity: 1; }
}

/* ---------- 8. IMAGENS / MEDIA (fundo fullscreen) ---------- */
.bg-media{
  position: absolute; inset: 0; z-index: 0;
  will-change: transform;
}
.bg-media__overlay{
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.65) 65%, rgba(10,10,10,0.92) 100%);
}
.bg-media__overlay--strong{
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.78) 55%, rgba(10,10,10,0.95) 100%);
}

.placeholder-media{
  background: var(--orz-graphite);
  display: flex; align-items: center; justify-content: center;
  border: 1px dashed rgba(255,255,255,0.16);
}
.placeholder-media__label{
  font-size: clamp(11px, 1.4vw, 14px);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--orz-ash);
  text-align: center;
  text-transform: uppercase;
  padding: 12px 20px;
  line-height: 1.5;
}

/* ---------- 9. PNGs DE PRODUTO ---------- */
.product-hero{
  position: relative; z-index: 4;
  margin-top: clamp(10px, 2vh, 24px);
  height: min(62svh, 640px);
  width: min(70vw, 460px);
  display: flex; align-items: center; justify-content: center;
  will-change: transform;
}
.product-side{
  position: relative; z-index: 4;
  height: min(48svh, 460px);
  width: min(80vw, 420px);
  margin-top: clamp(16px, 3vh, 28px);
  display: flex; align-items: center; justify-content: center;
  will-change: transform;
  align-self: center;
}
.product-hero__glow, .product-side__glow{
  position: absolute; inset: -10%;
  background: radial-gradient(circle at 50% 55%, rgba(255,255,255,0.14), transparent 65%);
  filter: blur(20px);
  z-index: -1;
}
.placeholder-png{
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  opacity: 0;
}
.placeholder-png--fallback{ display: none; }
.placeholder-png--real{ opacity: 1; }
.product-hero .placeholder-png__label,
.product-side .placeholder-png__label{
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; line-height: 1.5;
  font-size: clamp(11px, 1.4vw, 14px);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orz-ash);
  background: radial-gradient(circle at 50% 50%, var(--orz-graphite) 0%, transparent 72%);
  border: 1px dashed rgba(255,255,255,0.18);
  border-radius: 50%;
  padding: 20px;
}

/* ---------- 10. GRIDS DE FEATURES / CARDS ---------- */
.feature-grid{
  display: grid;
  gap: var(--space-gap);
  margin-top: clamp(18px, 3vh, 32px);
  width: 100%;
  text-align: left;
}
.feature-grid--4{ grid-template-columns: repeat(2, 1fr); }
.feature-grid--3{ grid-template-columns: repeat(1, 1fr); }
@media (min-width: 900px){
  .feature-grid--4{ grid-template-columns: repeat(4, 1fr); }
  .feature-grid--3{ grid-template-columns: repeat(3, 1fr); }
}

.feature-card{
  padding: clamp(18px, 2.4vw, 26px);
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
}
.feature-card--outline{ background: transparent; }
.feature-card--ghost{ background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); backdrop-filter: blur(6px); }
.feature-card__tag{
  position: absolute; top: 16px; right: 18px;
  font-size: 12px; letter-spacing: 0.1em; color: var(--orz-stone); font-weight: 600;
}
.feature-card__icon{
  width: clamp(30px, 4vw, 40px); height: clamp(30px, 4vw, 40px);
  color: var(--orz-fog);
}
.feature-card__icon svg{ width: 100%; height: 100%; }
.feature-card__title{
  font-size: clamp(17px, 2.2vw, 21px);
  font-weight: 600;
}
.feature-card__text{
  font-size: clamp(13px, 1.6vw, 15px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--orz-ash);
}
.feature-grid--manifesto .feature-card__text{ color: var(--orz-fog); }

/* ---------- 11. PILARES (Tela 5) ---------- */
.pillar-list{
  display: flex; flex-direction: column; gap: clamp(14px, 2.2vh, 22px);
  width: 100%; margin-top: clamp(18px, 3vh, 30px);
  text-align: left;
}
.pillar{
  display: flex; gap: clamp(14px, 2.6vw, 24px);
  align-items: flex-start;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: clamp(14px, 2vh, 20px);
}
.pillar__num{
  font-size: clamp(22px, 3.4vw, 34px);
  font-weight: 700;
  color: var(--orz-stone);
  min-width: 2.2ch;
}
.pillar__title{
  font-size: clamp(18px, 2.6vw, 24px);
  font-weight: 600;
  margin-bottom: 6px;
}
.pillar__text{
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 300;
  color: var(--orz-ash);
  line-height: 1.5;
  max-width: 60ch;
}

/* ---------- 12. DOC-GRID (Tela 6) ---------- */
.doc-grid{
  display: grid; gap: var(--space-gap);
  grid-template-columns: 1fr;
  width: 100%; margin-top: clamp(18px, 3vh, 30px);
  text-align: left;
}
@media (min-width: 900px){ .doc-grid{ grid-template-columns: repeat(3, 1fr); } }
.doc-card{
  padding: clamp(16px, 2.2vw, 22px);
  border-left: 2px solid var(--orz-white);
  background: rgba(255,255,255,0.03);
}
.doc-card__code{
  display: inline-block; font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 700; letter-spacing: 0.05em; margin-bottom: 8px; color: var(--orz-white);
}
.doc-card__text{
  font-size: clamp(13px, 1.6vw, 15px); font-weight: 300; color: var(--orz-ash); line-height: 1.55;
}

/* ---------- 13. STEP-LIST (Tela 7) ---------- */
.step-list{
  display: flex; flex-direction: column; gap: clamp(14px, 2vh, 20px);
  margin-top: clamp(16px, 2.6vh, 26px);
  text-align: left; width: 100%;
}
.step{ position: relative; padding-left: clamp(20px, 3vw, 28px); }
.step__marker{
  position: absolute; left: 0; top: 6px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orz-white);
}
.step__title{ font-size: clamp(16px, 2vw, 19px); font-weight: 600; margin-bottom: 4px; }
.step__text{ font-size: clamp(13px, 1.6vw, 15px); font-weight: 300; color: var(--orz-ash); line-height: 1.5; max-width: 48ch; }

/* ---------- 14. NÚMEROS (Tela 3, pin) ---------- */
.screen--pin{ padding-top: var(--space-section-pad); }
.pin-wrap{ width: 100%; display: flex; justify-content: center; }

.numbers-grid{
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 4vw, 48px);
  margin-top: clamp(24px, 4vh, 40px);
  width: 100%;
}
@media (min-width: 900px){ .numbers-grid{ grid-template-columns: repeat(4, 1fr); } }

.number-block{ display: flex; flex-direction: column; gap: 6px; }
.number-block__value{
  font-size: clamp(48px, 11vw, 120px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.number-block__label{
  font-size: clamp(13px, 1.6vw, 16px); font-weight: 600; color: var(--orz-fog);
  text-transform: uppercase; letter-spacing: 0.03em;
}
.number-block__desc{
  font-size: clamp(12px, 1.4vw, 14px); font-weight: 300; color: var(--orz-stone); line-height: 1.4;
}

/* ---------- 15. GALERIA "CLOSER LOOK" (Tela 8) ---------- */
.closer-look{
  display: grid; grid-template-columns: 1fr; gap: var(--space-gap);
  width: 100%; margin-top: clamp(18px, 3vh, 30px);
}
@media (min-width: 900px){ .closer-look{ grid-template-columns: repeat(3, 1fr); } }
.closer-look__item{
  height: clamp(140px, 22vh, 220px);
  border-radius: 14px; margin: 0;
}

.criteria-grid{
  display: grid; grid-template-columns: 1fr; gap: var(--space-gap);
  width: 100%; margin-top: clamp(18px, 3vh, 30px); text-align: left;
}
@media (min-width: 900px){ .criteria-grid{ grid-template-columns: repeat(3, 1fr); } }
.criteria-card{
  padding: clamp(16px, 2.2vw, 22px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
}
.criteria-card__icon{ width: clamp(28px,3.6vw,36px); height: clamp(28px,3.6vw,36px); color: var(--orz-fog); margin-bottom: 8px; }
.criteria-card__icon svg{ width: 100%; height: 100%; }
.criteria-card__title{ font-size: clamp(15px, 1.9vw, 18px); font-weight: 600; margin-bottom: 6px; }
.criteria-card__text{ font-size: clamp(13px, 1.6vw, 15px); font-weight: 300; color: var(--orz-ash); line-height: 1.5; }

/* ---------- 16. ARENA-LIST (Tela 9) ---------- */
.arena-list{
  display: flex; flex-direction: column; gap: 0;
  width: 100%; margin-top: clamp(16px, 2.6vh, 26px);
  text-align: left;
}
.arena-item{
  padding: clamp(14px, 2vh, 18px) 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; gap: 4px;
}
.arena-item__status{
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  padding: 3px 10px; border-radius: 999px; width: fit-content;
  margin-bottom: 4px;
}
.arena-item__status--live{ background: var(--orz-white); color: var(--orz-black); }
.arena-item__status--growth{ background: rgba(255,255,255,0.16); color: var(--orz-white); }
.arena-item__status--rd{ background: transparent; color: var(--orz-ash); border: 1px solid var(--orz-ash); }
.arena-item__status--build{ background: transparent; color: var(--orz-stone); border: 1px dashed var(--orz-stone); }
.arena-item__title{ font-size: clamp(17px, 2.4vw, 22px); font-weight: 600; }
.arena-item__text{ font-size: clamp(13px, 1.6vw, 15px); font-weight: 300; color: var(--orz-ash); line-height: 1.45; max-width: 60ch; }

/* ---------- 17. BIG NUMBER (Tela 10) ---------- */
.big-number{
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  margin-top: clamp(6px, 1.2vh, 12px);
}
.big-number__value{
  font-size: var(--fs-bignum); font-weight: 700; line-height: 1; letter-spacing: -0.02em;
}
.big-number__complement{
  font-size: clamp(16px, 2.2vw, 22px); font-weight: 400; color: var(--orz-fog);
}

/* ---------- 18. ATORES (Tela 11) ---------- */
.actors-grid{
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-gap);
  width: 100%; margin-top: clamp(18px, 3vh, 30px);
}
@media (min-width: 900px){ .actors-grid{ grid-template-columns: repeat(4, 1fr); } }
.actor-card{
  padding: clamp(16px, 2.2vw, 22px);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  text-align: left;
  display: flex; flex-direction: column; gap: 8px;
}
.actor-card--highlight{
  background: var(--orz-white); color: var(--orz-black);
  border-color: var(--orz-white);
}
.actor-card--highlight .actor-card__num{ color: rgba(10,10,10,0.4); }
.actor-card--highlight .actor-card__text{ color: rgba(10,10,10,0.6); }
.actor-card__num{ font-size: clamp(13px, 1.6vw, 16px); font-weight: 700; color: var(--orz-stone); }
.actor-card__title{ font-size: clamp(17px, 2.2vw, 21px); font-weight: 600; }
.actor-card__text{ font-size: clamp(12px, 1.5vw, 14px); font-weight: 300; color: var(--orz-ash); line-height: 1.45; }

/* ---------- 19. JORNADA (Tela 12) ---------- */
.journey-list{
  display: flex; flex-direction: column; gap: clamp(14px, 2vh, 18px);
  width: 100%; margin-top: clamp(16px, 2.6vh, 26px); text-align: left;
}
.journey-item{
  display: flex; gap: clamp(14px, 2.6vw, 22px); align-items: flex-start;
}
.journey-item__num{
  font-size: clamp(18px, 2.4vw, 24px); font-weight: 700; color: var(--orz-stone);
  min-width: 2.2ch;
}
.journey-item__title{ font-size: clamp(16px, 2vw, 19px); font-weight: 600; margin-bottom: 4px; }
.journey-item__text{ font-size: clamp(13px, 1.6vw, 15px); font-weight: 300; color: var(--orz-ash); line-height: 1.5; max-width: 50ch; }

/* ---------- 20. CTA (Tela 14) ---------- */
.screen--cta{ color: var(--orz-black); }
.cta__inner{ gap: clamp(14px, 2vh, 20px); }
.cta-row{
  display: flex; flex-direction: column; align-items: center; gap: clamp(18px, 3vh, 28px);
  margin-top: clamp(14px, 2.4vh, 22px);
}
.cta-button{
  display: inline-block;
  background: var(--orz-black); color: var(--orz-white);
  font-size: clamp(14px, 1.8vw, 17px); font-weight: 600;
  padding: clamp(14px, 2vh, 18px) clamp(28px, 4vw, 44px);
  border-radius: 999px;
  transition: transform var(--dur-fast) var(--ease-apple), opacity var(--dur-fast);
}
.cta-button:hover{ transform: scale(1.04); opacity: 0.85; }
.qr-block{ display: flex; flex-direction: column; align-items: center; gap: 8px; }
.qr-placeholder{
  width: clamp(110px, 16vw, 160px); height: clamp(110px, 16vw, 160px);
  background: var(--orz-fog);
  border: 1px dashed var(--orz-stone);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--orz-graphite);
  text-transform: uppercase; line-height: 1.4;
  border-radius: 12px;
}
.qr-block__caption{ font-size: 12px; color: var(--orz-stone); letter-spacing: 0.05em; }

/* ---------- 21. REVEAL ON SCROLL (estado inicial; GSAP anima) ---------- */
.reveal{
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
}

/* ---------- 22. RESPONSIVIDADE — ajustes finos por breakpoint ---------- */

/* Retrato estreito (totem 9:16 alvo) */
@media (max-width: 600px){
  .feature-grid--4{ grid-template-columns: 1fr; }
  .numbers-grid{ grid-template-columns: repeat(2, 1fr); }
  .actors-grid{ grid-template-columns: repeat(2, 1fr); }
  .screen--split .screen__inner{ align-items: center; text-align: center; }
  .step-list, .pillar-list, .doc-grid, .criteria-grid, .journey-list{ text-align: center; align-items: center; }
  .pillar, .journey-item{ flex-direction: column; align-items: center; text-align: center; }
  .step{ padding-left: 0; }
  .step__marker{ position: static; margin: 0 auto 8px; }
}

/* Paisagem / telas largas curtas */
@media (orientation: landscape) and (max-height: 700px){
  .screen{ padding-top: 80px; padding-bottom: 24px; gap: 8px; }
  .product-hero{ height: 40svh; }
}

/* Telas muito altas (totem real 1080x1920 ~ 0.5625 ratio) */
@media (min-aspect-ratio: 3/4){
  .screen__inner{ max-width: 900px; }
}
