/* Reset-ish */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
                 "Segoe UI", sans-serif;
    background: #050509;
    color: #f4f4f7;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Layout helpers */

.section {
    padding: 80px 24px;
}

.section-dark {
    background: radial-gradient(circle at top, #181522 0, #07070e 60%, #050509 100%);
}

.section-highlight {
    background: radial-gradient(circle at top left, #f5c85a22 0, #100c18 55%, #050509 100%);
}

.section-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.section-split {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header.align-left {
    text-align: left;
}

.section-header h2 {
    font-size: 32px;
    margin: 0 0 10px;
    letter-spacing: 0.02em;

    /* ALTIN GRADIENT YAZI */
    background: linear-gradient(90deg, #f5d77a, #ffe9a8 35%, #f5d77a 70%, #b89753);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    /* PARLAKLIK */
    text-shadow:
        0 0 12px rgba(255, 225, 150, 0.35),
        0 0 28px rgba(255, 210, 120, 0.25);
}


.section-header p {
    margin: 0 auto;  /* ORTALAMA DÜZELİR */
    color: #b6b6d2;
    max-width: 560px;
    text-align: center;
}


.section-header.align-left p {
    max-width: none;
}

/* Header / Navbar */

.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    right: 0;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease, padding 0.25s ease;
    padding: 14px 0;
    background: linear-gradient(to bottom, rgba(5,5,13,0.97), rgba(5,5,13,0.78), transparent);
    backdrop-filter: blur(14px);
}

.site-header.header--scrolled {
    padding: 8px 0;
    background: rgba(6,6,14,0.97);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.header-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(245,200,90,0.55);
    background: radial-gradient(circle at 30% 20%, #fff9df, #f5c85a, #7c5721);
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 16px;
    letter-spacing: 0.18em;
}

.brand-tagline {
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.65;
}

.main-nav {
    display: flex;
    gap: 18px;
    font-size: 14px;
    opacity: 0.92;
}

.main-nav a {
    padding: 4px 0;
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f5c85a, #ffdf8e);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease-out;
}

.main-nav a:hover::after {
    transform: scaleX(1);
}

.header-cta {
    font-size: 13px;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.12s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #f6d86a, #f2b63c);
    color: #201307;
    box-shadow:
        0 0 40px rgba(246,216,106,0.35),
        0 12px 30px rgba(0,0,0,0.85);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffe58f, #f7c14d);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(245,200,90,0.45);
    color: #f5c85a;
}

.btn-ghost:hover {
    background: rgba(245,200,90,0.08);
}

.btn-outline {
    border: 1px solid rgba(245,200,90,0.45);
    background: rgba(18,18,26,0.9);
    color: #f5c85a;
}

.btn-outline:hover {
    background: rgba(245,200,90,0.1);
}

.btn-full {
    width: 100%;
}

/* HERO */

.hero {
    position: relative;
    padding-top: 120px; /* header offset */
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    inset: -30%;
    background:
        radial-gradient(circle at top left, #f5c85a18 0, transparent 55%),
        radial-gradient(circle at right, #f5c85a12 0, transparent 55%),
        radial-gradient(circle at bottom left, #0b0715 0, #050509 58%, #000 100%);
    z-index: -3;
}

.hero-orbit-glow {
    position: absolute;
    width: 540px;
    height: 540px;
    border-radius: 999px;
    background: radial-gradient(circle, #f5c85a26 0, transparent 60%);
    right: 8%;
    top: 10%;
    filter: blur(2px);
    z-index: -2;
}

.hero-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 14px;
    border-radius: 999px;
    background: rgba(14, 14, 24, 0.92);
    border: 1px solid rgba(245,200,90,0.45);
    color: #f5c85a;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-title {
    font-size: 40px;
    line-height: 1.1;
    margin: 0 0 16px;
}

.hero-title .highlight {
    color: #f5df9a;
    text-shadow: 0 0 32px rgba(245,200,90,0.55);
}

.hero-lead {
    margin: 0 0 20px;
    color: #c4c4dd;
    max-width: 540px;
    font-size: 15px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.hero-tags span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    background: radial-gradient(circle at top left, rgba(245,200,90,0.12), rgba(8,8,16,0.95));
    color: #f9f5ff;
}

/* Countdown card */

.hero-countdown-card {
    margin-top: 10px;
    padding: 14px 16px;
    border-radius: 18px;
    background: radial-gradient(circle at top left, #f5c85a1e, #090814 60%, #050509 100%);
    border: 1px solid rgba(245,200,90,0.3);
    box-shadow: 0 18px 45px rgba(0,0,0,0.8);
    max-width: 420px;
}

.countdown-label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #f5e2a5;
    margin-bottom: 8px;
}

#launch-countdown {
    display: flex;
    gap: 16px;
    margin-bottom: 4px;
}

.cd-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
    width: 90px;
    height: 90px;
    padding-top: 14px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(0,0,0,0.7));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 0 20px rgba(245,200,90,0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cd-item::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(120deg, #f6d86a, #f2b63c, #8a6cff, #f6d86a);
    background-size: 220% 220%;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderGlow 10s linear infinite;
    opacity: 0.9;
}

.cd-num {
    font-size: 22px;
    font-weight: 600;
    color: #ffe6a3;
    position: relative;
    z-index: 1;
}

.cd-label {
    font-size: 10px;
    opacity: 0.8;
    letter-spacing: 0.16em;
    position: relative;
    z-index: 1;
    margin-top: 4px;
    color: #f7f7ff;
}

.countdown-note {
    font-size: 11px;
    color: #c8c8e0;
    opacity: 0.85;
    margin-top: 8px;
}

/* HERO COIN */

.hero-coin-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-coin-orbit {
    position: relative;
    width: 340px;
    height: 340px;
    transform-style: preserve-3d;
    animation: coinFloat 9s ease-in-out infinite;
    will-change: transform;
}

.hero-coin {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 24px 70px rgba(0,0,0,0.95));
    transform: translateZ(40px) rotateY(-12deg);
    animation: coinSoftSpin 34s linear infinite;
}

.hero-coin-shadow {
    position: absolute;
    inset: auto 8%;
    bottom: 4px;
    height: 46px;
    border-radius: 999px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.7) 0, transparent 65%);
    filter: blur(6px);
    transform: translateZ(0);
}

.hero-coin-glow-ring {
    position: absolute;
    inset: 10%;
    border-radius: 999px;
    border: 1px solid rgba(245,200,90,0.18);
    box-shadow:
        0 0 45px rgba(245,200,90,0.6),
        0 0 120px rgba(245,200,90,0.4);
    opacity: 0.5;
}

/* Cards */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.cards-3 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
    position: relative;
    border-radius: 18px;
    padding: 18px 18px 20px;
    background: radial-gradient(circle at top left, #f5c85a0f, #0c0b14 55%, #060611 100%);
    border: 1px solid rgba(255,255,255,0.04);
    box-shadow: 0 14px 40px rgba(0,0,0,0.8);
    overflow: hidden;
    transform-style: preserve-3d;
    transition:
        transform 0.18s ease-out,
        box-shadow 0.18s ease-out,
        background 0.35s ease-out;
    animation: cardGlowPulse 8s ease-in-out infinite alternate;
    will-change: transform, box-shadow;
}

/* Animated gradient border */
.card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(120deg, #f6d86a, #f2b63c, #8a6cff, #f6d86a);
    background-size: 220% 220%;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: borderGlow 12s linear infinite;
    opacity: 0.9;
}

/* Soft inner glow */
.card::after {
    content: "";
    position: absolute;
    inset: 25% 12%;
    border-radius: 999px;
    background: radial-gradient(circle at 20% 0, rgba(245,200,90,0.18), transparent 65%);
    opacity: 0.7;
    mix-blend-mode: screen;
    pointer-events: none;
}

.card h3 {
    margin: 0 0 8px;
    font-size: 18px;

    /* ALTIN GRADIENT */
    background: linear-gradient(90deg, #f5d77a, #ffe9a8 40%, #f5d77a 70%, #b89753);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    text-shadow:
        0 0 10px rgba(255, 225, 150, 0.25),
        0 0 20px rgba(255, 210, 120, 0.15);
}


.card p {
    margin: 0;
    color: #c7c7df;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.card-horizontal {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.card-label {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #f5c85a;
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

/* Hover 3D state (mouse parallax JS bunu tetikliyor) */
.card.is-tilting {
    box-shadow:
        0 24px 70px rgba(0,0,0,0.95),
        0 0 40px rgba(245,200,90,0.35);
}

/* Bullet list */

.bullet-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.bullet-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #e1e1f2;
}

.bullet-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #f5c85a;
}

/* Form */

.section-form-card {
    background: radial-gradient(circle at top, #f5c85a16, #080712 55%, #040309 100%);
    border-radius: 22px;
    border: 1px solid rgba(245,200,90,0.35);
    box-shadow: 0 20px 60px rgba(0,0,0,0.9);
    padding: 20px 22px 22px;
    position: relative;
    overflow: hidden;
}

.section-form-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(130deg, #f6d86a, #f2b63c, #8a6cff, #f6d86a);
    background-size: 220% 220%;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.7;
    animation: borderGlow 14s linear infinite;
    pointer-events: none;
}

.early-form .form-group {
    margin-bottom: 12px;
}

.early-form label {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
    color: #f7f2ff;
}

.early-form input {
    width: 100%;
    padding: 9px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(3,3,8,0.9);
    color: #fff;
    font-size: 14px;
}

.early-form input:focus {
    outline: none;
    border-color: #f5c85a;
    box-shadow: 0 0 0 1px rgba(245,200,90,0.6);
}

.form-check {
    margin: 10px 0 14px;
    font-size: 12px;
    color: #e1e1f5;
}

.form-check input {
    margin-right: 6px;
}

.form-note {
    font-size: 11px;
    color: #d0cee7;
    margin-top: 8px;
}

/* Footer */

.site-footer {
    padding: 28px 24px 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(to top, #020208, #050509);
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.footer-logo {
    font-size: 15px;
    letter-spacing: 0.18em;
}

.footer-copy {
    font-size: 12px;
    color: #bcbcd8;
}

.footer-links {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #d5d5f0;
}

.footer-links a:hover {
    color: #f5c85a;
}

/* Scroll reveal (tüm bölümler için) */

.sr-hidden {
    opacity: 0;
    filter: blur(8px);
}

.sr-visible {
    opacity: 1;
    filter: blur(0);
    transition:
        opacity 0.7s ease-out,
        filter 0.7s ease-out;
}

/* Animations */

@keyframes coinFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes coinSoftSpin {
    0% {
        transform: translateZ(40px) rotateY(-12deg) rotateZ(0deg);
    }
    100% {
        transform: translateZ(40px) rotateY(-12deg) rotateZ(360deg);
    }
}

/* Gradient border animasyonu */
@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Card glow nefes efekti */
@keyframes cardGlowPulse {
    0% {
        box-shadow: 0 14px 32px rgba(0,0,0,0.85);
    }
    50% {
        box-shadow:
            0 20px 60px rgba(0,0,0,0.95),
            0 0 26px rgba(245,200,90,0.35);
    }
    100% {
        box-shadow:
            0 16px 42px rgba(0,0,0,0.88),
            0 0 14px rgba(245,200,90,0.18);
    }
}

/* Responsive */

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
        text-align: left;
    }

    .hero-coin-wrap {
        order: -1;
        margin-bottom: 26px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-countdown-card {
        max-width: none;
    }

    .section-split {
        grid-template-columns: minmax(0, 1fr);
    }

    .main-nav {
        display: none; /* basit; istersen mobil menü ekleyebiliriz */
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 64px 18px;
    }

    .hero {
        padding-bottom: 64px;
    }

    .hero-coin-orbit {
        width: 270px;
        height: 270px;
    }

    #launch-countdown {
        gap: 10px;
    }

    .cd-item {
        min-width: 58px;
        width: 78px;
        height: 78px;
        padding-top: 10px;
    }
}

/* =============================== */
/* (İstersen kullanabileceğin ekstra
   cam efektli bağımsız kutular)   */
/* =============================== */

.countdown-container {
    display: flex;
    gap: 18px;
    justify-content: flex-start;
    margin-top: 18px;
}

.cd-box {
    width: 105px;
    height: 105px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 14px;
    text-align: center;
    padding-top: 15px;
    position: relative;
    box-shadow: 0 0 18px rgba(255, 215, 0, 0.18);
}

.cd-box span {
    font-size: 36px;
    font-weight: 900;
    color: #ffe08a;
    display: block;
    line-height: 40px;
}

.cd-box label {
    font-size: 13px;
    color: #cfcfcf;
    letter-spacing: 1px;
}

/* Mobil uyumluluk (bağımsız cam kutular için) */
@media (max-width: 680px) {
    .countdown-container {
        gap: 12px;
    }

    .cd-box {
        width: 80px;
        height: 80px;
        padding-top: 10px;
    }

    .cd-box span {
        font-size: 28px;
    }
}
