:root {
    --gold: #e8a020;
    --gold-light: #f5bf5a;
    --gold-dim: rgba(232, 160, 32, 0.12);
    --gold-border: rgba(232, 160, 32, 0.28);
    --dark: #ebfdff;
    --dark-2: #f1ffff;
    --dark-3: #f5f5f5;
    --dark-4: #f7f7f7;
    --dark-5: #ffffff;
    --text: #202020;
    --muted: #8b8b8b;
    --dim: #6b6b6b;
    --border: rgba(0, 0, 0, 0.07);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 6%;
    background: rgba(235, 253, 255, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

.logo-hex {
    width: 34px;
    height: 34px;
    background: var(--gold);
    clip-path: polygon(50% 0%,
            100% 25%,
            100% 75%,
            50% 100%,
            0% 75%,
            0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Bebas Neue", sans-serif;
    font-size: 15px;
    color: #000;
    flex-shrink: 0;
}

.logo-text {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.35rem;
    letter-spacing: 0.07em;
    color: var(--text);
    line-height: 1;
}

.logo-text em {
    color: var(--gold);
    font-style: normal;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.2rem;
}

nav ul a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
}

nav ul a:hover {
    color: var(--gold);
}

.nav-btn {
    background: var(--gold);
    color: #000 !important;
    padding: 0.45rem 1.2rem;
    border-radius: 4px;
    font-weight: 600 !important;
}

.nav-btn:hover {
    background: var(--gold-light) !important;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 9rem 6% 5rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 70% 55% at 65% 45%,
            rgba(9, 9, 9, 0.055) 0%,
            transparent 65%),
        linear-gradient(160deg, #d4f1ff 0%, #fffafa 100%);
}

.hero-deco {
    position: absolute;
    top: 6rem;
    right: 6%;
    width: 340px;
    height: 340px;
    z-index: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    pointer-events: none;
}

.hero-deco::after {
    content: "";
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    border: 1px solid var(--gold-border);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    color: var(--gold);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.38rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.8rem;
}

.chip-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.25;
    }
}

.hero h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(3.4rem, 7.5vw, 6.5rem);
    line-height: 0.96;
    letter-spacing: 0.02em;
    margin-bottom: 1.4rem;
}

.hero h1 .hi {
    color: var(--gold);
}

.hero p {
    font-size: 1.05rem;
    color: var(--muted);
    font-weight: 300;
    max-width: 500px;
    margin-bottom: 2.4rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-g {
    background: var(--gold);
    color: #000;
    padding: 0.82rem 1.9rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.2s;
    display: inline-block;
}

.btn-g:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.btn-o {
    border: 1px solid var(--gold-border);
    color: var(--gold);
    padding: 0.82rem 1.9rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.92rem;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.2s;
    display: inline-block;
}

.btn-o:hover {
    background: var(--gold-dim);
    border-color: var(--gold);
}

.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 6%;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dim);
}

.scroll-line {
    width: 40px;
    height: 1px;
    background: var(--dim);
}

/* SHARED */
section {
    padding: 3.5rem 6%;
}

.label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.7rem;
}

.title {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    line-height: 0.97;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

.sub {
    color: var(--muted);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 3rem;
}

/* ABOUT */
.about {
    background: var(--dark-2);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-ring {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-ring::before {
    content: "";
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    border: 1px solid var(--gold-border);
}

.about-center {
    width: 140px;
    height: 140px;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.about-center .big {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.8rem;
    line-height: 1;
    color: var(--gold);
}

.about-center .sm {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}

.orbit-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
}

.od1 {
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.od2 {
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.35;
}

.od3 {
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.55;
}

.od4 {
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.2;
}

.pillars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pillar {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 1.1rem 1.3rem;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.pillar-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.pillar h4 {
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.pillar p {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 300;
}

/* OFFERINGS */
.offerings {
    background: var(--dark);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.3rem;
}

.offer-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem 1.6rem;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.offer-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.offer-card:hover {
    border-color: var(--gold-border);
    transform: translateY(-3px);
}

.offer-card:hover::after {
    transform: scaleX(1);
}

.offer-num {
    font-family: "Bebas Neue", sans-serif;
    font-size: 3.5rem;
    color: var(--gold-dim);
    line-height: 1;
    position: absolute;
    top: 0.8rem;
    right: 1.2rem;
}

.offer-icon {
    font-size: 2rem;
    margin-bottom: 1.1rem;
}

.offer-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.offer-card p {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.65;
}

/* APP SECTION */
.app-section {
    background: var(--dark-2);
}

.app-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2.5rem;
}

.app-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 400;
}

.feat-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.store-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--dark-4);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.8rem 1.4rem;
    text-decoration: none;
    transition: all 0.2s;
    color: var(--text);
}

.store-btn:hover {
    border-color: var(--gold-border);
    background: var(--dark-5);
}

.store-icon {
    font-size: 1.5rem;
}

.store-info {
    line-height: 1.2;
}

.store-sub {
    font-size: 0.65rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.store-name {
    font-size: 0.95rem;
    font-weight: 600;
}

/* PHONE MOCKUP */
.phone-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.phone-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid var(--gold-border);
    z-index: 0;
    animation: spin 18s linear infinite;
}

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

.phone {
    width: 225px;
    background: var(--dark-3);
    border: 1.5px solid var(--dark-5);
    border-radius: 36px;
    padding: 14px 10px;
    position: relative;
    z-index: 1;
}

.phone-notch {
    width: 60px;
    height: 10px;
    background: var(--dark-5);
    border-radius: 100px;
    margin: 0 auto 10px;
}

.phone-screen {
    background: var(--dark);
    border-radius: 28px;
    overflow: hidden;
}

.phone-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px 6px;
    font-size: 9px;
    color: var(--muted);
    font-weight: 500;
}

.phone-header {
    padding: 8px 16px 12px;
    border-bottom: 1px solid var(--border);
}

.phone-app-name {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.1rem;
    color: var(--text);
    letter-spacing: 0.06em;
}

.phone-app-name em {
    color: var(--gold);
    font-style: normal;
}

.phone-sub {
    font-size: 8px;
    color: var(--muted);
    margin-top: 1px;
}

.phone-body {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phone-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-card-ico {
    font-size: 1.2rem;
}

.phone-card-label {
    font-size: 8.5px;
    font-weight: 600;
    color: var(--text);
}

.phone-card-sub {
    font-size: 7px;
    color: var(--muted);
    margin-top: 1px;
}

.phone-tag {
    font-size: 6.5px;
    background: var(--gold-dim);
    color: var(--gold);
    border: 1px solid var(--gold-border);
    padding: 2px 6px;
    border-radius: 100px;
    margin-left: auto;
    white-space: nowrap;
}

.phone-soon {
    margin: 10px 14px 14px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

.phone-soon .soon-big {
    font-family: "Bebas Neue", sans-serif;
    font-size: 13px;
    color: var(--gold);
}

.phone-soon p {
    font-size: 7.5px;
    color: var(--gold);
    font-weight: 500;
    margin-top: 2px;
}

/* CONTACT */
.contact {
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--dark-3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-item p {
    font-size: 0.83rem;
    color: var(--muted);
    font-weight: 300;
}

.contact-item a {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.83rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field.full {
    grid-column: 1 / -1;
}

.field label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    font-weight: 500;
}

.field input,
.field textarea,
.field select {
    background: var(--dark-3);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.78rem 1rem;
    border-radius: 6px;
    font-family: "DM Sans", sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--gold);
}

.field input::placeholder,
.field textarea::placeholder {
    color: var(--dim);
}

.field textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    grid-column: 1 / -1;
    background: var(--gold);
    color: #000;
    border: none;
    padding: 0.9rem;
    border-radius: 6px;
    font-family: "DM Sans", sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.03em;
}

.submit-btn:hover {
    background: var(--gold-light);
}

/* FOOTER */
footer {
    background: var(--dark-2);
    border-top: 1px solid var(--border);
    padding: 3.5rem 6% 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--muted);
    max-width: 280px;
    font-weight: 300;
    line-height: 1.7;
    margin-top: 0.8rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.83rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--dim);
}

.footer-bottom span {
    color: var(--gold);
}

.social-row {
    display: flex;
    gap: 0.8rem;
}

.soc {
    width: 34px;
    height: 34px;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
    transition: all 0.2s;
}

.soc:hover {
    border-color: var(--gold-border);
    color: var(--gold);
}

/* ANIMATIONS */
@keyframes up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.chip {
    animation: up 0.55s ease both;
}

.hero h1 {
    animation: up 0.55s 0.1s ease both;
}

.hero p {
    animation: up 0.55s 0.2s ease both;
}

.hero-btns {
    animation: up 0.55s 0.3s ease both;
}

/* MOBILE */
@media (max-width: 820px) {
    nav ul {
        display: none;
    }

    .about-grid,
    .app-inner,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-visual {
        display: none;
    }

    .phone-wrap {
        display: none;
    }

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

    .field.full,
    .submit-btn {
        grid-column: 1;
    }
}