/* Font */
@font-face {
    font-family: 'Instrument Serif';
    src: url('Instrument_Serif/InstrumentSerif-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

body {
    font-family: 'Instrument Serif', Georgia, serif;
    background-color: #EDE8E3;
    color: #1a1a1a;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Logo */
.logo {
    position: fixed;
    top: clamp(15px, 2vw, 30px);
    left: clamp(15px, 2vw, 30px);
    z-index: 1000;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 1;
}

.logo img {
    width: clamp(80px, 12vw, 140px);
    height: auto;
    object-fit: contain;
}

/* Slide Counter */
.slide-counter {
    position: fixed;
    bottom: clamp(20px, 3vw, 40px);
    right: clamp(20px, 3vw, 40px);
    font-size: clamp(0.85rem, 1.2vw, 1.1rem);
    color: #888;
    z-index: 1000;
    letter-spacing: 0.1em;
    font-variant-numeric: tabular-nums;
}

/* Slide Container */
.slide-container {
    position: relative;
    z-index: 2;
    padding-bottom: 100vh;
}

/* Slides */
.slide {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.content {
    max-width: 1100px;
    width: 85%;
    text-align: center;
    padding: clamp(30px, 5vw, 60px);
}

/* Headings */
h1 {
    font-size: clamp(2.2rem, 4.5vw, 4.5rem);
    font-weight: normal;
    margin-bottom: clamp(30px, 4vw, 50px);
    letter-spacing: -0.03em;
    color: #1a1a1a;
}

.title-main {
    font-size: clamp(4.5rem, 14vw, 14rem);
    margin-bottom: clamp(15px, 2.5vw, 30px);
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, #1a1a1a 0%, #3a3a3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: clamp(1.1rem, 2vw, 2rem);
    color: #666;
    letter-spacing: 0.02em;
}

/* Meet Helios transition */
.meet-helios {
    font-size: clamp(3rem, 6vw, 6rem);
    color: #1a1a1a;
    letter-spacing: -0.03em;
    font-style: italic;
    margin-bottom: clamp(50px, 7vw, 80px);
    padding-bottom: clamp(40px, 5vw, 60px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    white-space: nowrap;
}

/* Hero intro */
.hero-intro {
    font-size: clamp(1.1rem, 1.6vw, 1.6rem);
    color: #666;
    margin-bottom: clamp(15px, 2vw, 25px);
    letter-spacing: 0.02em;
    font-style: italic;
}

/* Hero text (slide 2) */
.hero-text {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.4;
    color: #1a1a1a;
    max-width: 900px;
    margin: 0 auto;
    letter-spacing: -0.02em;
}

/* Intro text */
.intro-text, .solution-text {
    font-size: clamp(1.25rem, 1.9vw, 1.9rem);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.9;
    color: #333;
}

/* Simple List (Summary & Problems) */
.simple-list {
    text-align: left;
    display: inline-block;
    max-width: 800px;
}

.simple-list p {
    font-size: clamp(1.2rem, 1.8vw, 1.8rem);
    line-height: 1.6;
    margin-bottom: clamp(20px, 3vw, 35px);
    position: relative;
    padding-left: clamp(28px, 3.5vw, 40px);
    color: #333;
}

.simple-list p:last-child {
    margin-bottom: 0;
}

.simple-list p::before {
    content: '';
    position: absolute;
    left: clamp(4px, 0.8vw, 10px);
    top: 50%;
    transform: translateY(-50%);
    width: clamp(4px, 0.5vw, 6px);
    height: clamp(4px, 0.5vw, 6px);
    background: #1a1a1a;
    border-radius: 50%;
}

/* Solution Slide */
.solution-headline {
    font-size: clamp(1.15rem, 1.6vw, 1.6rem);
    color: #333;
    max-width: 800px;
    margin: 0 auto clamp(35px, 5vw, 55px);
    line-height: 1.7;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(25px, 4vw, 45px) clamp(60px, 10vw, 120px);
    max-width: 950px;
    margin: 0 auto;
    text-align: left;
}

.solution-card {
    display: flex;
    flex-direction: column;
    gap: clamp(4px, 0.6vw, 8px);
    position: relative;
    padding-left: clamp(20px, 2.5vw, 30px);
}

.solution-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(4px, 0.5vw, 6px);
    height: clamp(4px, 0.5vw, 6px);
    background: #1a1a1a;
    border-radius: 50%;
}

.solution-card-title {
    font-size: clamp(1.15rem, 1.5vw, 1.5rem);
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.solution-card-desc {
    font-size: clamp(0.95rem, 1.2vw, 1.2rem);
    color: #555;
    line-height: 1.55;
}

/* Solution Detail Slides */
.solution-detail {
    display: flex;
    align-items: center;
    gap: clamp(40px, 6vw, 80px);
    text-align: left;
}

.solution-detail-left {
    flex: 1;
    position: relative;
    left: -3vw;
}

.solution-detail-title {
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: normal;
    color: #1a1a1a;
    margin-bottom: clamp(12px, 2vw, 20px);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.solution-detail-desc {
    font-size: clamp(1.05rem, 1.4vw, 1.4rem);
    color: #555;
    line-height: 1.7;
}

.solution-detail-right {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshot-placeholder {
    width: 100%;
    aspect-ratio: 9 / 16;
    max-height: 70vh;
    border: 1px solid #ccc;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.03);
}

.screenshot-double {
    display: flex;
    gap: clamp(10px, 2vw, 20px);
    align-items: center;
}

.screenshot-double .screenshot-img {
    max-height: 80vh;
}

.phone-mockup {
    position: relative;
    display: inline-block;
    padding: 6px;
    background: linear-gradient(145deg, #f0f0f0 0%, #e0e0e0 50%, #d0d0d0 100%);
    border-radius: 40px;
    box-shadow:
        inset 0 0 1px rgba(255, 255, 255, 0.9),
        inset 0 0 3px rgba(0, 0, 0, 0.05),
        0 25px 50px rgba(0, 0, 0, 0.12),
        0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Dynamic Island */
.phone-mockup::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 18px;
    background: #1a1a1a;
    border-radius: 12px;
    z-index: 10;
}

/* Home Indicator */
.phone-mockup::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 3px;
    z-index: 10;
}

/* Power Button */
.phone-mockup .screenshot-img::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 80px;
    width: 3px;
    height: 45px;
    background: linear-gradient(180deg, #d8d8d8 0%, #c0c0c0 50%, #d8d8d8 100%);
    border-radius: 2px;
}

/* Volume Buttons */
.phone-buttons {
    position: absolute;
    left: -4px;
    top: 65px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 5;
}

.phone-btn {
    width: 4px;
    height: 35px;
    background: linear-gradient(90deg, #b8b8b8 0%, #d4d4d4 40%, #e8e8e8 50%, #d4d4d4 60%, #b8b8b8 100%);
    border-radius: 2px 0 0 2px;
    box-shadow:
        -1px 0 1px rgba(0, 0, 0, 0.15),
        inset 1px 0 1px rgba(255, 255, 255, 0.3);
}

.phone-btn.small {
    height: 22px;
    margin-bottom: 8px;
}

/* Power button on right */
.phone-power {
    position: absolute;
    right: -4px;
    top: 85px;
    width: 4px;
    height: 55px;
    background: linear-gradient(90deg, #b8b8b8 0%, #d4d4d4 40%, #e8e8e8 50%, #d4d4d4 60%, #b8b8b8 100%);
    border-radius: 0 2px 2px 0;
    box-shadow:
        1px 0 1px rgba(0, 0, 0, 0.15),
        inset -1px 0 1px rgba(255, 255, 255, 0.3);
    z-index: 5;
}

.phone-mockup .screenshot-img {
    display: block;
    max-height: 75vh;
    max-width: 100%;
    border-radius: 35px;
    object-fit: contain;
    box-shadow: none;
}

.screenshot-double .phone-mockup .screenshot-img {
    max-height: 80vh;
}

.screenshot-img {
    max-height: 65vh;
    max-width: 100%;
    border-radius: 35px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .solution-detail {
        flex-direction: column;
        gap: 30px;
    }

    .solution-detail-right {
        width: 100%;
    }

    .screenshot-placeholder {
        max-height: 40vh;
    }

    .solution-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 700px;
    margin: clamp(20px, 3vw, 35px) auto 0;
    padding: clamp(10px, 2vw, 20px) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 1px;
    background: #1a1a1a;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: clamp(20px, 3vw, 35px);
    display: flex;
    align-items: center;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item[data-side="left"] {
    justify-content: flex-end;
    padding-right: calc(50% + 25px);
}

.timeline-item[data-side="right"] {
    justify-content: flex-start;
    padding-left: calc(50% + 25px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    width: clamp(18px, 2.2vw, 24px);
    height: clamp(18px, 2.2vw, 24px);
    background: #EDE8E3;
    border: 1px solid #1a1a1a;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-dot.filled {
    background: #EDE8E3;
    border-color: #1a1a1a;
}

.timeline-dot.filled::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(8px, 1vw, 10px);
    height: clamp(8px, 1vw, 10px);
    background: #1a1a1a;
    border-radius: 50%;
}

.timeline-content {
    font-size: clamp(0.85rem, 1.15vw, 1.15rem);
    line-height: 1.4;
    color: #333;
}

.timeline-sub {
    display: block;
    font-size: clamp(0.8rem, 1vw, 1rem);
    color: #666;
    margin-top: clamp(4px, 0.5vw, 8px);
    font-style: italic;
}

.timeline-item[data-side="left"] .timeline-content {
    text-align: right;
}

.timeline-item[data-side="right"] .timeline-content {
    text-align: left;
}

/* Team */
.team-container {
    display: flex;
    gap: clamp(50px, 10vw, 100px);
    align-items: center;
    justify-content: center;
}

.team-profile {
    text-align: center;
}

.profile-icon {
    width: clamp(100px, 14vw, 160px);
    height: clamp(100px, 14vw, 160px);
    margin: 0 auto clamp(20px, 2.5vw, 30px);
    opacity: 0.85;
}

.profile-icon svg {
    width: 100%;
    height: 100%;
}

.profile-name {
    font-size: clamp(1.4rem, 1.9vw, 1.9rem);
    margin-bottom: clamp(6px, 1vw, 12px);
    letter-spacing: -0.01em;
}

.profile-title {
    font-size: clamp(0.95rem, 1.2vw, 1.2rem);
    color: #777;
    letter-spacing: 0.03em;
}

.team-story {
    text-align: left;
}

.team-story p {
    font-size: clamp(1.05rem, 1.5vw, 1.5rem);
    margin-bottom: clamp(18px, 2.8vw, 28px);
    position: relative;
    padding-left: clamp(28px, 3.5vw, 38px);
    color: #333;
    line-height: 1.6;
}

.team-story p:last-child {
    margin-bottom: 0;
}

.team-story p::before {
    content: '';
    position: absolute;
    left: clamp(4px, 0.6vw, 8px);
    top: 50%;
    transform: translateY(-50%);
    width: clamp(4px, 0.5vw, 6px);
    height: clamp(4px, 0.5vw, 6px);
    background: #1a1a1a;
    border-radius: 50%;
}

/* Market Stats */
.market-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(50px, 8vw, 100px) clamp(60px, 10vw, 120px);
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.market-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
}

.stat {
    text-align: center;
}

.stat-tag {
    display: block;
    font-size: clamp(0.7rem, 0.9vw, 0.9rem);
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: clamp(4px, 0.5vw, 8px);
}

.stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 4rem);
    margin-bottom: clamp(6px, 1vw, 12px);
    letter-spacing: -0.03em;
    color: #1a1a1a;
}

.stat-number-sub {
    font-size: clamp(1.4rem, 2.5vw, 2.5rem) !important;
    margin-bottom: clamp(6px, 1vw, 12px);
}

.stat-number-caption {
    display: block;
    font-size: clamp(1rem, 1.3vw, 1.3rem);
    color: #666;
    margin-bottom: clamp(6px, 1vw, 12px);
    letter-spacing: 0;
}

.stat-label {
    font-size: clamp(0.75rem, 0.95vw, 0.95rem);
    color: #666;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 250px;
}

/* GTM Grid */
.gtm-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, auto);
    gap: clamp(25px, 4vw, 45px) clamp(60px, 10vw, 120px);
    max-width: 950px;
    margin: 0 auto;
    text-align: left;
}

.gtm-col {
    display: contents;
}

.gtm-block {
    display: flex;
    align-items: center;
    gap: clamp(15px, 2vw, 25px);
}

.gtm-block::before {
    content: '';
    flex-shrink: 0;
    width: clamp(4px, 0.5vw, 6px);
    height: clamp(4px, 0.5vw, 6px);
    background: #1a1a1a;
    border-radius: 50%;
    margin-top: 0;
    align-self: center;
}

.gtm-text {
    flex: 1;
}

.gtm-heading {
    display: block;
    font-size: clamp(1.15rem, 1.5vw, 1.5rem);
    color: #1a1a1a;
    margin-bottom: clamp(4px, 0.6vw, 8px);
    letter-spacing: -0.01em;
}

.gtm-desc {
    display: block;
    font-size: clamp(1rem, 1.3vw, 1.3rem);
    color: #444;
    line-height: 1.5;
}

/* GTM Flow Layout */
.gtm-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.gtm-card {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: clamp(10px, 1.5vw, 20px);
}

.gtm-number {
    display: block;
    font-size: clamp(2rem, 2.8vw, 2.8rem);
    color: #1a1a1a;
    letter-spacing: -0.02em;
    margin-bottom: clamp(10px, 1.2vw, 14px);
    opacity: 0.15;
}

.gtm-card-title {
    font-size: clamp(1.5rem, 1.8vw, 1.8rem);
    color: #1a1a1a;
    font-weight: normal;
    letter-spacing: -0.02em;
    margin-bottom: clamp(20px, 2.5vw, 30px);
}

.gtm-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(12px, 1.4vw, 16px);
    padding-left: 0;
    margin: 0;
}

.gtm-card-list li {
    font-size: clamp(1rem, 1.15vw, 1.15rem);
    color: #444;
    line-height: 1.55;
}

.gtm-connector {
    width: clamp(30px, 4vw, 50px);
    height: 1px;
    background: linear-gradient(90deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
    margin-top: 60px;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .gtm-flow {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .gtm-card {
        max-width: 100%;
        width: 100%;
    }

    .gtm-connector {
        width: 1px;
        height: 30px;
        background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
        margin-top: 0;
    }
}

/* Comparison Table */
.comparison-table {
    max-width: 850px;
    margin: 0 auto clamp(20px, 3vw, 35px);
}

.comparison-header, .comparison-row {
    display: grid;
    grid-template-columns: 2.2fr repeat(4, 1fr);
    gap: clamp(10px, 2vw, 20px);
    padding: clamp(10px, 1.5vw, 16px) 0;
    align-items: center;
}

.comparison-header {
    border-bottom: 1px solid #1a1a1a;
}

.comparison-row {
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-label {
    text-align: left;
    font-size: clamp(0.8rem, 1.1vw, 1.1rem);
    color: #333;
}

.comparison-col {
    text-align: center;
    font-size: clamp(0.8rem, 1vw, 1rem);
    color: #444;
}

.comparison-header .comparison-col {
    font-weight: normal;
    color: #1a1a1a;
}

.circle {
    display: inline-block;
    width: clamp(12px, 1.4vw, 16px);
    height: clamp(12px, 1.4vw, 16px);
    border-radius: 50%;
    border: 1.5px solid #1a1a1a;
    transition: all 0.2s ease;
}

.circle.filled {
    background: #1a1a1a;
}

.circle.half {
    background: linear-gradient(to right, #1a1a1a 50%, #EDE8E3 50%);
}

.circle.empty {
    background: transparent;
}

.comparison-tagline {
    font-size: clamp(1.4rem, 2vw, 2rem);
    color: #1a1a1a;
    margin-top: clamp(30px, 4vw, 50px);
    letter-spacing: -0.01em;
}

/* Competitive Moat Flow */
.moat-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(10px, 1.3vw, 16px);
    max-width: 900px;
    margin: 0 auto;
}

.moat-step {
    font-size: clamp(1.1rem, 1.5vw, 1.5rem);
    color: #1a1a1a;
    text-align: center;
    line-height: 1.45;
    letter-spacing: -0.01em;
}

.moat-step.moat-emphasis {
    color: #000;
    text-shadow: 0 0 0.6px #000, 0 0 0.6px #000;
}

.moat-note {
    margin-top: clamp(25px, 3.5vw, 40px);
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
    color: #888;
    font-style: italic;
}

.moat-sub {
    display: block;
    font-size: clamp(0.85rem, 1.05vw, 1.05rem);
    color: #666;
    margin-top: clamp(2px, 0.3vw, 4px);
    font-style: italic;
}

.moat-arrow {
    width: clamp(12px, 1.4vw, 16px);
    height: clamp(12px, 1.4vw, 16px);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23998a78' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 5v14M5 12l7 7 7-7'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.6;
}

.moat-divider {
    display: none;
}

/* Financials */
.fin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(30px, 5vw, 60px);
    max-width: 950px;
    margin: 0 auto clamp(40px, 6vw, 70px);
}

.fin-stat {
    text-align: center;
}

.fin-number {
    display: block;
    font-size: clamp(2.2rem, 4.5vw, 4.5rem);
    color: #1a1a1a;
    letter-spacing: -0.03em;
    margin-bottom: clamp(8px, 1.2vw, 15px);
}

.fin-label {
    display: block;
    font-size: clamp(0.75rem, 1vw, 1rem);
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fin-details {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(8px, 1.2vw, 14px);
}

.fin-details p {
    font-size: clamp(1rem, 1.3vw, 1.3rem);
    color: #444;
    line-height: 1.5;
}

.fin-details p:last-child {
    margin-top: clamp(8px, 1.2vw, 14px);
    color: #1a1a1a;
    font-size: clamp(1.1rem, 1.4vw, 1.4rem);
}

/* Closing */
.closing-title {
    font-size: clamp(3.5rem, 9vw, 9rem);
    letter-spacing: -0.03em;
    background: linear-gradient(180deg, #1a1a1a 0%, #3a3a3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.italic {
    font-style: italic;
}

/* Fade-in animation for slides */
.slide .content {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .team-container {
        flex-direction: column;
        gap: 40px;
    }

    .team-story {
        text-align: left;
    }

    .market-grid,
    .market-grid-3 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gtm-two-col {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fin-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .timeline {
        max-width: 500px;
    }

    .timeline-item {
        margin-bottom: clamp(35px, 5vw, 50px);
    }

    .timeline-item[data-side="left"],
    .timeline-item[data-side="right"] {
        padding-left: calc(50% + 20px);
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-item[data-side="left"] .timeline-content,
    .timeline-item[data-side="right"] .timeline-content {
        text-align: left;
    }

    .timeline-content {
        font-size: clamp(0.85rem, 1.2vw, 1.2rem);
    }
}

/* Selection color */
::selection {
    background: rgba(26, 26, 26, 0.15);
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #EDE8E3;
}

::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1a1a1a;
}
