:root {
    --navy: #06131b;
    --navy-soft: #0a202a;
    --river: #0e7d8b;
    --river-light: #84eee7;
    --sky: #dff5f3;
    --paper: #f4f7f3;
    --paper-blue: #e8f2f1;
    --ink: #0a1b20;
    --muted: #5d6d70;
    --white: #fff;
    --line: rgba(10, 27, 32, .13);
    --shell: min(1280px, calc(100vw - 48px));
    --radius: 30px;
    --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.fish-header {
    position: absolute;
    z-index: 30;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.mobileapps-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: white;
    font-size: 18px;
    font-weight: 780;
    letter-spacing: -.55px;
}

.mobileapps-brand > span:last-child > span {
    color: var(--river-light);
}

.mobileapps-mark {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--river-light);
    color: var(--navy);
    font-size: 16px;
    font-weight: 900;
}

.fish-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
    color: rgba(255, 255, 255, .65);
    font-size: 13px;
    font-weight: 700;
}

.fish-nav a {
    transition: color .2s ease;
}

.fish-nav a:hover {
    color: white;
}

.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    color: rgba(255, 255, 255, .58);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .04em;
}

.language-switch a {
    min-width: 29px;
    min-height: 28px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    transition: background .2s ease, color .2s ease;
}

.language-switch a:hover {
    color: white;
}

.language-switch a.is-active {
    background: var(--river-light);
    color: var(--navy);
}

.header-play {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 0 17px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    color: white;
    font-size: 12px;
    font-weight: 800;
    transition: background .2s ease, color .2s ease;
}

.header-play:hover {
    background: var(--river-light);
    color: var(--navy);
}

.fish-hero {
    min-height: 880px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 145px 0 75px;
    background:
        radial-gradient(circle at 74% 39%, rgba(28, 132, 145, .22), transparent 32%),
        linear-gradient(145deg, #06131b 0%, #071a24 55%, #0b2830 100%);
    color: white;
}

.fish-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .1;
    background-image: radial-gradient(rgba(255, 255, 255, .45) .65px, transparent .65px);
    background-size: 9px 9px;
    mask-image: linear-gradient(105deg, black, transparent 68%);
}

.hero-map-lines {
    position: absolute;
    width: 680px;
    height: 680px;
    right: -80px;
    bottom: -340px;
    border: 1px solid rgba(132, 238, 231, .1);
    border-radius: 47% 53% 44% 56%;
    box-shadow:
        0 0 0 75px rgba(132, 238, 231, .025),
        0 0 0 150px rgba(132, 238, 231, .018),
        0 0 0 225px rgba(132, 238, 231, .012);
    transform: rotate(18deg);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr .96fr;
    gap: 68px;
    align-items: center;
}

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

.app-identity img {
    width: 64px;
    height: 64px;
    border-radius: 15px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .28);
}

.app-identity > div {
    display: grid;
}

.app-identity span {
    color: rgba(255, 255, 255, .45);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.app-identity strong {
    font-size: 20px;
    letter-spacing: -.03em;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
    color: var(--river-light);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 22px;
    height: 1px;
    background: currentColor;
}

.eyebrow-dark {
    color: #31717a;
}

.hero-copy h1,
.feature-copy h2,
.section-heading h2,
.offline-content h2,
.privacy-copy h2,
.download-copy h2 {
    margin: 0;
    font-size: clamp(56px, 6.1vw, 88px);
    line-height: .98;
    letter-spacing: -.065em;
    font-weight: 760;
}

h1 em,
h2 em {
    color: var(--river-light);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -.055em;
}

.hero-lead {
    max-width: 650px;
    margin: 27px 0 0;
    color: rgba(255, 255, 255, .62);
    font-size: 18px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.button-play {
    min-height: 60px;
    gap: 13px;
    padding: 0 23px;
    border-radius: 16px;
    background: white;
    color: var(--navy);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .24);
    transition: transform .2s var(--ease), box-shadow .2s ease;
}

.button-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .32);
}

.button-play > span:last-child {
    display: grid;
    line-height: 1.12;
}

.button-play small {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.button-play strong {
    font-size: 15px;
}

.play-triangle {
    width: 0;
    height: 0;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 18px solid #20a35a;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
    font-weight: 750;
}

.text-link:hover {
    color: white;
}

.hero-facts {
    display: flex;
    gap: 38px;
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.hero-facts > div {
    display: grid;
}

.hero-facts strong {
    font-size: 21px;
    letter-spacing: -.03em;
}

.hero-facts span {
    color: rgba(255, 255, 255, .38);
    font-size: 10px;
}

.hero-art {
    min-height: 590px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 36px;
    background: #0b2830;
    box-shadow: 0 45px 90px rgba(0, 0, 0, .35);
    transform: rotate(1.5deg);
}

.hero-art > img {
    width: 100%;
    height: 100%;
    min-height: 590px;
    position: absolute;
    inset: 0;
    object-fit: cover;
    object-position: center 56%;
}

.hero-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 15, 20, .58), transparent 45%);
}

.hero-art-badge {
    position: absolute;
    z-index: 2;
    right: 23px;
    bottom: 23px;
    left: 23px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    background: rgba(4, 17, 23, .7);
    backdrop-filter: blur(14px);
}

.badge-dot {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--river-light);
    box-shadow: 0 0 0 6px rgba(132, 238, 231, .1);
}

.hero-art-badge > div {
    display: grid;
}

.hero-art-badge small {
    color: rgba(255, 255, 255, .42);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-art-badge strong {
    font-size: 13px;
}

.intro-strip {
    background: var(--river-light);
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.intro-grid > div {
    min-height: 128px;
    display: grid;
    align-content: center;
    padding: 20px 28px;
    border-right: 1px solid rgba(6, 19, 27, .13);
}

.intro-grid > div:first-child {
    border-left: 1px solid rgba(6, 19, 27, .13);
}

.intro-grid span {
    margin-bottom: 7px;
    color: rgba(6, 19, 27, .45);
    font-size: 9px;
    font-weight: 850;
}

.intro-grid strong {
    font-size: 15px;
}

.intro-grid small {
    color: rgba(6, 19, 27, .58);
    font-size: 10px;
}

.feature-section {
    padding: 135px 0;
    background: var(--paper);
}

.feature-grid {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 115px;
    align-items: center;
}

.feature-copy h2,
.section-heading h2,
.privacy-copy h2,
.download-copy h2 {
    font-size: clamp(44px, 5.2vw, 72px);
}

.feature-copy h2 em,
.section-heading h2 em,
.download-copy h2 em {
    color: #22717a;
}

.feature-copy > p:not(.eyebrow) {
    max-width: 590px;
    margin: 27px 0 0;
    color: var(--muted);
    font-size: 16px;
}

.check-list {
    display: grid;
    gap: 0;
    margin: 37px 0 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.check-list li {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 15px;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
}

.check-list i {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #d7f4ef;
    color: #17747d;
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
}

.check-list strong {
    color: var(--ink);
}

.phone-scene {
    min-height: 690px;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: var(--radius);
    background:
        linear-gradient(rgba(7, 38, 46, .2), rgba(7, 38, 46, .82)),
        url("../images/fisustaja/hero.png") center / cover;
}

.scene-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 35%;
    left: 50%;
    border-radius: 50%;
    background: var(--river-light);
    filter: blur(120px);
    opacity: .14;
    transform: translate(-50%, -50%);
}

.phone-frame,
.screen-phone {
    position: relative;
    overflow: hidden;
    border: 9px solid #0b1012;
    border-radius: 42px;
    background: #0b1012;
    box-shadow: 0 35px 70px rgba(0, 0, 0, .38);
}

.phone-frame {
    z-index: 2;
    width: 310px;
    height: 620px;
    transform: rotate(-2.5deg);
}

.phone-frame::before,
.screen-phone::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 8px;
    left: 50%;
    width: 72px;
    height: 18px;
    border-radius: 999px;
    background: #0b1012;
    transform: translateX(-50%);
}

.phone-frame img,
.screen-phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.score-card {
    position: absolute;
    z-index: 3;
    right: 28px;
    bottom: 45px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 17px;
    border-radius: 17px;
    background: rgba(255, 255, 255, .93);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .26);
}

.score-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #dcf6f1;
    color: #16747d;
    font-size: 24px;
    font-weight: 800;
}

.score-card > div {
    display: grid;
}

.score-card small {
    color: #667477;
    font-size: 9px;
}

.score-card strong {
    font-size: 11px;
}

.bento-section {
    padding: 130px 0;
    background: var(--paper-blue);
}

.section-heading {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 100px;
    align-items: end;
}

.section-heading > p {
    max-width: 480px;
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 16px;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 16px;
    margin-top: 55px;
}

.bento-card {
    min-height: 355px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .6);
}

.bento-large {
    min-height: 726px;
    grid-row: span 2;
    background:
        radial-gradient(circle at 60% 25%, rgba(132, 238, 231, .22), transparent 28%),
        var(--navy);
    color: white;
}

.card-index {
    position: absolute;
    top: 27px;
    left: 29px;
    color: rgba(255, 255, 255, .38);
    font-size: 10px;
    font-weight: 850;
}

.flow-card .card-index,
.restriction-card .card-index {
    color: #718084;
}

.bento-card > div:last-child {
    position: relative;
    z-index: 2;
}

.bento-card > div:last-child > p:first-child {
    margin: 0 0 10px;
    color: var(--river);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.bento-large > div:last-child > p:first-child {
    color: var(--river-light);
}

.bento-card h3 {
    max-width: 520px;
    margin: 0;
    font-size: clamp(28px, 3.2vw, 46px);
    line-height: 1.05;
    letter-spacing: -.05em;
}

.bento-card > div:last-child > p:last-child {
    max-width: 530px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.bento-large > div:last-child > p:last-child {
    color: rgba(255, 255, 255, .52);
}

.water-rings {
    position: absolute;
    width: 460px;
    height: 330px;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
}

.water-rings i {
    position: absolute;
    inset: 50%;
    border: 1px solid rgba(132, 238, 231, .24);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.water-rings i:nth-child(1) { width: 130px; height: 55px; }
.water-rings i:nth-child(2) { width: 260px; height: 115px; }
.water-rings i:nth-child(3) { width: 440px; height: 210px; }

.water-rings::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    top: 48%;
    left: 50%;
    border-radius: 50%;
    background: var(--river-light);
    box-shadow: 0 0 0 10px rgba(132, 238, 231, .08), 0 0 50px rgba(132, 238, 231, .55);
    transform: translate(-50%, -50%);
}

.flow-chart {
    position: absolute;
    top: 70px;
    right: 32px;
    left: 32px;
    height: 105px;
    display: flex;
    align-items: flex-end;
    gap: 9px;
    opacity: .72;
}

.flow-chart span {
    flex: 1;
    border-radius: 7px 7px 2px 2px;
    background: linear-gradient(to top, #147a86, #84eee7);
}

.restriction-mark {
    position: absolute;
    top: 53px;
    right: 39px;
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(181, 68, 61, .3);
    border-radius: 50%;
    color: #b5443d;
    font-family: Georgia, serif;
    font-size: 48px;
    font-style: italic;
}

.offline-section {
    min-height: 710px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
}

.offline-background,
.offline-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.offline-background {
    object-fit: cover;
    object-position: center;
}

.offline-shade {
    background: linear-gradient(90deg, rgba(3, 13, 18, .94) 0%, rgba(3, 13, 18, .74) 47%, rgba(3, 13, 18, .18) 100%);
}

.offline-content {
    position: relative;
    z-index: 2;
}

.offline-content h2 {
    max-width: 820px;
    font-size: clamp(48px, 5.7vw, 80px);
}

.offline-content > p:not(.eyebrow) {
    max-width: 630px;
    margin: 27px 0 0;
    color: rgba(255, 255, 255, .63);
    font-size: 16px;
}

.offline-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 30px;
}

.offline-pills span {
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 999px;
    background: rgba(4, 16, 21, .4);
    color: rgba(255, 255, 255, .72);
    font-size: 11px;
    font-weight: 750;
    backdrop-filter: blur(8px);
}

.screens-section {
    overflow: hidden;
    padding: 130px 0;
    background: var(--paper);
}

.screens-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 58px;
}

.screen-card {
    min-width: 0;
    margin: 0;
}

.screen-phone {
    width: 100%;
    height: 580px;
    border-width: 7px;
    border-radius: 33px;
    box-shadow: 0 22px 50px rgba(17, 40, 44, .16);
}

.screen-card:nth-child(2) .screen-phone img {
    object-position: 50% 42%;
}

.screen-card:nth-child(3) .screen-phone img {
    object-position: 50% 35%;
}

.screen-card figcaption {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 9px;
    margin-top: 18px;
    color: var(--ink);
}

.screen-card figcaption span {
    color: #7f8c8d;
    font-size: 10px;
    font-weight: 850;
}

.screen-card figcaption strong {
    font-size: 13px;
}

.privacy-section {
    padding: 115px 0;
    background: var(--river);
    color: white;
}

.privacy-grid {
    display: grid;
    grid-template-columns: .35fr 1.15fr .8fr;
    gap: 75px;
    align-items: center;
}

.privacy-number {
    color: var(--river-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(170px, 19vw, 280px);
    font-style: italic;
    line-height: .7;
    opacity: .72;
}

.privacy-copy .eyebrow {
    color: var(--river-light);
}

.privacy-copy h2 {
    font-size: clamp(44px, 5.4vw, 74px);
}

.privacy-copy h2 em {
    color: var(--river-light);
}

.privacy-copy > p:last-child {
    max-width: 620px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .65);
}

.privacy-points {
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.privacy-points div {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.privacy-points span {
    color: rgba(255, 255, 255, .42);
    font-size: 9px;
    font-weight: 850;
}

.privacy-points strong {
    font-size: 13px;
}

.download-section {
    padding: 115px 0;
    background: var(--sky);
}

.download-grid {
    display: grid;
    grid-template-columns: .55fr 1.45fr;
    gap: 100px;
    align-items: center;
}

.download-identity {
    min-height: 410px;
    display: grid;
    place-content: center;
    justify-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .55);
}

.download-identity img {
    width: 190px;
    height: 190px;
    border-radius: 42px;
    box-shadow: 0 28px 60px rgba(13, 60, 67, .22);
}

.download-identity > div {
    display: grid;
    margin-top: 23px;
    text-align: center;
}

.download-identity span {
    color: #728285;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.download-identity strong {
    font-size: 22px;
}

.download-copy h2 {
    max-width: 780px;
}

.button-play-dark {
    margin-top: 32px;
    background: var(--navy);
    color: white;
}

.disclaimer-section {
    padding: 34px 0;
    background: #dbe9e7;
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 35px;
}

.disclaimer-grid strong {
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.disclaimer-grid p {
    max-width: 990px;
    margin: 0;
    color: #617173;
    font-size: 11px;
}

.disclaimer-grid a {
    color: #176e79;
    text-decoration: underline;
}

.fish-footer {
    padding: 75px 0 24px;
    background: #040e13;
    color: white;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr .6fr .6fr;
    gap: 70px;
}

.footer-main > div:first-child > p {
    max-width: 330px;
    margin: 17px 0 0;
    color: rgba(255, 255, 255, .38);
    font-size: 13px;
}

.footer-links {
    display: grid;
    align-content: start;
    gap: 8px;
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
}

.footer-links > span {
    margin-bottom: 9px;
    color: rgba(255, 255, 255, .28);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: var(--river-light);
}

.footer-links p {
    margin: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 58px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .27);
    font-size: 10px;
}

@media (max-width: 1080px) {
    .header-inner {
        gap: 18px;
    }

    .fish-nav {
        gap: 18px;
    }

    .hero-grid {
        grid-template-columns: 1fr .78fr;
        gap: 40px;
    }

    .hero-art,
    .hero-art > img {
        min-height: 530px;
    }

    .feature-grid {
        gap: 65px;
    }

    .privacy-grid {
        grid-template-columns: .25fr 1.1fr .8fr;
        gap: 45px;
    }

    .screens-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .screen-phone {
        height: 700px;
    }
}

@media (max-width: 820px) {
    :root {
        --shell: min(100% - 32px, 680px);
    }

    .fish-nav {
        display: none;
    }

    .fish-hero {
        padding-top: 125px;
    }

    .hero-grid,
    .feature-grid,
    .section-heading,
    .privacy-grid,
    .download-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 50px;
    }

    .hero-art {
        min-height: 560px;
    }

    .hero-art > img {
        min-height: 560px;
    }

    .intro-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-grid > div:nth-child(3) {
        border-left: 1px solid rgba(6, 19, 27, .13);
        border-top: 1px solid rgba(6, 19, 27, .13);
    }

    .intro-grid > div:nth-child(4) {
        border-top: 1px solid rgba(6, 19, 27, .13);
    }

    .feature-grid,
    .section-heading {
        gap: 40px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-large {
        min-height: 610px;
        grid-row: auto;
    }

    .privacy-number {
        font-size: 150px;
    }

    .download-grid {
        gap: 50px;
    }

    .download-identity {
        min-height: 360px;
    }
}

@media (max-width: 560px) {
    .header-inner {
        min-height: 72px;
    }

    .mobileapps-brand {
        font-size: 16px;
    }

    .mobileapps-mark {
        width: 34px;
        height: 34px;
    }

    .header-play {
        display: none;
    }

    .language-switch {
        margin-left: auto;
    }

    .fish-hero {
        min-height: 0;
        padding: 105px 0 60px;
    }

    .app-identity {
        margin-bottom: 28px;
    }

    .hero-copy h1 {
        font-size: 50px;
    }

    .hero-lead {
        font-size: 16px;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .hero-facts {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }

    .hero-art,
    .hero-art > img {
        min-height: 440px;
    }

    .hero-art {
        border-radius: 26px;
    }

    .hero-art-badge {
        right: 14px;
        bottom: 14px;
        left: 14px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .intro-grid > div {
        min-height: 100px;
        border-top: 1px solid rgba(6, 19, 27, .13);
        border-left: 1px solid rgba(6, 19, 27, .13);
    }

    .feature-section,
    .bento-section,
    .screens-section {
        padding: 85px 0;
    }

    .feature-copy h2,
    .section-heading h2,
    .privacy-copy h2,
    .download-copy h2 {
        font-size: 42px;
    }

    .phone-scene {
        min-height: 610px;
    }

    .phone-frame {
        width: 270px;
        height: 540px;
    }

    .score-card {
        right: 12px;
        bottom: 28px;
    }

    .bento-card {
        min-height: 390px;
        padding: 25px;
    }

    .bento-large {
        min-height: 540px;
    }

    .offline-section {
        min-height: 640px;
    }

    .offline-shade {
        background: rgba(3, 13, 18, .72);
    }

    .offline-content h2 {
        font-size: 46px;
    }

    .screens-row {
        display: flex;
        width: calc(100vw - 14px);
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .screens-row::-webkit-scrollbar {
        display: none;
    }

    .screen-card {
        width: min(78vw, 320px);
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .screen-phone {
        height: 590px;
    }

    .privacy-section,
    .download-section {
        padding: 85px 0;
    }

    .privacy-grid {
        gap: 30px;
    }

    .privacy-number {
        font-size: 130px;
    }

    .download-identity {
        min-height: 320px;
    }

    .download-identity img {
        width: 155px;
        height: 155px;
        border-radius: 34px;
    }

    .disclaimer-grid,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .disclaimer-grid {
        gap: 10px;
    }

    .footer-main {
        gap: 42px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
