/* ================================================
   GREEN CARD — Open editorial layout, no containers
   Background: #313131 throughout
   ================================================ */

/* ── Section: full-width hero ── */
.green-hero {
    position: relative;
    background: #313131;
    overflow: hidden;
    padding: 100px 0 80px;
}

/* Ambient green glow behind card */
.gc-glow {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(114, 229, 73, 0.12) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* Floating particles */
.gc-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.gc-particle {
    position: absolute;
    border-radius: 50%;
    background: #72E549;
    opacity: 0;
    animation: particleFly var(--dur, 7s) var(--delay, 0s) ease-in infinite;
}
@keyframes particleFly {
    0%   { transform: translateY(100%); opacity: 0; }
    10%  { opacity: 0.3; }
    90%  { opacity: 0.1; }
    100% { transform: translateY(-120%); opacity: 0; }
}

/* ── Open two-column grid — no borders, no boxes ── */
.gc-open-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 2;
}

/* ── LEFT: content column ── */
.gc-content-col {
    padding-right: 60px;
}

/* ── Badge ── */
.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(114, 229, 73, 0.15);
    color: #72E549;
    padding: 6px 16px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 28px;
    border: 1px solid rgba(114, 229, 73, 0.25);
    letter-spacing: 0.5px;
}
.badge-new::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #72E549;
    animation: blink 1.5s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

/* ── Headline — massive editorial ── */
.gc-headline {
    font-size: 58px;
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    margin: 0 0 24px;
    letter-spacing: -2px;
}

.highlight {
    display: block;
    font-size: 42px;
    color: #72E549;
    background: linear-gradient(90deg, #72E549 0%, #7cffbe 50%, #72E549 100%);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 4s linear infinite;
    white-space: nowrap;
}
@keyframes shimmerText {
    0%   { background-position: 0%; }
    100% { background-position: 200%; }
}

/* ── Body copy ── */
.gc-body {
    font-size: 18px;
    color: #a0aec0;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
}

/* ── Currency chips — pill labels ── */
.gc-currency-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    margin-bottom: 32px;
}
.gc-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
    white-space: nowrap;
    transition: all 0.2s ease;
}
.gc-chip.fiat {
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.gc-chip.crypto {
    background: rgba(114, 229, 73, 0.1);
    color: #72E549;
    border: 1px solid rgba(114, 229, 73, 0.2);
}
.gc-chip:hover { transform: translateY(-1px); }
.gc-sep {
    color: rgba(255, 255, 255, 0.2);
    font-size: 18px;
    font-weight: 300;
    margin: 0 2px;
}

/* ── Waitlist form ── */
.gc-form {
    display: flex;
    gap: 0;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 6px;
    transition: border-color 0.2s, box-shadow 0.2s;
    max-width: 480px;
}
.gc-form:focus-within {
    border-color: rgba(114, 229, 73, 0.4);
    box-shadow: 0 0 0 3px rgba(114, 229, 73, 0.06);
}
.gc-email-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 18px;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    outline: none;
}
.gc-email-input::placeholder { color: #4a5568; }
.gc-submit-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-family: inherit;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}
.gc-submit-btn:hover {
    background: #72E549;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(114, 229, 73, 0.3);
}
.gc-disclaimer {
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 24px;
}

/* ── Referral ── */
.gc-referral {
    background: rgba(114, 229, 73, 0.07);
    border: 1px solid rgba(114, 229, 73, 0.18);
    padding: 18px 22px;
    border-radius: 14px;
    margin-bottom: 20px;
    max-width: 480px;
}
.gc-referral-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}
.gc-ref-emoji { font-size: 22px; }
.gc-ref-title { color: #72E549; font-size: 15px; font-weight: 700; margin: 0 0 2px; }
.gc-ref-sub   { color: #a0aec0; font-size: 13px; margin: 0; }
.gc-ref-sub strong { color: #fff; }
.gc-ref-count { color: #4a5568; font-size: 13px; margin: 0 0 10px; }

.referral-progress {
    display: flex; gap: 6px; margin: 12px 0 8px;
}
.ref-step {
    flex: 1; height: 3px; border-radius: 100px;
    background: rgba(114, 229, 73, 0.15); overflow: hidden;
}
.ref-step-fill {
    height: 100%; width: 0%;
    background: #72E549; border-radius: 100px;
    transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.referral-link-box {
    display: flex; align-items: center;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 14px; border-radius: 8px;
    justify-content: space-between; gap: 10px;
}
.referral-link-box code { color: #72E549; font-size: 13px; flex: 1; word-break: break-all; }
.btn-copy {
    background: rgba(114, 229, 73, 0.15);
    border: 1px solid rgba(114, 229, 73, 0.3);
    color: #72E549; font-size: 13px; font-weight: 700;
    font-family: inherit; padding: 5px 14px; border-radius: 6px;
    cursor: pointer; transition: background 0.2s; white-space: nowrap;
}
.btn-copy:hover { background: rgba(114, 229, 73, 0.25); }

/* ── Colour swatch row — bare, no box ── */
.gc-swatch-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.gc-swatch-label {
    color: #4a5568;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.color-swatch {
    width: 22px; height: 22px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}
.color-swatch:hover { transform: scale(1.2); }
.color-swatch.active {
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.25);
}
.color-green    { background: radial-gradient(circle at 35% 35%, #1c3a28, #0e1e14); }
.color-black    { background: radial-gradient(circle at 35% 35%, #333, #000); }
.color-platinum { background: radial-gradient(circle at 35% 35%, #eee, #c0c0bd); }
.color-navy     { background: radial-gradient(circle at 35% 35%, #1a2a4a, #0a1020); }
.color-violet   { background: radial-gradient(circle at 35% 35%, #3a1a5a, #1a0a2a); }
.gc-swatch-name {
    color: #72E549;
    font-size: 14px;
    font-weight: 700;
    min-width: 90px;
}

/* ── RIGHT: card column ── */
.gc-visual-col {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* 3D card scene */
.card-scene {
    position: relative;
    width: 380px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Orbit rings */
.card-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(114, 229, 73, 0.08);
    animation: orbit 14s linear infinite;
}
.card-orbit:nth-child(1) { width: 360px; height: 270px; animation-duration: 18s; }
.card-orbit:nth-child(2) { width: 300px; height: 220px; animation-duration: 13s; animation-direction: reverse; border-color: rgba(114, 229, 73, 0.05); }
.card-orbit:nth-child(3) { width: 240px; height: 175px; animation-duration: 24s; border-color: rgba(114, 229, 73, 0.03); }
.card-orbit::before {
    content: '';
    position: absolute;
    top: -4px; left: 50%;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #72E549;
    box-shadow: 0 0 8px #72E549, 0 0 16px rgba(114, 229, 73, 0.4);
    transform: translateX(-50%);
}
@keyframes orbit { to { transform: rotate(360deg); } }

.card-3d-wrapper {
    width: 340px;
    height: 213px;
    transform-style: preserve-3d;
    transform: rotateX(10deg) rotateY(-15deg);
    cursor: grab;
    position: relative;
    z-index: 2;
}
.card-3d-wrapper:active { cursor: grabbing; }
.card-3d { width: 100%; height: 100%; position: relative; transform-style: preserve-3d; }

.card-front {
    position: absolute;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #0f1f15 0%, #1a2e1f 40%, #0d1a12 100%);
    border-radius: 18px;
    border: 1px solid rgba(114, 229, 73, 0.2);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(114, 229, 73, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    padding: 22px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: background 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
}
.card-front::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(114, 229, 73, 0.05) 50%,
        rgba(255, 255, 255, 0.04) 55%,
        transparent 60%
    );
    animation: holographic 5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes holographic {
    0%   { left: -100%; }
    55%  { left: 150%; }
    100% { left: 150%; }
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative; z-index: 2;
}
.card-logo-img { height: 17px; filter: brightness(0) invert(1) opacity(0.85); }
.contactless-icon { width: 22px; height: 22px; color: rgba(255, 255, 255, 0.4); }
.card-chip {
    width: 44px; height: 32px;
    background: linear-gradient(135deg, #c9a227 0%, #f0c040 40%, #c9a227 70%, #a07010 100%);
    border-radius: 5px;
    position: relative; z-index: 2;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    transition: background 0.5s ease;
}
.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative; z-index: 2;
}
.card-number-dots { display: flex; align-items: center; gap: 5px; margin-bottom: 4px; }
.dot-group { display: flex; gap: 2px; }
.dot-group span { width: 4px; height: 4px; border-radius: 50%; background: rgba(255, 255, 255, 0.3); display: block; }
.card-name {
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-size: 9px;
    font-weight: 600;
}
.card-shadow {
    position: absolute;
    width: 80%; height: 24px;
    background: radial-gradient(ellipse, rgba(114, 229, 73, 0.22) 0%, transparent 70%);
    bottom: -36px; left: 10%;
    filter: blur(10px);
    animation: shadowPulse 6s ease-in-out infinite;
}
@keyframes shadowPulse { 0%, 100% { opacity: 0.7; } 50% { opacity: 1; } }
.visa-logo { width: 58px; height: 36px; border-radius: 5px; opacity: 0.96; }

/* ── Features section — open, no containers ── */
.green-features {
    background: #313131;
    padding: 80px 0 100px;
}

.gc-features-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.gc-features-header {
    margin-bottom: 64px;
}
.gc-section-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #72E549;
    margin-bottom: 12px;
}
.gc-section-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.5px;
    margin: 0 0 10px;
    line-height: 1.1;
}
.gc-section-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #a0aec0;
}

/* Features open grid — 2 col, no boxes */
.gc-open-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px 80px;
}

.gc-feat {}

.gc-feat-icon {
    width: 48px; height: 48px;
    background: rgba(114, 229, 73, 0.1);
    border: 1px solid rgba(114, 229, 73, 0.18);
    color: #72E549;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.2s, box-shadow 0.2s;
}
.gc-feat:hover .gc-feat-icon {
    background: rgba(114, 229, 73, 0.18);
    box-shadow: 0 0 16px rgba(114, 229, 73, 0.12);
}
.gc-feat-icon svg { width: 22px; height: 22px; }

.gc-feat-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}
.gc-feat-body {
    font-size: 16px;
    color: #a0aec0;
    line-height: 1.7;
}

/* ── Scroll reveal ── */
.gc-sr {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.gc-sr.gc-visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .gc-open-grid {
        grid-template-columns: 1fr;
        padding: 0 40px;
        gap: 60px;
    }
    .gc-content-col { padding-right: 0; }
    .gc-headline { font-size: 44px; }
    .gc-visual-col { justify-content: flex-start; }
    .gc-features-inner { padding: 0 40px; }
    .gc-section-title { font-size: 36px; }
    .gc-open-features { gap: 40px 60px; }
}
@media (max-width: 680px) {
    .gc-open-grid  { padding: 0 24px; }
    .gc-headline   { font-size: 36px; letter-spacing: -1px; }
    .gc-body       { font-size: 16px; }
    .gc-open-features { grid-template-columns: 1fr; gap: 36px; }
    .gc-features-inner { padding: 0 24px; }
    .gc-section-title { font-size: 28px; }
    .card-scene { width: 300px; height: 240px; }
    .card-3d-wrapper { width: 280px; height: 175px; }
}
