:root {
    --blue: #087cff;
    --blue-dark: #0058d9;
    --yellow: #ffcf21;
    --orange: #ff7800;
    --green: #08bd63;
    --purple: #7546ff;
    --pink: #ff3189;
    --dark: #172033;
    --text: #4d5668;
    --muted: #7d8798;
    --surface: #f7f9fc;
    --white: #fff;
    --line: #e8edf5;
    --radius: 24px;
    --shadow: 0 15px 45px rgba(23, 32, 51, .09);
    --container: 1240px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    color: var(--dark);
    background: var(--surface);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    color: inherit;
    font: inherit;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 10px 16px;
    color: #fff;
    background: var(--dark);
    border-radius: 10px;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
}

.site-header .navbar {
    transition: opacity .3s ease, transform .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled .navbar {
    opacity: .52;
    transform: translateY(-5px);
    box-shadow: 0 8px 28px rgba(23, 32, 51, .08);
}

.site-header.is-scrolled .navbar:hover,
.site-header.is-scrolled .navbar:focus-within {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 12px 42px rgba(23, 32, 51, .16);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(92%, var(--container));
    min-height: 72px;
    margin: 20px auto;
    padding: 10px 12px 10px 22px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 999px;
    box-shadow: 0 10px 40px rgba(23, 32, 51, .11);
    backdrop-filter: blur(16px);
}

.logo {
    display: block;
    flex: 0 0 auto;
}

.logo img {
    width: auto;
    height: 43px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.5vw, 36px);
}

.nav-links a {
    color: var(--text);
    font-size: 14px;
    font-weight: 750;
    transition: color .2s;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--blue);
}

.nav-button,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 23px;
    border: 0;
    border-radius: 999px;
    font-weight: 850;
    transition: transform .2s, background .2s, box-shadow .2s;
}

.nav-button,
.button-primary {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 12px 30px rgba(22, 119, 255, .24);
}

.nav-button:hover,
.button-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}

.button-light {
    background: #fff;
    box-shadow: var(--shadow);
}

.button-light:hover {
    transform: translateY(-2px);
}

.button-dark {
    color: #fff;
    background: var(--dark);
}

.button-dark:hover {
    background: #090d16;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--dark);
    border-radius: 5px;
    transform-origin: center;
    transition: transform .32s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(400px, .8fr);
    align-items: center;
    min-height: 760px;
    padding: 135px max(4%, calc((100% - var(--container)) / 2)) 80px;
    overflow: hidden;
    background:
        radial-gradient(circle at 93% 15%, rgba(255, 49, 137, .25), transparent 22%),
        radial-gradient(circle at 62% 95%, rgba(255, 207, 33, .68), transparent 30%),
        linear-gradient(115deg, #dff0ff 0%, #f7fbff 49%, #fff0b9 100%);
}

.hero::before {
    content: "";
    position: absolute;
    top: 28%;
    left: -95px;
    width: 190px;
    height: 190px;
    background: rgba(22, 119, 255, .08);
    border-radius: 50%;
}

.hero-copy {
    position: relative;
    z-index: 2;
    padding-right: 40px;
}

.eyebrow {
    margin-bottom: 10px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.eyebrow-green {
    color: var(--green);
}

.eyebrow-orange {
    color: var(--orange);
}

.eyebrow-purple {
    color: var(--purple);
}

.hero h1 {
    max-width: 720px;
    margin-bottom: 26px;
    font-size: clamp(47px, 6vw, 82px);
    font-weight: 950;
    letter-spacing: -4px;
    line-height: .98;
}

.hero h1 span,
.section-heading h2 span,
.about-section h2 span,
.contact-section h2 span {
    color: var(--blue);
}

.hero-lead {
    max-width: 600px;
    margin-bottom: 10px;
    color: var(--text);
    font-size: 18px;
}

.name-day {
    min-height: 25px;
    margin-bottom: 25px;
    color: var(--text);
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-visual {
    position: relative;
    z-index: 1;
    justify-self: end;
    width: min(100%, 520px);
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: -18px 18px 18px -18px;
    z-index: -1;
    background: var(--yellow);
    border-radius: 44% 56% 62% 38% / 42% 38% 62% 58%;
    transform: rotate(-3deg);
    animation: shape-wobble 7s ease-in-out infinite alternate;
}

.hero-visual img {
    width: 100%;
    aspect-ratio: 1 / .9;
    object-fit: cover;
    border: 10px solid #fff;
    border-radius: 54% 46% 40% 60% / 42% 53% 47% 58%;
    box-shadow: 0 28px 75px rgba(23, 32, 51, .2);
    opacity: 1;
    transition: opacity .85s ease;
}

#hero-image {
    position: relative;
    z-index: 1;
}

#hero-image-next {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0;
}

.hero-visual.is-fading #hero-image {
    opacity: 0;
}

.hero-visual.is-fading #hero-image-next {
    opacity: 1;
}

.hero-dot {
    position: absolute;
    display: block;
    border-radius: 50%;
}

.hero-dot-one {
    top: -35px;
    right: -24px;
    width: 72px;
    height: 72px;
    background: var(--pink);
    animation: dot-drift 3.5s ease-in-out infinite alternate;
}

.hero-dot-two {
    right: 3%;
    bottom: -38px;
    width: 48px;
    height: 48px;
    background: var(--green);
    animation: dot-drift 4.5s ease-in-out infinite alternate-reverse;
}

@keyframes shape-wobble {
    from { transform: rotate(-3deg) scale(1); }
    to { transform: rotate(2deg) scale(1.035); }
}

@keyframes dot-drift {
    from { transform: translate(0, 0); }
    to { transform: translate(8px, -10px); }
}

.notice-section,
.categories,
.product-section,
.partners,
.about-section,
.contact-section {
    width: min(92%, var(--container));
    margin: 0 auto;
    padding: 90px 0;
}

.notice-section {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 20px;
    padding-bottom: 25px;
}

.notice {
    padding: 28px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.notice h2 {
    margin-bottom: 10px;
    font-size: 23px;
}

.notice p {
    color: var(--text);
    font-size: 14px;
}

.notice-blue {
    border-top: 5px solid var(--blue);
}

.notice-green {
    border-top: 5px solid var(--green);
}

.notice-green strong {
    color: var(--green);
}

.notice-green .power-note {
    color: var(--blue);
}

.section-heading {
    margin-bottom: 42px;
    text-align: center;
}

.section-heading-left {
    text-align: left;
}

.section-heading h2,
.about-section h2,
.contact-section h2 {
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 930;
    letter-spacing: -2px;
    line-height: 1.05;
}

.categories {
    padding-bottom: 55px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.category-card {
    position: relative;
    display: flex;
    min-height: 180px;
    padding: 24px;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform .25s, box-shadow .25s;
}

.category-card::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -50px;
    width: 135px;
    height: 135px;
    background: rgba(255, 255, 255, .34);
    border-radius: 50%;
}

.category-card:hover {
    box-shadow: 0 23px 50px rgba(23, 32, 51, .14);
    transform: translateY(-6px);
}

.category-card b {
    position: absolute;
    top: 20px;
    right: 22px;
    font-size: 23px;
}

.category-icon {
    font-size: 36px;
}

.category-card h3 {
    font-size: 20px;
}

.category-card p {
    color: var(--text);
    font-size: 13px;
}

.category-small h3,
.category-small b {
    color: var(--blue);
}

.category-medium h3,
.category-medium b {
    color: var(--orange);
}

.category-large h3,
.category-large b {
    color: var(--blue);
}

.category-small {
    background: linear-gradient(145deg, #d9eeff, #bfe0ff);
}

.category-medium {
    background: linear-gradient(145deg, #fff0d2, #ffdba2);
}

.category-large {
    background: linear-gradient(145deg, #eee7ff, #d9ccff);
}

.category-party {
    background: linear-gradient(145deg, #ffe1f0, #ffc3df);
}

.product-section {
    padding-top: 75px;
}

.new-section {
    padding-top: 80px;
}

.section-alt,
.party-section {
    width: 100%;
    max-width: none;
    padding-right: max(4%, calc((100% - var(--container)) / 2));
    padding-left: max(4%, calc((100% - var(--container)) / 2));
}

.section-alt {
    background: #fff;
}

.party-section {
    background: linear-gradient(135deg, #fff7d8, #fff0f7);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.product-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(231, 236, 244, .8);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform .25s, box-shadow .25s;
}

.product-card:hover {
    box-shadow: 0 25px 55px rgba(23, 32, 51, .15);
    transform: translateY(-6px);
}

.product-gallery {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e9edf3;
}

.gallery-cover {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.product-card:hover .gallery-cover img {
    transform: scale(1.045);
}

.gallery-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 17, 29, .3), transparent 40%);
    pointer-events: none;
}

.gallery-extra {
    display: none;
}

.product-content {
    display: flex;
    min-height: 0;
    padding: 18px;
    flex: 1;
    flex-direction: column;
}

.product-content h3 {
    margin-bottom: 12px;
    font-size: 21px;
    line-height: 1.2;
}

.product-info {
    margin: 0 0 14px;
    padding: 0;
    color: var(--text);
    list-style: none;
}

.product-info li {
    position: relative;
    padding-left: 18px;
    font-size: 13px;
}

.product-info li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 900;
}

.product-facts {
    display: flex;
    align-items: stretch;
    gap: 7px;
    margin-bottom: 13px;
    flex-wrap: wrap;
}

.product-facts span {
    display: inline-flex;
    min-height: 47px;
    padding: 7px 11px;
    color: #0758b5;
    background: #e5f2ff;
    border: 1px solid #c9e4ff;
    border-radius: 14px;
    flex-direction: column;
    justify-content: center;
    font-size: 12px;
    font-weight: 850;
    line-height: 1.1;
}

.product-facts span:nth-child(2) {
    color: #8b4a00;
    background: #fff1d5;
    border-color: #ffdfa2;
}

.product-facts span:nth-child(3) {
    color: #08723f;
    background: #ddf8ea;
    border-color: #bdebd3;
}

.product-facts .product-fact-slide {
    color: #5b31cf;
    background: #eee8ff;
    border-color: #d8cbff;
}

.product-facts small {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .3px;
    text-transform: uppercase;
}

.product-note {
    margin: -2px 0 13px;
    color: var(--orange);
    font-size: 11px;
    font-weight: 800;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--line);
}

.product-bottom strong {
    color: #0b3d91;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.2;
}

#kis .section-heading h2,
#kis .section-heading h2 span,
#kis .product-content h3 {
    color: var(--blue);
}

#kozepes .section-heading h2,
#kozepes .section-heading h2 span,
#kozepes .product-content h3 {
    color: var(--orange);
}

#nagy .section-heading h2,
#nagy .section-heading h2 span,
#nagy .product-content h3 {
    color: var(--blue);
}

#kis .product-facts span,
#nagy .product-facts span {
    color: #0758b5;
    background: #e5f2ff;
    border-color: #c9e4ff;
}

#kozepes .product-facts span {
    color: #8b4a00;
    background: #fff0d2;
    border-color: #ffd796;
}

#kis .product-facts small,
#nagy .product-facts small {
    color: #3978b9;
}

#kozepes .product-facts small {
    color: #a36119;
}

.partners {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.partners img {
    width: 100%;
    height: 420px;
    padding: 12px;
    object-fit: contain;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-section {
    position: relative;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    align-items: start;
    gap: 28px;
}

.about-section::before,
.about-section::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(2px);
}

.about-section::before {
    top: 4%;
    left: -90px;
    width: 190px;
    height: 190px;
    background: rgba(255, 207, 33, .35);
}

.about-section::after {
    right: -70px;
    bottom: 6%;
    width: 150px;
    height: 150px;
    background: rgba(117, 70, 255, .14);
}

.about-copy,
.why-card {
    padding: clamp(24px, 3vw, 40px);
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(23, 32, 51, .11);
}

.about-copy {
    position: relative;
    overflow: hidden;
    border-top: 7px solid var(--blue);
    background:
        radial-gradient(circle at 100% 0, rgba(8, 124, 255, .1), transparent 28%),
        #fff;
}

.about-copy::after {
    content: "“";
    position: absolute;
    top: -38px;
    right: 20px;
    color: rgba(8, 124, 255, .09);
    font-family: Georgia, serif;
    font-size: 180px;
    font-weight: 900;
    line-height: 1;
}

.about-copy h2,
.why-card h2 {
    margin-bottom: 24px;
}

.about-copy > p:last-child {
    color: var(--text);
    font-size: 15px;
    line-height: 1.72;
}

.about-copy strong {
    color: var(--blue);
}

.why-card {
    position: sticky;
    top: 25px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(117, 70, 255, .14);
    background: linear-gradient(145deg, #fff, #f7f3ff);
}

.why-card > img {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    clip-path: ellipse(78% 72% at 50% 28%);
}

.why-card > div {
    padding: 18px clamp(24px, 3vw, 40px) clamp(28px, 3vw, 40px);
}

.why-card ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 12px;
    color: var(--text);
    list-style: none;
}

.why-card li {
    position: relative;
    padding-left: 26px;
    padding: 9px 10px 9px 34px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(117, 70, 255, .1);
    border-radius: 13px;
    font-size: 12px;
}

.why-card li::before {
    content: "✓";
    position: absolute;
    top: 9px;
    left: 9px;
    display: grid;
    width: 19px;
    height: 19px;
    color: #fff;
    background: var(--green);
    border-radius: 50%;
    place-items: center;
    font-size: 11px;
    font-weight: 900;
}

.callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 65px max(4%, calc((100% - var(--container)) / 2));
    color: #fff;
    background:
        radial-gradient(circle at 15% 130%, rgba(255, 212, 59, .5), transparent 30%),
        linear-gradient(135deg, var(--blue), var(--purple));
}

.callout .eyebrow {
    color: var(--yellow);
}

.callout h2 {
    font-size: clamp(34px, 4vw, 55px);
    letter-spacing: -2px;
    line-height: 1;
}

.contact-section {
    width: 100%;
    max-width: none;
    padding: 95px max(4%, calc((100% - var(--container)) / 2));
    color: var(--dark);
    background:
        radial-gradient(circle at 10% 0, rgba(8, 124, 255, .18), transparent 30%),
        radial-gradient(circle at 92% 100%, rgba(255, 49, 137, .14), transparent 28%),
        linear-gradient(135deg, #edf8ff, #f8fbff 52%, #fff5d8);
}

.contact-section .section-heading h2 span {
    color: var(--blue);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.contact-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
    min-height: 145px;
    padding: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(8, 124, 255, .1);
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(23, 32, 51, .09);
    backdrop-filter: blur(14px);
    transition: transform .25s, background .25s, border-color .25s;
}

.contact-card::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -52px;
    width: 130px;
    height: 130px;
    background: rgba(8, 124, 255, .08);
    border-radius: 45% 55% 60% 40%;
    transform: rotate(18deg);
    transition: transform .3s ease;
}

.contact-card:nth-child(2)::after {
    background: rgba(8, 189, 99, .09);
}

.contact-card:nth-child(3)::after {
    background: rgba(255, 49, 137, .09);
}

.contact-card:nth-child(1) {
    border-top: 4px solid var(--yellow);
}

.contact-card:nth-child(2) {
    border-top: 4px solid var(--green);
}

.contact-card:nth-child(3) {
    border-top: 4px solid var(--pink);
}

.contact-card:hover {
    background: #fff;
    border-color: rgba(8, 124, 255, .22);
    transform: translateY(-4px);
}

.contact-card:hover::after {
    transform: rotate(35deg) scale(1.15);
}

.contact-card > img {
    position: relative;
    z-index: 1;
    width: 54px;
    height: 54px;
    padding: 11px;
    object-fit: contain;
    background: #fff;
    border-radius: 17px;
}

.contact-card h3 {
    margin-bottom: 3px;
    color: var(--dark);
    font-size: 17px;
}

.contact-card p {
    position: relative;
    z-index: 1;
    color: var(--text);
    font-size: 13px;
    overflow-wrap: anywhere;
}

.site-footer {
    padding: 38px max(4%, calc((100% - var(--container)) / 2));
    color: #fff;
    background: var(--dark);
}

.footer-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px 35px;
}

.footer-inner > img {
    width: auto;
    height: 45px;
    padding: 5px;
    background: #fff;
    border-radius: 9px;
}

.footer-inner nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #bec8d8;
    font-size: 13px;
}

.footer-inner nav a:hover {
    color: #fff;
}

.footer-inner > p {
    color: #8793a7;
    font-size: 12px;
}

.creator {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    color: #bec8d8;
    font-size: 12px;
}

.creator img {
    width: auto;
    height: 24px;
}

.lg-backdrop {
    background-color: rgba(10, 13, 20, .94);
}

@media (max-width: 1050px) {
    .nav-links {
        gap: 18px;
    }

    .hero {
        grid-template-columns: 1fr .72fr;
        min-height: 700px;
    }

    .hero h1 {
        font-size: clamp(46px, 7vw, 68px);
    }

    .category-grid,
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 850px) {
    .navbar {
        position: relative;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
        margin-right: 7px;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        left: 0;
        display: flex;
        padding: 18px;
        flex-direction: column;
        align-items: stretch;
        background: rgba(255, 255, 255, .98);
        border-radius: 24px;
        box-shadow: var(--shadow);
        text-align: center;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px) scale(.98);
        transform-origin: top;
        transition: opacity .28s ease, transform .28s ease, visibility .28s;
    }

    .nav-links.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .nav-links a {
        padding: 7px;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 55px;
        padding-top: 150px;
        text-align: center;
    }

    .hero-copy {
        padding-right: 0;
    }

    .hero h1,
    .hero-lead {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        justify-self: center;
        width: min(83%, 500px);
    }

    .notice-section,
    .about-section {
        grid-template-columns: 1fr;
    }

    .why-card {
        position: static;
    }

    .partners img {
        height: 320px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-inner nav {
        justify-content: flex-end;
    }
}

@media (max-width: 620px) {
    html {
        scroll-padding-top: 85px;
    }

    .navbar {
        min-height: 62px;
        margin-top: 10px;
        padding: 7px 8px 7px 15px;
    }

    .logo img {
        height: 37px;
    }

    .nav-button {
        display: none;
    }

    .menu-toggle {
        margin-right: 0;
    }

    .hero {
        gap: 50px;
        min-height: auto;
        padding-top: 125px;
        padding-bottom: 75px;
    }

    .hero h1 {
        font-size: clamp(42px, 13vw, 56px);
        letter-spacing: -3px;
    }

    .hero-lead {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-dot-one {
        right: -10px;
        width: 50px;
        height: 50px;
    }

    .notice-section,
    .categories,
    .product-section,
    .partners,
    .about-section,
    .contact-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .notice-section {
        padding-bottom: 10px;
    }

    .category-grid,
    .product-grid,
    .partners {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 145px;
    }

    .product-content {
        min-height: 0;
    }

    .product-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-bottom a {
        width: 100%;
        text-align: center;
    }

    .partners img {
        height: auto;
        max-height: 420px;
    }

    .about-copy,
    .why-card > div {
        padding: 24px;
    }

    .about-section::after {
        right: 0;
    }

    .why-card ul {
        grid-template-columns: 1fr;
    }

    .callout {
        align-items: stretch;
        padding-top: 55px;
        padding-bottom: 55px;
        flex-direction: column;
        text-align: center;
    }

    .contact-card {
        align-items: flex-start;
        padding: 21px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footer-inner nav {
        justify-content: center;
    }

    .creator {
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
