/* ==========================================
   MY TAP LANDING PAGE
   ========================================== */

:root {
    --background: #090b16;
    --background-soft: #101329;
    --surface: #ffffff;
    --surface-soft: #f3f4fa;

    --text: #ffffff;
    --text-dark: #171929;
    --text-muted: #bdc3d8;
    --text-dark-muted: #686d80;

    --purple: #6c4dff;
    --purple-light: #9c7cff;
    --blue: #168dff;
    --pink: #e229d7;

    --border-light: rgba(255, 255, 255, 0.14);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);

    --page-width: 1200px;
}

/* ==========================================
   RESET
   ========================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: var(--background);
    color: var(--text);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    line-height: 1.5;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

/* ==========================================
   NAVIGATION
   ========================================== */

.navbar {
    min-height: 84px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;

    padding: 14px max(24px, calc((100vw - var(--page-width)) / 2));

    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(9, 11, 22, 0.88);
    border-bottom: 1px solid var(--border-light);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.navbar-brand {
    width: 94px;
    height: 62px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 5px;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.96);

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.22);

    text-decoration: none;
}

.site-logo {
    width: 82px;
    height: 52px;

    display: block;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.desktop-nav a {
    color: #e8eaf4;

    font-size: 15px;
    font-weight: 650;

    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.desktop-nav a:hover {
    color: var(--purple-light);
    transform: translateY(-1px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ==========================================
   BUTTONS
   ========================================== */

.button {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 26px;

    border: 1px solid transparent;
    border-radius: 14px;

    font-size: 16px;
    font-weight: 750;

    text-decoration: none;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

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

.button-small {
    min-height: 44px;
    padding: 0 19px;

    border-radius: 12px;

    font-size: 14px;
}

.button-primary {
    color: white;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--blue)
        );

    box-shadow:
        0 12px 28px rgba(92, 74, 255, 0.32);
}

.button-primary:hover {
    box-shadow:
        0 16px 35px rgba(92, 74, 255, 0.46);
}

.button-secondary {
    color: white;

    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.22);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.38);
}

.button-light {
    color: var(--purple);

    background: white;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   HERO
   ========================================== */

.hero {
    min-height: calc(100vh - 84px);

    display: flex;
    align-items: center;

    position: relative;
    overflow: hidden;

    padding: 84px 24px 100px;

    background:
        radial-gradient(
            circle at 78% 20%,
            rgba(108, 77, 255, 0.42),
            transparent 34%
        ),
        radial-gradient(
            circle at 15% 85%,
            rgba(22, 141, 255, 0.22),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #090b16 0%,
            #111536 55%,
            #29116a 100%
        );
}

.hero::after {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size: 48px 48px;

    mask-image:
        linear-gradient(to bottom, black, transparent);

    pointer-events: none;
}

.hero-glow {
    width: 320px;
    height: 320px;

    position: absolute;

    border-radius: 50%;
    filter: blur(85px);

    opacity: 0.38;
    pointer-events: none;
}

.hero-glow-one {
    top: -100px;
    right: 4%;

    background: var(--pink);
}

.hero-glow-two {
    bottom: -140px;
    left: 30%;

    background: var(--blue);
}

.hero-content {
    width: 100%;
    max-width: var(--page-width);

    display: grid;
    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(330px, 0.9fr);

    align-items: center;
    gap: 80px;

    position: relative;
    z-index: 2;

    margin: 0 auto;
}

.hero-text {
    max-width: 660px;
}

.eyebrow {
    margin: 0 0 18px;

    color: #b9b0ff;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0 0 28px;

    color: white;

    font-size: clamp(52px, 7vw, 86px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.hero h1 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            #ffffff,
            #bdaeff 42%,
            #69bcff
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.hero-description {
    max-width: 620px;

    margin: 0 0 36px;

    color: var(--text-muted);

    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;

    margin-bottom: 34px;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;

    color: #d7daea;

    font-size: 14px;
    font-weight: 650;
}

.hero-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-benefits span::before {
    content: "✓";

    width: 20px;
    height: 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: white;
    background: rgba(108, 77, 255, 0.75);

    font-size: 12px;
}

/* ==========================================
   PHONE PREVIEW
   ========================================== */

.hero-phone {
    min-height: 650px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

.phone-shadow {
    width: 360px;
    height: 120px;

    position: absolute;
    bottom: 8px;

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.45);
    filter: blur(35px);
}

.phone-frame {
    width: min(360px, 100%);

    position: relative;
    z-index: 2;

    padding: 14px;

    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 48px;

    background:
        linear-gradient(
            145deg,
            #262938,
            #090a10
        );

    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.52),
        0 0 45px rgba(108, 77, 255, 0.32);

    transform: rotate(2deg);
}

.phone-speaker {
    width: 105px;
    height: 28px;

    position: absolute;
    top: 25px;
    left: 50%;
    z-index: 5;

    transform: translateX(-50%);

    border-radius: 20px;

    background: #090a10;
}

.phone-screen {
    min-height: 640px;

    padding: 66px 24px 30px;

    overflow: hidden;

    border-radius: 36px;

    color: var(--text-dark);
    text-align: center;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f0f1f8
        );
}

.phone-logo {
    width: 82px;
    height: 82px;

    display: block;
    object-fit: contain;

    margin: 0 auto 18px;
}

.phone-screen h2 {
    margin: 0 0 8px;

    color: var(--text-dark);

    font-size: 24px;
    letter-spacing: -0.02em;
}

.phone-message {
    margin: 0 0 25px;

    color: var(--text-dark-muted);

    font-size: 14px;
}

.phone-links {
    display: grid;
    gap: 12px;
}

.profile-link {
    min-height: 58px;

    display: grid;
    grid-template-columns: 42px 1fr 20px;
    align-items: center;
    gap: 12px;

    padding: 8px 14px;

    border: 1px solid rgba(24, 26, 43, 0.06);
    border-radius: 16px;

    color: var(--text-dark);

    text-align: left;
    text-decoration: none;

    background: white;

    box-shadow:
        0 9px 22px rgba(43, 45, 77, 0.08);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.profile-link:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 28px rgba(43, 45, 77, 0.13);
}

.profile-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            rgba(108, 77, 255, 0.13),
            rgba(22, 141, 255, 0.13)
        );

    font-size: 19px;
}

.profile-label {
    font-size: 15px;
    font-weight: 750;
}

.profile-arrow {
    color: #9a9eb0;

    font-size: 25px;
    line-height: 1;
}

.phone-footer {
    margin: 26px 0 0;

    color: #9296a8;

    font-size: 12px;
    font-weight: 650;
}

/* ==========================================
   GENERAL SECTIONS
   ========================================== */

.section {
    padding: 110px 24px;
}

.section-heading {
    max-width: 760px;

    margin: 0 auto 56px;

    text-align: center;
}

.section-heading h2 {
    margin: 0 0 20px;

    color: var(--text-dark);

    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.section-heading > p:last-child {
    max-width: 660px;

    margin: 0 auto;

    color: var(--text-dark-muted);

    font-size: 18px;
    line-height: 1.7;
}

/* ==========================================
   FEATURES
   ========================================== */

.features-section {
    color: var(--text-dark);
    background: #f7f8fc;
}

.feature-grid {
    width: 100%;
    max-width: var(--page-width);

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;

    margin: 0 auto;
}

.feature-card {
    min-height: 310px;

    padding: 36px;

    border: 1px solid #e5e7f1;
    border-radius: 28px;

    background: white;

    box-shadow:
        0 18px 45px rgba(32, 36, 68, 0.07);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.feature-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 25px 55px rgba(32, 36, 68, 0.12);
}

.feature-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 26px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(108, 77, 255, 0.14),
            rgba(22, 141, 255, 0.15)
        );

    font-size: 29px;
}

.feature-card h3 {
    margin: 0 0 14px;

    font-size: 25px;
    letter-spacing: -0.025em;
}

.feature-card p {
    margin: 0 0 24px;

    color: var(--text-dark-muted);

    font-size: 16px;
    line-height: 1.7;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.feature-tags span {
    padding: 8px 11px;

    border-radius: 999px;

    color: #5c47c9;
    background: #f0edff;

    font-size: 12px;
    font-weight: 750;
}

/* ==========================================
   HOW IT WORKS
   ========================================== */

.how-section {
    color: var(--text-dark);
    background: white;
}

.steps-grid {
    width: 100%;
    max-width: var(--page-width);

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;

    margin: 0 auto;
}

.step-card {
    position: relative;

    padding: 38px 32px;

    border: 1px solid #e6e8f2;
    border-radius: 26px;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f8f8fc
        );
}

.step-number {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 27px;

    border-radius: 15px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--blue)
        );

    font-size: 20px;
    font-weight: 850;

    box-shadow:
        0 12px 25px rgba(92, 74, 255, 0.25);
}

.step-card h3 {
    margin: 0 0 13px;

    font-size: 23px;
}

.step-card p {
    margin: 0;

    color: var(--text-dark-muted);

    line-height: 1.7;
}

/* ==========================================
   PRICING / SIGN-UP PANEL
   ========================================== */

.pricing-section {
    background: #f7f8fc;
}

.pricing-card {
    width: 100%;
    max-width: var(--page-width);

    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 50px;

    margin: 0 auto;
    padding: 55px;

    border: 1px solid rgba(108, 77, 255, 0.14);
    border-radius: 32px;

    background: white;

    box-shadow:
        0 24px 60px rgba(37, 41, 78, 0.09);
}

.pricing-copy h2 {
    max-width: 700px;

    margin: 0 0 18px;

    color: var(--text-dark);

    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.pricing-copy > p:last-child {
    max-width: 680px;

    margin: 0;

    color: var(--text-dark-muted);

    font-size: 17px;
    line-height: 1.7;
}

.pricing-action {
    min-width: 235px;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;

    text-align: center;
}

.text-link {
    color: #6658b7;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}

/* ==========================================
   FINAL CTA
   ========================================== */

.final-cta {
    color: white;
    text-align: center;

    background:
        radial-gradient(
            circle at top,
            rgba(232, 41, 215, 0.35),
            transparent 37%
        ),
        linear-gradient(
            135deg,
            #4820ad,
            #126fd5
        );
}

.final-cta-content {
    max-width: 780px;

    margin: 0 auto;
}

.cta-logo {
    width: 125px;
    height: 96px;

    object-fit: contain;

    margin-bottom: 22px;
    padding: 8px;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.96);

    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.22);
}

.final-cta h2 {
    margin: 0 0 20px;

    font-size: clamp(42px, 6vw, 66px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.final-cta p {
    max-width: 640px;

    margin: 0 auto 34px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 19px;
    line-height: 1.7;
}

/* ==========================================
   FOOTER
   ========================================== */

.site-footer {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 36px;

    padding: 40px max(24px, calc((100vw - var(--page-width)) / 2));

    color: #b9bdd0;

    background: #070912;
    border-top: 1px solid var(--border-light);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-brand p {
    margin: 0;

    font-size: 14px;
}

.footer-logo {
    width: 90px;
    height: 62px;

    object-fit: contain;

    padding: 5px;

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.96);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.footer-links a {
    color: #d7daea;

    font-size: 14px;
    font-weight: 650;

    text-decoration: none;
}

.copyright {
    margin: 0;

    font-size: 13px;
    white-space: nowrap;
}

/* ==========================================
   TABLET
   ========================================== */

@media (max-width: 1000px) {

    .desktop-nav {
        display: none;
    }

    .hero {
        padding-top: 70px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;

        text-align: center;
    }

    .hero-text {
        margin: 0 auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-benefits {
        justify-content: center;
    }

    .hero-phone {
        min-height: auto;
    }

    .phone-frame {
        transform: none;
    }

    .pricing-card {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .pricing-copy h2,
    .pricing-copy > p:last-child {
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-action {
        width: min(350px, 100%);

        margin: 0 auto;
    }

    .site-footer {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .footer-brand,
    .footer-links {
        justify-content: center;
    }
}

/* ==========================================
   MOBILE
   ========================================== */

@media (max-width: 700px) {

    .navbar {
        min-height: 72px;
        gap: 12px;

        padding: 10px 16px;
    }

    .site-logo {
        width: 82px;
        height: 48px;
    }

    .nav-actions {
        gap: 8px;
    }

    .button-small {
        min-height: 40px;
        padding: 0 13px;

        font-size: 12px;
    }

    .nav-actions .button-secondary {
        display: none;
    }

    .hero {
        min-height: auto;

        padding: 70px 18px 80px;
    }

    .hero h1 {
        font-size: clamp(45px, 14vw, 64px);
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr;

        width: min(340px, 100%);
        margin-left: auto;
        margin-right: auto;
    }

    .hero-benefits {
        display: grid;
        grid-template-columns: 1fr;

        justify-items: center;
    }

    .phone-frame {
        width: min(340px, 100%);
    }

    .phone-screen {
        min-height: 610px;
    }

    .section {
        padding: 80px 18px;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .feature-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .step-card {
        padding: 30px 26px;
    }

    .pricing-card {
        padding: 35px 24px;
    }

    .final-cta h2 {
        font-size: 43px;
    }

    .site-footer {
        padding: 36px 20px;
    }

    .footer-brand {
        flex-direction: column;
        gap: 6px;
    }
}