/* ===================================================
   GetViralIdea — Design System & Landing Page Styles
   =================================================== */

/* --- Tokens --- */
:root {
    --bg: #f5f3ef;
    --bg-accent: #f7f3ee;
    --ink: #303a50;
    --ink-50: rgba(48, 58, 80, .5);
    --ink-15: rgba(48, 58, 80, .15);
    --ink-08: rgba(48, 58, 80, .08);
    --ink-04: rgba(48, 58, 80, .04);
    --white: #fff;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    --ease-out: cubic-bezier(.16, 1, .3, 1);
    --ease-smooth: cubic-bezier(.4, 0, .2, 1);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--bg);
    overflow-x: hidden;
    line-height: 1.6;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
    color: inherit;
}

input {
    font: inherit;
    color: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.hide-mobile {
    display: inline;
}

@media (max-width: 640px) {
    .hide-mobile {
        display: none;
    }
}


/* ===================================================
   Grain Overlay — subtle film-grain texture
   =================================================== */
.grain-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px;
}


/* ===================================================
   Navigation
   =================================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 2rem;
    transition: background .4s var(--ease-smooth), box-shadow .4s var(--ease-smooth);
}

.nav--scrolled {
    background: rgba(247, 243, 238, .85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--ink-08);
}

.nav__inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: -.02em;
}

.nav__logo-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav__link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .85rem;
    font-weight: 400;
    color: var(--ink-50);
    transition: color .25s;
}

.nav__link:hover {
    color: var(--ink);
}

.nav__icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.nav__cta {
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: .6rem 1.4rem;
    border: 1.5px solid var(--ink);
    border-radius: 100px;
    transition: background .3s var(--ease-smooth), color .3s var(--ease-smooth);
}

.nav__cta:hover {
    background: var(--ink);
    color: var(--bg);
}

/* Hamburger (mobile only) */
.nav__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}


/* ===================================================
   Hero
   =================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 6rem;
    overflow: hidden;
}

.hero__container {
    max-width: 720px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Eyebrow */
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink-50);
    margin-bottom: 2rem;
    animation: fadeUp .8s var(--ease-out) both;
}

.hero__eyebrow-line {
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--ink-15);
}

/* Title */
.hero__title {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(2.8rem, 6vw, 4.4rem);
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 1.5rem;
    animation: fadeUp .8s .1s var(--ease-out) both;
}

.hero__title em {
    font-style: italic;
    font-weight: 400;
}

/* Subtitle */
.hero__subtitle {
    font-size: clamp(.95rem, 1.5vw, 1.08rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--ink-50);
    max-width: 520px;
    margin: 0 auto 3rem;
    animation: fadeUp .8s .2s var(--ease-out) both;
}

/* Input area */
.hero__input-wrap {
    animation: fadeUp .8s .35s var(--ease-out) both;
}

.hero__form {
    width: 100%;
}

.hero__input-group {
    display: flex;
    align-items: stretch;
    background: var(--white);
    border: 1.5px solid var(--ink-15);
    border-radius: 100px;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s;
}

.hero__input-group:focus-within {
    border-color: var(--ink);
    box-shadow: 0 0 0 4px var(--ink-08);
}

.hero__input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    outline: none;
    background: transparent;
    font-size: .95rem;
    font-weight: 300;
}

.hero__input::placeholder {
    color: var(--ink-15);
    font-weight: 300;
}

.hero__submit {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .9rem 1.6rem;
    margin: .35rem;
    background: var(--ink);
    color: var(--bg);
    border-radius: 100px;
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .02em;
    white-space: nowrap;
    transition: transform .25s var(--ease-out), opacity .25s;
}

.hero__submit:hover {
    transform: scale(1.03);
}

.hero__submit:active {
    transform: scale(.98);
}

.hero__submit-arrow {
    font-size: 1.1rem;
    transition: transform .3s var(--ease-out);
}

.hero__submit:hover .hero__submit-arrow {
    transform: translateX(3px);
}

/* Tags */
.hero__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
    margin-top: 1.25rem;
}

.hero__tag {
    font-size: .72rem;
    font-weight: 400;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .4rem .9rem;
    border: 1px solid var(--ink-15);
    border-radius: 100px;
    color: var(--ink-50);
    cursor: pointer;
    transition: all .25s var(--ease-smooth);
    user-select: none;
}

.hero__tag:hover {
    border-color: var(--ink);
    color: var(--ink);
    background: var(--ink-04);
}

/* Decorative circles */
.hero__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero__circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--ink-08);
}

.hero__circle--1 {
    width: 520px;
    height: 520px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: circleReveal 1.4s .3s var(--ease-out) both;
}

.hero__circle--2 {
    width: 340px;
    height: 340px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: circleReveal 1.4s .5s var(--ease-out) both;
}


/* ===================================================
   Steps Section
   =================================================== */
.steps {
    padding: 7rem 2rem 8rem;
    background: var(--bg-accent);
}

.steps__container {
    max-width: 960px;
    margin: 0 auto;
}

.steps__label {
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink-50);
    margin-bottom: 3.5rem;
}

.steps__grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.steps__item {
    flex: 1;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.steps__item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.steps__divider {
    width: 1px;
    align-self: stretch;
    background: var(--ink-15);
    margin: 0 2.5rem;
    opacity: 0;
    transform: scaleY(0);
    transition: opacity .6s .2s var(--ease-out), transform .6s .2s var(--ease-out);
    transform-origin: top;
}

.steps__divider.is-visible {
    opacity: 1;
    transform: scaleY(1);
}

.steps__number {
    display: block;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .1em;
    color: var(--ink-15);
    margin-bottom: 1rem;
}

.steps__heading {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: .75rem;
    letter-spacing: -.01em;
}

.steps__text {
    font-size: .88rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--ink-50);
}


/* ===================================================
   Footer
   =================================================== */
.footer {
    padding: 3rem 2rem;
    border-top: 1px solid var(--ink-08);
}

.footer__inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copy {
    font-size: .78rem;
    font-weight: 400;
    color: var(--ink-50);
}

.footer__note {
    font-size: .72rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink-50);
}


/* ===================================================
   Keyframes
   =================================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes circleReveal {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(.85);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}


/* ===================================================
   Dashboard
   =================================================== */
.dash {
    min-height: 100vh;
    padding: 6rem 2rem 4rem;
    background: var(--bg);
}

.dash__container {
    max-width: 900px;
    margin: 0 auto;
}

.dash__header {
    margin-bottom: 2rem;
}

.dash__title {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: -.02em;
}

.dash__greeting {
    font-size: .88rem;
    font-weight: 300;
    color: var(--ink-50);
    margin-top: .25rem;
}

/* Alerts */
.dash__alert {
    font-size: .84rem;
    padding: .65rem 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.dash__alert--success {
    background: rgba(40, 160, 80, .06);
    border: 1px solid rgba(40, 160, 80, .18);
    color: #1a6b33;
}

.dash__alert--error {
    background: rgba(200, 60, 60, .06);
    border: 1px solid rgba(200, 60, 60, .18);
    color: #8b2d2d;
}

/* Tabs */
.dash__tabs {
    display: flex;
    gap: .25rem;
    border-bottom: 1px solid var(--ink-08);
    margin-bottom: 2rem;
}

.dash__tab {
    background: none;
    border: none;
    padding: .6rem 1.2rem;
    font-size: .84rem;
    font-weight: 400;
    color: var(--ink-50);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color .25s, border-color .25s;
    margin-bottom: -1px;
}

.dash__tab:hover {
    color: var(--ink);
}

.dash__tab--active {
    color: var(--ink);
    font-weight: 500;
    border-bottom-color: var(--ink);
}

/* Panels */
.dash__panel {
    display: none;
}

.dash__panel--active {
    display: block;
}

/* Ideas Grid */
.dash__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

.dash__card {
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    border: 1.5px solid var(--ink-08);
    border-radius: 14px;
    transition: border-color .25s, transform .2s var(--ease-out), box-shadow .25s;
    cursor: pointer;
}

.dash__card:hover {
    border-color: var(--ink-15);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
}

.dash__card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .75rem;
}

.dash__card-cat {
    font-size: .65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .2rem .6rem;
    border: 1px solid var(--ink-15);
    border-radius: 100px;
    color: var(--ink);
}

.dash__card-date {
    font-size: .72rem;
    color: var(--ink-50);
}

.dash__card-title {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.35;
    letter-spacing: -.01em;
    margin-bottom: .4rem;
    flex: 1;
}

.dash__card-topic {
    font-size: .78rem;
    color: var(--ink-50);
    font-weight: 300;
    margin-bottom: .75rem;
}

.dash__card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: .75rem;
    border-top: 1px solid var(--ink-08);
}

.dash__card-link {
    font-size: .78rem;
    font-weight: 500;
    color: var(--ink);
}

.dash__card-del-btn {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: var(--ink-50);
    cursor: pointer;
    padding: 0 .3rem;
    line-height: 1;
    transition: color .2s;
}

.dash__card-del-btn:hover {
    color: #c53030;
}

/* Empty state */
.dash__empty {
    text-align: center;
    padding: 4rem 0;
}

.dash__empty-text {
    font-size: .92rem;
    color: var(--ink-50);
    margin-bottom: 1.5rem;
}

/* Pagination */
.dash__pagination {
    margin-top: 2rem;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.pagination__link {
    font-size: .82rem;
    font-weight: 500;
    color: var(--ink);
    padding: .4rem .8rem;
    border: 1px solid var(--ink-15);
    border-radius: 100px;
    transition: border-color .25s;
}

.pagination__link:hover {
    border-color: var(--ink);
}

.pagination__link--disabled {
    color: var(--ink-15);
    pointer-events: none;
}

/* Form sections */
.dash__form {
    max-width: 420px;
}

.dash__section-title {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: -.01em;
    margin-bottom: 1.5rem;
}

.dash__form-info {
    font-size: .84rem;
    color: var(--ink-50);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding: .75rem 1rem;
    background: var(--ink-08);
    border-radius: 10px;
}

.dash__form-info strong {
    font-weight: 500;
    color: var(--ink);
}

.dash__readonly {
    font-size: .88rem;
    color: var(--ink-50);
    padding: .55rem .75rem;
    background: var(--ink-08);
    border: 1.5px solid var(--ink-08);
    border-radius: 10px;
    cursor: not-allowed;
    user-select: all;
}

.dash__security-info {
    font-size: .88rem;
    color: var(--ink-50);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.dash__security-info strong {
    color: var(--ink);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .dash {
        padding: 5rem 1.25rem 3rem;
    }

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

    .dash__tabs {
        overflow-x: auto;
        white-space: nowrap;
    }
}


/* ===================================================
   Hero — Error & Loading
   =================================================== */
.hero__error {
    background: rgba(200, 60, 60, .06);
    border: 1px solid rgba(200, 60, 60, .18);
    color: #8b2d2d;
    font-size: .84rem;
    padding: .6rem 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    text-align: center;
}

.hero__form.is-loading .hero__submit {
    pointer-events: none;
    opacity: .7;
}

.hero__form.is-loading .hero__submit-text::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: .5rem;
    border: 2px solid rgba(245, 243, 239, .3);
    border-top-color: var(--bg);
    border-radius: 50%;
    animation: spin .6s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* ===================================================
   Idea Result Page
   =================================================== */
.idea {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 8rem 2rem 6rem;
    background: var(--bg);
}

.idea__container {
    max-width: 680px;
    width: 100%;
}

.idea__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.idea__category {
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .3rem .8rem;
    border: 1.5px solid var(--ink);
    border-radius: 100px;
    color: var(--ink);
}

.idea__date {
    font-size: .78rem;
    color: var(--ink-50);
}

.idea__title {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: 1rem;
}

.idea__topic {
    font-size: .85rem;
    color: var(--ink-50);
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--ink-08);
}

.idea__topic-label {
    font-weight: 500;
    color: var(--ink);
}

.idea__content {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--ink);
    margin-bottom: 3rem;
}

.idea__content strong,
.idea__content b {
    font-weight: 500;
}

.idea__actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

.idea__btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .7rem 1.4rem;
    border-radius: 100px;
    font-size: .84rem;
    font-weight: 500;
    letter-spacing: .02em;
    cursor: pointer;
    transition: transform .2s var(--ease-out), background .25s, color .25s;
}

.idea__btn:hover {
    transform: scale(1.02);
}

.idea__btn:active {
    transform: scale(.98);
}

.idea__btn--primary {
    background: var(--ink);
    color: var(--bg);
    border: 1.5px solid var(--ink);
}

.idea__btn--secondary {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--ink-15);
}

.idea__btn--secondary:hover {
    border-color: var(--ink);
}

/* Idea page responsive */
@media (max-width: 768px) {
    .idea {
        padding: 5.5rem 1.25rem 4rem;
    }

    .idea__title {
        font-size: 1.6rem;
    }

    .idea__content {
        font-size: .92rem;
    }

    .idea__actions {
        flex-direction: column;
    }

    .idea__btn {
        justify-content: center;
    }
}


/* ===================================================
   Nav — Auth additions
   =================================================== */
.nav__user {
    font-size: .85rem;
    font-weight: 500;
    color: var(--ink);
}

.nav__logout-form {
    display: flex;
    align-items: center;
}

.nav__link--btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: .85rem;
    font-weight: 400;
    color: var(--ink-50);
    transition: color .25s;
    padding: 0;
    line-height: 1;
}

.nav__link--btn:hover {
    color: var(--ink);
}


/* ===================================================
   Side Navigation (Mobile)
   =================================================== */
.sidenav__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.sidenav__backdrop--visible {
    opacity: 1;
    pointer-events: auto;
}

.sidenav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    background: var(--bg);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 30px rgba(0, 0, 0, .08);
}

.sidenav--open {
    transform: translateX(0);
}

.sidenav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--ink-08);
}

.sidenav__close {
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ink-50);
    transition: color .2s;
}

.sidenav__close:hover {
    color: var(--ink);
}

.sidenav__close svg {
    width: 20px;
    height: 20px;
}

.sidenav__links {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    flex: 1;
}

.sidenav__link {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem 1.5rem;
    font-size: .92rem;
    font-weight: 400;
    color: var(--ink);
    transition: background .2s, color .2s;
}

.sidenav__link:hover {
    background: var(--ink-08);
}

.sidenav__link--cta {
    font-weight: 500;
}

.sidenav__link--logout {
    display: flex;
    align-items: center;
    gap: .75rem;
    width: 100%;
    padding: .85rem 1.5rem;
    font-size: .92rem;
    font-weight: 400;
    color: var(--ink-50);
    background: none;
    border: none;
    border-top: 1px solid var(--ink-08);
    cursor: pointer;
    font-family: inherit;
    margin-top: auto;
    transition: background .2s, color .2s;
}

.sidenav__link--logout:hover {
    background: var(--ink-08);
    color: var(--ink);
}

.sidenav__logout-form {
    display: flex;
    margin-top: auto;
}

.sidenav__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: .6;
}


/* ===================================================
   OTP Verification Page
   =================================================== */
.otp {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

/* Ambient floating orbs */
.otp__ambient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.otp__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .12;
}

.otp__orb--1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #b8a88a 0%, transparent 70%);
    top: -10%;
    right: -5%;
    animation: orbFloat1 12s ease-in-out infinite;
}

.otp__orb--2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #8a9ab8 0%, transparent 70%);
    bottom: -5%;
    left: -5%;
    animation: orbFloat2 15s ease-in-out infinite;
}

.otp__orb--3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #b8a08a 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat3 10s ease-in-out infinite;
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-40px, 30px) scale(1.1);
    }

    66% {
        transform: translate(20px, -20px) scale(.9);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -40px) scale(1.15);
    }

    66% {
        transform: translate(-20px, 20px) scale(.85);
    }
}

@keyframes orbFloat3 {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: .1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: .18;
    }
}

/* Card */
.otp__card {
    width: 100%;
    max-width: 420px;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: otpCardIn .6s var(--ease-out) both;
}

@keyframes otpCardIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Lock icon */
.otp__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--ink-08);
    color: var(--ink);
    margin-bottom: 1.5rem;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(29, 27, 24, .06);
    }

    50% {
        box-shadow: 0 0 0 16px rgba(29, 27, 24, .02);
    }
}

.otp__title {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: -.02em;
    margin-bottom: .5rem;
}

.otp__subtitle {
    font-size: .88rem;
    font-weight: 300;
    color: var(--ink-50);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.otp__email {
    font-weight: 500;
    color: var(--ink);
}

/* Alerts */
.otp__alert {
    font-size: .82rem;
    line-height: 1.5;
    padding: .6rem 1rem;
    border-radius: 10px;
    margin-bottom: 1.25rem;
}

.otp__alert--success {
    background: rgba(40, 160, 80, .06);
    border: 1px solid rgba(40, 160, 80, .18);
    color: #1a6b33;
}

.otp__alert--error {
    background: rgba(200, 60, 60, .06);
    border: 1px solid rgba(200, 60, 60, .18);
    color: #8b2d2d;
}

/* Shake animation for errors */
.otp__shake {
    animation: shakeX .5s ease-in-out;
}

@keyframes shakeX {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-8px);
    }

    40% {
        transform: translateX(8px);
    }

    60% {
        transform: translateX(-5px);
    }

    80% {
        transform: translateX(5px);
    }
}

/* 6-digit inputs */
.otp__digits {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1.75rem;
}

.otp__digit {
    width: 48px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
    border: 1.5px solid var(--ink-15);
    border-radius: 12px;
    background: var(--white);
    color: var(--ink);
    outline: none;
    transition: border-color .25s, box-shadow .25s, transform .15s;
    caret-color: var(--ink);
    padding: 0;
    vertical-align: top;
    -webkit-appearance: none;
    -moz-appearance: textfield;
    appearance: none;
}

.otp__digit:focus,
.otp__digit--focused {
    border-color: var(--ink);
    box-shadow: 0 0 0 4px var(--ink-08), 0 0 20px rgba(29, 27, 24, .06);
    transform: scale(1.05);
}

.otp__digit:not(:placeholder-shown) {
    border-color: var(--ink);
    background: var(--ink-08);
}

/* Submit button */
.otp__submit {
    width: 100%;
    padding: .8rem;
    background: var(--ink);
    color: var(--bg);
    border: none;
    border-radius: 100px;
    font-size: .88rem;
    font-weight: 500;
    letter-spacing: .02em;
    cursor: pointer;
    transition: transform .2s var(--ease-out), opacity .3s;
    opacity: .4;
}

.otp__submit:disabled {
    cursor: not-allowed;
}

.otp__submit--ready {
    opacity: 1;
    animation: submitGlow 2s ease-in-out infinite;
}

@keyframes submitGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(29, 27, 24, .15);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(29, 27, 24, .04);
    }
}

.otp__submit:not(:disabled):hover {
    transform: scale(1.015);
}

.otp__submit:not(:disabled):active {
    transform: scale(.985);
}

/* Footer / Resend */
.otp__footer {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
}

.otp__hint {
    font-size: .82rem;
    color: var(--ink-50);
}

.otp__resend-form {
    display: inline;
}

.otp__resend {
    background: none;
    border: none;
    font-size: .82rem;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    border-bottom: 1px solid var(--ink-15);
    transition: border-color .25s;
}

.otp__resend:hover {
    border-color: var(--ink);
}

/* Timer */
.otp__expire {
    margin-top: .75rem;
    font-size: .72rem;
    color: var(--ink-50);
    letter-spacing: .02em;
}

/* Responsive */
@media (max-width: 480px) {
    .otp__digit {
        width: 42px;
        height: 52px;
        font-size: 1.2rem;
    }

    .otp__digits {
        gap: 5px;
    }
}


/* ===================================================
   Auth Pages
   =================================================== */
.auth {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
    background: var(--bg);
}

.auth__card {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.auth__logo {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: -.02em;
    margin-bottom: 2.5rem;
}

.auth__logo-icon {
    width: 22px;
    height: 22px;
}

.auth__title {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -.02em;
    margin-bottom: .5rem;
}

.auth__subtitle {
    font-size: .88rem;
    font-weight: 300;
    color: var(--ink-50);
    margin-bottom: 2rem;
}

/* Alert */
.auth__alert {
    text-align: left;
    font-size: .82rem;
    line-height: 1.5;
    padding: .75rem 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.auth__alert--error {
    background: rgba(200, 60, 60, .06);
    border: 1px solid rgba(200, 60, 60, .18);
    color: #8b2d2d;
}

/* Form */
.auth__form {
    text-align: left;
}

.auth__field {
    margin-bottom: 1.25rem;
}

.auth__label {
    display: block;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ink-50);
    margin-bottom: .4rem;
}

.auth__input {
    width: 100%;
    padding: .75rem 1rem;
    border: 1.5px solid var(--ink-15);
    border-radius: 10px;
    background: var(--white);
    font-size: .9rem;
    font-weight: 300;
    outline: none;
    transition: border-color .25s, box-shadow .25s;
}

.auth__input:focus {
    border-color: var(--ink);
    box-shadow: 0 0 0 3px var(--ink-08);
}

.auth__input::placeholder {
    color: var(--ink-15);
}

/* Checkbox row */
.auth__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.auth__checkbox {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    color: var(--ink-50);
    cursor: pointer;
}

.auth__checkbox input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: var(--ink);
    cursor: pointer;
}

/* Submit */
.auth__submit {
    width: 100%;
    padding: .8rem;
    background: var(--ink);
    color: var(--bg);
    border: none;
    border-radius: 100px;
    font-size: .88rem;
    font-weight: 500;
    letter-spacing: .02em;
    cursor: pointer;
    transition: transform .2s var(--ease-out), opacity .2s;
}

.auth__submit:hover {
    transform: scale(1.015);
}

.auth__submit:active {
    transform: scale(.985);
}

/* Footer link */
.auth__footer {
    margin-top: 2rem;
    font-size: .82rem;
    color: var(--ink-50);
}

.auth__link {
    color: var(--ink);
    font-weight: 500;
    border-bottom: 1px solid var(--ink-15);
    transition: border-color .25s;
}

.auth__link:hover {
    border-color: var(--ink);
}


/* ===================================================
   Responsive — Tablet
   =================================================== */
@media (max-width: 768px) {
    .nav {
        padding: 0 1.25rem;
    }

    .nav__inner {
        height: 56px;
    }

    .nav__links {
        display: none;
    }

    .nav__burger {
        display: flex;
    }

    .nav__logo {
        font-size: .88rem;
    }

    .nav__logo-icon {
        width: 22px;
        height: 22px;
    }

    .hero {
        padding: 6rem 1.25rem 3.5rem;
        min-height: calc(100vh - 56px);
        min-height: calc(100dvh - 56px);
    }

    .hero__eyebrow {
        font-size: .68rem;
        margin-bottom: 1.5rem;
    }

    .hero__title {
        font-size: 2.4rem;
        margin-bottom: 1.2rem;
    }

    .hero__subtitle {
        font-size: .92rem;
        margin-bottom: 2.2rem;
    }

    .hero__circle--1 {
        width: 340px;
        height: 340px;
    }

    .hero__circle--2 {
        width: 200px;
        height: 200px;
    }

    .hero__submit-text {
        display: none;
    }

    .hero__submit {
        padding: .85rem 1.1rem;
        margin: .3rem;
    }

    .hero__input {
        padding: .85rem 1.2rem;
        font-size: .9rem;
    }

    .hero__tags {
        gap: .4rem;
    }

    .hero__tag {
        font-size: .65rem;
        padding: .35rem .7rem;
    }

    .steps {
        padding: 4rem 1.25rem 4.5rem;
    }

    .steps__label {
        margin-bottom: 2.5rem;
    }

    .steps__grid {
        flex-direction: column;
        gap: 2rem;
    }

    .steps__divider {
        width: 40px;
        height: 1px;
        margin: 0;
        transform-origin: left;
    }

    .steps__divider.is-visible {
        transform: scaleX(1);
    }

    .steps__heading {
        font-size: 1.15rem;
    }

    .steps__text {
        font-size: .84rem;
    }

    .footer {
        padding: 2.5rem 1.25rem;
    }

    .footer__inner {
        flex-direction: column;
        gap: .5rem;
        text-align: center;
    }
}


/* ===================================================
   Responsive — Small phones
   =================================================== */
@media (max-width: 420px) {
    .hero {
        padding: 5.5rem 1rem 3rem;
    }

    .hero__title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero__subtitle {
        font-size: .85rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .hero__input-group {
        flex-direction: column;
        border-radius: 16px;
        gap: 0;
    }

    .hero__input {
        padding: .9rem 1.1rem;
        text-align: center;
        border-bottom: 1px solid var(--ink-08);
    }

    .hero__submit {
        border-radius: 12px;
        margin: .35rem;
        justify-content: center;
        padding: .8rem 1rem;
    }

    .hero__submit-text {
        display: inline;
    }

    .hero__circle--1 {
        width: 280px;
        height: 280px;
    }

    .hero__circle--2 {
        width: 160px;
        height: 160px;
    }

    .hero__tags {
        gap: .35rem;
        margin-top: 1rem;
    }

    .steps {
        padding: 3rem 1rem 3.5rem;
    }

    .steps__label {
        margin-bottom: 2rem;
        font-size: .68rem;
    }

    .steps__grid {
        gap: 1.5rem;
    }

    .steps__heading {
        font-size: 1.05rem;
    }

    .steps__text {
        font-size: .82rem;
    }

    .footer {
        padding: 2rem 1rem;
    }

    .footer__copy {
        font-size: .72rem;
    }

    .footer__note {
        font-size: .65rem;
    }
}


/* ===================================================
   Safe areas (notch phones)
   =================================================== */
@supports (padding: env(safe-area-inset-bottom)) {
    .nav {
        padding-left: max(1.25rem, env(safe-area-inset-left));
        padding-right: max(1.25rem, env(safe-area-inset-right));
    }

    .footer {
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }
}


/* ===================================================
   Touch device enhancements
   =================================================== */
@media (hover: none) {
    .hero__submit:hover {
        transform: none;
    }

    .hero__submit:active {
        transform: scale(.96);
    }

    .hero__tag:hover {
        border-color: var(--ink-15);
        color: var(--ink-50);
        background: transparent;
    }

    .hero__tag:active {
        border-color: var(--ink);
        color: var(--ink);
    }

    .nav__cta:hover {
        background: transparent;
        color: var(--ink);
    }

    .nav__cta:active {
        background: var(--ink);
        color: var(--bg);
    }
}

/* ===================================================
   Platform Selector
   =================================================== */
.hero__filters {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.hero__select {
    background: var(--bg);
    border: 1.5px solid var(--ink-15);
    border-radius: 100px;
    padding: .5rem 1.5rem;
    font-size: .85rem;
    font-weight: 500;
    color: var(--ink);
    outline: none;
    cursor: pointer;
    transition: border-color .25s, box-shadow .25s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.hero__select:focus {
    border-color: var(--ink);
    box-shadow: 0 0 0 3px var(--ink-08);
}

/* ===================================================
   Blueprint View
   =================================================== */
.blueprint {
    padding: 8rem 1.5rem 6rem;
    min-height: 100vh;
}

.blueprint__container {
    max-width: 1100px;
    margin: 0 auto;
}

.blueprint__header {
    margin-bottom: 3.5rem;
}

.blueprint__meta {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.25rem;
}

.blueprint__badge {
    padding: .35rem .8rem;
    background: var(--ink);
    color: var(--bg);
    font-size: .75rem;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.blueprint__platform {
    font-size: .85rem;
    font-weight: 500;
    color: var(--ink-50);
}

.blueprint__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -.03em;
}

.blueprint__desc {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--ink-50);
    max-width: 800px;
}

.blueprint__grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: start;
}

.blueprint__section {
    margin-bottom: 4rem;
}

.blueprint__section-title {
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--ink-30);
    margin-bottom: 1.5rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--ink-08);
}

/* Visual */
.blueprint__image-wrap {
    background: var(--ink-05);
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.blueprint__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease-out);
}

.blueprint__image-wrap:hover .blueprint__image {
    transform: scale(1.02);
}

/* Storyboard */
.storyboard {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.storyboard__step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg);
    border: 1.5px solid var(--ink-08);
    border-radius: 20px;
}

.storyboard__num {
    width: 32px;
    height: 32px;
    background: var(--ink);
    color: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.storyboard__content {
    font-size: .95rem;
    line-height: 1.6;
}

.storyboard__visual {
    margin-bottom: .5rem;
}

.storyboard__visual strong,
.storyboard__action strong {
    color: var(--ink-50);
    font-weight: 500;
    font-size: .8rem;
    text-transform: uppercase;
    margin-right: .5rem;
}

/* Hooks */
.hooks {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hook {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg);
    border: 1.5px solid var(--ink-08);
    border-radius: 16px;
    transition: border-color .25s;
}

.hook:hover {
    border-color: var(--ink-20);
}

.hook__text {
    font-size: .95rem;
    line-height: 1.4;
    font-weight: 500;
}

.hook__copy {
    background: none;
    border: none;
    color: var(--ink-30);
    cursor: pointer;
    padding: .5rem;
    transition: color .25s;
    flex-shrink: 0;
}

.hook__copy:hover {
    color: var(--ink);
}

/* Psychology */
.psychology {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.4);
    border: 1.5px dashed var(--ink-15);
    border-radius: 20px;
}

.psychology__text {
    font-size: .95rem;
    line-height: 1.7;
    color: var(--ink-80);
    font-style: italic;
}

.blueprint__actions {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blueprint__btn {
    width: 100%;
    padding: 1rem;
    border-radius: 100px;
    font-size: .9rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: transform .2s, opacity .2s;
}

.blueprint__btn--primary {
    background: var(--ink);
    color: var(--bg);
    border: none;
}

.blueprint__btn--secondary {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--ink);
}

.blueprint__btn:hover {
    transform: translateY(-2px);
}

.blueprint__btn:active {
    transform: translateY(0);
}

@media (max-width: 900px) {
    .blueprint__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blueprint__side {
        order: -1;
    }

    .blueprint__header {
        margin-bottom: 2rem;
    }
}

/* Pricing Page */
.pricing-page {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
}

.pricing-page__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.pricing-page__header {
    margin-bottom: 60px;
}

.pricing-page__title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.pricing-page__subtitle {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 40px;
    text-align: left;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.pricing-card--featured {
    border-color: var(--accent);
    background: rgba(0, 112, 243, 0.05);
}

.pricing-card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
}

.pricing-card__name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    margin-bottom: 4px;
}

.pricing-card__currency {
    font-size: 24px;
    font-weight: 600;
    margin-right: 2px;
}

.pricing-card__amount {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -2px;
}

.pricing-card__period {
    font-size: 16px;
    color: var(--text-muted);
    margin-left: 4px;
}

.pricing-card__savings {
    font-size: 13px;
    color: #4ade80;
    font-weight: 500;
    margin-bottom: 30px;
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 30px 0 40px;
}

.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.pricing-card__features svg {
    color: var(--accent);
}

.pricing-card__btn {
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: white;
    color: black;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pricing-card__btn:hover {
    background: #f0f0f0;
    transform: scale(1.02);
}

.pricing-card__btn--featured {
    background: var(--accent);
    color: white;
    border: none;
}

.pricing-card__btn--featured:hover {
    background: #0060d0;
    box-shadow: 0 10px 30px rgba(0, 112, 243, 0.3);
}

.pricing-faq {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: left;
}

.pricing-faq__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.faq-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .pricing-page__title {
        font-size: 32px;
    }

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

    .pricing-page__container {
        padding: 0 20px;
    }
}