/*
 * Final interface pass shared by every public TGI page.
 * Keeps the editorial identity while improving clarity, touch use and access.
 */
:root {
  --bg: #080807;
  --panel: #121210;
  --panel-2: #181713;
  --line: #343027;
  --text: #fbf8f2;
  --muted: #aaa59c;
  --soft: #ddd7cd;
  --gold: #ffc21c;
  --orange: #ff791f;
  --focus: #ffe07a;
  --radius: 20px;
}

html {
  color-scheme: dark;
  scroll-padding-top: 104px;
}

body {
  min-width: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main,
section,
article,
aside,
.hero-copy,
.download-copy,
.app-content {
  min-width: 0;
}

::selection {
  background: #ffc21c;
  color: #171005;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.studio-bar {
  position: relative;
  z-index: 22;
  border-bottom: 1px solid #24231f;
  background: linear-gradient(90deg, #0d0d0d, #121008 52%, #0d0d0d);
}

.studio-bar-inner {
  width: min(var(--shell), calc(100% - 64px));
  min-height: 62px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.studio-identity,
.studio-product,
.studio-about-link {
  color: var(--text);
  text-decoration: none;
}

.studio-identity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.studio-identity > span:last-child,
.studio-product > span:nth-child(2) {
  display: grid;
}

.studio-identity strong,
.studio-product strong {
  font: 600 12px "Space Grotesk", sans-serif;
  letter-spacing: -.01em;
}

.studio-identity small,
.studio-product small {
  color: var(--muted);
  font-size: 9px;
  margin-top: 1px;
}

.studio-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #5d4814;
  border-radius: 10px;
  color: var(--gold);
  background: #1d1809;
  font: 700 10px "Space Grotesk", sans-serif;
  letter-spacing: .08em;
}

.studio-products {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.studio-product {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  white-space: nowrap;
}

.studio-product.is-active {
  border-color: #4b3c18;
  background: #1a170f;
}

.studio-product.is-active:hover {
  border-color: #755c1d;
  background: #211c0e;
}

.studio-product.is-coming {
  color: #827f78;
  border-color: #252525;
  background: #111;
}

.studio-product-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  color: #171207;
  background: var(--gold);
  font: 700 12px "Space Grotesk", sans-serif;
}

.is-coming .studio-product-icon {
  color: #77736c;
  background: #242424;
}

.studio-product-status {
  margin-left: 4px;
  border-radius: 999px;
  padding: 3px 6px;
  color: #b7f1ce;
  background: #173021;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.studio-about-link {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.studio-about-link:hover {
  color: var(--gold);
}

.site-header {
  min-height: 78px;
  height: auto;
  isolation: isolate;
}

.brand {
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  flex: 0 0 auto;
}

.brand img {
  filter: drop-shadow(0 6px 18px rgb(255 176 0 / 12%));
}

.site-nav a,
.back-link {
  position: relative;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transform: scaleX(.35);
  transition: opacity .2s ease, transform .2s ease;
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  opacity: .7;
  transform: scaleX(1);
}

.menu-toggle {
  min-height: 42px;
  min-width: 64px;
  cursor: pointer;
}

.button {
  min-height: 46px;
  justify-content: center;
  box-shadow: 0 9px 24px rgb(0 0 0 / 18%);
}

.button-primary {
  border: 1px solid #ffd452;
  background: linear-gradient(135deg, #ffd13f, #ffb80d 70%);
  box-shadow: 0 12px 32px rgb(255 177 13 / 16%);
}

.button-primary:hover {
  background: linear-gradient(135deg, #ffdd68, #ffc21c 70%);
  box-shadow: 0 16px 38px rgb(255 177 13 / 24%);
}

.button-ghost {
  background: rgb(18 18 16 / 72%);
  backdrop-filter: blur(10px);
}

.hero {
  min-height: min(760px, calc(100vh - 78px));
}

.hero-copy h1 {
  max-width: 620px;
  color: var(--text);
  text-wrap: balance;
}

.hero-lede,
.download-copy > p:not(.eyebrow),
.section-intro {
  color: var(--muted);
}

.hero-meta {
  color: #9a958c;
}

.app-window {
  border-color: #6f591f;
  box-shadow:
    25px 35px 90px #000,
    0 0 0 1px #282217,
    0 0 70px rgb(255 173 21 / 10%);
}

.feature-card,
.content-card,
.price-card,
.key-card,
.download-card,
.requirements-card,
.content-aside {
  border-color: var(--line);
}

.feature-card p,
.content-card p,
.price-card p,
.price-card li,
.roadmap-item p {
  color: var(--muted);
}

.feature-card a,
.content-card a,
.text-link,
.back-link {
  text-underline-offset: 4px;
}

.feature-card a:hover,
.content-card a:hover,
.text-link:hover,
.back-link:hover {
  color: var(--gold);
}

.price-card,
.download-card,
.requirements-card {
  box-shadow: 0 22px 60px rgb(0 0 0 / 22%);
}

.key-form input {
  min-height: 50px;
}

.key-result,
.auth-notice {
  box-shadow: 0 18px 48px rgb(0 0 0 / 42%);
}

.download-main {
  max-width: var(--shell);
}

.download-hero {
  min-height: 470px;
  gap: 44px;
}

.download-copy h1 {
  text-wrap: balance;
}

.download-copy > p:not(.eyebrow) {
  max-width: 560px;
  font-size: 16px;
}

.download-version span {
  background: rgb(17 17 15 / 72%);
}

.mobile-download-cta {
  display: none;
}

.product-box {
  border-color: #85691f;
  box-shadow: 20px 30px 70px #000, 0 0 50px rgb(255 181 17 / 10%);
}

.download-card-head h2 {
  color: var(--text);
}

.download-details span,
.download-help,
.requirements-card li,
.release-grid p {
  color: #918c83;
}

.download-help {
  line-height: 1.65;
}

.download-help .back-link {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
}

.release-notes {
  padding-bottom: 28px;
}

.release-notes-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.release-notes-header .eyebrow {
  margin: 0;
}

.release-version {
  color: #7f796f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
}

.release-grid article {
  min-height: 180px;
  padding: 24px 20px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, #15140f, #0d0d0c);
}

.release-grid article:hover {
  border-color: #8d691b;
}

.release-grid article > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: #2c230d;
}

.content-article p,
.content-article li {
  color: #c3bdb3;
}

.content-aside {
  top: 104px;
  box-shadow: 0 18px 48px rgb(0 0 0 / 18%);
}

.site-footer {
  background: linear-gradient(180deg, #0d0d0c, #090908);
}

.footer-links a {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
}

/* Content stays readable if scripting or IntersectionObserver is unavailable. */
.reveal {
  opacity: 1;
  transform: none;
}

.reveal.will-reveal {
  opacity: 0;
  transform: translateY(16px);
}

.reveal.will-reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 74px;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy h1 {
    max-width: 760px;
  }

  .hero-visual {
    max-width: 680px;
    width: 100%;
    margin-inline: auto;
  }

  .download-hero {
    gap: 8px;
  }

  .download-product {
    padding-block: 20px 10px;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 82px;
  }

  .page-shell {
    width: calc(100% - 36px);
  }

  .studio-bar-inner {
    width: 100%;
    min-height: 58px;
    gap: 12px;
    padding-inline: 14px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .studio-bar-inner::-webkit-scrollbar {
    display: none;
  }

  .studio-identity > span:last-child,
  .studio-about-link,
  .studio-product-status {
    display: none;
  }

  .studio-products {
    flex: 0 0 auto;
  }

  .studio-product {
    min-height: 42px;
  }

  .studio-product.is-coming {
    padding-right: 13px;
  }

  .site-header,
  .download-page .site-header {
    width: 100%;
    min-height: 72px;
    padding-inline: 18px;
  }

  .site-header .brand img {
    width: 92px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #171713;
  }

  .site-nav {
    top: calc(100% + 8px);
    right: 14px;
    left: 14px;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    border-color: #4a4028;
    background: rgb(16 16 14 / 98%);
    box-shadow: 0 24px 60px #000;
  }

  .site-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .hero {
    width: 100%;
    padding: 64px 18px 76px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(43px, 13vw, 54px);
    overflow-wrap: anywhere;
  }

  .hero-lede {
    max-width: 100%;
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    flex: 1 1 160px;
  }

  .hero-meta {
    flex-wrap: wrap;
    row-gap: 7px;
  }

  .hero:before {
    right: -120px;
    opacity: .55;
  }

  .section-heading h2,
  .flow-copy h2,
  .local-copy h2,
  .closing-cta h2 {
    font-size: clamp(34px, 11vw, 42px);
  }

  .section {
    padding-block: 82px;
  }

  .feature-card,
  .price-card {
    min-height: auto;
  }

  .feature-card {
    padding-bottom: 82px;
  }

  .price-card {
    padding: 26px 22px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 18px;
  }

  .download-main {
    width: calc(100% - 36px);
    overflow: clip;
  }

  .download-hero {
    padding: 52px 0 48px;
  }

  .download-copy h1 {
    font-size: clamp(42px, 13vw, 58px);
    overflow-wrap: anywhere;
  }

  .download-copy > p:not(.eyebrow) {
    max-width: 100%;
    font-size: 15px;
  }

  .mobile-download-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 24px;
  }

  .download-product {
    display: none;
  }

  .download-layout {
    padding-block: 48px;
  }

  .download-card,
  .requirements-card,
  .content-callout {
    padding: 24px 20px;
  }

  .download-card-head {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .free-badge {
    margin-left: auto;
  }

  .download-details {
    grid-template-columns: repeat(3, 1fr);
  }

  .download-button {
    white-space: normal;
  }

  .release-notes-header {
    display: block;
  }

  .release-version {
    display: block;
    margin-top: 8px;
  }

  .release-grid article {
    min-height: 0;
  }

  .content-meta span {
    line-height: 1.45;
  }

  .content-aside {
    top: auto;
  }
}

/* Keep intrinsic image proportions when width/height attributes are present. */
img {
  max-width: 100%;
  height: auto;
}

.product-box img {
  height: auto;
  object-fit: contain;
}

/* Sistema visual compacto da página inicial. */
.landing-page {
  background:
    radial-gradient(circle at 9% 9%, rgba(255, 150, 24, .09), transparent 24%),
    radial-gradient(circle at 92% 34%, rgba(116, 83, 255, .08), transparent 25%),
    linear-gradient(180deg, #090908 0%, #080808 42%, #0b090d 72%, #080808 100%);
}

.landing-page .studio-bar-inner {
  min-height: 52px;
}

.landing-page .site-header {
  height: 72px;
  min-height: 72px;
}

.landing-page .site-header .brand img {
  width: 96px;
}

.landing-page .hero {
  isolation: isolate;
}

.landing-page .hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 18px -34px;
  width: auto;
  height: auto;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 34px;
  background:
    linear-gradient(115deg, rgba(255, 174, 25, .08), transparent 36%),
    radial-gradient(circle at 82% 44%, rgba(124, 88, 255, .13), transparent 34%),
    linear-gradient(145deg, rgba(19, 18, 16, .97), rgba(8, 8, 9, .95));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
  transform: none;
  pointer-events: none;
}

.landing-page .hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 24%;
  right: 3%;
  bottom: auto;
  left: auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 172, 23, .13);
  filter: blur(70px);
  opacity: .8;
  writing-mode: initial;
  transform: none;
  pointer-events: none;
}

.landing-page .hero-copy h1 {
  max-width: 590px;
  font-size: clamp(48px, 4.8vw, 66px);
  line-height: 1.01;
  letter-spacing: -.06em;
}

.landing-page .hero-lede {
  max-width: 500px;
  margin-block: 23px 25px;
  font-size: 15px;
  line-height: 1.62;
}

.landing-page .hero-meta {
  margin-top: 30px;
}

.landing-page .ticker {
  width: min(1060px, calc(100% - 48px));
  margin: 18px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 191, 24, .16);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 174, 24, .07), rgba(116, 83, 255, .05));
}

.landing-page .section,
.landing-page .interface-section {
  padding-block: 96px;
}

.landing-page .section-heading {
  margin-bottom: 40px;
}

.landing-page .section-heading h2,
.landing-page .flow-copy h2,
.landing-page .local-copy h2,
.landing-page .closing-cta h2 {
  font-size: clamp(35px, 3.65vw, 50px);
  line-height: 1.04;
}

.landing-page .section-intro {
  max-width: 380px;
  font-size: 13px;
}

.landing-page .interface-section {
  margin-top: 22px;
  background:
    radial-gradient(circle at 78% 18%, rgba(119, 84, 255, .12), transparent 27%),
    radial-gradient(circle at 20% 80%, rgba(255, 164, 24, .08), transparent 30%),
    #0c0c0d;
}

.landing-page .interface-section .page-shell {
  max-width: 1080px;
}

.landing-page .interface-shot {
  border-radius: 15px;
  box-shadow: 0 20px 56px rgba(0, 0, 0, .32);
}

.landing-page .interface-detail-grid {
  gap: 14px;
}

.landing-page .feature-grid {
  gap: 18px;
}

.landing-page .feature-card {
  min-height: 300px;
  padding: 23px;
  border-color: rgba(255, 255, 255, .09);
  transform: none;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .2);
}

.landing-page .feature-video {
  background: radial-gradient(circle at 92% 8%, rgba(255, 147, 25, .13), transparent 35%), #111;
}

.landing-page .feature-audio {
  background: radial-gradient(circle at 90% 8%, rgba(124, 88, 255, .16), transparent 36%), #111;
}

.landing-page .feature-image {
  background: radial-gradient(circle at 90% 8%, rgba(255, 196, 39, .12), transparent 36%), #111;
}

.landing-page .feature-card:hover {
  border-color: rgba(255, 191, 24, .34);
  transform: perspective(900px) translateY(-6px) rotateX(1.2deg);
  box-shadow: 0 25px 55px rgba(0, 0, 0, .34);
}

.landing-page .feature-icon {
  margin-block: 30px 17px;
}

.landing-page .learning-section,
.landing-page .platform-section {
  margin-block: 28px;
  padding-inline: clamp(22px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 28px;
}

.landing-page .learning-section {
  background: linear-gradient(135deg, rgba(255, 176, 23, .06), rgba(12, 12, 13, .92) 44%);
}

.landing-page .platform-section {
  background: linear-gradient(135deg, rgba(111, 78, 255, .07), rgba(12, 12, 13, .94) 48%);
}

.landing-page .platform-card {
  min-height: 310px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .18);
}

.landing-page .section-flow {
  padding-block: 92px;
  background:
    radial-gradient(circle at 83% 28%, rgba(113, 79, 255, .12), transparent 28%),
    linear-gradient(110deg, #0e0c09, #0b0b0e 58%, #0c0a12);
}

.landing-page .flow-layout {
  gap: 68px;
}

.landing-page .local-section {
  padding-block: 90px;
  background:
    radial-gradient(circle at 18% 48%, rgba(255, 175, 25, .14), transparent 25%),
    linear-gradient(120deg, #0d0b08, #0b0b0c 62%, #0e0b12);
}

.landing-page .stamp-ring {
  width: 210px;
  height: 210px;
}

.landing-page .roadmap-item {
  min-height: 145px;
}

.landing-page .closing-cta {
  padding-block: 72px 86px;
}

.landing-page .pricing-section {
  padding-block: 92px;
  background: radial-gradient(circle at 50% 0, rgba(255, 168, 22, .12), transparent 34%), #0c0c0d;
}

.landing-page .pricing-note .text-link {
  position: static;
}

@media (max-width: 1000px) {
  .landing-page .hero {
    max-width: 820px;
    gap: 40px;
    padding-block: 48px 56px;
  }

  .landing-page .hero::before {
    inset-inline: 0;
  }

  .landing-page .hero-copy h1 {
    max-width: 660px;
  }

  .landing-page .hero-visual {
    max-width: 620px;
  }
}

@media (max-width: 900px) {
  .landing-page .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #171713;
  }

  .landing-page .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    width: min(320px, calc(100vw - 32px));
    max-height: calc(100vh - 96px);
    padding: 13px;
    overflow-y: auto;
    border: 1px solid #4a4028;
    border-radius: 14px;
    background: rgb(16 16 14 / 98%);
    box-shadow: 0 24px 60px #000;
  }

  .landing-page .site-nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .landing-page .site-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 12px;
  }
}

@media (max-width: 640px) {
  .landing-page .studio-bar-inner {
    min-height: 50px;
  }

  .landing-page .site-header {
    height: 64px;
    min-height: 64px;
  }

  .landing-page .site-header .brand img {
    width: 82px;
  }

  .landing-page .site-nav {
    right: 14px;
    left: 14px;
    width: auto;
  }

  .landing-page .hero {
    padding-block: 42px 50px;
  }

  .landing-page .hero::before {
    inset: 8px 8px;
    border-radius: 23px;
  }

  .landing-page .hero::after {
    top: 43%;
    right: -80px;
    width: 220px;
    height: 220px;
  }

  .landing-page .hero-copy h1 {
    max-width: 350px;
    font-size: clamp(38px, 10.8vw, 44px);
  }

  .landing-page .hero-lede {
    margin-block: 20px 23px;
    font-size: 14px;
  }

  .landing-page .hero-meta {
    margin-top: 24px;
  }

  .landing-page .hero-product-frame:hover {
    transform: none;
  }

  .landing-page .ticker {
    width: calc(100% - 24px);
    margin-top: 12px;
    border-radius: 18px;
  }

  .landing-page .section,
  .landing-page .interface-section,
  .landing-page .section-flow,
  .landing-page .local-section,
  .landing-page .pricing-section {
    padding-block: 70px;
  }

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

  .landing-page .section-heading h2,
  .landing-page .flow-copy h2,
  .landing-page .local-copy h2,
  .landing-page .closing-cta h2 {
    font-size: clamp(32px, 9.5vw, 38px);
  }

  .landing-page .feature-card {
    min-height: 275px;
  }

  .landing-page .learning-section,
  .landing-page .platform-section {
    width: calc(100% - 24px);
    margin-block: 18px;
    padding-inline: 18px;
    border-radius: 22px;
  }

  .landing-page .platform-card {
    min-height: 275px;
  }

  .landing-page .closing-cta {
    padding-block: 60px 72px;
  }
}

@media (max-width: 420px) {
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .download-details {
    grid-template-columns: 1fr;
  }

  .requirements-card li {
    gap: 20px;
  }

  .requirements-card li:not(:last-child) {
    border-bottom-color: #353129;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal,
  .reveal.will-reveal {
    opacity: 1;
    transform: none;
  }
}

.interface-section {
  padding-block: 118px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 191, 24, .09), transparent 38%),
    #0b0b0b;
  border-bottom: 1px solid #24221e;
}

.interface-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid #34322d;
  border-radius: 18px;
  background: #101010;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
}

.interface-shot img {
  display: block;
  width: 100%;
  height: auto;
  background: #0d0e10;
}

.interface-shot-primary {
  margin-bottom: 18px;
}

.interface-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 30%);
  align-items: stretch;
  gap: 18px;
}

.interface-shot-mobile {
  display: flex;
  flex-direction: column;
}

.interface-shot-mobile img {
  min-height: 0;
  flex: 1;
  object-fit: cover;
  object-position: top center;
}

.interface-shot figcaption {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 17px 19px;
  border-top: 1px solid #292725;
}

.interface-shot figcaption strong {
  font: 700 14px "Space Grotesk", sans-serif;
  color: var(--text);
}

.interface-shot figcaption span {
  color: var(--muted);
  font-size: 12px;
}

.interface-shot figcaption small {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  white-space: nowrap;
}

.interface-shot-mobile figcaption {
  grid-template-columns: 1fr;
  gap: 5px;
}

.interface-note {
  margin: 20px 0 0;
  color: #77736c;
  font-size: 11px;
  text-align: center;
}

@media (max-width: 760px) {
  .interface-section {
    padding-block: 82px;
  }

  .interface-detail-grid {
    grid-template-columns: 1fr;
  }

  .interface-shot-mobile {
    width: min(100%, 430px);
    justify-self: center;
  }

  .interface-shot figcaption {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* Landing: a captura real substitui a antiga maquete animada. */
.hero {
  grid-template-columns: minmax(0, .96fr) minmax(450px, 1.04fr);
  gap: clamp(32px, 4vw, 58px);
  min-height: min(620px, calc(100vh - 112px));
  padding-block: clamp(58px, 7vh, 82px);
}

.hero-visual::before,
.hero-visual::after,
.hero-visual > .visual-glow,
.hero-visual > .app-window,
.hero-visual > .floating-note {
  display: none;
}

.hero-copy,
.hero-visual {
  min-width: 0;
  opacity: 1;
  transform: none;
}

.hero-visual {
  min-height: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  justify-self: end;
}

.hero-product-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: #0d0e10;
  box-shadow:
    18px 28px 70px rgba(0, 0, 0, .48),
    0 0 0 1px rgba(255, 191, 24, .06),
    -18px -16px 55px rgba(109, 77, 255, .08);
  transform: perspective(1200px) rotateY(-4deg) rotateX(1.5deg) rotateZ(-.35deg);
  transform-origin: center;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.landing-page .hero-product-frame:hover {
  border-color: rgba(255, 191, 24, .34);
  box-shadow: 12px 24px 62px rgba(0, 0, 0, .52), 0 0 60px rgba(255, 153, 0, .1);
  transform: perspective(1200px) rotateY(-1deg) rotateX(.5deg) translateY(-3px);
}

.hero-product-frame img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.hero-product-frame figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 17px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: rgba(14, 14, 15, .96);
}

.hero-product-frame figcaption span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #dedbd3;
  font-size: 12px;
  font-weight: 650;
}

.hero-product-frame figcaption i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4bd886;
  box-shadow: 0 0 12px rgba(75, 216, 134, .55);
}

.hero-product-frame figcaption small {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  white-space: nowrap;
}

.ticker {
  overflow: visible;
  padding: 17px clamp(18px, 4vw, 52px);
}

.ticker .ticker-track {
  width: min(100%, 1040px);
  min-width: 0;
  margin-inline: auto;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: clamp(18px, 3vw, 38px);
  row-gap: 8px;
  animation: none;
  transform: none;
}

.ticker .ticker-track span:nth-of-type(n + 5),
.ticker .ticker-track i:nth-of-type(n + 5) {
  display: none;
}

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 50px;
    min-height: auto;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    width: min(100%, 780px);
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .hero {
    gap: 30px;
    padding: 46px 18px 54px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 11vw, 46px);
  }

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

  .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .hero-product-frame {
    border-radius: 13px;
    box-shadow: 0 22px 55px rgba(0, 0, 0, .48);
    transform: none;
  }

  .hero-product-frame figcaption {
    padding: 13px 14px;
  }

  .hero-product-frame figcaption small {
    display: none;
  }

  .ticker {
    padding-block: 15px;
  }

  .ticker .ticker-track {
    column-gap: 16px;
    font-size: 9px;
  }

  .ticker .ticker-track i:nth-of-type(n + 3),
  .ticker .ticker-track span:nth-of-type(n + 4) {
    display: none;
  }
}
