:root {
    --bg: #f7f8fc;
    --surface: #ffffff;
    --surface-2: #f1f3f8;

    --text: #11131a;
    --muted: #6b7280;

    --border: #e5e7eb;

    --primary: #7c3aed;
    --primary-2: #ec4899;

    --shadow:
        0 15px 50px rgba(17, 24, 39, .08);

    --radius: 22px;

    --max-width: 1500px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 10px;
}


body {
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}


button,
input {
    font: inherit;
}


button,
a {
    -webkit-tap-highlight-color: transparent;
}


a {
    color: inherit;
    text-decoration: none;
}


::-webkit-scrollbar {
    width: 8px;
}


::-webkit-scrollbar-thumb {
    background: #cfd3dc;
    border-radius: 100px;
}


/* ================= HEADER ================= */

.site-header {
    width: 100%;
    min-height: 74px;

    display: flex;
    align-items: center;
    gap: 28px;

    padding: 12px clamp(16px, 4vw, 60px);

    position: sticky;
    top: 0;

    background: rgba(255,255,255,.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-bottom: 1px solid rgba(0,0,0,.06);

    z-index: 1000;
}


.brand {
    display: flex;
    align-items: center;
    gap: 8px;

    font-family: "Space Grotesk", sans-serif;
    font-size: 21px;
    font-weight: 700;

    white-space: nowrap;
}


.brand-star {
    font-size: 25px;

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #ec4899
        );

    -webkit-background-clip: text;
    color: transparent;
}


.main-nav {
    display: flex;
    align-items: center;
    gap: 5px;

    margin-left: auto;
}


.main-nav a {
    padding: 9px 12px;

    color: var(--muted);

    font-size: 14px;
    font-weight: 600;

    border-radius: 10px;

    transition: .2s;
}


.main-nav a:hover,
.main-nav a.active {
    color: var(--text);
    background: var(--surface-2);
}


.header-search {
    position: relative;
}


.search-box {
    width: min(290px, 25vw);

    height: 43px;

    display: flex;
    align-items: center;

    background: var(--surface);
    border: 1px solid var(--border);

    border-radius: 13px;

    padding: 0 8px 0 13px;

    transition: .2s;
}


.search-box:focus-within {
    border-color: var(--primary);
    box-shadow:
        0 0 0 4px rgba(124,58,237,.08);
}


.search-box > i {
    color: #8b92a1;
    margin-right: 9px;
}


.search-box input {
    flex: 1;

    min-width: 0;

    border: 0;
    outline: 0;

    background: transparent;

    color: var(--text);
}


.filter-button {
    width: 34px;
    height: 34px;

    border: 0;
    border-radius: 9px;

    background: var(--surface-2);

    cursor: pointer;

    color: #555b68;
}


.filter-button:hover {
    background: #e5e7eb;
}


/* ================= SUGGESTIONS ================= */

.search-suggestions {
    position: absolute;

    top: calc(100% + 8px);
    left: 0;

    width: 100%;

    background: white;

    border: 1px solid var(--border);
    border-radius: 14px;

    box-shadow: var(--shadow);

    overflow: hidden;

    display: none;

    z-index: 2000;
}


.search-suggestions.show {
    display: block;
}


.suggestion {
    padding: 12px 15px;

    cursor: pointer;

    display: flex;
    justify-content: space-between;
    gap: 10px;
}


.suggestion:hover {
    background: var(--surface-2);
}


.suggestion small {
    color: var(--muted);
}


/* ================= COLOR FILTER ================= */

.color-filter {
    position: absolute;

    top: calc(100% + 12px);
    right: 0;

    width: 290px;

    background: white;

    border: 1px solid var(--border);
    border-radius: 18px;

    padding: 17px;

    box-shadow: var(--shadow);

    display: none;

    z-index: 3000;
}


.color-filter.show {
    display: block;
}


.filter-header {
    display: flex;
    justify-content: space-between;

    margin-bottom: 17px;
}


.filter-header div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}


.filter-header small {
    color: var(--muted);
    font-size: 11px;
}


.filter-header button {
    width: 30px;
    height: 30px;

    border: 0;
    background: var(--surface-2);

    border-radius: 8px;

    cursor: pointer;
}


.color-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}


.color-options label {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 13px;

    cursor: pointer;
}


.color-options input {
    accent-color: var(--primary);
}


.color-dot {
    width: 14px;
    height: 14px;

    border-radius: 50%;

    border: 1px solid rgba(0,0,0,.12);
}


.red { background: #ef4444; }
.orange { background: #f97316; }
.yellow { background: #eab308; }
.green { background: #22c55e; }
.blue { background: #3b82f6; }
.purple { background: #8b5cf6; }
.pink { background: #ec4899; }
.black { background: #111; }
.white { background: #fff; }


.clear-filter {
    width: 100%;

    border: 0;

    padding: 10px;

    margin-top: 17px;

    border-radius: 10px;

    background: var(--surface-2);

    cursor: pointer;
}


/* ================= MOBILE MENU ================= */

.mobile-menu {
    display: none;

    width: 40px;
    height: 40px;

    border: 0;
    border-radius: 10px;

    background: var(--surface-2);

    cursor: pointer;
}


/* ================= HERO ================= */

.hero {
    max-width: var(--max-width);

    min-height: 650px;

    margin: auto;

    padding:
        clamp(70px, 10vw, 140px)
        clamp(20px, 5vw, 70px);

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(350px, .95fr);

    gap: clamp(40px, 7vw, 110px);

    align-items: center;
}


.hero-content {
    position: relative;
    z-index: 2;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 7px 12px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 100px;

    color: var(--muted);

    font-size: 12px;
    font-weight: 700;

    margin-bottom: 22px;
}
.eyebrow span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #ec4899
        );
}
.hero h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size:
        clamp(46px, 6.2vw, 88px);
    line-height: .98;
    letter-spacing: -4px;
    max-width: 850px;
}


.hero h1 span {
    background:
        linear-gradient(
            90deg,
            #7c3aed,
            #ec4899,
            #f97316
        );

    -webkit-background-clip: text;
    color: transparent;
}


.hero-content > p {
    max-width: 650px;

    margin-top: 28px;

    color: var(--muted);

    font-size:
        clamp(15px, 1.5vw, 18px);

    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 34px;
}

.primary-button,
.secondary-button {
    min-height: 48px;

    padding: 0 19px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border-radius: 12px;

    font-size: 14px;
    font-weight: 700;

    transition: .25s;
}


.primary-button {
    color: white;

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #ec4899
        );

    box-shadow:
        0 12px 30px rgba(124,58,237,.2);
}


.primary-button:hover {
    transform: translateY(-3px);
}


.secondary-button {
    background: white;

    border: 1px solid var(--border);
}


.secondary-button:hover {
    background: var(--surface-2);
}


.studio-credit {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-top: 27px;

    font-size: 12px;

    color: var(--muted);
}


.studio-credit a {
    font-weight: 700;
    color: var(--text);
}


.studio-credit i {
    font-size: 9px;
}


/* ================= HERO PREVIEW ================= */

.hero-preview {
    position: relative;

    min-height: 480px;

    display: grid;
    place-items: center;
}


.hero-gradient-card {
    width: min(100%, 520px);
    aspect-ratio: 1.1;

    position: relative;

    overflow: hidden;

    border-radius: 34px;

    background:
        radial-gradient(
            circle at 20% 15%,
            rgba(10, 98, 180, 0.9),
            transparent 25%
        ),
        radial-gradient(
            circle at 80% 70%,
            #ec4899,
            transparent 42%
        ),
        linear-gradient(
            135deg,
            #4c1d95,
            #7c3aed,
            #ec4899,
            #f97316
        );

    box-shadow:
        0 35px 90px rgba(124,58,237,.25);

    transform: rotate(4deg);

    animation: floating 6s ease-in-out infinite;
}


@keyframes floating {
    0%,100% {
        transform: rotate(4deg) translateY(0);
    }

    50% {
        transform: rotate(1deg) translateY(-12px);
    }
}


.hero-card-top {
    position: absolute;

    top: 25px;
    left: 28px;
    right: 28px;

    display: flex;
    align-items: center;
    gap: 7px;

    color: rgba(255,255,255,.9);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}


.hero-card-top i {
    font-size: 8px;
}


.hero-card-bottom {
    position: absolute;

    bottom: 25px;
    left: 28px;
    right: 28px;

    display: flex;
    gap: 8px;

    color: rgba(255,255,255,.7);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1px;
}


.hero-orb {
    position: absolute;

    border-radius: 50%;

    filter: blur(1px);
}


.orb-one {
    width: 180px;
    height: 180px;

    background: rgba(0,255,255,.42);

    top: 16%;
    left: 12%;
}


.orb-two {
    width: 260px;
    height: 260px;

    background: rgba(255,255,255,.14);

    right: -40px;
    bottom: 5%;
}


.orb-three {
    width: 120px;
    height: 120px;

    background: rgba(255,230,0,.25);

    right: 20%;
    top: 15%;
}


.preview-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(70px);
}


.glow-one {
    width: 200px;
    height: 200px;

    background: #7c3aed;

    top: 10%;
    left: 5%;

    opacity: .18;
}


.glow-two {
    width: 200px;
    height: 200px;

    background: #ec4899;

    right: 0;
    bottom: 5%;

    opacity: .2;
}


/* ================= SECTIONS ================= */

.intro-section,
.features-section,
.about-section {
    max-width: var(--max-width);

    margin: auto;

    padding:
        90px
        clamp(20px, 5vw, 70px);
}

.explore-document {
    height: 100vh;
    overflow: hidden;
}

.explore-page {
    height: calc(100vh - 74px);
    overflow-y: auto;
    max-width: none;
    padding: 0;
}

.explore-shell {
    max-width: var(--max-width);
    margin: auto;
    padding: 90px clamp(20px, 5vw, 70px) 120px;
}

.explore-shell h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(32px, 4vw, 55px);
    line-height: 1.05;
}

.explore-shell h1 span {
    color: var(--primary);
}


.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;

    gap: 40px;

    margin-bottom: 35px;
}


.section-label {
    display: block;

    margin-bottom: 10px;

    color: var(--primary);

    text-transform: uppercase;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}


.section-heading h2,
.about-content h2 {
    font-family: "Space Grotesk", sans-serif;

    font-size:
        clamp(32px, 4vw, 55px);

    line-height: 1.05;

    letter-spacing: -2px;
}


.section-heading h2 span {
    color: var(--primary);
}


.section-heading > p {
    max-width: 410px;

    color: var(--muted);

    line-height: 1.7;

    font-size: 14px;
}


/* ================= CATEGORY ================= */

.category-tabs {
    display: flex;
    gap: 8px;

    overflow-x: auto;

    padding-bottom: 7px;

    scrollbar-width: none;
}


.category-tabs::-webkit-scrollbar {
    display: none;
}


.category-tab {
    flex: 0 0 auto;

    border: 1px solid var(--border);

    background: white;

    padding: 10px 17px;

    border-radius: 100px;

    cursor: pointer;

    font-size: 13px;
    font-weight: 700;

    transition: .2s;
}


.category-tab:hover,
.category-tab.active {
    background: var(--text);
    color: white;

    border-color: var(--text);
}


.results-info {
    margin: 22px 0 15px;

    color: var(--muted);

    font-size: 12px;
}


/* ================= GRID ================= */

.gradient-grid {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fill,
            minmax(260px, 1fr)
        );

    gap: 17px;
}


.gradient-card {
    min-height: 245px;

    position: relative;

    border-radius: 22px;

    overflow: hidden;

    cursor: pointer;

    isolation: isolate;

    box-shadow:
        0 7px 30px rgba(0,0,0,.08);

    transition:
        transform .3s,
        box-shadow .3s;
}


.gradient-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 22px 50px rgba(0,0,0,.14);
}


.gradient-card::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.45),
            transparent 55%
        );

    z-index: -1;
}


.card-content {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 17px;
    color: white;
    transition: transform .8s ease;
}

.card-content:hover {
    transform: translateY(-5px);
}

.card-content h3 {
    font-size: 17px;
    margin-bottom: 5px;

    text-shadow:
        0 2px 8px rgba(0,0,0,.25);
}


.card-content span {
    display: inline-flex;

    padding: 5px 8px;

    border-radius: 7px;

    background: rgba(255,255,255,.17);

    backdrop-filter: blur(8px);

    font-size: 9px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.empty-state {
    display: none;

    text-align: center;

    padding: 80px 20px;
}


.empty-state.show {
    display: block;
}


.empty-icon {
    width: 65px;
    height: 65px;

    margin: auto auto 17px;

    display: grid;
    place-items: center;

    border-radius: 20px;

    background: white;

    color: var(--primary);

    box-shadow: var(--shadow);
}


.empty-state h3 {
    margin-bottom: 7px;
}


.empty-state p {
    color: var(--muted);
}


.empty-state button {
    margin-top: 20px;

    border: 0;

    background: var(--text);
    color: white;

    padding: 10px 17px;

    border-radius: 10px;

    cursor: pointer;
}


/* ================= FEATURES ================= */

.features-section {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 17px;
}


.feature-card {
    padding: 30px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 22px;
}


.feature-icon {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    margin-bottom: 18px;

    background: var(--surface-2);

    color: var(--primary);

    border-radius: 12px;
}


.feature-card h3 {
    margin-bottom: 8px;
}


.feature-card p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;
}


/* ================= ABOUT ================= */

.about-section {
    margin-top: 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;

    background:
        linear-gradient(
            135deg,
            #111827,
            #251343,
            #111827
        );
    color: white;
}


.about-content {
    max-width: 680px;
}


.about-content h2 {
    margin-bottom: 22px;
}


.about-content p {
    color: rgba(255,255,255,.68);

    line-height: 1.8;

    max-width: 600px;
}


.studio-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 25px;

    padding: 12px 17px;

    background: white;
    color: #111;

    border-radius: 11px;

    font-size: 13px;
    font-weight: 700;
}


.about-mark {
    width: 210px;
    height: 210px;

    flex: 0 0 auto;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.16),
            rgba(255,255,255,.04)
        );

    border: 1px solid rgba(255,255,255,.13);
}


.about-mark strong {
    font-family: "Space Grotesk";
    font-size: 50px;
}

.about-mark small {
    text-align: center;

    font-size: 17px;

    letter-spacing: 2px;

    opacity: .55;
}


/* ================= MODAL ================= */

.gradient-modal {
    position: fixed;

    inset: 0;

    display: none;

    z-index: 5000;
}


.gradient-modal.show {
    display: block;
}


.modal-backdrop {
    position: absolute;

    inset: 0;

    background: rgba(10,10,15,.65);

    backdrop-filter: blur(12px);
}


.gradient-detail {
    width: min(950px, calc(100% - 30px));

    max-height: 90vh;

    overflow: auto;

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%,-50%);

    display: grid;

    grid-template-columns:
        minmax(280px, .9fr)
        minmax(300px, 1.1fr);

    background: white;

    border-radius: 27px;

    box-shadow:
        0 30px 100px rgba(0,0,0,.3);
}


.modal-close {
    position: absolute;

    top: 14px;
    right: 14px;

    width: 38px;
    height: 38px;

    border: 0;

    border-radius: 50%;

    background: rgba(255,255,255,.75);

    backdrop-filter: blur(10px);

    cursor: pointer;

    z-index: 5;
}


.detail-preview {
    min-height: 430px;

    border-radius: 27px 0 0 27px;
}


.detail-content {
    padding: 40px;
}


.detail-category {
    display: inline-block;

    padding: 6px 9px;

    background: var(--surface-2);

    border-radius: 7px;

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;
}


.detail-content h2 {
    font-family: "Space Grotesk";

    font-size: 35px;

    margin: 13px 0 8px;
}


.detail-content > p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;

    margin-bottom: 25px;
}


/* ================= GRADIENT PARTS ================= */

.gradient-parts {
    display: flex;

    flex-direction: column;

    gap: 9px;

    margin-bottom: 20px;
}


.gradient-part {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding: 11px 13px;

    background: var(--surface-2);

    border-radius: 10px;

    font-family: monospace;

    font-size: 12px;
}


.gradient-part strong {
    color: var(--primary);
}


.gradient-part span {
    word-break: break-all;
}


.copy-gradient {
    width: 100%;

    min-height: 45px;

    border: 0;

    border-radius: 11px;

    background: var(--text);

    color: white;

    cursor: pointer;

    font-weight: 700;
}


.copy-status {
    display: block;

    text-align: center;

    margin-top: 8px;

    color: #16a34a;

    font-size: 11px;
}


/* ================= FOOTER ================= */

footer {
    max-width: var(--max-width);

    margin: auto;

    padding:
        60px
        clamp(20px, 5vw, 70px)
        30px;
}


.footer-brand > a {
    font-family: "Space Grotesk";

    font-size: 20px;

    font-weight: 700;
}


.footer-brand p {
    color: var(--muted);

    margin-top: 7px;

    font-size: 13px;
}


.footer-links {
    display: flex;
    gap: 20px;

    margin-top: 25px;

    flex-wrap: wrap;
}


.footer-links a {
    color: var(--muted);

    font-size: 12px;
}


.footer-links a:hover {
    color: var(--text);
}


.footer-bottom {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    margin-top: 40px;

    padding-top: 20px;

    border-top: 1px solid var(--border);

    color: #969dab;

    font-size: 11px;
}

/* ================= SEO GUIDE ================= */

.guide-page {
    max-width: 1120px;
    margin: 0 auto;
    padding: 76px clamp(20px, 5vw, 70px) 110px;
}

.guide-hero {
    max-width: 780px;
    margin-bottom: 52px;
}

.guide-hero h1,
.guide-section h2 {
    font-family: "Space Grotesk", sans-serif;
}

.guide-hero h1 {
    margin: 10px 0 18px;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -2px;
}

.guide-hero h1 span {
    color: var(--primary);
}

.guide-hero p,
.guide-section p,
.guide-section li {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.guide-section {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface);
}

.guide-section-wide {
    grid-column: 1 / -1;
}

.guide-section h2 {
    margin-bottom: 12px;
    font-size: 25px;
    line-height: 1.15;
}

.guide-section ul {
    display: grid;
    gap: 8px;
    margin: 14px 0 0 18px;
}

.guide-section code {
    padding: 2px 5px;
    border-radius: 4px;
    background: var(--surface-2);
    color: var(--text);
    font-family: Consolas, monospace;
    font-size: .9em;
}

@media (max-width: 700px) {
    .guide-grid {
        grid-template-columns: 1fr;
    }

    .guide-section-wide {
        grid-column: auto;
    }
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1150px) {

    .site-header {
        gap: 15px;
    }

    .main-nav a {
        padding: 8px;
    }

    .header-search {
        width: 230px;
    }

    .search-box {
        width: 100%;
    }

}


@media (max-width: 950px) {

    .mobile-menu {
        display: block;
    }

    .main-nav {
        position: absolute;

        top: calc(100% + 1px);
        left: 0;
        right: 0;

        padding: 15px;

        display: none;

        flex-direction: column;
        align-items: stretch;

        background: white;

        border-bottom: 1px solid var(--border);

        box-shadow: 0 15px 30px rgba(0,0,0,.06);
    }

    .main-nav.show {
        display: flex;
    }

    .main-nav a {
        padding: 13px;
    }

    .header-search {
        margin-left: auto;
        width: min(300px, 48vw);
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-preview {
        max-width: 600px;
        width: 100%;
        margin: auto;
    }

    .features-section {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 650px) {

    .site-header {
        min-height: 65px;
    }

    .brand {
        font-size: 17px;
    }

    .header-search {
        width: 45px;
    }

    .search-box {
        width: 45px;
        padding: 0 7px;
    }

    .search-box > i {
        display: none;
    }

    .search-box input {
        display: none;
    }

    .filter-button {
        width: 34px;
    }

    .search-suggestions {
        width: 260px;
        right: 0;
        left: auto;
    }

    .color-filter {
        right: -10px;
    }

    .hero {
        padding-top: 65px;
        min-height: auto;
    }

    .hero h1 {
        letter-spacing: -2.5px;
    }

    .hero-preview {
        min-height: 350px;
    }

    .hero-gradient-card {
        border-radius: 25px;
    }

    .section-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .intro-section,
    .features-section,
    .about-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .explore-page {
        height: calc(100vh - 65px);
    }

    .explore-shell {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .gradient-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
        gap: 10px;
    }

    .gradient-card {
        min-height: 180px;
        border-radius: 16px;
    }

    .card-content {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .card-content h3 {
        font-size: 13px;
    }

    .gradient-detail {
        grid-template-columns: 1fr;

        max-height: 94vh;
    }

    .detail-preview {
        min-height: 250px;

        border-radius:
            27px
            27px
            0
            0;
    }

    .detail-content {
        padding: 25px;
    }

    .about-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-mark {
        width: 150px;
        height: 150px;
    }

    .about-mark strong {
        font-size: 38px;
    }

    .footer-bottom {
        flex-direction: column;
    }

}


@media (max-width: 400px) {

    .gradient-grid {
        grid-template-columns: 1fr;
    }

    .gradient-card {
        min-height: 210px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

}


.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}