:root {
    --brand-black: #0b0b0b;
    --brand-orange: #ff6a00;
    --brand-orange-rgb: 255, 106, 0;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
}

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

body {
    background-color: var(--brand-black);
    color: white;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Background Effects */
.bg-glow {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.blob-1 {
    top: -20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: rgba(var(--brand-orange-rgb), 0.1);
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 50%;
    height: 50%;
    background: rgba(var(--brand-orange-rgb), 0.05);
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 60px 24px;
    position: relative;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 48px;
}

.avatar-container {
    position: relative;
    width: 128px;
    height: 128px;
    margin: 0 auto 24px;
}

.avatar-glow {
    position: absolute;
    inset: 0;
    background: var(--brand-orange);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.2;
}

.avatar-box {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #0b0b0b);
    border: 2px solid rgba(var(--brand-orange-rgb), 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-main {
    width: 48px;
    height: 48px;
    color: var(--brand-orange);
    filter: drop-shadow(0 0 8px rgba(var(--brand-orange-rgb), 0.5));
    animation: pulse 2s infinite;
}

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

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.header h1 span {
    color: var(--brand-orange);
}

.tagline {
    color: #9ca3af;
    font-size: 1.125rem;
    font-weight: 300;
}

.highlight {
    color: white;
    font-weight: 500;
    font-style: italic;
}

/* Main Conversion Button */
.main-cta-container {
    margin-bottom: 40px;
}

.main-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 80px;
    padding: 0 24px;
    background: var(--brand-orange);
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(var(--brand-orange-rgb), 0.4);
}

.main-btn:hover {
    transform: scale(1.02);
}

.main-btn:active {
    transform: scale(0.98);
}

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.6);
}

.btn-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: black;
}

.btn-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
}

/* Secondary Links */
.links-section {
    margin-bottom: 48px;
}

.section-title {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #6b7280;
    font-weight: 700;
    margin-bottom: 16px;
}

.links-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-card {
    display: flex;
    align-items: center;
    padding: 16px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(var(--brand-orange-rgb), 0.4);
    transform: translateX(5px);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: #1a1a1a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-orange);
    margin-right: 16px;
    flex-shrink: 0;
}

.link-card:hover .card-icon {
    background: var(--brand-orange);
    color: black;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    font-size: 14px;
    font-weight: 700;
}

.link-card:hover h3 {
    color: var(--brand-orange);
}

.card-content p {
    font-size: 12px;
    color: #6b7280;
}

.arrow {
    width: 16px;
    height: 16px;
    color: #4b5563;
}

.link-card:hover .arrow {
    color: var(--brand-orange);
}

/* Proof Card */
.proof-card {
    padding: 24px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 48px;
}

.proof-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.avatars {
    display: flex;
    margin-right: 12px;
}

.mini-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1f2937;
    border: 2px solid var(--brand-black);
    margin-right: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #9ca3af;
}

.proof-header p {
    font-size: 12px;
    color: #9ca3af;
}

.proof-header span {
    color: white;
    font-weight: 700;
}

.proof-content {
    display: flex;
    gap: 12px;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--brand-orange);
    flex-shrink: 0;
}

.proof-content p {
    font-size: 14px;
    color: #d1d5db;
    font-style: italic;
}

.owner {
    display: block;
    margin-top: 8px;
    color: var(--brand-orange);
    font-style: normal;
    font-weight: 700;
}

/* Footer */
.footer {
    text-align: center;
    padding-bottom: 32px;
}

.footer h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer h2 span {
    color: var(--brand-orange);
}

.floating-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-orange);
    border-bottom: 2px solid rgba(var(--brand-orange-rgb), 0.2);
    padding-bottom: 4px;
    font-weight: 500;
}

.floating-cta {
    animation: move-up 2s ease-in-out infinite;
}

@keyframes move-up {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.copyright {
    margin-top: 48px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #4b5563;
}

/* Simple Animations */
[data-animate] {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-animate="fade-down"] { transform: translateY(-20px); }
[data-animate="fade-up"] { transform: translateY(20px); }
[data-animate="scale-up"] { transform: scale(0.95); }

.in-view {
    opacity: 1;
    transform: translate(0) scale(1) !important;
}

.avatar-photo-box {
    overflow: hidden;
    padding: 0;
}

.avatar-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.icon-youtube,
.icon-linkedin {
    font-weight: 800;
    font-size: 18px;
    color: var(--brand-orange);
}

.link-card:hover .icon-youtube,
.link-card:hover .icon-linkedin {
    color: black;
}
