@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700;800;900&display=swap");
:root {
    font-family: "Noto Sans", system-ui, sans-serif;
    color: #16324a;
    background: #f5f0e6;
    font-synthesis: none;
    --navy: #16324a;
    --blue: #315d6d;
    --gray: #6f8d96;
    --cream: #f5f0e6;
    --orange: #e9823c;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    line-height: 1.75;
}
html {
    scroll-behavior: smooth;
}
html[data-handoff] body {
    visibility: hidden;
}
a {
    color: inherit;
    text-underline-offset: 5px;
}
a:hover {
    color: #a44810;
}
a:focus-visible,
summary:focus-visible {
    outline: 3px solid #315d6d;
    outline-offset: 6px;
}
img {
    max-width: 100%;
}
h1,
h2,
h3,
p {
    margin-top: 0;
}
h1,
h2,
h3 {
    line-height: 1.16;
    letter-spacing: -0.045em;
}
h1 {
    font-weight: 900;
    font-size: clamp(2.8rem, 5.3vw, 5.5rem);
    margin-bottom: 26px;
}
h1 em {
    font-style: normal;
    color: #315d6d;
}
h2 {
    font-size: clamp(1.9rem, 3vw, 3rem);
    font-weight: 800;
    margin-bottom: 24px;
}
h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 16px;
}
p {
    margin-bottom: 22px;
}
main,
.site-header,
.site-footer {
    max-width: 1240px;
    margin: auto;
    padding-left: 40px;
    padding-right: 40px;
}
.site-header {
    min-height: 118px;
    display: flex;
    align-items: center;
    gap: 32px;
    border-bottom: 1px solid #16324a24;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 900;
    font-size: 19px;
    line-height: 1.08;
    letter-spacing: -0.05em;
    flex-shrink: 0;
}
.brand img {
    border-radius: 11px;
}
.site-header nav {
    display: flex;
    gap: 20px;
    flex: 1;
    justify-content: center;
}
.site-header nav a {
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}
.site-header nav [aria-current] {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: #e9823c;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    padding: 17px 27px;
    border-radius: 12px;
    background: var(--orange);
    color: #16324a;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 3px 0 #16324a;
    transition: transform 0.15s;
}
.button:hover {
    color: #16324a;
    background: #f59655;
    transform: translateY(-2px);
}
.button-small {
    padding: 12px 17px;
    gap: 13px;
    font-size: 13px;
    white-space: nowrap;
}
.eyebrow {
    color: #315d6d;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 19px;
}
.hero {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 76px;
    align-items: center;
    padding-top: 72px;
    padding-bottom: 78px;
}
.intro {
    font-size: 18px;
    line-height: 1.8;
    max-width: 590px;
    color: #315d6d;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 23px;
    margin-top: 32px;
    margin-bottom: 27px;
}
.hero-actions > span {
    font-size: 11px;
    line-height: 1.7;
    color: #315d6d;
}
.store-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
}
.store-links a {
    font-size: 11px;
    font-weight: 700;
}
.puzzle-example {
    margin: 0;
    padding: 26px;
    border: 1px solid #16324a;
    background: #fffcf5;
    border-radius: 24px;
    box-shadow: 9px 9px 0 #16324a;
    transform: rotate(2deg);
}
.puzzle-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 23px;
}
.puzzle-top .eyebrow {
    font-size: 9px;
    margin: 0;
    max-width: 125px;
}
.theme-tag {
    background: #16324a;
    color: #fff9ef;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 12px;
    white-space: nowrap;
}
.example-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    aspect-ratio: 3/4;
    max-width: 282px;
    margin: auto;
    gap: 8px;
    padding: 4px;
}
.tile {
    position: relative;
    border: 1px solid #16324a26;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 900;
    isolation: isolate;
}
.tile.apple {
    background: #f7e1cc;
}
.tile.cherry {
    background: #dfe9e8;
}
.blank-dot {
    color: #16324a80;
    font-size: 24px;
}
.puzzle-paths {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.puzzle-paths path {
    fill: none;
    stroke-width: 21;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.28;
}
.apple-path {
    stroke: #d36520;
}
.cherry-path {
    stroke: #315d6d;
}
.example-answers {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 24px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}
.example-answers b {
    color: #315d6d;
    margin-left: 7px;
}
.puzzle-example figcaption {
    font-size: 10px;
    color: #315d6d;
    text-align: center;
    margin: 16px auto 0;
    max-width: 260px;
    line-height: 1.7;
}
.section {
    padding: 58px 0;
    border-top: 1px solid #16324a25;
}
.section-heading {
    max-width: 690px;
    margin-bottom: 34px;
}
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.two-columns p {
    font-size: 16px;
}
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.cards article {
    display: flex;
    flex-direction: column;
    border: 1px solid #16324a2c;
    border-radius: 17px;
    padding: 27px;
    background: #fffcf5;
}
.card-number {
    font-size: 10px;
    color: #315d6d;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 27px;
}
.cards p {
    font-size: 14px;
    color: #315d6d;
}
.cards a {
    margin-top: auto;
    font-size: 12px;
    font-weight: 800;
}
.play-banner {
    display: flex;
    align-items: center;
    gap: 70px;
    background: #16324a;
    color: #f5f0e6;
    padding: 44px;
    border-radius: 22px;
    margin: 15px 0 65px;
}
.play-banner > div {
    flex: 1;
}
.play-banner h2 {
    font-size: 32px;
}
.play-banner p {
    font-size: 14px;
    margin-bottom: 0;
    max-width: 700px;
}
.play-banner .eyebrow {
    color: #e9823c;
    margin-bottom: 14px;
}
.play-banner .button {
    white-space: nowrap;
    box-shadow: none;
}
.page-intro {
    padding: 65px 0 48px;
    max-width: 840px;
}
.page-intro h1 {
    font-size: clamp(2.6rem, 5vw, 4.7rem);
}
.article {
    max-width: 800px;
}
.article h2 {
    font-size: 27px;
    margin-top: 46px;
}
.article h2:first-child {
    margin-top: 0;
}
.article .button {
    margin: 10px 0 20px;
}
.steps {
    padding-left: 23px;
}
.steps li {
    padding-left: 9px;
    margin-bottom: 20px;
}
.steps li::marker {
    color: #a44810;
    font-weight: 800;
}
.steps strong {
    display: block;
}
.section .puzzle-example {
    max-width: 400px;
    align-self: start;
    justify-self: center;
    width: 100%;
}
.faq-list {
    max-width: 850px;
    padding-top: 0;
}
.faq-list details {
    border-bottom: 1px solid #16324a25;
    padding: 22px 0;
}
.faq-list summary {
    cursor: pointer;
    font-size: 18px;
    font-weight: 750;
    line-height: 1.6;
}
.faq-list p {
    margin: 18px 0 0;
    max-width: 770px;
    color: #315d6d;
}
.legal-page {
    max-width: 820px;
    padding: 60px 0;
}
.legal-page h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
}
.legal-page h2 {
    font-size: 24px;
    margin-top: 38px;
}
.legal-page .updated {
    font-size: 13px;
    color: #315d6d;
}
.legal-page li {
    margin-bottom: 12px;
}
.legal-page a {
    overflow-wrap: anywhere;
}
.site-footer {
    border-top: 1px solid #16324a30;
    padding-top: 47px;
    padding-bottom: 45px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.1fr;
    gap: 50px;
}
.footer-brand {
    font-size: 22px;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: -0.06em;
}
.site-footer p {
    font-size: 11px;
    color: #315d6d;
    margin-top: 12px;
}
.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    align-content: start;
    gap: 10px 22px;
}
.site-footer nav a {
    font-size: 11px;
    font-weight: 700;
}
.site-footer .store-links {
    margin-top: 28px;
    flex-direction: column;
    gap: 8px;
}
.skip-link {
    position: absolute;
    left: 20px;
    top: -100px;
    z-index: 10;
    background: #fff;
    padding: 12px;
}
.skip-link:focus {
    top: 15px;
}
.text-button {
    display: inline-block;
    margin: 15px;
}
@media (min-width: 1300px) {
    .hero .puzzle-example {
        margin-right: 25px;
    }
    .hero {
        gap: 90px;
    }
}
@media (max-width: 1100px) {
    .site-header {
        gap: 20px;
        flex-wrap: wrap;
        padding-top: 22px;
        padding-bottom: 18px;
    }
    .site-header nav {
        order: 3;
        flex-basis: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 12px 23px;
    }
    .site-header > .button {
        margin-left: auto;
    }
    .hero {
        gap: 38px;
    }
    .hero h1 {
        font-size: 4rem;
    }
    .hero-actions {
        gap: 13px;
    }
    .hero-actions > span {
        font-size: 10px;
    }
    .puzzle-example {
        padding: 20px;
    }
}
@media (max-width: 700px) {
    main,
    .site-header,
    .site-footer {
        padding-left: 22px;
        padding-right: 22px;
    }
    .site-header nav {
        gap: 9px 19px;
    }
    .site-header nav a {
        font-size: 11px;
    }
    .hero {
        grid-template-columns: 1fr;
        padding: 44px 0 54px;
        gap: 45px;
    }
    .hero h1 {
        font-size: clamp(2.8rem, 10.5vw, 4rem);
    }
    .hero .intro {
        font-size: 17px;
    }
    .hero .puzzle-example {
        max-width: 340px;
        justify-self: center;
        width: calc(100% - 16px);
    }
    .hero-actions {
        gap: 22px;
    }
    .puzzle-example {
        transform: rotate(1deg);
    }
    .tile {
        font-size: 27px;
    }
    .two-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .cards article {
        padding: 24px;
    }
    .card-number {
        margin-bottom: 18px;
    }
    .section {
        padding: 40px 0;
    }
    .play-banner {
        display: block;
        padding: 29px;
        margin-bottom: 40px;
    }
    .play-banner .button {
        margin-top: 26px;
    }
    .play-banner h2 {
        font-size: 28px;
    }
    .page-intro {
        padding: 43px 0 32px;
    }
    .site-footer {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .site-footer nav {
        gap: 12px 22px;
    }
    .store-links {
        gap: 10px 18px;
    }
    .legal-page {
        padding-top: 40px;
    }
    .faq-list {
        padding-top: 0;
    }
    .faq-list summary {
        font-size: 16px;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .button {
        transition: none;
    }
}
@media print {
    .site-header,
    .site-footer,
    .button,
    .store-links {
        display: none;
    }
    body {
        background: white;
        color: black;
    }
    details > p {
        display: block;
    }
    .puzzle-example {
        box-shadow: none;
        transform: none;
    }
}
