:root {
    --bg: #06111b;
    --bg2: #091722;
    --bg3: #112638;
    --surface: rgba(11, 22, 35, 0.78);
    --surface-strong: rgba(12, 24, 38, 0.94);
    --surface-soft: rgba(255, 255, 255, 0.04);
    --accent: #c8f36a;
    --accent-dark: #9fcb42;
    --accent-blue: #65bfff;
    --accent-red: #ff6b7d;
    --gold: var(--accent);
    --gold-dark: var(--accent-dark);
    --purple: #9ed8ff;
    --purple2: #65bfff;
    --text: #f4f8fc;
    --text-muted: rgba(228, 238, 248, 0.72);
    --card-bg: rgba(9, 20, 33, 0.72);
    --card-border: rgba(255, 255, 255, 0.08);
    --radius: 16px;
    --radius-lg: 28px;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
    --transition: 0.28s ease;
}

body {
    background:
        radial-gradient(circle at top, rgba(101, 191, 255, 0.12), transparent 26%),
        linear-gradient(180deg, #06111b 0%, #07131d 35%, #0b1723 100%);
    color: var(--text);
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 10%, rgba(200, 243, 106, 0.08), transparent 18%),
        radial-gradient(circle at 80% 22%, rgba(101, 191, 255, 0.12), transparent 20%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 32%);
    pointer-events: none;
    z-index: -1;
}

.wrapper {
    max-width: 1200px;
}

section {
    position: relative;
    padding: 88px 0;
}

.btn {
    padding: 15px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.1;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #e3ffa0 100%);
    color: #07101b;
    box-shadow: 0 18px 40px rgba(200, 243, 106, 0.24);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #daf98d 0%, #efffc3 100%);
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(200, 243, 106, 0.28);
}

.btn-outline {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-outline:hover {
    border-color: rgba(101, 191, 255, 0.4);
    background: rgba(101, 191, 255, 0.08);
    color: var(--text);
    transform: translateY(-2px);
}

.btn-partner {
    color: #d6ecff;
    background: linear-gradient(135deg, rgba(18, 41, 61, 0.92) 0%, rgba(28, 60, 90, 0.92) 100%);
    border: 1px solid rgba(101, 191, 255, 0.24);
    box-shadow: 0 16px 34px rgba(4, 12, 20, 0.2);
}

.btn-partner:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(24, 51, 76, 0.96) 0%, rgba(35, 73, 109, 0.96) 100%);
    border-color: rgba(101, 191, 255, 0.4);
    color: #eff8ff;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #2ddd74 0%, #14b85a 100%);
    color: #fff;
    box-shadow: 0 18px 36px rgba(45, 221, 116, 0.22);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #35e67c 0%, #19c563 100%);
    box-shadow: 0 22px 42px rgba(45, 221, 116, 0.28);
}

.kicker {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-blue);
    background: rgba(101, 191, 255, 0.1);
    border: 1px solid rgba(101, 191, 255, 0.22);
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar {
    background: rgba(7, 19, 29, 0.84);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-inner {
    height: 96px;
}

.navbar-logo-img {
    height: 72px;
    max-width: 210px;
}

.navbar-menu a {
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(244, 248, 252, 0.66);
    white-space: nowrap;
}

.navbar-menu a:hover {
    color: var(--text);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-actions .btn {
    min-height: 44px;
    padding: 11px 18px;
    font-size: 0.84rem;
}

.btn-compact {
    min-height: 46px;
    padding: 11px 14px;
    font-size: 0.82rem;
    line-height: 1.22;
}

.burger span {
    background: var(--text);
}

.mobile-menu {
    background: rgba(7, 19, 29, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.mobile-menu a:hover {
    color: var(--text);
}

.mobile-menu .btn + .btn {
    margin-top: 10px;
}

.btn-partner-header {
    padding-inline: 17px;
    box-shadow: 0 12px 28px rgba(4, 12, 20, 0.18);
}

.navbar-mobile-actions {
    display: none;
    align-items: center;
    gap: 10px;
}

.btn-partner-mobile {
    white-space: nowrap;
}

body.modal-open {
    overflow: hidden;
}

.screenshots-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: min(520px, 94vw);
    margin: 18px auto 0;
}

.screenshots-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: normal;
}

.entry-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}

.entry-modal[hidden] {
    display: none;
}

.entry-modal.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.entry-modal-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top, rgba(101, 191, 255, 0.16), transparent 24%),
        linear-gradient(180deg, rgba(3, 8, 15, 0.92), rgba(4, 10, 18, 0.84));
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.entry-modal-dialog {
    position: relative;
    width: min(720px, calc(100vw - 32px));
    padding: 34px 34px 30px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(9, 20, 33, 0.96), rgba(11, 24, 38, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 36px 100px rgba(0, 0, 0, 0.48);
    overflow: hidden;
}

.entry-modal-dialog::before {
    content: '';
    position: absolute;
    top: -18%;
    right: -12%;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(200, 243, 106, 0.18) 0%, rgba(101, 191, 255, 0.12) 35%, transparent 72%);
    pointer-events: none;
}

.entry-modal-kicker {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-blue);
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(101, 191, 255, 0.1);
    border: 1px solid rgba(101, 191, 255, 0.22);
}

.entry-modal-title {
    position: relative;
    margin-top: 18px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.entry-modal-copy {
    position: relative;
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 58ch;
}

.entry-modal-tags {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.entry-modal-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.entry-modal-tag.red {
    background: rgba(255, 107, 125, 0.12);
    border: 1px solid rgba(255, 107, 125, 0.28);
    color: #ff95a2;
}

.entry-modal-tag.blue {
    background: rgba(101, 191, 255, 0.12);
    border: 1px solid rgba(101, 191, 255, 0.28);
    color: #8fd1ff;
}

.entry-modal-tag.green {
    background: rgba(45, 221, 116, 0.12);
    border: 1px solid rgba(45, 221, 116, 0.28);
    color: #4aec8c;
}

.entry-modal-action {
    position: relative;
    margin-top: 28px;
    min-width: 180px;
    justify-content: center;
}

#hero {
    padding: 130px 0 106px;
    background: linear-gradient(180deg, rgba(6, 12, 20, 0.9) 0%, rgba(6, 12, 20, 0.68) 45%, #08131d 100%);
    overflow: hidden;
}

#hero .wrapper,
#screenshots .wrapper,
#contato .wrapper {
    position: relative;
    z-index: 1;
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 12, 20, 0.97) 0%, rgba(6, 12, 20, 0.93) 16%, rgba(6, 12, 20, 0.76) 34%, rgba(6, 12, 20, 0.48) 50%, rgba(6, 12, 20, 0.42) 64%, rgba(6, 12, 20, 0.82) 80%, rgba(6, 12, 20, 0.97) 100%),
        linear-gradient(180deg, rgba(6, 12, 20, 0.18) 0%, rgba(6, 12, 20, 0.12) 32%, rgba(6, 12, 20, 0.72) 100%),
        url('./preview-assets/home_roku.png') 58% center / cover no-repeat;
    opacity: 1;
    pointer-events: none;
}

#hero::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: min(44vw, 540px);
    height: min(44vw, 540px);
    background: radial-gradient(circle, rgba(200, 243, 106, 0.22) 0%, rgba(101, 191, 255, 0.08) 38%, transparent 72%);
    filter: blur(8px);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 44px;
    align-items: center;
}

.hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(244, 248, 252, 0.84);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 999px;
}

.hero-title {
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.05em;
    margin-bottom: 22px;
    max-width: 10ch;
}

.hero-title-brand {
    color: var(--accent);
}

.hero-title-copy {
    color: var(--text);
}

.hero-title em {
    font-style: normal;
    color: var(--accent);
}

.hero-heading-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.16rem);
    color: rgba(228, 238, 248, 0.84);
    line-height: 1.45;
    margin-bottom: 16px;
    max-width: 34ch;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.12rem);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 34px;
    max-width: 560px;
}

.hero-copy {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-actions .btn {
    min-height: 52px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 42px;
    padding-top: 0;
    border-top: 0;
    max-width: 640px;
}

.hero-stats > div {
    background: linear-gradient(180deg, rgba(10, 19, 31, 0.82), rgba(13, 24, 38, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 18px 18px 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.hero-stat-value {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.hero-stat-label {
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-visual {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    gap: 18px;
}

.hero-shot-showcase {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 16px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(circle at top left, rgba(101, 191, 255, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(9, 21, 35, 0.94) 0%, rgba(9, 19, 31, 0.88) 100%);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
    overflow: hidden;
}

.hero-shot-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 36%);
    pointer-events: none;
}

.hero-shot-showcase .app-shot-viewport {
    position: relative;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.hero-shot-showcase .app-shot-card {
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(12, 23, 36, 0.96), rgba(10, 20, 31, 0.94));
}

.hero-shot-showcase .app-shot-footer {
    margin-top: 14px;
    padding: 0 2px;
}

.hero-shot-showcase .app-shot-dots,
.hero-shot-showcase .app-shot-nav {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-shot-glow {
    width: 76%;
    height: 32px;
    margin: -4px auto 0;
    background: radial-gradient(ellipse at center, rgba(101, 191, 255, 0.26) 0%, rgba(101, 191, 255, 0.1) 36%, transparent 72%);
    filter: blur(12px);
}

.brand-carousel-wrap {
    width: 100%;
    max-width: 520px;
    overflow: hidden;
    position: relative;
    height: 88px;
}

.brand-carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.brand-slide {
    --platform-primary: #a41450;
    --platform-secondary: #370f21;
    --platform-border: rgba(255, 255, 255, 0.18);
    --platform-glow: rgba(0, 0, 0, 0.28);
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 38%),
        linear-gradient(135deg, var(--platform-primary) 0%, var(--platform-secondary) 100%);
    border: 1px solid var(--platform-border);
    box-shadow: 0 24px 50px var(--platform-glow);
}

.brand-slide[data-platform="lg"] {
    --platform-primary: #b1165a;
    --platform-secondary: #471127;
    --platform-border: rgba(255, 128, 182, 0.4);
    --platform-glow: rgba(111, 25, 64, 0.34);
}

.brand-slide[data-platform="samsung"] {
    --platform-primary: #2453e0;
    --platform-secondary: #0a1e68;
    --platform-border: rgba(125, 171, 255, 0.42);
    --platform-glow: rgba(25, 68, 182, 0.34);
}

.brand-slide[data-platform="roku"] {
    --platform-primary: #8b28f6;
    --platform-secondary: #4b128a;
    --platform-border: rgba(197, 136, 255, 0.42);
    --platform-glow: rgba(88, 29, 148, 0.36);
}

.brand-slide[data-platform="amazon"] {
    --platform-primary: #ffad29;
    --platform-secondary: #b85c00;
    --platform-border: rgba(255, 207, 121, 0.42);
    --platform-glow: rgba(176, 98, 13, 0.34);
}

.brand-slide[data-platform="windows"] {
    --platform-primary: #1cb7ff;
    --platform-secondary: #0f4f98;
    --platform-border: rgba(135, 225, 255, 0.42);
    --platform-glow: rgba(22, 100, 165, 0.34);
}

.brand-slide[data-platform="android"] {
    --platform-primary: #46e48b;
    --platform-secondary: #13653a;
    --platform-border: rgba(149, 245, 188, 0.42);
    --platform-glow: rgba(28, 109, 65, 0.34);
}

.brand-slide-name {
    font-size: 1rem;
    font-weight: 800;
}

.brand-carousel-dots span.on {
    background: var(--accent);
}

.screenshots-platform-carousel {
    width: min(60vw, 100%);
    max-width: 100%;
    margin: 0 auto 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.screenshots-platform-carousel .brand-carousel-wrap {
    width: 100%;
    max-width: none;
    height: 72px;
}

.screenshots-platform-carousel .brand-slide {
    min-height: 72px;
    padding: 11px 16px;
    gap: 12px;
    border-radius: 20px;
}

.screenshots-platform-carousel .brand-slide-logo {
    height: 30px;
    max-width: 78px;
}

.screenshots-platform-carousel .brand-slide-name {
    font-size: 0.92rem;
    line-height: 1.08;
}

.screenshots-platform-carousel .brand-carousel-dots {
    margin-top: 8px;
    justify-content: center;
}

.hero-art-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
    transform: rotateY(-8deg) rotateX(2deg);
    transform-style: preserve-3d;
    transition: transform 0.4s ease;
}

.hero-art-wrap:hover {
    transform: rotateY(-3deg) rotateX(1deg) scale(1.02);
}

.hero-art-img {
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
}

.hero-art-wrap::before,
.hero-art-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 70px;
    border-radius: 28px;
    pointer-events: none;
    z-index: 2;
}

.hero-art-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}

.hero-art-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

.hero-art-shadow {
    border-radius: 28px;
    box-shadow:
        0 42px 110px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(101, 191, 255, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-art-reflection {
    bottom: -34px;
    left: 8%;
    right: 8%;
    height: 32px;
    background: radial-gradient(ellipse at center, rgba(101, 191, 255, 0.2) 0%, transparent 72%);
    filter: blur(10px);
}

#screenshots {
    background: linear-gradient(180deg, #07121b 0%, #08141f 100%);
    overflow: hidden;
}

#screenshots::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 12, 20, 0.92), rgba(6, 12, 20, 0.78)),
        url('./preview-assets/player_roku.jpg') center / cover no-repeat;
    opacity: 0.22;
    pointer-events: none;
}

.app-video-shell {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    max-width: min(1020px, 94vw);
    width: 100%;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 18, 28, 0.84);
    box-shadow: var(--shadow);
}

.app-video-frame {
    position: relative;
    overflow: hidden;
    border-radius: inherit;
    background: radial-gradient(circle at top, rgba(101, 191, 255, 0.12), transparent 28%), #050814;
}

.app-video-controls {
    top: 16px;
    right: 16px;
    gap: 10px;
}

.app-audio-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(5, 8, 20, 0.72);
    color: var(--text);
    font: inherit;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.app-audio-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.26);
}

.app-audio-toggle[data-muted="false"] {
    background: rgba(45, 221, 116, 0.14);
    border-color: rgba(45, 221, 116, 0.3);
    color: #dfffe9;
}

.app-audio-toggle[data-muted="true"] {
    background: rgba(255, 107, 125, 0.14);
    border-color: rgba(255, 107, 125, 0.28);
    color: #ffd8df;
}

.app-audio-toggle-icon {
    font-size: 0.95rem;
    line-height: 1;
}

.app-video-replay {
    position: absolute;
    left: 50%;
    top: 50%;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(5, 8, 20, 0.3);
    color: var(--text);
    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.92);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

.app-video-replay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.app-video-replay:hover {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(8, 14, 26, 0.42);
}

.app-video-replay-icon {
    display: inline-flex;
    width: 20px;
    height: 20px;
}

.app-video-replay-icon svg {
    width: 100%;
    height: 100%;
}

.app-video {
    width: 100%;
    height: clamp(210px, 41vw, 520px);
    display: block;
    object-fit: cover;
    object-position: top center;
    background: #050814;
}

.app-shot-showcase {
    max-width: min(1020px, 94vw);
    margin: 22px auto 0;
}

.app-shot-viewport {
    overflow: hidden;
    border-radius: 28px;
}

.app-shot-track {
    display: flex;
    width: 100%;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.app-shot-slide {
    min-width: 100%;
}

.app-shot-card {
    background: linear-gradient(180deg, rgba(10, 19, 31, 0.86), rgba(12, 24, 38, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

.app-shot-media {
    aspect-ratio: 16 / 9;
    background: #050814;
}

.app-shot-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.app-shot-copy {
    padding: 20px 22px 24px;
}

.app-shot-kicker {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-blue);
    background: rgba(101, 191, 255, 0.1);
    border: 1px solid rgba(101, 191, 255, 0.18);
}

.app-shot-title {
    margin-top: 14px;
    font-size: 1.3rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.app-shot-text {
    margin-top: 8px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 54ch;
}

.app-shot-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
}

.app-shot-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-shot-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.app-shot-dot.is-active {
    width: 30px;
    background: var(--accent);
}

.app-shot-nav {
    display: flex;
    gap: 10px;
}

.app-shot-btn {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    font-size: 1.12rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.app-shot-btn:hover {
    transform: translateY(-2px);
    background: rgba(101, 191, 255, 0.1);
    border-color: rgba(101, 191, 255, 0.3);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}

.section-title em {
    font-style: normal;
    color: var(--accent);
}

.section-lead {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.02rem;
    color: var(--text-muted);
    line-height: 1.75;
}

#parceria {
    background: linear-gradient(180deg, #08131d 0%, #0a1824 100%);
}

.parceria-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 42px;
}

.parceria-card {
    background: linear-gradient(180deg, rgba(10, 19, 31, 0.8), rgba(11, 24, 36, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px 28px;
    transition: var(--transition);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.parceria-card:hover {
    border-color: rgba(200, 243, 106, 0.26);
    transform: translateY(-6px);
    box-shadow: 0 28px 74px rgba(0, 0, 0, 0.32);
}

.parceria-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(200, 243, 106, 0.12);
    border: 1px solid rgba(200, 243, 106, 0.18);
}

.parceria-card h3 {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.parceria-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.72;
}

.parceria-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(12, 26, 40, 0.92) 0%, rgba(18, 35, 54, 0.95) 100%);
    border: 1px solid rgba(200, 243, 106, 0.18);
    border-radius: var(--radius-lg);
    padding: 44px 34px;
    box-shadow: var(--shadow);
}

.parceria-cta h3 {
    font-size: 1.72rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.parceria-cta p {
    color: var(--text-muted);
    margin-bottom: 28px;
    max-width: 560px;
}

.parceria-cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

#sobre {
    background: linear-gradient(180deg, #07131d 0%, #0a1722 100%);
}

.sobre-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 56px;
    align-items: center;
}

.sobre-copy h2 {
    font-size: clamp(2rem, 3.4vw, 3rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}

.sobre-copy h2 em {
    color: var(--accent);
}

.sobre-copy p {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 580px;
}

.sobre-features {
    gap: 12px;
}

.sobre-feature {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
}

.sobre-feature-icon {
    background: rgba(200, 243, 106, 0.12);
}

.sobre-feature-icon path {
    stroke: var(--accent);
}

.plataformas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.plataforma-card {
    background: linear-gradient(180deg, rgba(10, 19, 31, 0.84), rgba(11, 22, 34, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 24px 18px;
    min-height: 148px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.plataforma-card:hover {
    border-color: rgba(101, 191, 255, 0.32);
    background: linear-gradient(180deg, rgba(12, 25, 39, 0.9), rgba(15, 31, 46, 0.98));
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.26);
}

.plataforma-logo.invert {
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.plataforma-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 700;
    color: #2ddd74;
    text-align: center;
    margin-top: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(45, 221, 116, 0.12);
    border: 1px solid rgba(45, 221, 116, 0.24);
}

.plataforma-status.soon {
    color: var(--accent-blue);
    background: rgba(101, 191, 255, 0.12);
    border-color: rgba(101, 191, 255, 0.24);
}

#diferenciais {
    background: linear-gradient(180deg, #08141f 0%, #0c1a26 100%);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 980px;
    margin: 0 auto;
}

.diferencial-card {
    background: linear-gradient(180deg, rgba(10, 19, 31, 0.82), rgba(13, 24, 38, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px 24px;
    transition: var(--transition);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
}

.diferencial-card:hover {
    border-color: rgba(101, 191, 255, 0.26);
    transform: translateY(-4px);
    box-shadow: 0 24px 62px rgba(0, 0, 0, 0.28);
}

.diferencial-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(200, 243, 106, 0.18);
    line-height: 1;
    margin-bottom: 16px;
}

.diferencial-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.diferencial-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.68;
}

#depoimentos {
    background: linear-gradient(180deg, #08131d 0%, #091722 100%);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.depoimento-card {
    background: linear-gradient(180deg, rgba(10, 19, 31, 0.8), rgba(13, 24, 38, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px 24px;
    transition: var(--transition);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
}

.depoimento-card:hover {
    border-color: rgba(200, 243, 106, 0.22);
    transform: translateY(-4px);
    box-shadow: 0 24px 62px rgba(0, 0, 0, 0.28);
}

.depoimento-stars {
    color: var(--accent);
}

.depoimento-text {
    color: var(--text-muted);
    line-height: 1.76;
}

.depoimento-avatar {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

#faq {
    background: linear-gradient(180deg, #08141f 0%, #07121b 100%);
}

.faq-list {
    gap: 14px;
}

.faq-item {
    background: rgba(12, 23, 36, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 22px;
}

.faq-item.active {
    border-color: rgba(200, 243, 106, 0.25);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.faq-question {
    padding: 22px 24px;
    font-weight: 700;
}

.faq-question:hover {
    color: var(--text);
}

.faq-chevron {
    background: rgba(255, 255, 255, 0.05);
}

.faq-item.active .faq-chevron {
    background: rgba(200, 243, 106, 0.12);
    color: var(--accent);
}

.faq-answer-inner {
    color: var(--text-muted);
    line-height: 1.75;
}

#contato {
    background: linear-gradient(180deg, #07131d 0%, #06111b 100%);
    overflow: hidden;
}

#contato::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 12, 20, 0.92) 0%, rgba(6, 12, 20, 0.84) 26%, rgba(6, 12, 20, 0.24) 58%, rgba(6, 12, 20, 0.85) 100%),
        url('./preview-assets/login_roku.jpg') right center / cover no-repeat;
    opacity: 0.22;
    pointer-events: none;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: start;
}

.contato-info h2 {
    font-size: clamp(2rem, 3.3vw, 3rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
}

.contato-info h2 em {
    color: var(--accent);
}

.contato-info p {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 32px;
    font-size: 0.95rem;
    max-width: 560px;
}

.contato-channels {
    gap: 14px;
}

.contato-channel {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-card {
    background: linear-gradient(180deg, rgba(10, 19, 31, 0.88), rgba(12, 24, 38, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.form-title {
    font-size: 1.32rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.form-group label {
    color: rgba(255, 255, 255, 0.66);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2365bfff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.form-group select option {
    background: #0d1d2d;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.32);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(101, 191, 255, 0.46);
    background: rgba(101, 191, 255, 0.06);
    box-shadow: 0 0 0 4px rgba(101, 191, 255, 0.08);
}

.form-success {
    color: #2ddd74;
}

.form-submit {
    margin-top: 8px;
}

footer {
    background: #050d15;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 62px 0 34px;
}

.footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 42px;
}

.footer-brand-logo img {
    height: 54px;
}

.footer-brand-text {
    max-width: 320px;
}

.footer-social {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social:hover {
    background: rgba(101, 191, 255, 0.12);
    border-color: rgba(101, 191, 255, 0.26);
}

.footer-col-title {
    color: rgba(255, 255, 255, 0.44);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.62);
}

.footer-links a:hover {
    color: var(--text);
}

.footer-copyright,
.footer-legal a {
    color: rgba(255, 255, 255, 0.38);
}

.chat-widget {
    bottom: 18px;
    right: 18px;
}

.chat-trigger {
    background: linear-gradient(135deg, #12293d, #214664);
    border: 1px solid rgba(101, 191, 255, 0.18);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.chat-trigger:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
}

.chat-widget.open .chat-trigger {
    background: linear-gradient(135deg, #892436, #c53b52);
    border-color: rgba(255, 107, 125, 0.22);
}

.chat-trigger-pulse {
    border: 2px solid rgba(101, 191, 255, 0.24);
}

.chat-trigger-badge {
    border-color: #06111b;
}

.chat-panel {
    background: #0a1622;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.54);
}

.chat-panel-header {
    background: linear-gradient(135deg, #0f2235 0%, #0b1828 100%);
}

.chat-panel-avatar {
    background: rgba(101, 191, 255, 0.14);
    border: 2px solid rgba(101, 191, 255, 0.22);
}

.chat-panel-sub {
    color: rgba(255, 255, 255, 0.58);
}

.chat-bubble-av {
    background: rgba(101, 191, 255, 0.18);
    border: 1px solid rgba(101, 191, 255, 0.22);
}

.chat-bubble-txt {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.chat-qbtn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-qbtn:hover,
.chat-qbtn.sel {
    background: rgba(101, 191, 255, 0.12);
    border-color: rgba(101, 191, 255, 0.28);
}

.chat-compose input,
.chat-compose textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-compose input:focus,
.chat-compose textarea:focus {
    border-color: rgba(101, 191, 255, 0.46);
    box-shadow: 0 0 0 4px rgba(101, 191, 255, 0.08);
}

.chat-send {
    color: #07101b;
    font-weight: 800;
}

.chat-send svg {
    fill: #07101b;
}

.chat-footer-note {
    color: rgba(255, 255, 255, 0.28);
    padding-bottom: 14px;
}

@media (max-width: 1024px) {
    .hero-grid,
    .sobre-grid,
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        display: flex;
        width: 100%;
        max-width: min(720px, 100%);
        margin: 0 auto;
    }

    .depoimentos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 920px) {
    .navbar-menu,
    .navbar-actions {
        display: none;
    }

    .navbar-mobile-actions {
        display: flex;
    }

    .burger {
        display: flex;
        flex-shrink: 0;
    }

    .navbar-mobile-actions .btn {
        min-height: 40px;
        padding: 9px 13px;
        font-size: 0.75rem;
    }

    .navbar-inner {
        height: 84px;
    }

    .navbar-logo-img {
        height: 64px;
    }

    #hero {
        padding: 112px 0 70px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4.2rem);
        max-width: 8ch;
    }

    .entry-modal-dialog {
        width: min(680px, calc(100vw - 28px));
    }
}

@media (max-width: 640px) {
    section {
        padding: 64px 0;
    }

    .parceria-grid,
    .diferenciais-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .plataformas-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .app-shot-title {
        font-size: 1.18rem;
    }
}

@media (max-width: 860px) {
    .wrapper {
        padding: 0 18px;
    }

    .navbar-inner {
        height: 82px;
    }

    .navbar-logo-img {
        height: 60px;
        max-width: 152px;
    }

    section {
        padding: 46px 0;
    }

    #hero {
        padding: 36px 0 24px;
    }

    #hero::before {
        background:
            linear-gradient(90deg, rgba(6, 12, 20, 0.985) 0%, rgba(6, 12, 20, 0.96) 22%, rgba(6, 12, 20, 0.88) 42%, rgba(6, 12, 20, 0.7) 56%, rgba(6, 12, 20, 0.82) 68%, rgba(6, 12, 20, 0.95) 82%, rgba(6, 12, 20, 0.995) 100%),
            linear-gradient(180deg, rgba(6, 12, 20, 0.34) 0%, rgba(6, 12, 20, 0.18) 32%, rgba(6, 12, 20, 0.8) 100%),
            url('./preview-assets/home_roku.png') 34% center / cover no-repeat;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
        justify-items: stretch;
        align-items: start;
        gap: 14px;
    }

    .hero-copy {
        display: block;
        max-width: none;
    }

    .hero-badges {
        display: none;
    }

    .hero-badge {
        display: none;
    }

    .hero-title {
        font-size: clamp(1.34rem, 4vw, 1.8rem);
        line-height: 0.98;
        max-width: 9.2ch;
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: 0.78rem;
        line-height: 1.42;
        margin-bottom: 10px;
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 7px;
    }

    .hero-actions .btn {
        min-height: 40px;
        justify-content: center;
        text-align: center;
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 5px;
        margin-top: 8px;
    }

    .hero-stats > div {
        padding: 8px 7px 7px;
        border-radius: 14px;
    }

    .hero-stat-value {
        font-size: 0.92rem;
    }

    .hero-stat-label {
        font-size: 0.56rem;
        line-height: 1.14;
    }

    .hero-visual {
        display: flex;
        order: 0;
        align-self: start;
        justify-content: flex-start;
        width: 100%;
        max-width: none;
        margin: 0;
        gap: 10px;
    }

    .hero-shot-showcase {
        padding: 10px;
        border-radius: 20px;
    }

    .hero-shot-showcase .app-shot-viewport,
    .hero-shot-showcase .app-shot-card {
        border-radius: 18px;
    }

    .hero-shot-showcase .app-shot-footer {
        margin-top: 10px;
        gap: 10px;
    }

    .hero-shot-showcase .app-shot-dots,
    .hero-shot-showcase .app-shot-nav {
        padding: 6px 9px;
    }

    .hero-shot-glow {
        width: 72%;
        height: 16px;
        margin-top: -6px;
    }

    .brand-carousel-wrap {
        width: 100%;
        max-width: none;
        height: 64px;
    }

    .brand-slide {
        min-height: 64px;
        padding: 10px 14px;
        gap: 10px;
        border-radius: 18px;
    }

    .brand-slide-logo {
        height: 28px;
        max-width: 72px;
    }

    .brand-slide-name {
        font-size: 0.82rem;
        line-height: 1.1;
    }

    .brand-carousel-dots {
        margin-top: 7px;
    }

    .screenshots-platform-carousel {
        width: min(60vw, 100%);
        margin-bottom: 18px;
    }

    .screenshots-platform-carousel .brand-carousel-wrap {
        height: 66px;
    }

    .screenshots-platform-carousel .brand-slide {
        min-height: 66px;
        padding: 10px 15px;
        gap: 11px;
        border-radius: 18px;
    }

    .screenshots-platform-carousel .brand-slide-logo {
        height: 28px;
        max-width: 72px;
    }

    .screenshots-platform-carousel .brand-slide-name {
        font-size: 0.86rem;
    }

    .hero-art-wrap {
        width: 100%;
        max-width: none;
        aspect-ratio: 0.9;
        margin-top: 2px;
        border-radius: 18px;
        overflow: hidden;
        transform: rotateY(-8deg) rotateX(3deg);
        transform-style: preserve-3d;
    }

    .hero-art-wrap:hover {
        transform: rotateY(-3deg) rotateX(1deg) scale(1.02);
    }

    .hero-art-wrap::before,
    .hero-art-wrap::after,
    .hero-art-shadow {
        border-radius: 18px;
    }

    .hero-art-wrap::before,
    .hero-art-wrap::after {
        width: 18px;
    }

    .hero-art-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
    }

    .hero-art-reflection {
        bottom: -14px;
        left: 12%;
        right: 12%;
        height: 16px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: clamp(1.7rem, 7vw, 2.2rem);
        line-height: 1.08;
    }

    .section-lead,
    .sobre-copy p,
    .contato-info p,
    .parceria-card p,
    .diferencial-card p,
    .depoimento-text,
    .faq-answer-inner {
        font-size: 0.92rem;
        line-height: 1.62;
    }

    .app-video-shell,
    .app-shot-card,
    .app-shot-viewport,
    .parceria-card,
    .diferencial-card,
    .depoimento-card,
    .faq-item,
    .form-card,
    .parceria-cta {
        border-radius: 22px;
    }

    .app-video {
        height: clamp(210px, 54vw, 290px);
    }

    .app-shot-showcase {
        margin-top: 14px;
        padding-bottom: 72px;
    }

    .app-shot-card {
        background: rgba(8, 18, 28, 0.9);
    }

    .app-shot-media {
        aspect-ratio: 16 / 10;
    }

    .app-shot-footer {
        margin-top: 12px;
        align-items: center;
    }

    .app-shot-nav {
        gap: 8px;
    }

    .app-shot-btn {
        width: 42px;
        height: 42px;
    }

    .parceria-grid,
    .diferenciais-grid,
    .depoimentos-grid,
    .plataformas-grid,
    .footer-grid,
    .contato-grid,
    .sobre-grid {
        grid-template-columns: 1fr;
    }

    .parceria-card,
    .diferencial-card,
    .depoimento-card,
    .form-card,
    .parceria-cta {
        padding: 24px 18px;
    }

    .faq-question {
        padding: 18px 18px;
        font-size: 0.92rem;
    }

    .faq-answer-inner {
        padding: 14px 18px 18px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .chat-widget {
        bottom: max(12px, env(safe-area-inset-bottom));
        right: 12px;
    }

    .chat-trigger {
        width: 52px;
        height: 52px;
        padding: 0;
        border-radius: 50%;
    }

    .chat-trigger-label {
        display: none;
    }

    .chat-trigger-badge {
        top: -3px;
        right: -3px;
        font-size: 0.56rem;
        padding: 2px 6px;
    }

    .chat-panel {
        width: min(360px, calc(100vw - 24px));
        right: 0;
        bottom: 72px;
    }
}

@media (max-width: 600px) {
    .wrapper {
        padding: 0 18px;
    }

    section {
        padding: 44px 0;
    }

    #hero {
        padding: 28px 0 20px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(140px, 0.9fr);
        justify-items: stretch;
        gap: 12px;
    }

    .hero-copy {
        display: block;
    }

    .hero-badges,
    .hero-badge {
        display: none;
    }

    .hero-title {
        font-size: clamp(1.2rem, 4.8vw, 1.48rem);
        line-height: 1;
        margin-bottom: 7px;
        max-width: 9.6ch;
    }

    .hero-subtitle {
        font-size: 0.72rem;
        line-height: 1.34;
        margin-bottom: 9px;
        max-width: 100%;
    }

    .hero-actions {
        gap: 6px;
    }

    .hero-actions .btn {
        min-height: 38px;
        padding: 9px 10px;
        font-size: 0.76rem;
    }

    .hero-stats {
        gap: 4px;
        margin-top: 7px;
    }

    .hero-stats > div {
        padding: 7px 5px 6px;
        border-radius: 12px;
    }

    .hero-stat-value {
        font-size: 0.84rem;
    }

    .hero-stat-label {
        font-size: 0.52rem;
        line-height: 1.1;
    }

    .hero-visual {
        width: min(100%, 272px);
        justify-content: flex-start;
        gap: 8px;
        margin-top: 0;
    }

    .brand-carousel-wrap {
        width: 100%;
        max-width: none;
        height: 54px;
    }

    .brand-slide {
        min-height: 54px;
        padding: 8px 12px;
        gap: 8px;
        border-radius: 15px;
    }

    .brand-slide-logo {
        height: 24px;
        max-width: 62px;
    }

    .brand-slide-name {
        font-size: 0.72rem;
        line-height: 1.08;
    }

    .screenshots-platform-carousel {
        width: min(60vw, 100%);
        margin-bottom: 16px;
    }

    .screenshots-platform-carousel .brand-carousel-wrap {
        height: 58px;
    }

    .screenshots-platform-carousel .brand-slide {
        min-height: 58px;
        padding: 9px 13px;
        gap: 9px;
        border-radius: 17px;
    }

    .screenshots-platform-carousel .brand-slide-logo {
        height: 24px;
        max-width: 62px;
    }

    .screenshots-platform-carousel .brand-slide-name {
        font-size: 0.78rem;
    }

    .hero-art-wrap {
        width: 100%;
        aspect-ratio: 0.88;
        border-radius: 15px;
        transform: rotateY(-8deg) rotateX(3deg);
        transform-style: preserve-3d;
    }

    .hero-art-wrap:hover {
        transform: rotateY(-3deg) rotateX(1deg) scale(1.02);
    }

    .hero-art-wrap::before,
    .hero-art-wrap::after,
    .hero-art-shadow {
        border-radius: 15px;
    }

    .hero-art-wrap::before,
    .hero-art-wrap::after {
        width: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-actions,
    .parceria-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn,
    .parceria-cta-buttons .btn {
        text-align: center;
        justify-content: center;
    }

    .parceria-cta,
    .form-card {
        padding: 28px 20px;
    }

    .plataformas-grid {
        grid-template-columns: 1fr;
    }

    .chat-widget {
        bottom: 14px;
        right: 14px;
    }

    .chat-trigger {
        width: 52px;
        height: 52px;
        padding: 0;
        border-radius: 50%;
    }

    .chat-trigger-label {
        display: none;
    }

    .chat-trigger-badge {
        top: -3px;
        right: -3px;
    }

    .chat-panel {
        width: calc(100vw - 28px);
        right: 0;
        bottom: 72px;
    }

    .app-video-controls {
        top: 10px;
        right: 10px;
    }

    .app-audio-toggle {
        padding: 9px 12px;
        font-size: 0.76rem;
    }

    .app-video-replay {
        gap: 8px;
        padding: 10px 14px;
        font-size: 0.74rem;
    }

    .app-video-replay-icon {
        width: 18px;
        height: 18px;
    }

    .entry-modal {
        padding: 18px;
    }

    .entry-modal-dialog {
        width: 100%;
        padding: 24px 20px 22px;
        border-radius: 24px;
    }

    .entry-modal-title {
        font-size: clamp(1.7rem, 9vw, 2.35rem);
    }

    .entry-modal-copy {
        font-size: 0.94rem;
        line-height: 1.65;
    }

    .entry-modal-action {
        width: 100%;
    }

    .app-shot-showcase {
        margin-top: 18px;
        padding-bottom: 0;
    }

    .app-shot-card,
    .app-shot-viewport {
        border-radius: 22px;
    }

    .app-shot-copy {
        padding: 16px 16px 18px;
    }

    .app-shot-title {
        font-size: 1.04rem;
    }

    .app-shot-text {
        font-size: 0.9rem;
        line-height: 1.62;
    }

    .app-shot-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .screenshots-actions {
        margin-top: 14px;
        gap: 8px;
    }

    .screenshots-actions .btn {
        min-height: 42px;
        padding: 10px 11px;
        font-size: 0.76rem;
    }
}

@media (max-width: 600px) and (orientation: portrait) {
    #hero {
        padding: 24px 0 18px;
    }

    .navbar-mobile-actions {
        gap: 8px;
    }

    .navbar-mobile-actions .btn {
        min-height: 38px;
        padding: 8px 11px;
        font-size: 0.72rem;
    }

    #hero::before {
        background:
            linear-gradient(90deg, rgba(6, 12, 20, 0.99) 0%, rgba(6, 12, 20, 0.965) 24%, rgba(6, 12, 20, 0.9) 42%, rgba(6, 12, 20, 0.72) 56%, rgba(6, 12, 20, 0.82) 68%, rgba(6, 12, 20, 0.95) 82%, rgba(6, 12, 20, 0.995) 100%),
            linear-gradient(180deg, rgba(6, 12, 20, 0.46) 0%, rgba(6, 12, 20, 0.22) 34%, rgba(6, 12, 20, 0.82) 100%),
            url('./preview-assets/home_roku.png') 38% center / cover no-repeat;
    }

    .screenshots-actions {
        margin-top: 12px;
    }

    .screenshots-actions .btn {
        min-height: 40px;
        padding: 9px 10px;
        font-size: 0.74rem;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(100px, 0.68fr);
        justify-items: stretch;
        gap: 9px;
    }

    .hero-copy {
        display: block;
    }

    .hero-badges,
    .hero-badge {
        display: none;
    }

    .hero-title {
        font-size: clamp(1.12rem, 4.7vw, 1.38rem);
        line-height: 1;
        letter-spacing: -0.05em;
        margin-bottom: 6px;
        max-width: 9.6ch;
    }

    .hero-subtitle {
        font-size: 0.7rem;
        line-height: 1.3;
        margin-bottom: 8px;
        max-width: 100%;
    }

    .hero-actions {
        gap: 6px;
    }

    .hero-actions .btn {
        min-height: 36px;
        padding: 8px 10px;
        font-size: 0.74rem;
    }

    .hero-stats {
        gap: 4px;
        margin-top: 7px;
    }

    .hero-stats > div {
        padding: 7px 5px 6px;
        border-radius: 11px;
    }

    .hero-stat-value {
        font-size: 0.8rem;
    }

    .hero-stat-label {
        font-size: 0.5rem;
        line-height: 1.08;
    }

    .hero-visual {
        width: min(100%, 236px);
        justify-content: flex-start;
        gap: 7px;
    }

    .brand-carousel-wrap {
        height: 46px;
    }

    .brand-slide {
        min-height: 46px;
        padding: 7px 10px;
    }

    .brand-slide-logo {
        height: 19px;
        max-width: 48px;
    }

    .brand-slide-name {
        font-size: 0.62rem;
        line-height: 1.05;
    }

    .screenshots-platform-carousel {
        width: min(60vw, 100%);
        margin-bottom: 14px;
    }

    .screenshots-platform-carousel .brand-carousel-wrap {
        height: 50px;
    }

    .screenshots-platform-carousel .brand-slide {
        min-height: 50px;
        padding: 8px 11px;
        gap: 8px;
        border-radius: 16px;
    }

    .screenshots-platform-carousel .brand-slide-logo {
        height: 20px;
        max-width: 52px;
    }

    .screenshots-platform-carousel .brand-slide-name {
        font-size: 0.68rem;
    }

    .hero-art-wrap {
        margin-top: 1px;
        border-radius: 14px;
        transform: rotateY(-8deg) rotateX(3deg);
    }

    .hero-art-wrap:hover {
        transform: rotateY(-3deg) rotateX(1deg) scale(1.02);
    }

    .hero-art-wrap::before,
    .hero-art-wrap::after,
    .hero-art-shadow {
        border-radius: 14px;
    }

    .hero-art-wrap::before,
    .hero-art-wrap::after {
        width: 10px;
    }

    .section-header {
        margin-bottom: 34px;
    }

    .section-title {
        font-size: clamp(1.65rem, 8.4vw, 2.15rem);
        line-height: 1.08;
    }

    .section-lead,
    .sobre-copy p,
    .contato-info p,
    .parceria-card p,
    .diferencial-card p,
    .depoimento-text,
    .faq-answer-inner {
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .sobre-copy h2,
    .contato-info h2 {
        font-size: clamp(1.7rem, 8vw, 2.35rem);
        line-height: 1.08;
    }

    .parceria-card,
    .diferencial-card,
    .depoimento-card,
    .form-card {
        border-radius: 22px;
    }

    .parceria-card,
    .diferencial-card,
    .depoimento-card {
        padding: 24px 20px;
    }

    .faq-question {
        padding: 18px 18px;
        font-size: 0.92rem;
    }

    .faq-answer-inner {
        padding: 14px 18px 18px;
    }

    .app-video-shell {
        border-radius: 22px;
    }

    .app-video {
        height: clamp(220px, 58vw, 290px);
    }

    .entry-modal-tags {
        gap: 8px;
    }

    .entry-modal-tag {
        font-size: 0.74rem;
    }

    .app-shot-media {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 400px) {
    .app-video {
        height: 180px;
    }
}

/* Current page refinements */

.hero-shot-showcase {
    margin-top: 0;
    padding-bottom: 0;
}

.hero-shot-showcase .app-shot-viewport {
    aspect-ratio: 16 / 9;
    min-height: 0;
    touch-action: pan-y;
}

.hero-shot-showcase .app-shot-track {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.hero-shot-showcase .app-shot-slide {
    position: absolute;
    inset: 0;
    min-width: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.035);
    pointer-events: none;
    transition:
        opacity 0.42s ease,
        transform 0.82s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 0.42s;
}

.hero-shot-showcase .app-shot-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: auto;
    transition-delay: 0s;
}

.hero-shot-showcase .app-shot-card,
.hero-shot-showcase .app-shot-media {
    height: 100%;
}

.hero-shot-showcase .app-shot-media {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background:
        linear-gradient(180deg, rgba(5, 12, 20, 0.94), rgba(8, 16, 25, 0.98));
}

.hero-shot-showcase .app-shot-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transform: scale(1.04);
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-shot-showcase .app-shot-slide.is-active .app-shot-media img {
    transform: scale(1);
}

.hero-shot-showcase .app-shot-footer {
    justify-content: center;
    margin-top: 16px;
    padding: 0;
}

.hero-shot-showcase .app-shot-dots {
    margin: 0 auto;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    gap: 10px;
}

.hero-shot-showcase .app-shot-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.24);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.hero-shot-showcase .app-shot-dot.is-active {
    width: 34px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-blue) 100%);
    box-shadow: 0 10px 24px rgba(101, 191, 255, 0.18);
}

.hero-shot-showcase .app-shot-nav {
    display: none;
}

.platform-availability {
    max-width: 1020px;
    margin: 0 auto 32px;
}

.platform-availability-title {
    text-align: center;
    font-size: clamp(1.28rem, 2.1vw, 1.92rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
}

.platform-availability-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.platform-availability-card {
    --platform-primary: #8c1f58;
    --platform-secondary: #351223;
    --platform-border: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 84px;
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid var(--platform-border);
    background:
        radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 34%),
        linear-gradient(135deg, var(--platform-primary) 0%, var(--platform-secondary) 100%);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.2);
}

.platform-availability-card[data-platform="lg"] {
    --platform-primary: #b1165a;
    --platform-secondary: #471127;
    --platform-border: rgba(255, 128, 182, 0.34);
}

.platform-availability-card[data-platform="samsung"] {
    --platform-primary: #2453e0;
    --platform-secondary: #0a1e68;
    --platform-border: rgba(125, 171, 255, 0.34);
}

.platform-availability-card[data-platform="roku"] {
    --platform-primary: #8b28f6;
    --platform-secondary: #4b128a;
    --platform-border: rgba(197, 136, 255, 0.34);
}

.platform-availability-card[data-platform="amazon"] {
    --platform-primary: #ffad29;
    --platform-secondary: #b85c00;
    --platform-border: rgba(255, 207, 121, 0.34);
}

.platform-availability-card[data-platform="windows"] {
    --platform-primary: #1cb7ff;
    --platform-secondary: #0f4f98;
    --platform-border: rgba(135, 225, 255, 0.34);
}

.platform-availability-card[data-platform="android"] {
    --platform-primary: #46e48b;
    --platform-secondary: #13653a;
    --platform-border: rgba(149, 245, 188, 0.34);
}

.platform-availability-logo {
    height: 30px;
    width: auto;
    max-width: 82px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.platform-availability-logo.keep-color {
    filter: none;
}

.platform-availability-name {
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.08;
}

@media (max-width: 860px) {
    .hero-shot-showcase {
        margin-top: 0;
        padding-bottom: 0;
    }

    .hero-shot-showcase .app-shot-viewport {
        min-height: 0;
    }

    .hero-shot-showcase .app-shot-footer {
        justify-content: center;
        margin-top: 12px;
    }

    .hero-shot-showcase .app-shot-dots {
        padding: 8px 12px;
    }

    .platform-availability {
        margin-bottom: 26px;
    }

    .platform-availability-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .platform-availability-card {
        min-height: 76px;
        padding: 14px 15px;
        border-radius: 18px;
        gap: 12px;
    }

    .platform-availability-logo {
        height: 26px;
        max-width: 72px;
    }

    .platform-availability-name {
        font-size: 0.84rem;
    }
}

@media (max-width: 520px) {
    .platform-availability-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .platform-availability-card {
        min-height: 68px;
        padding: 12px;
        gap: 9px;
        border-radius: 16px;
    }

    .platform-availability-logo {
        height: 22px;
        max-width: 56px;
    }

    .platform-availability-name {
        min-width: 0;
        font-size: 0.72rem;
        line-height: 1.02;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Hero screenshot bleed fix */

.hero-shot-showcase .app-shot-slide:nth-child(1) {
    --shot-image: url('./preview-assets/login_roku.jpg');
}

.hero-shot-showcase .app-shot-slide:nth-child(2) {
    --shot-image: url('./preview-assets/home_roku.png');
}

.hero-shot-showcase .app-shot-slide:nth-child(3) {
    --shot-image: url('./preview-assets/canais_roku.png');
}

.hero-shot-showcase .app-shot-slide:nth-child(4) {
    --shot-image: url('./preview-assets/filmes_roku.png');
}

.hero-shot-showcase .app-shot-slide:nth-child(5) {
    --shot-image: url('./preview-assets/player_roku.jpg');
}

.hero-shot-showcase .app-shot-card {
    position: relative;
    isolation: isolate;
}

.hero-shot-showcase .app-shot-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 12, 20, 0.34) 0%, rgba(5, 12, 20, 0.08) 18%, rgba(5, 12, 20, 0.08) 82%, rgba(5, 12, 20, 0.34) 100%),
        var(--shot-image) center center / cover no-repeat;
    filter: blur(18px) saturate(1.15);
    transform: scale(1.08);
    opacity: 0.92;
    z-index: 0;
}

.hero-shot-showcase .app-shot-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 15, 24, 0.08), rgba(7, 15, 24, 0.22));
    z-index: 0;
}

.hero-shot-showcase .app-shot-media {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: auto;
    padding: 0;
    background: transparent;
}

.hero-shot-showcase .app-shot-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

@media (max-width: 640px) {
    body {
        --phone-preview-width: 390px;
        max-width: 390px;
        margin: 0 auto;
    }

    #hero .hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
        align-items: start;
    }

    #hero .hero-copy {
        display: flex;
        flex-direction: column;
        max-width: none;
    }

    #hero .hero-title {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        column-gap: 8px;
        row-gap: 2px;
        max-width: none;
        margin-bottom: 6px;
        font-size: clamp(1.28rem, 2.1vw, 1.92rem);
        font-weight: 700;
        line-height: 1.08;
        letter-spacing: -0.04em;
    }

    #hero .hero-heading-subtitle {
        font-size: 0.92rem;
        line-height: 1.38;
        margin-bottom: 14px;
        max-width: 28ch;
    }

    .section-title {
        font-size: clamp(1.28rem, 2.1vw, 1.92rem);
        line-height: 1.08;
        letter-spacing: -0.04em;
    }

    .platform-availability-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .platform-availability-card {
        min-height: 68px;
        padding: 12px;
        gap: 9px;
        border-radius: 16px;
    }

    .platform-availability-logo {
        height: 22px;
        max-width: 56px;
    }

    .platform-availability-name {
        min-width: 0;
        font-size: 0.72rem;
        line-height: 1.02;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.route-loader {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(6, 17, 27, 0.52);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
    z-index: 240;
}

.route-loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    min-width: 138px;
    padding: 18px 20px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 22, 35, 0.92);
    box-shadow: 0 26px 56px rgba(0, 0, 0, 0.28);
}

.route-loader-spinner {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 3px solid rgba(255, 255, 255, 0.12);
    border-top-color: var(--accent);
    border-right-color: var(--accent-blue);
    animation: route-loader-spin 0.85s linear infinite;
}

.route-loader-text {
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: rgba(244, 248, 252, 0.86);
}

@keyframes route-loader-spin {
    to {
        transform: rotate(360deg);
    }
}

body.is-route-loading .route-loader {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.is-section-view .navbar-menu a.is-active,
body.is-section-view .mobile-menu a.is-active,
body.is-section-view .footer-links a.is-active {
    color: var(--accent);
}

body:not(.is-section-view) .mobile-menu a[href="#hero"].is-active,
body:not(.is-section-view) .footer-links a[href="#hero"].is-active,
body:not(.is-section-view) .navbar-menu a[href="#hero"].is-active {
    color: var(--accent);
}

footer {
    padding: 24px 0 24px;
}

.footer-grid {
    display: none;
}

.footer-bottom {
    padding-top: 0;
    border-top: 0;
}

@media (max-width: 768px) {
    #hero .hero-visual {
        width: 100%;
        margin: 0 0 16px;
        gap: 10px;
        justify-content: flex-start;
    }

    #hero .hero-shot-showcase {
        padding: 12px;
        border-radius: 24px;
    }

    #hero .hero-shot-showcase .app-shot-viewport,
    #hero .hero-shot-showcase .app-shot-card {
        border-radius: 20px;
    }

    #hero .hero-shot-showcase .app-shot-footer {
        margin-top: 10px;
    }

    #hero .hero-subtitle {
        max-width: none;
        margin-bottom: 16px;
        font-size: 0.92rem;
        line-height: 1.58;
    }

    #hero .hero-stats {
        max-width: none;
        margin-top: 0;
        gap: 8px;
    }

    #hero .hero-stats > div {
        padding: 10px 9px 9px;
        border-radius: 14px;
    }

    #hero .hero-stat-value {
        font-size: 1rem;
    }

    #hero .hero-stat-label {
        font-size: 0.56rem;
        line-height: 1.16;
    }

    #hero .hero-shot-glow {
        width: 68%;
        height: 28px;
        margin: -6px auto 0;
    }
}

.hero-title-row {
    width: 100%;
}

.hero-title-cta {
    white-space: nowrap;
}

@media (min-width: 641px) {
    #hero .hero-grid {
        grid-template-columns: minmax(0, 1fr);
        justify-items: center;
        gap: 30px;
    }

    #hero .hero-copy {
        width: 100%;
        max-width: min(920px, 100%);
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #hero .hero-badges {
        justify-content: center;
        margin-bottom: 20px;
    }

    #hero .hero-title-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 18px;
        flex-wrap: wrap;
        margin-bottom: 8px;
    }

    #hero .hero-title {
        max-width: none;
        margin-bottom: 0;
        font-size: clamp(3rem, 5vw, 5.3rem);
    }

    #hero .hero-title-cta {
        min-height: 48px;
        padding: 12px 18px;
        font-size: 0.84rem;
        box-shadow: 0 16px 38px rgba(200, 243, 106, 0.2);
    }

    #hero .hero-heading-subtitle {
        max-width: 44ch;
        font-size: clamp(1.08rem, 1.45vw, 1.28rem);
        margin-bottom: 18px;
    }

    #hero .hero-visual {
        width: 100%;
        max-width: min(780px, 100%);
        margin: 0 auto;
    }

    #hero .hero-subtitle {
        max-width: 66ch;
        margin-bottom: 30px;
    }

    #hero .hero-stats {
        width: 100%;
        max-width: min(780px, 100%);
        margin-top: 34px;
    }

    #hero .hero-stat-value {
        font-size: clamp(1.9rem, 2.2vw, 2.3rem);
    }
}

@media (min-width: 921px) {
    .navbar-inner {
        height: 78px;
    }

    .navbar-logo-img {
        height: 56px;
        max-width: 170px;
    }

    .navbar-menu {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .navbar-menu a {
        font-size: 0.82rem;
    }

    .navbar-actions {
        gap: 8px;
    }

    .navbar-actions .btn {
        min-height: 38px;
        padding: 8px 14px;
        font-size: 0.76rem;
    }

    .btn-partner-header {
        padding-inline: 14px;
    }
}

@media (min-width: 1100px) {
    #hero .hero-title-row {
        flex-wrap: nowrap;
        align-items: center;
        gap: 22px;
    }

    #hero .hero-title {
        max-width: 680px;
    }

    #hero .hero-title-cta {
        flex: 0 0 auto;
    }
}

@media (max-width: 640px) {
    .hero-title-cta {
        display: none;
    }
}
