/* ============================================
   Gadzooks Landing Page
   Elegant, Apple-inspired with app visual DNA
   ============================================ */

:root {
    /* Brand Colors */
    --color-brand-primary: #007bff;
    --color-brand-secondary: #F4A261;

    /* Marker Colors from App */
    --color-marker-place: #dc8973;
    --color-marker-event: #78bd93;
    --color-marker-field-note: #73a2dc;
    --color-marker-expedition: #f5b563;

    /* Text */
    --color-text-primary: #ffffff;
    --color-text-secondary: #999999;
    --color-text-tertiary: #666666;

    /* Backgrounds */
    --color-background: #2d2d2d;
    --color-background-elevated: #363636;
    --color-background-header: rgba(45, 45, 45, 0.9);

    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --container-width: 720px;
    --container-width-wide: 1000px;
    --section-padding: 8rem;
    --section-padding-mobile: 5rem;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-primary);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

main {
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--color-background-header);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--color-text-primary);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    padding: 10rem 0 8rem;
    text-align: center;
    overflow: hidden;
    width: 100%;
}

/* Floating markers background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 15% 30%, var(--color-marker-place) 3px, transparent 3px),
        radial-gradient(circle at 85% 25%, var(--color-marker-event) 4px, transparent 4px),
        radial-gradient(circle at 75% 70%, var(--color-marker-field-note) 3px, transparent 3px),
        radial-gradient(circle at 20% 75%, var(--color-marker-expedition) 4px, transparent 4px),
        radial-gradient(circle at 90% 60%, var(--color-marker-place) 2px, transparent 2px),
        radial-gradient(circle at 10% 50%, var(--color-marker-event) 2px, transparent 2px),
        radial-gradient(circle at 60% 15%, var(--color-marker-field-note) 3px, transparent 3px),
        radial-gradient(circle at 40% 85%, var(--color-marker-expedition) 2px, transparent 2px);
    opacity: 0.4;
    pointer-events: none;
}

/* Subtle gradient glow */
.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0, 123, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 2.5rem;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle:last-of-type {
    margin-bottom: 3.5rem;
}

/* App Badges */
.app-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.app-badge img {
    height: 48px;
    transition: transform 0.2s ease;
}

.app-badge:hover img {
    transform: scale(1.02);
}

/* ============================================
   Content Sections
   ============================================ */
.section {
    position: relative;
    padding: var(--section-padding) 0;
}

.section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-inner.reverse {
    direction: rtl;
}

.section-inner.reverse > * {
    direction: ltr;
}

.section-content {
    max-width: 480px;
}

.section-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 280px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-text {
    color: var(--color-text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.75;
}

.section-text:last-child {
    margin-bottom: 0;
}

.section-text em {
    color: var(--color-text-primary);
    font-style: normal;
    font-weight: 500;
}

/* ============================================
   Visual Elements - Abstract App Motifs
   ============================================ */

/* AI Section - Neural network nodes */
.visual-ai {
    position: relative;
    width: 240px;
    height: 240px;
}

.visual-ai::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 30%, var(--color-brand-primary) 8px, transparent 8px),
        radial-gradient(circle at 25% 60%, var(--color-marker-place) 6px, transparent 6px),
        radial-gradient(circle at 75% 65%, var(--color-marker-event) 6px, transparent 6px),
        radial-gradient(circle at 50% 85%, var(--color-marker-field-note) 5px, transparent 5px),
        radial-gradient(circle at 35% 40%, var(--color-marker-expedition) 4px, transparent 4px),
        radial-gradient(circle at 70% 35%, var(--color-text-secondary) 4px, transparent 4px);
    filter: blur(0.5px);
}

/* Connection lines */
.visual-ai::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, transparent 45%, rgba(0, 123, 255, 0.3) 50%, transparent 55%),
        linear-gradient(200deg, transparent 40%, rgba(220, 137, 115, 0.25) 45%, transparent 50%),
        linear-gradient(100deg, transparent 55%, rgba(120, 189, 147, 0.25) 60%, transparent 65%);
}

/* Discovery Axes Visual */
.visual-axes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-width: 260px;
    justify-content: center;
}

.axis-pill {
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text-primary);
    background: var(--color-background-elevated);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.axis-pill:hover {
    transform: translateY(-2px);
}

.axis-pill.logic { border-color: rgba(115, 162, 220, 0.5); color: #73a2dc; }
.axis-pill.grit { border-color: rgba(220, 137, 115, 0.5); color: #dc8973; }
.axis-pill.mystery { border-color: rgba(183, 148, 199, 0.5); color: #b794c7; }
.axis-pill.heart { border-color: rgba(225, 144, 195, 0.5); color: #e190c3; }
.axis-pill.style { border-color: rgba(244, 162, 97, 0.5); color: #F4A261; }
.axis-pill.tech { border-color: rgba(0, 123, 255, 0.5); color: #007bff; }
.axis-pill.whimsy { border-color: rgba(120, 189, 147, 0.5); color: #78bd93; }

/* Field Notes Visual - Camera frame */
.visual-capture {
    position: relative;
    width: 200px;
    height: 200px;
}

.visual-capture::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 2px solid rgba(115, 162, 220, 0.4);
    border-radius: 8px;
}

/* Corner brackets */
.visual-capture::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, var(--color-marker-field-note) 2px, transparent 2px) 0 0 / 24px 24px no-repeat,
        linear-gradient(to bottom, var(--color-marker-field-note) 2px, transparent 2px) 0 0 / 24px 24px no-repeat,
        linear-gradient(to left, var(--color-marker-field-note) 2px, transparent 2px) 100% 0 / 24px 24px no-repeat,
        linear-gradient(to bottom, var(--color-marker-field-note) 2px, transparent 2px) 100% 0 / 24px 24px no-repeat,
        linear-gradient(to right, var(--color-marker-field-note) 2px, transparent 2px) 0 100% / 24px 24px no-repeat,
        linear-gradient(to top, var(--color-marker-field-note) 2px, transparent 2px) 0 100% / 24px 24px no-repeat,
        linear-gradient(to left, var(--color-marker-field-note) 2px, transparent 2px) 100% 100% / 24px 24px no-repeat,
        linear-gradient(to top, var(--color-marker-field-note) 2px, transparent 2px) 100% 100% / 24px 24px no-repeat;
}

.capture-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--color-marker-field-note);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--color-marker-field-note);
}

/* Expeditions Visual - Path with waypoints */
.visual-journey {
    position: relative;
    width: 240px;
    height: 200px;
}

.journey-path {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg,
        var(--color-marker-expedition) 0%,
        var(--color-marker-expedition) 60%,
        rgba(245, 181, 99, 0.3) 100%);
    transform: translateY(-50%);
}

.journey-path::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(90deg,
        var(--color-marker-expedition) 0px,
        var(--color-marker-expedition) 8px,
        transparent 8px,
        transparent 16px);
}

.waypoint {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--color-marker-expedition);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 12px rgba(245, 181, 99, 0.5);
}

.waypoint:nth-child(2) { left: 10%; }
.waypoint:nth-child(3) { left: 40%; }
.waypoint:nth-child(4) { left: 70%; width: 20px; height: 20px; }

/* Knowledge Graph Visual */
.visual-graph {
    position: relative;
    width: 240px;
    height: 240px;
}

.graph-node {
    position: absolute;
    border-radius: 50%;
    background: var(--color-marker-place);
}

.graph-node:nth-child(1) { width: 24px; height: 24px; top: 40%; left: 45%; background: var(--color-brand-primary); }
.graph-node:nth-child(2) { width: 14px; height: 14px; top: 20%; left: 30%; }
.graph-node:nth-child(3) { width: 12px; height: 12px; top: 25%; left: 65%; background: var(--color-marker-event); }
.graph-node:nth-child(4) { width: 10px; height: 10px; top: 55%; left: 25%; background: var(--color-marker-field-note); }
.graph-node:nth-child(5) { width: 14px; height: 14px; top: 65%; left: 60%; background: var(--color-marker-expedition); }
.graph-node:nth-child(6) { width: 8px; height: 8px; top: 35%; left: 75%; }

.graph-lines {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

.graph-lines line {
    stroke: var(--color-text-secondary);
    stroke-width: 1;
}

/* 3D Visualization - Cluster */
.visual-3d {
    position: relative;
    width: 220px;
    height: 220px;
    perspective: 500px;
}

.cluster {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    animation: gentle-rotate 20s linear infinite;
}

@keyframes gentle-rotate {
    from { transform: rotateY(0deg) rotateX(10deg); }
    to { transform: rotateY(360deg) rotateX(10deg); }
}

.cluster-dot {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
}

.cluster-dot:nth-child(1) { width: 10px; height: 10px; background: var(--color-marker-place); transform: translate3d(-40px, -30px, 20px); }
.cluster-dot:nth-child(2) { width: 8px; height: 8px; background: var(--color-marker-event); transform: translate3d(30px, -20px, -10px); }
.cluster-dot:nth-child(3) { width: 12px; height: 12px; background: var(--color-brand-primary); transform: translate3d(0px, 0px, 30px); }
.cluster-dot:nth-child(4) { width: 6px; height: 6px; background: var(--color-marker-field-note); transform: translate3d(-20px, 25px, -20px); }
.cluster-dot:nth-child(5) { width: 9px; height: 9px; background: var(--color-marker-expedition); transform: translate3d(35px, 15px, 15px); }
.cluster-dot:nth-child(6) { width: 7px; height: 7px; background: var(--color-marker-place); transform: translate3d(-35px, 10px, -15px); }
.cluster-dot:nth-child(7) { width: 5px; height: 5px; background: var(--color-text-secondary); transform: translate3d(15px, -35px, 5px); }
.cluster-dot:nth-child(8) { width: 8px; height: 8px; background: var(--color-marker-event); transform: translate3d(-10px, -10px, -30px); }

/* Privacy Visual - Shield */
.visual-privacy {
    position: relative;
    width: 120px;
    height: 140px;
}

.visual-privacy::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0, 123, 255, 0.15) 0%,
        rgba(0, 123, 255, 0.05) 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border: 1px solid rgba(0, 123, 255, 0.3);
}

.visual-privacy::after {
    content: '';
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 30px;
    border: 2px solid var(--color-brand-primary);
    border-radius: 4px 4px 12px 12px;
}

/* Pricing Visual */
.visual-pricing {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
}

.price-tier {
    background: var(--color-background-elevated);
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.2s ease;
    min-width: 5.5rem;
}

.price-tier:hover {
    transform: translateY(-4px);
}

.price-tier.featured {
    border-color: rgba(0, 123, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.1);
}

.tier-name {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
}

.tier-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.price-tier.featured .tier-price {
    color: var(--color-brand-primary);
}

.tier-period {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-text-secondary);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    text-align: center;
    padding: var(--section-padding) 0 calc(var(--section-padding) + 2rem);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0, 123, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer .container {
    max-width: 1200px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--color-text-primary);
}

.footer-logo-icon {
    width: 1.75rem;
    height: 1.75rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--color-text-primary);
}

.footer-copyright {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-text-tertiary);
}

/* ============================================
   PAGE CONTENT (Legal/Contact Pages)
   ============================================ */

.page-content {
    max-width: var(--container-width);
    margin: 8rem auto 4rem;
    padding: 0 2rem;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 3rem;
}

.page-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.page-content p {
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.page-content ul,
.page-content ol {
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.page-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.page-content a {
    color: var(--color-brand-primary);
    text-decoration: none;
}

.page-content a:hover {
    text-decoration: underline;
}

/* Contact Page */
.contact-grid {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-card {
    background: var(--color-background-elevated);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.contact-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-card p {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--color-brand-primary);
    font-weight: 500;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 900px) {
    .section-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .section-inner.reverse {
        direction: ltr;
    }

    .section-content {
        max-width: 100%;
    }

    .section-visual {
        min-height: auto;
        order: -1; /* Visual comes first on mobile */
    }

    .visual-pricing {
        justify-content: center;
    }

    /* Scale down visual elements */
    .visual-ai {
        width: 200px;
        height: 200px;
    }

    .visual-capture {
        width: 160px;
        height: 160px;
    }

    .visual-journey {
        width: 200px;
        height: 160px;
    }

    .visual-graph {
        width: 200px;
        height: 200px;
    }

    .visual-3d {
        width: 180px;
        height: 180px;
    }

    .visual-privacy {
        width: 100px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }

    .hero {
        padding: 7rem 0 4rem;
    }

    .hero::before {
        opacity: 0.25;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.0625rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    body {
        font-size: 1rem;
    }

    .nav {
        gap: 1.25rem;
    }

    .nav-link {
        font-size: 0.875rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-nav {
        gap: 1.5rem;
    }

    .app-badges {
        flex-direction: column;
        align-items: center;
    }

    .page-content {
        margin-top: 6rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .cta-section .section-title {
        font-size: 1.75rem;
    }

    /* Simplify 3D animation on mobile */
    .cluster {
        animation: none;
        transform: rotateX(10deg) rotateY(20deg);
    }

    /* Smaller graph */
    .graph-node:nth-child(1) { width: 20px; height: 20px; }
    .graph-node:nth-child(2) { width: 12px; height: 12px; }
    .graph-node:nth-child(3) { width: 10px; height: 10px; }
    .graph-node:nth-child(4) { width: 8px; height: 8px; }
    .graph-node:nth-child(5) { width: 12px; height: 12px; }
    .graph-node:nth-child(6) { width: 6px; height: 6px; }

    /* Smaller waypoints */
    .waypoint {
        width: 12px;
        height: 12px;
    }
    .waypoint:nth-child(4) {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-text {
        font-size: 0.9375rem;
    }

    .header-content {
        padding: 0.875rem 1rem;
    }

    .container {
        padding: 0 1.25rem;
    }

    .page-content {
        padding: 0 1.25rem;
    }

    .axis-pill {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }

    .visual-axes {
        max-width: 220px;
        gap: 0.375rem;
    }

    /* Scale down visuals further */
    .visual-ai {
        width: 160px;
        height: 160px;
    }

    .visual-capture {
        width: 140px;
        height: 140px;
    }

    .visual-journey {
        width: 180px;
        height: 140px;
    }

    .visual-graph {
        width: 160px;
        height: 160px;
    }

    .visual-3d {
        width: 150px;
        height: 150px;
    }

    .visual-privacy {
        width: 80px;
        height: 100px;
    }

    .price-tier {
        padding: 1.25rem 1rem;
    }

    .tier-price {
        font-size: 1.25rem;
    }

    .cta-section .section-title {
        font-size: 1.5rem;
    }

    /* Adjust capture frame corners */
    .visual-capture::after {
        background:
            linear-gradient(to right, var(--color-marker-field-note) 2px, transparent 2px) 0 0 / 18px 18px no-repeat,
            linear-gradient(to bottom, var(--color-marker-field-note) 2px, transparent 2px) 0 0 / 18px 18px no-repeat,
            linear-gradient(to left, var(--color-marker-field-note) 2px, transparent 2px) 100% 0 / 18px 18px no-repeat,
            linear-gradient(to bottom, var(--color-marker-field-note) 2px, transparent 2px) 100% 0 / 18px 18px no-repeat,
            linear-gradient(to right, var(--color-marker-field-note) 2px, transparent 2px) 0 100% / 18px 18px no-repeat,
            linear-gradient(to top, var(--color-marker-field-note) 2px, transparent 2px) 0 100% / 18px 18px no-repeat,
            linear-gradient(to left, var(--color-marker-field-note) 2px, transparent 2px) 100% 100% / 18px 18px no-repeat,
            linear-gradient(to top, var(--color-marker-field-note) 2px, transparent 2px) 100% 100% / 18px 18px no-repeat;
    }

    .capture-dot {
        width: 10px;
        height: 10px;
    }
}

/* ============================================
   Subscription Status Pages
   ============================================ */

.status-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.status-icon svg {
    width: 48px;
    height: 48px;
}

.status-success {
    background: rgba(120, 189, 147, 0.15);
    color: #78bd93;
}

.status-cancelled {
    background: rgba(220, 137, 115, 0.15);
    color: #dc8973;
}
