:root {
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-strong: #f8fafc;
    --text: #0f172a;
    --muted: #475569;
    --brand-a: #2563eb;
    --brand-b: #7c3aed;
    --brand-c: #4f46e5;
    --line: rgba(226, 232, 240, 0.8);
    --shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.03);
    --shadow-hover: 0 20px 40px -15px rgba(15, 23, 42, 0.12), 0 1px 3px rgba(15, 23, 42, 0.04);
}

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

body {
    font-family: "Manrope", "Plus Jakarta Sans", "Nunito", sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    background-color: #f8fafc;
    color: var(--text);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 40%),
                #f8fafc;
    z-index: -5;
}

.landing-body {
    font-family: "Manrope", sans-serif;
    background-color: #ffffff;
    color: var(--text);
}

.landing-shell {
    position: relative;
    min-height: 100vh;
    padding: 24px;
    max-width: 1320px;
    margin: 0 auto;
}

.landing-shell::before,
.landing-shell::after {
    content: "";
    position: fixed;
    border-radius: 999px;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.45;
}

.landing-shell::before {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    background: rgba(37, 99, 235, 0.08);
}

.landing-shell::after {
    width: 500px;
    height: 500px;
    right: -150px;
    bottom: -150px;
    background: rgba(124, 58, 237, 0.07);
}

/* ================= STICKY HEADER ================= */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    position: sticky;
    top: 18px;
    z-index: 100;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04);
}

.header-left {
    display: flex;
    align-items: center;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.brand-mark {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}

.brand-copy strong {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

/* ================= ACCESS ID CONTROLS ROW ================= */
.header-access-panel {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.header-access-input {
    width: 220px;
    height: 44px;
    border-radius: 12px;
    border: 1.5px solid #e2e8f0;
    background: #ffffff;
    color: #0f172a;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    transition: all 0.2s ease;
}

.header-access-input:focus {
    outline: none;
    border-color: var(--brand-a);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.header-action-btn {
    height: 44px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    margin-top: 0 !important;
    width: auto !important;
}

.header-action-btn.primary-btn {
    background: var(--brand-a);
    color: #ffffff;
}

.header-action-btn.primary-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.header-action-btn.secondary-btn {
    background: #f1f5f9;
    color: #0f172a;
    border: 1.5px solid #e2e8f0;
}

.header-action-btn.secondary-btn:hover {
    background: #e2e8f0;
    transform: translateY(-1px);
}

/* ================= HERO SECTION ================= */
.hero-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    padding: 80px 0 64px;
}

.eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 99px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--brand-a);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.eyebrow-badge.purple {
    background: rgba(124, 58, 237, 0.08);
    color: var(--brand-b);
}

.eyebrow-badge.blue {
    background: rgba(37, 99, 235, 0.08);
    color: var(--brand-a);
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 99px;
    background: var(--brand-a);
}

.badge-dot.purple {
    background: var(--brand-b);
}

.badge-dot.blue {
    background: var(--brand-a);
}

.hero-copy h1 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-copy p {
    font-size: 17px;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 32px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.cta-btn {
    height: 48px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.cta-btn.primary-cta {
    background: linear-gradient(135deg, var(--brand-a), var(--brand-c));
    color: white;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.2);
}

.cta-btn.primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
}

.cta-btn.secondary-cta {
    background: #ffffff;
    color: #0f172a;
    border: 1.5px solid #e2e8f0;
}

.cta-btn.secondary-cta:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.cta-link-btn {
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-a);
    text-decoration: none;
    transition: color 0.2s ease;
}

.cta-link-btn:hover {
    color: #1d4ed8;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    border-top: 1px solid #e2e8f0;
    padding-top: 32px;
}

.hero-metrics .metric-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-metrics h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
}

.hero-metrics span {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

/* ================= HERO ILLUSTRATION / DASHBOARD MOCKUP ================= */
.hero-visual-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-mockup {
    width: 100%;
    max-width: 480px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.03);
    overflow: hidden;
}

.mockup-header {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 99px;
    background: #e2e8f0;
}

.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #eab308; }
.mockup-dots span:nth-child(3) { background: #22c55e; }

.mockup-title {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.mockup-body {
    padding: 20px;
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.stat-box {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-label {
    font-size: 10px;
    font-weight: 600;
    color: #64748b;
}

.stat-val {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
}

.stat-val.text-green { color: #16a34a; }
.stat-val.text-blue { color: var(--brand-a); }

.mockup-chart-card {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 20px;
}

.chart-title {
    font-size: 11px;
    font-weight: 700;
    color: #475569;
    display: block;
    margin-bottom: 12px;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 80px;
    padding-top: 10px;
}

.bar {
    width: 10%;
    background: linear-gradient(180deg, var(--brand-b), var(--brand-a));
    border-radius: 4px 4px 0 0;
    min-height: 10px;
    transition: height 0.3s ease;
}

.mockup-badge-container {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.mockup-float-badge {
    font-size: 11px;
    font-weight: 700;
    color: var(--brand-a);
    background: rgba(37, 99, 235, 0.06);
    border-radius: 99px;
    padding: 6px 12px;
    border: 1px solid rgba(37, 99, 235, 0.12);
}

.mockup-float-badge.purple {
    color: var(--brand-b);
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.12);
}

/* ================= FEATURE SECTIONS ================= */
.feature-section {
    padding: 80px 0 40px;
}

.section-header-center {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.section-header-center h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-top: 12px;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header-center p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(37, 99, 235, 0.3);
}

.card-icon-wrapper {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon-wrapper.blue { background: rgba(37, 99, 235, 0.08); color: var(--brand-a); }
.card-icon-wrapper.purple { background: rgba(124, 58, 237, 0.08); color: var(--brand-b); }
.card-icon-wrapper.indigo { background: rgba(79, 70, 229, 0.08); color: var(--brand-c); }
.card-icon-wrapper.teal { background: rgba(20, 184, 166, 0.08); color: #0d9488; }
.card-icon-wrapper.orange { background: rgba(249, 115, 22, 0.08); color: #ea580c; }
.card-icon-wrapper.green { background: rgba(34, 197, 94, 0.08); color: #16a34a; }
.card-icon-wrapper.cyan { background: rgba(6, 182, 212, 0.08); color: #0891b2; }
.card-icon-wrapper.emerald { background: rgba(16, 185, 129, 0.08); color: #059669; }
.card-icon-wrapper.violet { background: rgba(139, 92, 246, 0.08); color: #7c3aed; }
.card-icon-wrapper.red { background: rgba(239, 68, 68, 0.08); color: #dc2626; }
.card-icon-wrapper.rose { background: rgba(244, 63, 94, 0.08); color: #e11d48; }

.feature-card h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

/* ================= BENEFITS SECTION ================= */
.benefit-section {
    padding: 60px 0 40px;
    background: #f8fafc;
    border-radius: 32px;
    margin: 40px 0;
    border: 1px solid #e2e8f0;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0 32px;
}

.benefit-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
}

.benefit-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

/* ================= SCREENSHOTS SECTION ================= */
.screenshots-section {
    padding: 60px 0 40px;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.screenshot-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.mock-ui-card {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mock-ui-bar {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
}

.mock-ui-bar span {
    height: 4px;
    border-radius: 2px;
    background: #e2e8f0;
}

.mock-ui-bar span:nth-child(1) { width: 30px; background: var(--brand-a); }
.mock-ui-bar span:nth-child(2) { width: 16px; }

.mock-ui-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.mock-ui-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

/* ================= SCREENSHOT IMAGE ================= */

.screenshot-image{
    width:100%;
    height:240px;           /* change according to your need */
    border-radius:12px;
    overflow:hidden;
    background:#edf2f7;
    border:1px solid #e2e8f0;
    margin-bottom:18px;
}

.screenshot-image img{
    width:100%;
    height:100%;
    object-fit:cover;       /* fills nicely */
    object-position:top;
    display:block;
    transition:.35s ease;
}

.screenshot-card:hover .screenshot-image img{
    transform:scale(1.02);
}

/* ================= CTA SECTION ================= */
.cta-section {
    margin: 60px 0;
    border-radius: 24px;
    padding: 48px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(124, 58, 237, 0.05));
    border: 1px solid rgba(37, 99, 235, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cta-content {
    max-width: 600px;
}

.cta-content h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    margin-top: 12px;
    letter-spacing: -0.01em;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ================= SITE FOOTER ================= */
.site-footer {
    border-top: 1px solid #e2e8f0;
    padding: 48px 0 24px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 32px;
}

.footer-info {
    max-width: 520px;
}

.footer-info p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-info a {
    font-size: 13px;
    color: #64748b;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease;
}

.footer-info a:hover {
    color: var(--brand-a);
}

/* Global Onboarding styling updates to keep create_org and success pages matching */
.container {
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    position: relative;
}

.card {
    width: 100%;
    max-width: 1050px;
    background: var(--surface);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 24px;
    padding: 42px;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(15, 23, 42, 0.02);
}

.page-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 14px;
    font-family: "Plus Jakarta Sans", sans-serif;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 30px;
}

.section-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    font-family: "Plus Jakarta Sans", sans-serif;
    letter-spacing: -0.01em;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.full-width {
    grid-column: span 2;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

input,
select {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    border: 1.5px solid #e2e8f0;
    background: #ffffff;
    padding: 0 16px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.25s ease;
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--brand-a);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.section-spacing {
    margin-top: 42px;
}

.input-error {
    border-color: #ef4444 !important;
    background: #fef2f2 !important;
}

.input-error::placeholder {
    color: #ef4444;
}

.field-error {
    color: #ef4444;
    font-size: 13px;
    font-weight: 600;
    margin-top: 6px;
    min-height: 16px;
}

.bg-object-1,
.bg-object-2,
.bg-object-3 {
    position: fixed;
    z-index: -3;
    opacity: 0.45;
}

.bg-object-1 {
    top: -50px;
    left: -50px;
    width: 300px;
}

.bg-object-2 {
    top: -50px;
    left: 25%;
    width: 150px;
}

.bg-object-3 {
    right: -100px;
    top: -100px;
    width: 400px;
}

.success-page-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow: hidden;
}

.success-card {
    position: relative;
    width: 100%;
    max-width: 700px;
    padding: 60px 48px;
    border-radius: 28px;
    background: var(--surface);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    text-align: center;
    z-index: 2;
}

.success-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--brand-c), var(--brand-a), var(--brand-b));
}

.success-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: 99px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--brand-a);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 28px;
}

.success-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 28px;
}

.success-icon-ring {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(124, 58, 237, 0.12));
    animation: pulseRing 2.5s infinite;
}

.success-icon {
    position: absolute;
    inset: 10px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: white;
    background: linear-gradient(135deg, var(--brand-a), var(--brand-b));
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

.success-title {
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    font-family: "Plus Jakarta Sans", sans-serif;
    letter-spacing: -0.02em;
}

.success-description {
    max-width: 580px;
    margin: 0 auto 32px;
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
}

.success-highlight-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 10px;
    padding: 14px 22px;
    border-radius: 16px;
    text-align: center;
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.success-highlight-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand-a), var(--brand-b));
    color: white;
}

.success-highlight-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.success-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(120px);
    opacity: 0.35;
    z-index: 1;
}

.success-glow-1 {
    width: 280px;
    height: 280px;
    background: rgba(37, 99, 235, 0.15);
    top: 10%;
    left: 10%;
}

.success-glow-2 {
    width: 300px;
    height: 300px;
    background: rgba(124, 58, 237, 0.15);
    bottom: 10%;
    right: 10%;
}

/* Animations */
@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.12);
        opacity: 0.65;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Global button rule with custom overrides */
button {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand-a), var(--brand-b));
    color: white;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
}

button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

/* Responsive Breakpoints */
@media (max-width: 1100px) {
    .site-header {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 16px 20px;
    }
    
    .header-left {
        justify-content: space-between;
    }
    
    .header-access-panel {
        justify-content: center;
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding-top: 40px;
    }

    .hero-copy h1 {
        font-size: 38px;
    }
    
    .hero-copy p {
        margin-left: auto;
        margin-right: auto;
        max-width: 600px;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-metrics {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual-wrapper {
        margin-top: 20px;
    }

    .feature-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .screenshot-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-section {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }

    .site-footer {
        flex-direction: column;
        gap: 24px;
        align-items: center;
        text-align: center;
    }

}

@media (max-width: 768px) {
    .landing-shell {
        padding: 16px;
    }

    .header-left {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .header-access-panel {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 8px;
    }

    .header-access-input {
        width: 100%;
    }

    .header-action-btn {
        width: 100% !important;
    }

    .feature-cards-grid {
        grid-template-columns: 1fr;
    }

    .success-card {
        padding: 40px 24px;
    }

    .success-title {
        font-size: 32px;
    }

    .success-description {
        font-size: 14px;
    }
}

@media (max-width: 520px) {
    .container {
        padding: 16px;
    }

    .card {
        padding: 24px;
        border-radius: 20px;
    }

    .page-title {
        font-size: 28px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }
}
