@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');

:root {
    font-family: 'Cairo', sans-serif;
    color: #0f172a;
    background-color: #030712;
    --brand-dark: #01030a;
    --brand-purple: #5b21b6;
    --brand-orange: #f97316;
    --brand-pink: #ec4899;
    --brand-gradient: linear-gradient(135deg, #5b21b6, #ec4899);
}

[data-theme='light'] {
    --brand-dark: #ffffff;
    --brand-gradient: linear-gradient(135deg, #2563eb, #6366f1);
    --brand-orange: #fb923c;
    --brand-pink: #ec4899;
    color: #0f172a;
    background-color: #f4f5fb;
}

[data-theme='light'] .page {
    background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 60%, #fdfdfd 100%);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #030712;
}

.page {
    min-height: 100vh;
    background: linear-gradient(180deg, #030712 0%, #071324 55%, #0f172a 100%);
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
    background: var(--brand-gradient);
    color: white;
    box-shadow: 0 18px 35px rgba(95, 33, 192, 0.35);
}

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

.btn--secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.hero {
    padding: 2rem clamp(1rem, 3vw, 3rem);
}

.landing-nav {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.landing-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.15rem;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.landing-nav a:hover {
    border-color: rgba(255, 255, 255, 0.4);
}

.landing-nav__accent {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}
.hero__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
    margin-top: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo__artwork {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    overflow: hidden;
}

.logo__artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo__title {
    font-size: 1.1rem;
    margin: 0;
    color: white;
}

.logo__tagline {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero__content h1 {
    margin-top: 1.5rem;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.25;
    color: white;
}

.hero__lead {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-top: 1rem;
}

.hero__cta {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.75rem;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.hero__badges li {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
}

.hero__panel {
    position: relative;
    display: flex;
    justify-content: center;
}

.panel__card {
    width: min(320px, 90vw);
    border-radius: 32px;
    padding: 2rem;
    background: rgba(13, 27, 49, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 2;
    color: white;
}

.panel__card::before {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.35), rgba(59, 130, 246, 0.2));
    filter: blur(18px);
    z-index: -1;
}

.panel__title {
    margin: 0;
    letter-spacing: 0.4rem;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.panel__time {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.panel__text {
    color: rgba(255, 255, 255, 0.8);
}

.panel__glow {
    position: absolute;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(241, 245, 249, 0.4), transparent 60%);
    filter: blur(12px);
    bottom: -25%;
    right: -10%;
    z-index: 1;
}

.panel__tag {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: var(--brand-dark);
    border-radius: 999px;
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.section {
    padding: 4rem clamp(1.25rem, 4vw, 4rem);
}

.section__head {
    text-align: center;
    color: #e5e7eb;
}

.section__head h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.features__grid article {
    background: rgba(15, 23, 42, 0.85);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e5e7eb;
}

.feature__eyebrow {
    font-size: 0.75rem;
    color: var(--brand-orange);
    letter-spacing: 0.4rem;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.timeline {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem clamp(1rem, 3vw, 2rem);
    position: relative;
    overflow: hidden;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(109, 40, 217, 0.35), transparent 60%);
    filter: blur(18px);
    top: -80px;
    left: -60px;
    z-index: 0;
}

.timeline__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    padding: 3rem;
    position: relative;
    z-index: 1;
}

.timeline__steps .step {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 1rem 1.5rem;
    border-radius: 18px;
    border-left: 4px solid var(--brand-pink);
}

.step span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--brand-dark);
    color: white;
    font-weight: 700;
}

.board {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.65));
    color: white;
    border-radius: 30px;
    margin: 2rem clamp(1rem, 3vw, 2rem);
    padding: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.policy {
    background: rgba(15, 23, 42, 0.82);
    border-radius: 28px;
    margin: 2rem clamp(1rem, 3vw, 2rem);
    padding: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy ul {
    margin: 1rem 0 0;
    padding-left: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.policy li {
    margin-bottom: 0.6rem;
}

footer {
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 640px) {
    .hero__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .timeline__grid {
        padding: 2rem;
    }
}

.privacy-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #030712 0%, #090f1f 45%, #0b1123 100%);
    color: white;
}

.privacy-hero {
    padding: 3rem clamp(1rem, 3vw, 3rem);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    align-items: center;
}

.privacy-badge {
    display: inline-block;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(236, 72, 153, 0.15);
    color: var(--brand-pink);
    letter-spacing: 0.3rem;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.privacy-hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-top: 0.8rem;
}

.privacy-hero__image {
    display: flex;
    justify-content: center;
}

.privacy-hero__image img {
    width: 220px;
    height: 220px;
    border-radius: 32px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    background: #fff;
}

.privacy-page section {
    padding: 2rem clamp(1rem, 3vw, 3rem);
}

.privacy-section h2 {
    margin: 0 0 1rem;
    font-size: 2.1rem;
    color: white;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.privacy-grid article {
    padding: 1.5rem;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.privacy-grid h3 {
    margin-top: 0;
    font-size: 1.1rem;
    color: var(--brand-orange);
}

.privacy-tile {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.privacy-tile p {
    margin: 0;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.privacy-page footer {
    color: rgba(255, 255, 255, 0.5);
}
.theme-toggle {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
}

.theme-toggle__btn {
    width: 42px;
    height: 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    position: relative;
    cursor: pointer;
}

.theme-toggle__btn::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    top: 2px;
    right: 2px;
    transition: right 0.3s ease;
}

[data-theme='light'] .theme-toggle {
    color: rgba(15, 23, 42, 0.9);
}

[data-theme='light'] .theme-toggle__btn {
    border-color: rgba(15, 23, 42, 0.6);
    background: rgba(255, 255, 255, 0.5);
}

[data-theme='light'] .theme-toggle__btn::after {
    background: #0f172a;
    right: auto;
    left: 2px;
}

[data-theme='light'] .panel__card {
    background: rgba(245, 248, 255, 0.85);
    color: #0f172a;
}

[data-theme='light'] .panel__card::before {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.25), rgba(37, 99, 235, 0.25));
}

[data-theme='light'] .panel__tag {
    background: #fff;
    color: #0f172a;
    box-shadow: 0 10px 20px rgba(29, 78, 216, 0.3);
}

[data-theme='light'] .hero__lead {
    color: rgba(15, 23, 42, 0.8);
}

[data-theme='light'] .features__grid article {
    background: rgba(255, 255, 255, 0.95);
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.08);
}

[data-theme='light'] .timeline {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(15, 23, 42, 0.08);
}

[data-theme='light'] .timeline__steps .step {
    background: #f5f5f5;
    border-color: var(--brand-orange);
}

[data-theme='light'] .board {
    background: #111827;
}

[data-theme='light'] .policy {
    background: #f9fafb;
    border-color: rgba(15, 23, 42, 0.1);
}

[data-theme='light'] .policy ul {
    color: #0f172a;
}
.delete-page {
    min-height: 100vh;
    padding-bottom: 3rem;
}

.delete-page[data-theme='dark'] {
    background: linear-gradient(180deg, #01030a 0%, #061021 55%, #0b1123 100%);
    color: white;
}

.delete-page[data-theme='light'] {
    background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 60%, #e5e7eb 100%);
    color: #0b1c2c;
}

.delete-hero {
    padding: 3rem clamp(1rem, 3vw, 3rem);
    background: radial-gradient(circle at top right, rgba(126, 56, 214, 0.3), transparent 50%), rgba(5, 6, 15, 0.9);
    border-radius: 34px;
    margin: 1rem clamp(1rem, 3vw, 2rem);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.6);
}

.delete-page[data-theme='light'] .delete-hero {
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.2), transparent 60%), rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #0f172a;
}

.delete-hero h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin: 0.5rem 0;
}

.delete-hero p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.delete-card {
    margin: 0 auto;
    max-width: 720px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 32px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
}

.delete-page[data-theme='light'] .delete-card {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(15, 23, 42, 0.08);
    color: #0f172a;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
}

.delete-card h2 {
    margin-top: 0;
    color: #fde047;
}

.delete-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.delete-form label {
    display: flex;
    flex-direction: column;
    font-size: 0.95rem;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.8);
}

.delete-form input,
.delete-form textarea {
    padding: 0.85rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.03);
    color: white;
    font-size: 1rem;
}

.delete-form textarea {
    resize: vertical;
}

.delete-checkbox {
    flex-direction: row;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
}

.delete-checkbox input {
    width: 18px;
    height: 18px;
}

.delete-feedback {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.5);
    border-radius: 18px;
    color: #4ade80;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.delete-feedback.active {
    opacity: 1;
}

.delete-hero {
    padding: 3rem clamp(1rem, 3vw, 3rem);
    background: radial-gradient(circle at top right, rgba(126, 56, 214, 0.3), transparent 50%), rgba(5, 6, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 34px;
    margin: 1rem clamp(1rem, 3vw, 2rem);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.6);
}

.delete-hero__content {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.delete-hero__notes {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: grid;
    gap: 0.4rem;
}
