:root {
    --bg: #f8fafc;
    --card: #fff;
    --ink: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --soft: #eff6ff;
    --accent: #14b8a6;
    --danger: #ef4444;
    --radius: 22px;
    --shadow: 0 20px 50px rgba(15,23,42,.08)
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    color: var(--ink);
    background: var(--bg)
}

a {
    color: inherit;
    text-decoration: none
}

.button,button {
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg,var(--primary),var(--accent));
    color: white;
    padding: .78rem 1.1rem;
    font-weight: 800;
    box-shadow: 0 12px 25px rgba(37,99,235,.18);
    cursor: pointer
}

.button:hover,button:hover {
    filter: brightness(.96)
}

.ghost {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: .72rem 1rem;
    background: #fff;
    color: var(--ink);
    font-weight: 700
}

.big {
    padding: 1rem 1.35rem
}

.brand {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-weight: 900;
    font-size: 1.12rem
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: linear-gradient(135deg,var(--primary),var(--accent));
    color: #fff
}

.landing {
    background: radial-gradient(circle at top left,#dbeafe 0,transparent 32rem),#fff
}

.landing-nav {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1rem 5vw;
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226,232,240,.85)
}

.nav-links,.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem
}

.nav-links a {
    color: var(--ink);
    font-weight: 700
}

.hero {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 4rem;
    align-items: center;
    padding: 7rem 7vw 4rem
}

.pill,.eyebrow {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: var(--soft);
    color: var(--primary-dark);
    padding: .38rem .75rem;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em
}

.hero h1 {
    font-size: clamp(2.8rem,6vw,5.6rem);
    line-height: .94;
    margin: 1rem 0;
    letter-spacing: -.065em
}

.hero p {
    font-size: 1.22rem;
    line-height: 1.8;
    color: var(--ink);
    max-width: 48rem
}

.hero-actions,.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 1.4rem
}

.trust-row span {
    padding: .55rem .8rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    font-weight: 700
}

.hero-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 32px;
    background: rgba(255,255,255,.8);
    padding: 1rem;
    box-shadow: var(--shadow);
    backdrop-filter: blur(15px)
}

.browser-dots {
    display: flex;
    gap: .4rem;
    padding: .5rem
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1
}

.mock-card {
    border-radius: 24px;
    background: #fff;
    padding: 1.4rem;
    border: 1px solid var(--line)
}

.mock-card h3 {
    font-size: 1.55rem;
    margin: .55rem 0 1rem
}

.progress {
    height: 12px;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden
}

.progress span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg,var(--primary),var(--accent))
}

.progress.small {
    height: 8px;
    width: 140px
}

.checklist {
    list-style: none;
    margin: 1.2rem 0 0;
    padding: 0;
    display: grid;
    gap: .7rem
}

.checklist li {
    padding: .8rem;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid var(--line)
}

.checklist .done:before {
    content: "✓ ";
    color: var(--accent);
    font-weight: 900
}

.floating-card {
    position: absolute;
    right: -1rem;
    bottom: 1.5rem;
    background: #0f172a;
    color: #fff;
    padding: 1rem;
    border-radius: 18px;
    box-shadow: var(--shadow);
    font-weight: 800
}

.video-block,.section,.cta {
    padding: 4rem 7vw
}

.video-placeholder {
    display: grid;
    place-items: center;
    text-align: center;
    min-height: 360px;
    border-radius: 34px;
    background: linear-gradient(135deg,#0f172a,#1e3a8a);
    color: #fff;
    box-shadow: var(--shadow)
}

.video-placeholder span {
    display: grid;
    place-items: center;
    width: 80px;
    height: 80px;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    font-size: 2rem
}

.stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1rem;
    padding: 1rem 7vw 4rem
}

.stats div,.section article,.pricing article,.metric,.panel,.app-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--card);
    padding: 1.35rem;
    box-shadow: 0 14px 40px rgba(15,23,42,.05)
}

.stats strong {
    display: block;
    font-size: 2.2rem
}

.stats span {
    color: var(--ink);
    font-weight: 700
}

.section h2,.cta h2 {
    font-size: clamp(2rem,4vw,3.5rem);
    letter-spacing: -.04em;
}

.grid-3,.feature-grid,.pricing,.metric-grid,.cards,.grid-2 {
    display: grid;
    gap: 1rem
}

.grid-3 {
    grid-template-columns: repeat(3,1fr)
}

.grid-2 {
    grid-template-columns: repeat(2,1fr);
    margin-top: 1rem
}

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

.section.alt {
    background: #f8fafc
}

.featured {
    outline: 3px solid rgba(37,99,235,.2)
}

.pricing strong {
    font-size: 2.5rem
}

.cta {
    text-align: center;
    background: linear-gradient(135deg,#eff6ff,#f0fdfa)
}

.cta p {
    color: var(--ink);
    font-size: 1.15rem
}

.footer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    color: var(--ink);
    border-top: 1px solid var(--line)
}

.chat-bubble {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    background: #0f172a;
    color: #fff;
    padding: .9rem 1rem;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: var(--shadow)
}

.cookie {
    position: fixed;
    left: 1.2rem;
    bottom: 1.2rem;
    max-width: 340px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: var(--shadow);
    font-size: .9rem
}

.cookie button {
    padding: .45rem .8rem;
    margin-left: .5rem
}

.app-shell {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh
}

.sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    background: #fff;
    border-right: 1px solid var(--line);
    padding: 1.2rem;
    display: flex;
    flex-direction: column
}

.sidebar nav {
    display: grid;
    gap: .3rem;
    margin-top: 2rem
}

.sidebar nav a,.sidebar-foot a {
    padding: .82rem 1rem;
    border-radius: 14px;
    color: var(--ink);
    font-weight: 800
}

.sidebar nav a:hover,.sidebar-foot a:hover {
    background: var(--soft);
    color: var(--primary)
}

.sidebar-foot {
    margin-top: auto
}

.content {
    padding: 2rem 3vw;
    overflow: auto
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem
}

.topbar h1 {
    font-size: 2.3rem;
    margin: .25rem 0;
    letter-spacing: -.04em
}

.top-actions {
    display: flex;
    gap: .7rem
}

.metric-grid {
    grid-template-columns: repeat(4,1fr);
    margin-bottom: 1rem
}

.metric span {
    display: block;
    color: var(--ink);
    font-weight: 800
}

.metric strong {
    font-size: 2.3rem
}

.panel-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center
}

.outside {
    margin: 0 0 1rem
}

.table-wrap {
    overflow: auto
}

table {
    width: 100%;
    border-collapse: collapse
}

th,td {
    text-align: left;
    padding: 1rem;
    border-bottom: 1px solid var(--line)
}

th {
    color: var(--ink);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em
}

.status {
    display: inline-block;
    border-radius: 999px;
    background: var(--soft);
    color: var(--primary-dark);
    padding: .35rem .6rem;
    font-size: .8rem;
    font-weight: 900
}

.module-list {
    display: grid;
    gap: .7rem
}

.module-list a {
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #f8fafc;
    font-weight: 800
}

.activity {
    padding-left: 1.1rem;
    color: var(--ink);
    line-height: 1.8
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--ink);
    margin-top: -.5rem
}

.app-card h2 {
    margin: .2rem 0
}

.small-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: .55rem .85rem
}

.narrow {
    max-width: 760px
}

.form-stack {
    display: grid;
    gap: 1rem
}

.form-stack p {
    display: grid;
    gap: .4rem;
    margin: 0
}

.form-stack input,.form-stack select,.form-stack textarea,.inline-form select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: .8rem;
    background: #fff;
    font: inherit
}

.inline-form {
    display: flex;
    gap: .7rem;
    margin-top: 1rem
}

.messages {
    margin-bottom: 1rem
}

.alert {
    padding: 1rem;
    border: 1px solid #bfdbfe;
    background: #eff6ff;
    border-radius: 16px;
    color: #1e40af
}

@media(max-width:980px) {
    .landing-nav,.nav-links {
        display: none
    }
    .hero,.grid-2,.grid-3,.feature-grid,.pricing,.cards,.metric-grid,.stats {
        grid-template-columns: 1fr
    }
    .app-shell {
        grid-template-columns: 1fr
    }
    .sidebar {
        position: relative;
        height: auto
    }
    .content {
        padding: 1rem
    }
    .topbar {
        align-items: flex-start;
        flex-direction: column
    }
    .hero {
        padding: 3rem 1rem
    }
    .video-block,.section,.cta {
        padding: 2rem 1rem
    }
}

/* Document dashboard utility styles copied from the provided demo layout. */

:root {
    --background: #f8fafc;
    --foreground: #0f172a;
    --card: #fff;
    --border: #e2e8f0;
    --muted: #f1f5f9;
    --muted-foreground: #64748b;
    --primary: #2563eb;
    --primary-foreground: #fff;
    --destructive: #dc2626;
    --input: #cbd5e1;
    --ring: #2563eb
}

.app-page {
    background: var(--background);
}

.sidebar nav a.active {
    background: var(--soft);
    color: var(--primary)
}

.flex {
    display: flex
}

.inline-flex {
    display: inline-flex
}

.grid {
    display: grid
}

.hidden {
    display: none
}

.relative {
    position: relative
}

.absolute {
    position: absolute
}

.flex-1 {
    flex: 1 1 0%
}

.flex-shrink-0 {
    flex-shrink: 0
}

.w-full {
    width: 100%
}

.h-full {
    height: 100%
}

.h-10 {
    height: 2.5rem
}

.h-7 {
    height: 1.75rem
}

.w-7 {
    width: 1.75rem
}

.h-3 {
    height: .75rem
}

.w-3 {
    width: .75rem
}

.h-1\.5 {
    height: .375rem
}

.w-1\.5 {
    width: .375rem
}

.h-5 {
    height: 1.25rem
}

.w-5 {
    width: 1.25rem
}

.grid-cols-1 {
    grid-template-columns: repeat(1,minmax(0,1fr))
}

.grid-cols-2 {
    grid-template-columns: repeat(2,minmax(0,1fr))
}

.gap-1 {
    gap: .25rem
}

.gap-1\.5 {
    gap: .375rem
}

.gap-2 {
    gap: .5rem
}

.gap-3 {
    gap: .75rem
}

.gap-4 {
    gap: 1rem
}

.space-y-6>*+* {
    margin-top: 1.5rem
}

.items-center {
    align-items: center
}

.justify-center {
    justify-content: center
}

.justify-between {
    justify-content: space-between
}

.flex-col {
    flex-direction: column
}

.flex-wrap {
    flex-wrap: wrap
}

.overflow-auto {
    overflow: auto
}

.overflow-hidden {
    overflow: hidden
}

.overflow-x-auto {
    overflow-x: auto
}

.rounded-md {
    border-radius: .375rem
}

.rounded-lg {
    border-radius: .5rem
}

.rounded-xl {
    border-radius: .75rem
}

.rounded-full {
    border-radius: 9999px
}

.border {
    border-width: 1px;
    border-style: solid
}

.border-b {
    border-bottom-width: 1px;
    border-bottom-style: solid
}

.border-border {
    border-color: var(--border)
}

.border-input {
    border-color: var(--input)
}

.border-destructive\/30,.border-destructive\/30 {
    border-color: rgba(220,38,38,.3)
}

.border-amber-500\/30 {
    border-color: rgba(245,158,11,.3)
}

.border-green-500\/30 {
    border-color: rgba(34,197,94,.3)
}

.border-border\/50 {
    border-color: rgba(226,232,240,.5)
}

.bg-card {
    background: var(--card)
}

.bg-background {
    background: var(--background)
}

.bg-muted {
    background: var(--ink)
}

.bg-muted\/30 {
    background: rgba(241,245,249,.3)
}

.bg-muted\/20 {
    background: rgba(241,245,249,.2)
}

.hover\:bg-muted\/20:hover {
    background: rgba(241,245,249,.2)
}

.hover\:bg-muted\/80:hover {
    background: rgba(241,245,249,.8)
}

.bg-primary {
    background: var(--primary)
}

.bg-primary\/10 {
    background: rgba(37,99,235,.1)
}

.bg-red-500 {
    background: #ef4444
}

.bg-red-500\/15 {
    background: rgba(239,68,68,.15)
}

.bg-amber-500 {
    background: #f59e0b
}

.bg-amber-500\/15 {
    background: rgba(245,158,11,.15)
}

.bg-green-500 {
    background: #22c55e
}

.bg-green-500\/15 {
    background: rgba(34,197,94,.15)
}

.p-3 {
    padding: .75rem
}

.p-4 {
    padding: 1rem
}

.p-5 {
    padding: 1.25rem
}

.px-2 {
    padding-left: .5rem;
    padding-right: .5rem
}

.px-3 {
    padding-left: .75rem;
    padding-right: .75rem
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem
}

.py-0\.5 {
    padding-top: .125rem;
    padding-bottom: .125rem
}

.py-1\.5 {
    padding-top: .375rem;
    padding-bottom: .375rem
}

.py-2 {
    padding-top: .5rem;
    padding-bottom: .5rem
}

.py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem
}

.pl-10 {
    padding-left: 2.5rem
}

.mb-2 {
    margin-bottom: .5rem
}

.mb-4 {
    margin-bottom: 1rem
}

.mt-1 {
    margin-top: .25rem
}

.ml-1 {
    margin-left: .25rem
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.text-center {
    text-align: center
}

.text-xs {
    font-size: .75rem;
    line-height: 1rem
}

.text-sm {
    font-size: .875rem;
    line-height: 1.25rem
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem
}

.text-\[10px\] {
    font-size: 10px
}

.font-medium {
    font-weight: 500
}

.font-semibold {
    font-weight: 600
}

.font-bold {
    font-weight: 700
}

.font-mono {
    font-family: ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace
}

.text-foreground {
    color: var(--foreground)
}

.text-muted-foreground {
    color: var(--muted-foreground)
}

.text-primary {
    color: var(--primary)
}

.text-primary-foreground {
    color: var(--primary-foreground)
}

.text-destructive {
    color: var(--destructive)
}

.text-red-600 {
    color: #dc2626
}

.text-amber-600 {
    color: #d97706
}

.text-green-600 {
    color: #16a34a
}

.opacity-70 {
    opacity: .7
}

.transition-colors {
    transition: color .15s,background-color .15s,border-color .15s
}

.transition-all {
    transition: all .15s
}

.focus-visible\:outline-none:focus-visible {
    outline: 2px solid transparent;
    outline-offset: 2px
}

.placeholder\:text-muted-foreground::placeholder {
    color: var(--muted-foreground)
}

.font-heading {
    letter-spacing: -.01em
}

table.w-full {
    border-collapse: collapse
}

button.text-xs {
    border: 0;
    box-shadow: none;
    background: var(--ink);
    color: var(--muted-foreground)
}

button.bg-primary {
    background: var(--primary);
    color: var(--primary-foreground)
}

.search-icon {
    position: absolute;
    left: .75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted-foreground);
    font-weight: 700
}

.user-icon {
    font-size: .75rem;
    line-height: 1
}

.icon-doc-warning {
    display: inline-grid;
    place-items: center;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: .35rem;
    background: rgba(37,99,235,.1);
    color: var(--primary);
    font-weight: 900
}

.doc-type-icon {
    display: inline-block;
    width: .875rem;
    height: .875rem;
    border-radius: .2rem;
    border: 2px solid currentColor
}

.doc-type-visa {
    color: #3b82f6;
    transform: rotate(45deg)
}

.doc-type-residence_permit {
    color: #8b5cf6;
    border-radius: 50%
}

.doc-type-work_permit {
    color: #f59e0b
}

.doc-type-travel_insurance {
    color: #22c55e;
    border-radius: .15rem
}

.doc-type-passport {
    color: #0ea5e9
}

.doc-type-other {
    color: #64748b
}

@media(min-width:768px) {
    .md\:grid-cols-4 {
        grid-template-columns: repeat(4,minmax(0,1fr))
    }
    .md\:p-6 {
        padding: 1.5rem
    }
    .md\:text-sm {
        font-size: .875rem;
        line-height: 1.25rem
    }
}

@media(min-width:640px) {
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2,minmax(0,1fr))
    }
    .sm\:flex-row {
        flex-direction: row
    }
}

@media(min-width:1024px) {
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4,minmax(0,1fr))
    }
    .lg\:p-8 {
        padding: 2rem
    }
}

/* Applications dashboard utility styles based on the supplied demo main. */

.app-main-reset {
    padding-top: 0
}

.max-w-6xl {
    max-width: 72rem
}

.justify-end {
    justify-content: flex-end
}

.max-w-md {
    max-width: 28rem
}

.h-9 {
    height: 2.25rem
}

.px-2\.5 {
    padding-left: .625rem;
    padding-right: .625rem
}

.py-1 {
    padding-top: .25rem;
    padding-bottom: .25rem
}

.p-1 {
    padding: .25rem
}

.p-6 {
    padding: 1.5rem
}

.h-12 {
    height: 3rem
}

.align-middle {
    vertical-align: middle
}

.caption-bottom {
    caption-side: bottom
}

.whitespace-nowrap {
    white-space: nowrap
}

.shadow-sm {
    box-shadow: 0 1px 2px rgba(15,23,42,.08)
}

.shadow-none {
    box-shadow: none
}

.bg-transparent {
    background: transparent
}

.bg-gradient-primary {
    background: linear-gradient(135deg,var(--primary),var(--accent))
}

.glow-primary {
    box-shadow: 0 12px 24px rgba(37,99,235,.18)
}

.hover\:opacity-90:hover {
    opacity: .9
}

.hover\:bg-accent:hover {
    background: rgba(20,184,166,.1)
}

.hover\:text-accent-foreground:hover {
    color: #0f766e
}

.hover\:bg-muted\/50:hover {
    background: rgba(241,245,249,.5)
}

.bg-accent\/10 {
    background: rgba(20,184,166,.1)
}

.bg-accent\/15 {
    background: rgba(20,184,166,.15)
}

.text-accent {
    color: #0f766e
}

.text-green-700 {
    color: #15803d
}

.bg-green-500\/30 {
    background: rgba(34,197,94,.3)
}

.bg-green-500\/15 {
    background: rgba(34,197,94,.15)
}

.bg-red-500\/15 {
    background: rgba(239,68,68,.15)
}

.bg-amber-500\/15 {
    background: rgba(245,158,11,.15)
}

.ring-offset-background {
    --tw-ring-offset-color: var(--background)
}

.app-table th {
    text-transform: none;
    letter-spacing: 0;
    font-size: .875rem
}

.app-table td,.app-table th {
    border-color: var(--border)
}

.app-icon {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    position: relative;
    flex: 0 0 auto
}

.app-icon.users:before {
    content: "";
    position: absolute;
    left: .05rem;
    top: .1rem;
    width: .34rem;
    height: .34rem;
    border: 2px solid currentColor;
    border-radius: 50%;
    box-sizing: border-box
}

.app-icon.users:after {
    content: "";
    position: absolute;
    left: .36rem;
    top: .14rem;
    width: .44rem;
    height: .44rem;
    border: 2px solid currentColor;
    border-radius: 50%;
    box-sizing: border-box
}

.app-icon.list:before {
    content: "•\A•\A•";
    white-space: pre;
    line-height: .32rem;
    position: absolute;
    left: 0;
    top: .08rem;
    font-weight: 900
}

.app-icon.list:after {
    content: "";
    position: absolute;
    left: .42rem;
    top: .18rem;
    width: .55rem;
    height: .58rem;
    border-top: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    box-shadow: 0 .25rem 0 -1px currentColor
}

.app-icon.folder:before {
    content: "";
    position: absolute;
    left: .04rem;
    top: .26rem;
    width: .9rem;
    height: .55rem;
    border: 2px solid currentColor;
    border-radius: .12rem
}

.app-icon.folder:after {
    content: "";
    position: absolute;
    left: .14rem;
    top: .14rem;
    width: .38rem;
    height: .22rem;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: .12rem .12rem 0 0
}

.app-icon.briefcase:before {
    content: "";
    position: absolute;
    left: .08rem;
    top: .32rem;
    width: .84rem;
    height: .52rem;
    border: 2px solid currentColor;
    border-radius: .15rem
}

.app-icon.briefcase:after {
    content: "";
    position: absolute;
    left: .34rem;
    top: .14rem;
    width: .32rem;
    height: .2rem;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: .1rem .1rem 0 0
}

.app-icon.building:before {
    content: "";
    position: absolute;
    left: .2rem;
    top: .08rem;
    width: .6rem;
    height: .84rem;
    border: 2px solid currentColor;
    border-radius: .1rem
}

.app-icon.building:after {
    content: "";
    position: absolute;
    left: .36rem;
    top: .28rem;
    width: .08rem;
    height: .08rem;
    background: currentColor;
    box-shadow: .2rem 0 0 currentColor,0 .22rem 0 currentColor,.2rem .22rem 0 currentColor
}

.app-icon.plane:before {
    content: "✈";
    position: absolute;
    left: 0;
    top: -.18rem;
    font-size: 1rem
}

.app-icon.eye:before {
    content: "";
    position: absolute;
    left: .05rem;
    top: .26rem;
    width: .9rem;
    height: .48rem;
    border: 2px solid currentColor;
    border-radius: 50%
}

.app-icon.eye:after {
    content: "";
    position: absolute;
    left: .39rem;
    top: .41rem;
    width: .18rem;
    height: .18rem;
    background: currentColor;
    border-radius: 50%
}

.plus-icon {
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 700
}

@media(max-width:980px) {
    .app-main-reset {
        padding: 0
    }
    .top-actions {
        display: none
    }
}

/* New application wizard ported from the provided atlas-approval-guide demo. */

.max-w-4xl {
    max-width: 56rem
}

.mx-auto {
    margin-left: auto;
    margin-right: auto
}

.block {
    display: block
}

.h-14 {
    height: 3.5rem
}

.w-14 {
    width: 3.5rem
}

.h-4 {
    height: 1rem
}

.w-4 {
    width: 1rem
}

.h-10 {
    height: 2.5rem
}

.w-10 {
    width: 2.5rem
}

.mb-1 {
    margin-bottom: .25rem
}

.mb-2 {
    margin-bottom: .5rem
}

.mb-3 {
    margin-bottom: .75rem
}

.mb-5 {
    margin-bottom: 1.25rem
}

.mt-2 {
    margin-top: .5rem
}

.mt-3 {
    margin-top: .75rem
}

.pt-4 {
    padding-top: 1rem
}

.w-full {
    width: 100%
}

.leading-relaxed {
    line-height: 1.625
}

.space-y-1\.5>*+* {
    margin-top: .375rem
}

.space-y-2>*+* {
    margin-top: .5rem
}

.space-y-3>*+* {
    margin-top: .75rem
}

.space-y-4>*+* {
    margin-top: 1rem
}

.space-y-5>*+* {
    margin-top: 1.25rem
}

.border-t {
    border-top: 1px solid var(--border)
}

.bg-primary\/5 {
    background: rgba(37,99,235,.05)
}

.border-primary\/20 {
    border-color: rgba(37,99,235,.2)
}

.bg-amber-500\/10 {
    background: rgba(245,158,11,.1)
}

.bg-green-50 {
    background: #f0fdf4
}

.bg-background {
    background: var(--background)
}

.bg-muted\/50 {
    background: rgba(241,245,249,.5)
}

.text-purple-700 {
    color: #7e22ce
}

.bg-purple-500\/15 {
    background: rgba(168,85,247,.15)
}

.wizard-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .375rem;
    border-radius: .5rem;
    padding: .5rem .625rem;
    background: transparent;
    color: var(--muted-foreground);
    box-shadow: none;
    white-space: nowrap;
    font-size: .875rem
}

.wizard-step.active {
    background: var(--primary);
    color: #fff
}

.wizard-step.done {
    background: rgba(37,99,235,.1);
    color: var(--primary)
}

.wizard-line {
    flex: 1;
    height: 2px;
    background: var(--border)
}

.workflow-card,.traveler-card,.provider-card {
    cursor: pointer;
    position: relative;
    background: var(--card)
}

.workflow-card.selected,.traveler-card.selected,.provider-card.selected {
    border-color: var(--primary);
    background: rgba(37,99,235,.05);
    box-shadow: 0 0 0 2px rgba(37,99,235,.16)
}

.workflow-check {
    display: none;
    position: absolute;
    right: .75rem;
    top: .75rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    align-items: center;
    justify-content: center;
    font-weight: 800
}

.workflow-card.selected .workflow-check {
    display: inline-flex
}

.wizard-input {
    width: 100%;
    height: 2.5rem;
    border: 1px solid var(--input);
    border-radius: .375rem;
    background: var(--background);
    padding: .5rem .75rem;
    font: inherit;
    color: var(--foreground)
}

.wizard-demo-btn {
    border-radius: .375rem;
    color: #0f766e;
    border-color: rgba(20,184,166,.4)
}

.doc-row input {
    width: 1rem;
    height: 1rem
}

.doc-state {
    color: var(--muted-foreground);
    font-weight: 900
}

.doc-row:has(input:checked) {
    border-color: rgba(34,197,94,.4);
    background: rgba(34,197,94,.08)
}

.doc-row:has(input:checked) .doc-state {
    color: #16a34a
}

.app-icon.stamp:before {
    content: "✦";
    position: absolute;
    left: .12rem;
    top: -.1rem;
    font-size: 1rem
}

.app-icon.briefcase,.app-icon.building,.app-icon.plane,.app-icon.stamp {
    color: inherit
}

.rounded-md.button,.button.rounded-md {
    border-radius: .375rem
}

.text-\[11px\] {
    font-size: 11px
}

.text-green-600 {
    color: #16a34a
}

@media(min-width:768px) {
    .md\:col-span-2 {
        grid-column: span 2/span 2
    }
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2,minmax(0,1fr))
    }
}

@media(max-width:720px) {
    .wizard-steps {
        overflow-x: auto
    }
    .wizard-line {
        display: none
    }
}

/* Passport monitoring utility styles. */

.max-w-6xl {
    max-width: 72rem
}

.max-w-md {
    max-width: 28rem
}

.caption-bottom {
    caption-side: bottom
}

.h-8 {
    height: 2rem
}

.w-8 {
    width: 2rem
}

.h-9 {
    height: 2.25rem
}

.h-12 {
    height: 3rem
}

.px-2\.5 {
    padding-left: .625rem;
    padding-right: .625rem
}

.py-1 {
    padding-top: .25rem;
    padding-bottom: .25rem
}

.p-6 {
    padding: 1.5rem
}

.mt-4 {
    margin-top: 1rem
}

.align-middle {
    vertical-align: middle
}

.whitespace-nowrap {
    white-space: nowrap
}

.text-amber-500 {
    color: #f59e0b
}

.text-amber-700 {
    color: #b45309
}

.text-orange-400 {
    color: #fb923c
}

.text-orange-700 {
    color: #c2410c
}

.text-blue-400 {
    color: #60a5fa
}

.text-blue-700 {
    color: #1d4ed8
}

.text-green-700 {
    color: #15803d
}

.bg-destructive\/10 {
    background: rgba(220,38,38,.1)
}

.bg-amber-100 {
    background: #fef3c7
}

.bg-orange-100 {
    background: #ffedd5
}

.bg-blue-100 {
    background: #dbeafe
}

.hover\:bg-muted\/50:hover {
    background: rgba(241,245,249,.5)
}

.hover\:bg-accent:hover {
    background: var(--accent)
}

.hover\:text-accent-foreground:hover {
    color: #fff
}

.passport-page-main {
    padding-left: 0;
    padding-right: 0
}

.passport-stat-icon {
    display: inline-grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: rgba(148,163,184,.12);
    font-size: 1.5rem;
    font-weight: 900
}

.inline-form-flat {
    display: inline;
    margin: 0
}

.inline-form-flat button {
    box-shadow: none;
    background: transparent;
    color: inherit;
    border-radius: .375rem;
    padding: .5rem .75rem
}

.inline-form-flat button:hover {
    background: var(--accent);
    color: #fff
}

.content>main.flex-1 {
    padding-top: 0
}

.metric strong.font-mono {
    font-size: 1.15rem
}

@media(min-width:768px) {
    .md\:grid-cols-4 {
        grid-template-columns: repeat(4,minmax(0,1fr))
    }
}

/* Providers dashboard */

.provider-briefcase-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    color: hsl(var(--primary));
    font-size: .75rem;
    line-height: 1
}

.provider-star-icon {
    font-size: .65rem;
    line-height: 1
}

.providers-page-main table {
    border-collapse: collapse
}

.providers-page-main th,.providers-page-main td {
    white-space: nowrap
}

/* Dashboard page matching the supplied demo layout. */

.dashboard-page-main {
    padding-top: 0
}

.tracking-wider {
    letter-spacing: .05em
}

.uppercase {
    text-transform: uppercase
}

.border-accent\/30 {
    border-color: rgba(20,184,166,.3)
}

.bg-primary\/30 {
    background: rgba(37,99,235,.3)
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem
}

.bg-green-100 {
    background: #dcfce7
}

.dash-icon {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    position: relative;
    color: currentColor
}

.dash-icon.users:before {
    content: "";
    position: absolute;
    left: .05rem;
    top: .13rem;
    width: .38rem;
    height: .38rem;
    border: 2px solid currentColor;
    border-radius: 999px
}

.dash-icon.users:after {
    content: "";
    position: absolute;
    right: .08rem;
    top: .08rem;
    width: .52rem;
    height: .52rem;
    border: 2px solid currentColor;
    border-radius: 999px;
    box-shadow: -.38rem .62rem 0 -.22rem currentColor,.28rem .66rem 0 -.25rem currentColor
}

.dash-icon.file:before {
    content: "";
    position: absolute;
    left: .18rem;
    top: .04rem;
    width: .78rem;
    height: 1.05rem;
    border: 2px solid currentColor;
    border-radius: .12rem
}

.dash-icon.file:after {
    content: "";
    position: absolute;
    left: .36rem;
    top: .43rem;
    width: .45rem;
    height: 2px;
    background: currentColor;
    box-shadow: 0 .22rem 0 currentColor
}

.dash-icon.clock:before {
    content: "";
    position: absolute;
    inset: .08rem;
    border: 2px solid currentColor;
    border-radius: 999px
}

.dash-icon.clock:after {
    content: "";
    position: absolute;
    left: .62rem;
    top: .28rem;
    width: 2px;
    height: .42rem;
    background: currentColor;
    box-shadow: .18rem .36rem 0 -1px currentColor;
    transform-origin: bottom
}

.dash-icon.check:before {
    content: "";
    position: absolute;
    inset: .08rem;
    border: 2px solid currentColor;
    border-radius: 999px
}

.dash-icon.check:after {
    content: "";
    position: absolute;
    left: .38rem;
    top: .58rem;
    width: .3rem;
    height: .15rem;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg)
}

.dashboard-table th,.dashboard-table td {
    white-space: nowrap
}

.content>main.dashboard-page-main {
    padding-top: 0
}

/* Calendar dashboard */

.grid-cols-7 {
    grid-template-columns: repeat(7,minmax(0,1fr))
}

.min-h-\[80px\] {
    min-height: 80px
}

.border-r {
    border-right: 1px solid var(--border)
}

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem
}

.py-2 {
    padding-top: .5rem;
    padding-bottom: .5rem
}

.py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem
}

.p-1\.5 {
    padding: .375rem
}

.px-1\.5 {
    padding-left: .375rem;
    padding-right: .375rem
}

.py-0\.5 {
    padding-top: .125rem;
    padding-bottom: .125rem
}

.text-center {
    text-align: center
}

.ml-auto {
    margin-left: auto
}

.mr-1 {
    margin-right: .25rem
}

.inline-block {
    display: inline-block
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.cursor-pointer {
    cursor: pointer
}

.text-\[10px\] {
    font-size: 10px
}

.h-2\.5 {
    height: .625rem
}

.w-2\.5 {
    width: .625rem
}

.bg-blue-500 {
    background: #3b82f6
}

.bg-red-500 {
    background: #ef4444
}

.bg-amber-500 {
    background: #f59e0b
}

.bg-yellow-500 {
    background: #eab308
}

.bg-blue-500\/15 {
    background: rgba(59,130,246,.15)
}

.bg-red-500\/15 {
    background: rgba(239,68,68,.15)
}

.bg-yellow-500\/15 {
    background: rgba(234,179,8,.15)
}

.text-blue-600 {
    color: #2563eb
}

.text-red-600 {
    color: #dc2626
}

.text-yellow-700 {
    color: #a16207
}

.ring-1 {
    box-shadow: 0 0 0 1px currentColor
}

.ring-primary\/30 {
    color: rgba(37,99,235,.3)
}

.calendar-page table th {
    text-transform: none;
    letter-spacing: 0
}

.calendar-page a[download],.calendar-page a {
    box-shadow: none
}

.calendar-page .border-r:last-child {
    border-right: 0
}

/* Landing page pricing cards. */

#pricing .grid {
    margin-top: 1.5rem
}

.md\:grid-cols-3 {
    grid-template-columns: repeat(3,minmax(0,1fr))
}

.gap-6 {
    gap: 1.5rem
}

.p-8 {
    padding: 2rem
}

.mb-6 {
    margin-bottom: 1.5rem
}

.mb-8 {
    margin-bottom: 2rem
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem
}

.ml-1 {
    margin-left: .25rem
}

.mt-0\.5 {
    margin-top: .125rem
}

.h-11 {
    height: 2.75rem
}

.scale-\[1\.02\] {
    transform: scale(1.02)
}

.border-primary {
    border-color: var(--primary)
}

.bg-gradient-primary {
    background: linear-gradient(135deg,var(--primary),var(--accent))
}

.glow-primary {
    box-shadow: 0 18px 40px rgba(37,99,235,.20)
}

.glow-gold {
    box-shadow: 0 18px 40px rgba(20,184,166,.18)
}

.text-accent {
    color: var(--accent)
}

.bg-accent {
    background: var(--accent)
}

.text-accent-foreground {
    color: #fff
}

.bg-accent\/15 {
    background: rgba(20,184,166,.15)
}

.bg-primary\/10 {
    background: rgba(37,99,235,.1)
}

.fill-accent {
    fill: var(--accent)
}

.tracking-wide {
    letter-spacing: .025em
}

.uppercase {
    text-transform: uppercase
}

.-top-3 {
    top: -.75rem
}

.left-1\/2 {
    left: 50%
}

.-translate-x-1\/2 {
    transform: translateX(-50%)
}

.hover\:opacity-90:hover {
    opacity: .9
}

#pricing .rounded-md {
    border-radius: .375rem
}

#pricing .rounded-xl {
    border-radius: .75rem
}

#pricing .rounded-lg {
    border-radius: .5rem
}

#pricing .w-full {
    width: 100%
}

#pricing .flex-col {
    flex-direction: column
}

#pricing ul {
    list-style: none;
    padding-left: 0
}

#pricing .inline-flex {
    display: inline-flex
}

#pricing a.inline-flex {
    box-shadow: none
}

#pricing .relative {
    position: relative
}

#pricing .absolute {
    position: absolute
}

#pricing svg {
    flex-shrink: 0
}

@media(max-width:980px) {
    .md\:grid-cols-3 {
        grid-template-columns: 1fr
    }
    .scale-\[1\.02\] {
        transform: none
    }
}

/* Cookie consent */

.cookie-consent-banner {
    position: fixed;
    inset-inline: 0;
    bottom: 1rem;
    z-index: 9999;
    padding-inline: 1rem;
    pointer-events: none;
}

.cookie-consent-card {
    max-width: 72rem;
    margin-inline: auto;
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    pointer-events: auto;
    background: white;
    color: hsl(var(--foreground));
}

.cookie-consent-copy {
    display: grid;
    gap: .35rem;
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .5rem;
    flex-wrap: wrap;
}

.cookie-consent-actions-end {
    margin-top: .75rem;
}

.cookie-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    border-radius: .5rem;
    padding-inline: 1rem;
    font-size: .875rem;
    font-weight: 600;
    border: 1px solid hsl(var(--border));
    transition: opacity .15s ease, background-color .15s ease, color .15s ease;
    cursor: pointer;
}

.cookie-btn-primary {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border-color: hsl(var(--primary));
}

.cookie-btn-secondary {
    background: hsl(var(--background));
    color: hsl(var(--foreground));
}

.cookie-btn:hover {
    opacity: .9;
}

.cookie-preferences-panel {
    grid-column: 1 / -1;
    border-top: 1px solid hsl(var(--border));
    padding-top: .75rem;
}

.cookie-category-list {
    display: grid;
    gap: .5rem;
}

.cookie-category-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: .75rem;
}

.cookie-category-row span span {
    display: block;
    margin-top: .15rem;
}

.cookie-category-row input[type="checkbox"] {
    margin-top: .25rem;
    min-width: 1rem;
    min-height: 1rem;
}

@media (max-width: 768px) {
    .cookie-consent-card {
        grid-template-columns: 1fr;
    }
    .cookie-consent-actions {
        justify-content: stretch;
    }
    .cookie-consent-actions form, .cookie-consent-actions button {
        flex: 1;
    }
    .cookie-btn {
        width: 100%;
    }
}

/* Visa requirements app */

.vr-body {
    background: hsl(220,40%,8%);
    color: white
}

.vr-nav {
    background: rgba(15,23,42,.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid hsl(220,30%,18%)
}

.visa-requirements-page {
    color: white
}

.dashboard-visa-requirements-wrap {
    background: hsl(220,40%,8%);
    border-radius: 1rem;
    margin: -.5rem 0 0;
    overflow: hidden
}

.dashboard-visa-requirements-wrap .visa-requirements-page {
    padding-top: 2rem
}

.container {
    width: 100%
}

.max-w-5xl {
    max-width: 64rem
}

.mx-auto {
    margin-left: auto;
    margin-right: auto
}

.pt-24 {
    padding-top: 6rem
}

.pb-16 {
    padding-bottom: 4rem
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem
}

.mb-3 {
    margin-bottom: .75rem
}

.mb-4 {
    margin-bottom: 1rem
}

.mb-10 {
    margin-bottom: 2.5rem
}

.text-white {
    color: #fff
}

.text-vr-gold {
    color: hsl(45,80%,55%)
}

.text-vr-muted {
    color: hsl(220,20%,60%)
}

.text-vr-soft {
    color: hsl(220,20%,70%)
}

.text-vr-dim {
    color: hsl(220,20%,45%)
}

.vr-pill {
    background: hsla(45,80%,50%,.1);
    color: hsl(45,80%,55%)
}

.vr-panel {
    background: hsl(220,40%,13%);
    border: 1px solid hsl(220,30%,20%)
}

.vr-panel-gold {
    border-color: hsla(45,80%,50%,.3)
}

.vr-answer {
    border-color: hsla(45,80%,50%,.2);
    background: hsla(45,80%,50%,.05)
}

.vr-border {
    border-color: hsl(220,30%,20%)
}

.vr-border-light {
    border-color: hsl(220,30%,18%)
}

.hover\:bg-vr-hover:hover {
    background: hsl(220,35%,16%)
}

.vr-select,.vr-search,.vr-date {
    background: hsl(220,35%,10%);
    border: 1px solid hsl(220,30%,20%);
    color: #fff;
    border-radius: .5rem;
    padding: .65rem .75rem;
    width: 100%;
    font: inherit
}

.vr-search {
    background: hsl(220,40%,13%);
    height: 3.25rem
}

.vr-select:focus,.vr-search:focus,.vr-date:focus {
    outline: 2px solid hsla(45,80%,50%,.5);
    border-color: hsl(45,80%,50%)
}

.vr-country-card {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem;
    border-radius: .75rem;
    background: hsl(220,40%,13%);
    border: 1px solid hsl(220,30%,20%);
    color: #fff;
    text-decoration: none;
    box-shadow: none
}

.vr-country-card:hover,.vr-country-card.active {
    border-color: hsl(45,80%,50%);
    background: hsla(45,80%,50%,.06)
}

.vr-country-card strong {
    display: block;
    color: white
}

.vr-country-card small {
    display: block;
    color: hsl(220,20%,60%);
    font-size: .75rem
}

.vr-tab-list {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    border-radius: .5rem;
    padding: .25rem;
    background: hsl(220,40%,13%);
    border: 1px solid hsl(220,30%,20%)
}

.vr-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .4rem .75rem;
    border-radius: .35rem;
    color: hsl(220,20%,70%);
    font-size: .875rem;
    font-weight: 600
}

.vr-tab.active {
    background: hsl(45,80%,50%);
    color: hsl(220,40%,10%)
}

.vr-badge-green {
    background: rgba(34,197,94,.15);
    color: #4ade80
}

.vr-badge-gold {
    background: hsla(45,80%,50%,.15);
    color: hsl(45,80%,55%)
}

.vr-badge-red {
    background: rgba(239,68,68,.15);
    color: #f87171
}

.vr-info-card {
    padding: 1rem;
    border-radius: .75rem;
    background: hsl(220,35%,10%);
    border: 1px solid hsl(220,30%,18%);
    display: flex;
    align-items: center;
    gap: .75rem
}

.vr-info-card p {
    font-size: .75rem;
    color: hsl(220,20%,50%);
    margin: 0
}

.vr-info-card strong {
    display: block;
    color: white
}

.vr-info-icon {
    height: 2.5rem;
    width: 2.5rem;
    border-radius: .5rem;
    display: grid;
    place-items: center;
    font-weight: 800
}

.vr-info-icon.blue {
    background: rgba(59,130,246,.1);
    color: #60a5fa
}

.vr-info-icon.gold {
    background: hsla(45,80%,50%,.1);
    color: hsl(45,80%,55%)
}

.vr-info-icon.green {
    background: rgba(34,197,94,.1);
    color: #4ade80
}

.vr-section-heading {
    font-size: .875rem;
    font-weight: 800;
    color: hsl(45,80%,55%);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    display: flex;
    align-items: center;
    gap: .5rem
}

.vr-doc-row {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: .875rem;
    padding: .65rem;
    border-radius: .5rem;
    background: hsl(220,35%,10%);
    color: hsl(220,20%,75%)
}

.vr-doc-row span:first-child {
    color: #22c55e;
    font-weight: 900
}

.vr-compare-table {
    border-collapse: collapse
}

.vr-compare-table th {
    color: hsl(220,20%,50%);
    font-weight: 600;
    text-align: left;
    padding: .5rem 1rem .5rem 0;
    border-bottom: 1px solid hsl(220,30%,20%)
}

.vr-compare-table td {
    padding: .65rem 1rem .65rem 0;
    border-bottom: 1px solid hsl(220,30%,18%)
}

.vr-compare-table tr.selected {
    background: hsla(45,80%,50%,.05)
}

.vr-you {
    font-size: 10px;
    padding: .1rem .35rem;
    border-radius: 999px;
    background: hsla(45,80%,50%,.2);
    color: hsl(45,80%,55%)
}

.vr-total {
    background: hsla(45,80%,50%,.1);
    color: hsl(45,80%,55%)
}

.vr-step-blue {
    background: #3b82f6
}

.vr-step-purple {
    background: #a855f7
}

.vr-step-red {
    background: #ef4444
}

.vr-step-green {
    background: #22c55e
}

.vr-cta {
    background: linear-gradient(90deg,hsl(220,40%,13%),hsl(220,35%,16%));
    border: 1px solid hsl(220,30%,20%)
}

.vr-start-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .5rem;
    background: hsl(45,80%,50%);
    color: hsl(220,40%,10%);
    padding: .65rem 1rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: none
}

.vr-start-btn:hover {
    background: hsl(45,80%,45%)
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem
}

.md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem
}

.pl-12 {
    padding-left: 3rem
}

.h-13 {
    height: 3.25rem
}

.animate-in {
    animation: fadeIn .2s ease-out
}

.fade-in {
    opacity: 1
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(4px)
    }
    to {
        opacity: 1;
        transform: none
    }
}

@media(max-width:768px) {
    .dashboard-visa-requirements-wrap {
        margin: 0
    }
    .visa-requirements-page {
        padding-top: 2rem
    }
    .vr-cta {
        display: block
    }
    .vr-start-btn {
        margin-top: 1rem;
        width: 100%
    }
}

/* Visa requirements consistency fix: use the same light app theme as the rest of Atlas Approval. */

.vr-body, .visa-requirements-page, .dashboard-visa-requirements-wrap {
    background: var(--background);
    color: var(--foreground);
}

.vr-body .landing-nav, .vr-nav {
    background: rgba(255,255,255,.88);
    border-bottom: 1px solid var(--border);
    color: var(--foreground);
}

.dashboard-visa-requirements-wrap {
    border-radius: 0;
    margin: 0;
    overflow: visible;
}

.dashboard-visa-requirements-wrap .visa-requirements-page {
    padding: 0;
    max-width: 72rem;
}

.visa-requirements-page .text-white, .visa-requirements-page .vr-country-card strong, .visa-requirements-page .vr-info-card strong, .visa-requirements-page .vr-compare-table td, .visa-requirements-page .vr-compare-table .text-white, .visa-requirements-page h1, .visa-requirements-page h2, .visa-requirements-page h3, .visa-requirements-page h4 {
    color: var(--foreground) !important;
}

.text-vr-muted, .text-vr-soft, .text-vr-dim, .vr-country-card small, .vr-info-card p, .vr-compare-table th, .vr-compare-table .text-vr-dim, .visa-requirements-page .text-vr-muted, .visa-requirements-page .text-vr-soft, .visa-requirements-page .text-vr-dim {
    color: var(--muted-foreground) !important;
}

.text-vr-gold, .vr-section-heading, .visa-requirements-page .text-vr-gold {
    color: var(--primary) !important;
}

.vr-pill, .vr-total, .vr-you {
    background: rgba(37,99,235,.10);
    color: var(--primary) !important;
}

.vr-panel, .vr-country-card, .vr-tab-list, .vr-info-card, .vr-doc-row, .vr-select, .vr-search, .vr-date {
    background: var(--card) !important;
    border-color: var(--border) !important;
    color: var(--foreground) !important;
    box-shadow: 0 14px 40px rgba(15,23,42,.05);
}

.vr-panel-gold, .vr-country-card:hover, .vr-country-card.active, .vr-answer {
    border-color: rgba(37,99,235,.25) !important;
    background: var(--soft) !important;
}

.vr-answer p {
    color: var(--foreground) !important;
}

.vr-border, .vr-border-light, .vr-compare-table th, .vr-compare-table td {
    border-color: var(--border) !important;
}

.vr-tab {
    color: var(--muted-foreground) !important;
}

.vr-tab.active {
    background: var(--primary) !important;
    color: var(--primary-foreground) !important;
}

.vr-doc-row {
    box-shadow: none;
}

.vr-doc-row span:last-child {
    color: var(--foreground) !important;
}

.vr-compare-table tr.selected {
    background: rgba(37,99,235,.08) !important;
}

.vr-cta {
    background: linear-gradient(135deg, var(--soft), #f0fdfa) !important;
    border-color: var(--border) !important;
}

.vr-start-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
    color: #fff !important;
    border-radius: 999px;
}

.vr-select:focus, .vr-search:focus, .vr-date:focus {
    outline: 2px solid rgba(37,99,235,.25) !important;
    border-color: var(--primary) !important;
}

.vr-info-icon.gold {
    background: rgba(37,99,235,.10) !important;
    color: var(--primary) !important;
}

.vr-info-icon.blue {
    background: rgba(37,99,235,.10) !important;
    color: var(--primary) !important;
}

.vr-info-icon.green {
    background: rgba(20,184,166,.12) !important;
    color: var(--accent) !important;
}

.vr-badge-gold {
    background: rgba(37,99,235,.12) !important;
    color: var(--primary) !important;
}

.vr-badge-green {
    background: rgba(34,197,94,.14) !important;
    color: #15803d !important;
}

.vr-badge-red {
    background: rgba(239,68,68,.12) !important;
    color: #dc2626 !important;
}

.visa-requirements-page .bg-green-500\/15 {
    background: rgba(34,197,94,.14) !important;
}

.visa-requirements-page .text-green-400 {
    color: #15803d !important;
}

.visa-requirements-page .bg-\[hsl\(45\,80\%\,50\%\)\]\/15, .visa-requirements-page .bg-\[hsl\(45\,80\%\,50\%\)\]\/10, .visa-requirements-page .bg-\[hsl\(45\,80\%\,50\%\)\]\/5 {
    background: rgba(37,99,235,.10) !important;
}

.visa-requirements-page .text-\[hsl\(45\,80\%\,55\%\)\] {
    color: var(--primary) !important;
}

.visa-requirements-page .border-\[hsl\(220\,30\%\,20\%\)\], .visa-requirements-page .border-\[hsl\(220\,30\%\,18\%\)\] {
    border-color: var(--border) !important;
}

.visa-requirements-page .bg-\[hsl\(220\,40\%\,13\%\)\], .visa-requirements-page .bg-\[hsl\(220\,35\%\,10\%\)\], .visa-requirements-page .bg-\[hsl\(220\,35\%\,16\%\)\] {
    background: var(--card) !important;
}

/* Visa requirements timeline fix: do not depend on Tailwind h-2 utilities. */

.vr-timeline-bar {
    height: 0.5rem;
    min-height: 8px;
    display: block;
    width: 100%;
}

.vr-step-blue,.vr-step-purple,.vr-step-red,.vr-step-green {
    display: block;
}

.padding-top-md {
  padding-top: 2em;
}

.padding-bottom-md {
  padding-bottom: 2em;
}

.padding-right-md {
  padding-right: 2em;
}

.padding-sm {
  padding: 1em;
}

.padding-md {
  padding: 2em;
}

.margin-bottom-md {
  margin-bottom: 2em;
}

.padding-y-sm {
  padding: 1em 0;
}

.padding-x-sm {
  padding: 0 1em;
}
