:root {
    --green: #00FF1A;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #111;
    background: #fff;
}

/* Technical Grid Background */
.tech-grid {
    background-image: radial-gradient(circle, #000 1px, transparent 1px);
    background-size: 40px 40px;
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
}

/* Ice Glass Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.nav-link {
    color: #111;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: color 0.2s ease;
}

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

/* Floating Glass Cards */
.floating-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 0.75rem 1.25rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.floating-card-blur {
    filter: blur(1px);
    opacity: 0.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn:hover {
    transform: scale(1.05);
}

.btn:active {
    transform: scale(0.95);
}

.btn-primary {
    background: var(--green);
    color: #000;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 255, 26, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 35px rgba(0, 255, 26, 0.45);
}

.btn-secondary {
    background: transparent;
    color: #111;
    border: 1.5px solid #111;
}

.btn-secondary:hover {
    background: #111;
    color: #fff;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--green), #00FF88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Bento Cards with Gradient Border Hover */
.bento-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, var(--green), #00FF88, var(--green));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 255, 26, 0.15);
}

.icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.bento-card:hover .icon-box {
    transform: scale(1.1);
}

.corner-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.bento-card:hover .corner-icon {
    background: var(--green);
    color: #000;
}

/* Table Styles */
.pricing-table th,
.pricing-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid #E8E8E8;
}

.pricing-table th {
    font-weight: 600;
    font-size: 0.8rem;
    color: #86868B;
    background: #FAFAFA;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.featured-col {
    background: rgba(0, 255, 26, 0.03);
    border-left: 2px solid var(--green);
    border-right: 2px solid var(--green);
}

.featured-col-top {
    border-top: 2px solid var(--green);
}

.featured-col-bottom {
    border-bottom: 2px solid var(--green);
}

.check {
    color: var(--green);
}

/* Pricing Cards - Apple/Stripe Style */
.pricing-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.pricing-card-featured {
    border: 2px solid var(--green);
    box-shadow: 0 0 60px -15px rgba(0, 255, 26, 0.3);
}

.pricing-card-featured:hover {
    box-shadow: 0 0 80px -10px rgba(0, 255, 26, 0.4), 0 25px 60px rgba(0, 0, 0, 0.1);
}

/* Section Connector Lines */
.section-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #E5E5E5, transparent);
    margin: 0 auto;
}

::selection {
    background: rgba(0, 255, 26, 0.2);
}