:root {
    --bg: #f6f8ff;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: #ffffff;
    --line: rgba(148, 163, 184, 0.24);
    --text: #0f172a;
    --muted: #475569;
    --primary: #2563eb;
    --primary-deep: #1d4ed8;
    --accent: #f472b6;
    --accent-soft: #fde7f3;
    --violet-soft: #efe9ff;
    --shadow: 0 24px 80px rgba(37, 99, 235, 0.12);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(244, 114, 182, 0.18), transparent 24%),
        radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.15), transparent 28%),
        linear-gradient(180deg, #fbfcff 0%, #f5f7ff 52%, #eff4ff 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

button,
input {
    font: inherit;
}

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

.page-shell {
    position: relative;
    width: min(calc(100% - 32px), var(--container));
    margin: 20px auto;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.56);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 80%);
    pointer-events: none;
}

.ambient {
    position: absolute;
    border-radius: 999px;
    filter: blur(12px);
    opacity: 0.7;
    pointer-events: none;
}

.ambient-one {
    top: -80px;
    right: 8%;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.28), rgba(59, 130, 246, 0));
}

.ambient-two {
    left: -90px;
    bottom: 100px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.2), rgba(244, 114, 182, 0));
}

.topbar,
.hero-wrap,
.status-section,
.footer {
    position: relative;
    z-index: 1;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 42px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand-mark {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), #60a5fa);
    color: white;
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.3);
}

.brand-text {
    font-size: 1.05rem;
}

.topbar-badge {
    padding: 10px 16px;
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 600;
}

.hero-wrap {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 34px;
    padding: 12px 0 36px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    margin-bottom: 18px;
    border: 1px solid rgba(244, 114, 182, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    color: #334155;
    font-size: 0.92rem;
    font-weight: 600;
}

.eyebrow-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #fb7185);
    box-shadow: 0 0 0 6px rgba(244, 114, 182, 0.12);
}

.hero-copy h1 {
    margin: 0;
    max-width: 12ch;
    font-size: clamp(2.8rem, 5vw, 5.6rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.lead {
    max-width: 58ch;
    margin: 22px 0 28px;
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--muted);
}

.notify-card {
    max-width: 640px;
    padding: 22px;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.notify-label {
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
    font-weight: 700;
}

.notify-row {
    display: flex;
    gap: 12px;
}

.notify-row input {
    flex: 1;
    min-width: 0;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(248, 250, 252, 0.9);
    color: var(--text);
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.notify-row input:focus {
    border-color: rgba(37, 99, 235, 0.45);
    box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.1);
}

.notify-row button,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 18px;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.notify-row button {
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: white;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.24);
}

.notify-row button:hover,
.btn:hover {
    transform: translateY(-2px);
}

.notify-note {
    margin: 12px 0 0;
    color: #64748b;
    font-size: 0.92rem;
}

.notify-note.success {
    color: #0f766e;
}

.notify-note.error {
    color: #be123c;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}

.btn {
    padding: 15px 20px;
    font-weight: 700;
}

.btn-primary {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: white;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.16);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(148, 163, 184, 0.24);
    color: var(--text);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.trust-pill {
    min-width: 196px;
    padding: 14px 16px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
}

.trust-pill strong,
.trust-pill span {
    display: block;
}

.trust-pill strong {
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.trust-pill span {
    color: #64748b;
    font-size: 0.88rem;
}

.hero-visual {
    position: relative;
}

.visual-stage {
    position: relative;
    min-height: 580px;
    padding: 22px;
}

.postcard-card {
    position: relative;
    margin: 72px auto 0;
    width: min(100%, 530px);
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(241, 246, 255, 0.9));
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
    transform: rotate(-4deg);
}

.cinematic-card {
    box-shadow: 0 34px 90px rgba(15, 23, 42, 0.16);
}

.postcard-label {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #475569;
    font-size: 0.84rem;
    font-weight: 700;
    border: 1px solid rgba(148, 163, 184, 0.16);
}

.photo-scene {
    position: relative;
    min-height: 336px;
    overflow: hidden;
    border-radius: 28px;
    background: #cbd5e1;
}

.beykoz-photo {
    display: block;
    width: 100%;
    height: 336px;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.02);
}

.photo-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.02) 28%, rgba(15, 23, 42, 0.16) 100%),
        linear-gradient(90deg, rgba(15, 23, 42, 0.14) 0%, transparent 30%, transparent 72%, rgba(255, 255, 255, 0.08) 100%);
}

.photo-shine {
    position: absolute;
    top: -10%;
    left: -12%;
    width: 46%;
    height: 130%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.04), transparent 72%);
    transform: rotate(9deg);
    pointer-events: none;
}

.photo-caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    color: white;
}

.photo-caption strong,
.photo-caption span {
    display: block;
}

.photo-caption strong {
    margin-bottom: 6px;
    font-size: 1rem;
}

.photo-caption span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    line-height: 1.55;
}

.postcard-content {
    padding: 18px 8px 6px;
}

.postcard-content strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.02rem;
}

.postcard-content p {
    margin: 0;
    color: #64748b;
    line-height: 1.7;
}

.mini-preview-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: min(100%, 440px);
    margin: 18px auto 0;
}

.mini-preview {
    height: 86px;
    border-radius: 22px;
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.card-a {
    background:
        radial-gradient(circle at 20% 30%, rgba(244, 114, 182, 0.24), transparent 20%),
        linear-gradient(180deg, #fdf2f8, #fff);
}

.card-b {
    background:
        radial-gradient(circle at 76% 30%, rgba(59, 130, 246, 0.22), transparent 20%),
        linear-gradient(180deg, #eff6ff, #fff);
}

.card-c {
    background:
        radial-gradient(circle at 50% 30%, rgba(168, 85, 247, 0.18), transparent 22%),
        linear-gradient(180deg, #f5f3ff, #fff);
}

.floating-badge {
    position: absolute;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
    color: #334155;
    font-size: 0.92rem;
    font-weight: 700;
    animation: floatY 7s ease-in-out infinite;
}

.badge-top {
    top: 40px;
    left: 8%;
}

.badge-middle {
    top: 210px;
    right: 0;
    animation-delay: 1.8s;
}

.badge-bottom {
    bottom: 44px;
    left: 14%;
    animation-delay: 3.2s;
}

.orbit {
    position: absolute;
    border: 1px dashed rgba(37, 99, 235, 0.18);
    border-radius: 50%;
}

.orbit-one {
    top: 76px;
    right: 42px;
    width: 88px;
    height: 88px;
}

.orbit-two {
    bottom: 24px;
    right: 110px;
    width: 132px;
    height: 132px;
}

.spark {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f9a8d4, #93c5fd);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.38);
    animation: pulse 3.4s ease-in-out infinite;
}

.spark-one { top: 108px; right: 88px; }
.spark-two { bottom: 76px; left: 8%; animation-delay: 1.4s; }
.spark-three { top: 44%; left: 6%; animation-delay: 2.4s; }

.status-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 10px 0 22px;
}

.status-card {
    padding: 24px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.94);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
}

.status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.92), rgba(244, 114, 182, 0.72));
    color: white;
    font-weight: 800;
    font-size: 0.95rem;
}

.status-card h2 {
    margin: 0 0 10px;
    font-size: 1.18rem;
    letter-spacing: -0.03em;
}

.status-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.footer p,
.footer a {
    margin: 6px 0 0;
    color: #64748b;
}

.footer a {
    font-weight: 600;
}

@keyframes floatY {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.14); opacity: 1; }
}

@media (max-width: 1080px) {
    .hero-wrap,
    .status-section {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        max-width: 14ch;
    }

    .visual-stage {
        min-height: 500px;
    }

    .postcard-card {
        transform: none;
    }
}

@media (max-width: 760px) {
    .page-shell {
        width: min(calc(100% - 18px), var(--container));
        margin: 9px auto;
        padding: 18px;
        border-radius: 28px;
    }

    .topbar {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 30px;
    }

    .hero-copy h1 {
        max-width: none;
        font-size: clamp(2.4rem, 12vw, 4rem);
    }

    .lead {
        font-size: 1rem;
    }

    .notify-card {
        padding: 16px;
    }

    .notify-row {
        flex-direction: column;
    }

    .notify-row button,
    .notify-row input,
    .btn {
        width: 100%;
    }

    .hero-actions,
    .trust-row {
        flex-direction: column;
    }

    .visual-stage {
        min-height: 400px;
        padding: 6px;
    }

    .postcard-card {
        margin-top: 50px;
        padding: 14px;
        border-radius: 28px;
    }

    .photo-scene {
        min-height: 260px;
    }

    .beykoz-photo {
        height: 260px;
    }

    .photo-caption {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 13px 14px;
    }

    .photo-caption strong {
        font-size: 0.94rem;
    }

    .photo-caption span {
        font-size: 0.82rem;
    }

    .floating-badge {
        font-size: 0.82rem;
        padding: 10px 12px;
    }

    .badge-middle,
    .orbit-two,
    .spark-three {
        display: none;
    }

    .footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
