 :root {
	 --graphite: #18181B;
	 --graphite-2: #222229;
	 --graphite-3: #2f2f38;
	 --lime: #A3E635;
	 --lime-2: #bef264;
	 --white: #F8FAFC;
	 --cool: #CBD5E1;
	 --muted: #A1A1AA;
	 --line: rgba(248,250,252,.12);
	 --card: rgba(248,250,252,.07);
	 --card-strong: rgba(248,250,252,.12);
	 --shadow: 0 24px 70px rgba(0,0,0,.32);
	 --radius: 24px;
	 --max: 1160px;
}
 * {
	 box-sizing: border-box;
}
 html {
	 scroll-behavior: smooth;
}
 body {
	 margin: 0;
	 font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	 color: var(--white);
	 background: var(--graphite);
	 line-height: 1.6;
	 text-rendering: optimizeLegibility;
	 -webkit-font-smoothing: antialiased;
}
 a {
	 color: inherit;
	 text-decoration: none;
}
 img {
	 max-width: 100%;
	 height: auto;
	 display: block;
}
 button, input, select, textarea {
	 font: inherit;
}
 .skip-link {
	 position: absolute;
	 left: -999px;
	 top: 12px;
	 z-index: 1000;
	 background: var(--lime);
	 color: var(--graphite);
	 padding: 10px 14px;
	 border-radius: 12px;
	 font-weight: 800;
}
 .skip-link:focus {
	 left: 12px;
}
 .container {
	 width: min(100% - 32px, var(--max));
	 margin: 0 auto;
}
 .site-header {
	 position: sticky;
	 top: 0;
	 z-index: 900;
	 backdrop-filter: blur(18px);
	 background: rgba(24,24,27,.78);
	 border-bottom: 1px solid var(--line);
}
 .nav-wrap {
	 display: flex;
	 align-items: center;
	 justify-content: space-between;
	 min-height: 76px;
	 gap: 24px;
}
 .brand {
	 display: flex;
	 align-items: center;
	 gap: 12px;
	 font-weight: 900;
	 letter-spacing: -.02em;
}
 .brand img {
	 width: 42px;
	 height: 42px;
	 border-radius: 14px;
	 box-shadow: 0 10px 30px rgba(163,230,53,.18);
}
 .brand span {
	 white-space: nowrap;
}
 .nav-toggle {
	 display: none;
	 width: 46px;
	 height: 46px;
	 border: 1px solid var(--line);
	 border-radius: 15px;
	 background: rgba(248,250,252,.07);
	 color: var(--white);
	 cursor: pointer;
}
 .nav-toggle span {
	 display: block;
	 width: 21px;
	 height: 2px;
	 background: currentColor;
	 margin: 5px auto;
	 border-radius: 2px;
	 transition: transform .2s ease, opacity .2s ease;
}
 .nav-toggle[aria-expanded="true"] span:nth-child(1) {
	 transform: translateY(7px) rotate(45deg);
}
 .nav-toggle[aria-expanded="true"] span:nth-child(2) {
	 opacity: 0;
}
 .nav-toggle[aria-expanded="true"] span:nth-child(3) {
	 transform: translateY(-7px) rotate(-45deg);
}
 .primary-nav {
	 display: flex;
	 align-items: center;
	 gap: 8px;
}
 .primary-nav a {
	 padding: 10px 12px;
	 border-radius: 999px;
	 color: #e4e4e7;
	 font-size: .94rem;
	 font-weight: 650;
}
 .primary-nav a:hover, .primary-nav a[aria-current="page"] {
	 background: rgba(163,230,53,.13);
	 color: var(--white);
}
 .nav-cta {
	 background: var(--lime) !important;
	 color: var(--graphite) !important;
	 box-shadow: 0 12px 34px rgba(163,230,53,.18);
}
 main {
	 overflow: hidden;
}
 .hero {
	 position: relative;
	 padding: 84px 0 72px;
	 background: radial-gradient(circle at 77% 5%, rgba(163,230,53,.34), transparent 25%), radial-gradient(circle at 15% 10%, rgba(248,250,252,.09), transparent 28%), linear-gradient(135deg, #18181B 0%, #292932 48%, rgba(163,230,53,.27) 100%);
}
 .hero::after {
	 content: "";
	 position: absolute;
	 inset: auto 0 0;
	 height: 1px;
	 background: linear-gradient(90deg, transparent, rgba(163,230,53,.7), transparent);
}
 .hero-grid {
	 display: grid;
	 grid-template-columns: 1.02fr .98fr;
	 gap: 56px;
	 align-items: center;
}
 .kicker {
	 display: inline-flex;
	 align-items: center;
	 gap: 10px;
	 padding: 8px 14px;
	 border: 1px solid rgba(163,230,53,.35);
	 border-radius: 999px;
	 background: rgba(163,230,53,.09);
	 color: var(--lime-2);
	 font-weight: 800;
	 letter-spacing: .04em;
	 text-transform: uppercase;
	 font-size: .75rem;
}
 .kicker::before {
	 content: "";
	 width: 8px;
	 height: 8px;
	 border-radius: 50%;
	 background: var(--lime);
	 box-shadow: 0 0 0 7px rgba(163,230,53,.13);
}
 h1, h2, h3, h4 {
	 margin: 0 0 16px;
	 line-height: 1.05;
	 letter-spacing: -.04em;
}
 h1 {
	 font-size: clamp(2.7rem, 6vw, 4.9rem);
	 max-width: 920px;
}
 h2 {
	 font-size: clamp(2.1rem, 4vw, 4rem);
}
 h3 {
	 font-size: clamp(1.35rem, 2vw, 2rem);
}
 h4 {
	 font-size: 1.1rem;
}
 p {
	 margin: 0 0 18px;
	 color: #d4d4d8;
}
 .lead {
	 font-size: clamp(1.05rem, 1.7vw, 1.35rem);
	 color: #eceff3;
	 max-width: 760px;
}
 .hero-actions, .actions {
	 display: flex;
	 flex-wrap: wrap;
	 gap: 14px;
	 margin-top: 30px;
}
 .btn {
	 display: inline-flex;
	 align-items: center;
	 justify-content: center;
	 gap: 10px;
	 min-height: 50px;
	 padding: 14px 22px;
	 border-radius: 16px;
	 border: 1px solid transparent;
	 cursor: pointer;
	 font-weight: 850;
	 transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
 .btn:hover {
	 transform: translateY(-2px);
}
 .btn-primary {
	 background: var(--lime);
	 color: var(--graphite);
	 box-shadow: 0 14px 38px rgba(163,230,53,.24);
}
 .btn-secondary {
	 background: rgba(248,250,252,.08);
	 color: var(--white);
	 border-color: var(--line);
}
 .btn-ghost {
	 color: var(--lime-2);
	 border: 1px solid rgba(163,230,53,.28);
	 background: rgba(163,230,53,.06);
}
 .hero-media {
	 position: relative;
}
 .hero-media img {
	 border-radius: 34px;
	 box-shadow: var(--shadow);
	 border: 1px solid rgba(248,250,252,.2);
}
 .floating-pill {
	 position: absolute;
	 left: -18px;
	 bottom: 32px;
	 display: grid;
	 gap: 4px;
	 padding: 18px 20px;
	 min-width: 176px;
	 border-radius: 20px;
	 background: rgba(24,24,27,.92);
	 border: 1px solid rgba(163,230,53,.35);
	 box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
 .floating-pill strong {
	 color: var(--lime);
	 font-size: 1.55rem;
	 line-height: 1;
}
 .floating-pill span {
	 color: #e4e4e7;
	 font-size: .9rem;
}
 .stats-strip {
	 display: grid;
	 grid-template-columns: repeat(4, 1fr);
	 gap: 16px;
	 margin-top: 46px;
}
 .stat-mini {
	 padding: 18px;
	 border-radius: 18px;
	 background: rgba(248,250,252,.06);
	 border: 1px solid var(--line);
}
 .stat-mini strong {
	 display: block;
	 font-size: clamp(1.4rem, 3vw, 2.4rem);
	 color: var(--lime);
	 letter-spacing: -.05em;
}
 .stat-mini span {
	 color: #d4d4d8;
	 font-size: .92rem;
}
 .section {
	 padding: 86px 0;
	 background: linear-gradient(180deg, rgba(248,250,252,.02), rgba(248,250,252,0));
}
 .section.alt {
	 background: linear-gradient(135deg, #202027 0%, #18181B 52%, rgba(163,230,53,.16) 100%);
}
 .section.light {
	 color: #18181B;
	 background: linear-gradient(135deg, #F8FAFC 0%, #e7ecef 72%, #A3E635 140%);
}
 .section.light p, .section.light li {
	 color: #3f3f46;
}
 .section-header {
	 text-align: center;
	 max-width: 820px;
	 margin: 0 auto 44px;
}
 .section-header.left {
	 text-align: left;
	 margin-left: 0;
}
 .eyebrow {
	 color: var(--lime);
	 font-weight: 900;
	 text-transform: uppercase;
	 letter-spacing: .12em;
	 font-size: .78rem;
	 margin-bottom: 12px;
	 display: block;
}
 .grid-2 {
	 display: grid;
	 grid-template-columns: 1fr 1fr;
	 gap: 42px;
	 align-items: center;
}
 .grid-3 {
	 display: grid;
	 grid-template-columns: repeat(3, 1fr);
	 gap: 22px;
}
 .grid-4 {
	 display: grid;
	 grid-template-columns: repeat(4, 1fr);
	 gap: 20px;
}
 .card {
	 border: 1px solid var(--line);
	 background: linear-gradient(180deg, var(--card-strong), rgba(248,250,252,.045));
	 border-radius: var(--radius);
	 padding: 26px;
	 box-shadow: 0 18px 54px rgba(0,0,0,.13);
}
 .card:hover {
	 border-color: rgba(163,230,53,.3);
}
 .card.light-card {
	 background: rgba(255,255,255,.72);
	 border-color: rgba(24,24,27,.1);
	 box-shadow: 0 18px 50px rgba(24,24,27,.09);
}
 .icon {
	 width: 48px;
	 height: 48px;
	 display: inline-grid;
	 place-items: center;
	 border-radius: 16px;
	 background: linear-gradient(135deg, rgba(163,230,53,.95), rgba(248,250,252,.75));
	 color: var(--graphite);
	 font-weight: 1000;
	 margin-bottom: 18px;
	 box-shadow: 0 10px 30px rgba(163,230,53,.22);
}
 .check-list, .feature-list {
	 list-style: none;
	 padding: 0;
	 margin: 18px 0 0;
	 display: grid;
	 gap: 13px;
}
 .check-list li, .feature-list li {
	 position: relative;
	 padding-left: 34px;
	 color: #d4d4d8;
}
 .section.light .check-list li, .section.light .feature-list li {
	 color: #3f3f46;
}
 .check-list li::before, .feature-list li::before {
	 content: "✓";
	 position: absolute;
	 left: 0;
	 top: 0;
	 width: 22px;
	 height: 22px;
	 border-radius: 50%;
	 background: var(--lime);
	 color: var(--graphite);
	 display: grid;
	 place-items: center;
	 font-size: .8rem;
	 font-weight: 1000;
}
 .service-card {
	 min-height: 100%;
}
 .service-card ul {
	 margin: 18px 0 0;
	 padding-left: 18px;
	 color: #d4d4d8;
}
 .service-card li {
	 margin: 8px 0;
}
 .media-card {
	 border-radius: 28px;
	 overflow: hidden;
	 border: 1px solid rgba(248,250,252,.16);
	 box-shadow: var(--shadow);
}
 .media-card img {
	 width: 100%;
}
 .quote-panel {
	 display: grid;
	 gap: 22px;
}
 .quote {
	 padding-left: 24px;
	 border-left: 4px solid var(--lime);
}
 .quote blockquote {
	 margin: 0 0 12px;
	 color: #f4f4f5;
	 font-size: 1.06rem;
}
 .quote cite {
	 color: var(--lime-2);
	 font-style: normal;
	 font-weight: 800;
}
 .metric-grid {
	 display: grid;
	 grid-template-columns: repeat(4, 1fr);
	 gap: 24px;
	 text-align: center;
}
 .metric strong {
	 display: block;
	 font-size: clamp(2rem, 4vw, 4rem);
	 color: var(--lime);
	 letter-spacing: -.06em;
	 line-height: 1;
}
 .metric span {
	 color: #d4d4d8;
}
 .long-copy {
	 max-width: 900px;
	 margin: 0 auto;
}
 .long-copy p {
	 margin-bottom: 22px;
}
 .form-grid {
	 display: grid;
	 grid-template-columns: .95fr 1.05fr;
	 gap: 42px;
	 align-items: start;
}
 .form-card {
	 padding: 30px;
	 border-radius: 28px;
	 background: rgba(248,250,252,.09);
	 border: 1px solid var(--line);
	 box-shadow: var(--shadow);
}
 .form-row {
	 display: grid;
	 gap: 8px;
	 margin-bottom: 16px;
}
 label {
	 font-weight: 800;
	 color: #f4f4f5;
}
 input, select, textarea {
	 width: 100%;
	 border: 1px solid rgba(248,250,252,.16);
	 border-radius: 14px;
	 padding: 14px 15px;
	 color: var(--white);
	 background: rgba(24,24,27,.58);
	 outline: none;
}
 input:focus, select:focus, textarea:focus {
	 border-color: var(--lime);
	 box-shadow: 0 0 0 4px rgba(163,230,53,.12);
}
 textarea {
	 min-height: 130px;
	 resize: vertical;
}
 .fineprint {
	 font-size: .85rem;
	 color: #a1a1aa;
	 margin-top: 14px;
}
 .info-stack {
	 display: grid;
	 gap: 18px;
}
 .info-card {
	 padding: 24px;
	 border-radius: 24px;
	 background: rgba(248,250,252,.07);
	 border: 1px solid var(--line);
}
 .info-card strong {
	 color: var(--white);
	 display: block;
	 margin-bottom: 10px;
	 font-size: 1.1rem;
}
 .map-frame {
	 border: 1px solid var(--line);
	 border-radius: 26px;
	 overflow: hidden;
	 background: rgba(248,250,252,.06);
}
 .map-frame figcaption {
	 padding: 14px 18px;
	 color: #d4d4d8;
	 font-size: .92rem;
}
 .footer {
	 background: #0f1115;
	 border-top: 1px solid var(--line);
	 padding: 58px 0 30px;
}
 .footer-grid {
	 display: grid;
	 grid-template-columns: 1.35fr repeat(3, 1fr);
	 gap: 36px;
}
 .footer h3, .footer h4 {
	 letter-spacing: -.02em;
}
 .footer ul {
	 list-style: none;
	 padding: 0;
	 margin: 0;
	 display: grid;
	 gap: 10px;
}
 .footer a {
	 color: #d4d4d8;
}
 .footer a:hover {
	 color: var(--lime);
}
 .footer-bottom {
	 border-top: 1px solid var(--line);
	 margin-top: 38px;
	 padding-top: 22px;
	 display: grid;
	 grid-template-columns: 1fr 1.2fr;
	 gap: 28px;
	 color: #a1a1aa;
	 font-size: .88rem;
}
 .badge-row {
	 display: flex;
	 flex-wrap: wrap;
	 gap: 10px;
	 margin-top: 18px;
}
 .badge {
	 display: inline-flex;
	 align-items: center;
	 padding: 8px 12px;
	 border-radius: 999px;
	 border: 1px solid rgba(163,230,53,.32);
	 background: rgba(163,230,53,.08);
	 color: #ecfccb;
	 font-weight: 800;
	 font-size: .85rem;
}
 .page-hero {
	 padding: 78px 0 62px;
	 background: radial-gradient(circle at 75% 10%, rgba(163,230,53,.32), transparent 30%), linear-gradient(135deg, #18181B, #25252d 55%, rgba(163,230,53,.18));
}
 .breadcrumbs {
	 display: flex;
	 gap: 8px;
	 color: #d4d4d8;
	 margin-top: 20px;
	 font-size: .94rem;
}
 .breadcrumbs a {
	 color: var(--lime-2);
}
 .table-wrap {
	 overflow-x: auto;
	 border: 1px solid var(--line);
	 border-radius: 22px;
}
 table {
	 width: 100%;
	 border-collapse: collapse;
	 min-width: 760px;
}
 th, td {
	 padding: 18px;
	 text-align: left;
	 border-bottom: 1px solid var(--line);
	 vertical-align: top;
}
 th {
	 color: var(--lime-2);
	 font-size: .9rem;
	 text-transform: uppercase;
	 letter-spacing: .08em;
}
 td {
	 color: #e4e4e7;
}
 .fleet-card img {
	 border-radius: 20px;
	 margin-bottom: 18px;
	 border: 1px solid rgba(24,24,27,.1);
}
 .price {
	 font-size: 2.2rem;
	 font-weight: 950;
	 color: var(--lime);
	 letter-spacing: -.05em;
	 margin: 12px 0;
}
 .faq {
	 display: grid;
	 gap: 14px;
}
 details {
	 border: 1px solid var(--line);
	 border-radius: 18px;
	 padding: 18px 20px;
	 background: rgba(248,250,252,.055);
}
 summary {
	 cursor: pointer;
	 font-weight: 850;
	 color: #fff;
}
 details p {
	 margin: 14px 0 0;
}
 .legal-content {
	 max-width: 920px;
}
 .legal-content h2 {
	 font-size: clamp(1.45rem, 3vw, 2.3rem);
	 margin-top: 36px;
}
 .legal-content h3 {
	 font-size: 1.35rem;
	 margin-top: 24px;
}
 .legal-content ul, .legal-content ol {
	 color: #d4d4d8;
	 padding-left: 22px;
}
 .legal-content li {
	 margin: 10px 0;
}
 .cookie-banner {
	 position: fixed;
	 left: 18px;
	 right: 18px;
	 bottom: 18px;
	 z-index: 1100;
	 display: none;
}
 .cookie-banner.is-visible {
	 display: block;
	 animation: slideUp .35s ease both;
}
 .cookie-inner {
	 width: min(100%, 980px);
	 margin: 0 auto;
	 display: grid;
	 grid-template-columns: 1fr auto;
	 gap: 20px;
	 align-items: center;
	 padding: 20px;
	 border-radius: 24px;
	 background: rgba(15,17,21,.96);
	 border: 1px solid rgba(163,230,53,.28);
	 box-shadow: 0 28px 80px rgba(0,0,0,.45);
}
 .cookie-actions {
	 display: flex;
	 gap: 10px;
	 flex-wrap: wrap;
}
 .toast-modal {
	 position: fixed;
	 inset: 0;
	 z-index: 1300;
	 display: none;
	 align-items: center;
	 justify-content: center;
	 padding: 24px;
	 background: rgba(0,0,0,.62);
}
 .toast-modal.is-visible {
	 display: flex;
}
 .toast-card {
	 width: min(100%, 460px);
	 text-align: center;
	 padding: 36px 30px;
	 border-radius: 30px;
	 background: linear-gradient(160deg, #18181B, #2b2b33);
	 border: 1px solid rgba(163,230,53,.32);
	 box-shadow: var(--shadow);
	 animation: popIn .28s ease both;
}
 .toast-check {
	 width: 74px;
	 height: 74px;
	 margin: 0 auto 18px;
	 border-radius: 50%;
	 background: var(--lime);
	 color: var(--graphite);
	 display: grid;
	 place-items: center;
	 font-size: 2.3rem;
	 font-weight: 1000;
	 box-shadow: 0 0 0 14px rgba(163,230,53,.12);
	 animation: pulse 1.3s ease infinite;
}
 @keyframes slideUp {
	 from {
		 transform: translateY(24px);
		 opacity: 0;
	}
	 to {
		 transform: translateY(0);
		 opacity: 1;
	}
}
 @keyframes popIn {
	 from {
		 transform: translateY(18px) scale(.96);
		 opacity: 0;
	}
	 to {
		 transform: translateY(0) scale(1);
		 opacity: 1;
	}
}
 @keyframes pulse {
	 0%,100% {
		 box-shadow: 0 0 0 12px rgba(163,230,53,.12);
	}
	 50% {
		 box-shadow: 0 0 0 22px rgba(163,230,53,.02);
	}
}
 @media (max-width: 980px) {
	 .nav-toggle {
		 display: inline-block;
	}
	 .primary-nav {
		 position: absolute;
		 left: 16px;
		 right: 16px;
		 top: 84px;
		 display: none;
		 flex-direction: column;
		 align-items: stretch;
		 padding: 18px;
		 border-radius: 24px;
		 background: rgba(15,17,21,.98);
		 border: 1px solid var(--line);
		 box-shadow: var(--shadow);
	}
	 .primary-nav.is-open {
		 display: flex;
		 animation: slideUp .24s ease both;
	}
	 .primary-nav a {
		 padding: 14px 16px;
	}
	 .hero-grid, .grid-2, .form-grid {
		 grid-template-columns: 1fr;
	}
	 .stats-strip, .metric-grid, .grid-4 {
		 grid-template-columns: repeat(2, 1fr);
	}
	 .grid-3, .footer-grid {
		 grid-template-columns: 1fr 1fr;
	}
	 .footer-bottom {
		 grid-template-columns: 1fr;
	}
}
 @media (max-width: 640px) {
	 .container {
		 width: min(100% - 24px, var(--max));
	}
	 .hero, .page-hero {
		 padding: 56px 0;
	}
	 .section {
		 padding: 64px 0;
	}
	 .stats-strip, .metric-grid, .grid-3, .grid-4, .footer-grid {
		 grid-template-columns: 1fr;
	}
	 .floating-pill {
		 position: static;
		 margin-top: 14px;
	}
	 .cookie-inner {
		 grid-template-columns: 1fr;
	}
	 .cookie-actions .btn {
		 width: 100%;
	}
	 .btn {
		 width: 100%;
	}
}
 @media (prefers-reduced-motion: reduce) {
	 *, *::before, *::after {
		 animation-duration: .01ms !important;
		 animation-iteration-count: 1 !important;
		 scroll-behavior: auto !important;
		 transition-duration: .01ms !important;
	}
}
/* Production visual polish and motion */
 .js-enabled body {
	 opacity: 0;
	 transition: opacity .45s ease;
}
 .js-enabled body.is-loaded {
	 opacity: 1;
}
 .site-header {
	 transition: background .25s ease, box-shadow .25s ease, border-color .25s ease, transform .25s ease;
}
 .site-header.is-scrolled {
	 background: rgba(15,17,21,.92);
	 box-shadow: 0 18px 48px rgba(0,0,0,.28);
	 border-color: rgba(163,230,53,.22);
}
 .hero-media, .media-card, .map-frame, .mosaic-card, .fleet-card img {
	 position: relative;
	 overflow: hidden;
}
 .hero-media::after, .media-card::after, .map-frame::after, .mosaic-card::after {
	 content: "";
	 position: absolute;
	 inset: 0;
	 pointer-events: none;
	 background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.14) 45%, transparent 64%);
	 transform: translateX(-120%);
	 transition: transform .9s cubic-bezier(.2,.8,.2,1);
}
 .hero-media:hover::after, .media-card:hover::after, .map-frame:hover::after, .mosaic-card:hover::after {
	 transform: translateX(120%);
}
 .hero-media img, .media-card img, .map-frame img, .mosaic-card img, .fleet-card img {
	 width: 100%;
	 height: auto;
	 display: block;
	 object-fit: cover;
	 transition: transform .65s cubic-bezier(.2,.8,.2,1), filter .65s ease;
}
 .hero-media:hover img, .media-card:hover img, .map-frame:hover img, .mosaic-card:hover img, .fleet-card:hover img {
	 transform: scale(1.035);
	 filter: saturate(1.08) contrast(1.03);
}
 .card, .info-card, details, .price-card, .form-card {
	 --mx: 50%;
	 --my: 0%;
	 background-image: radial-gradient(circle at var(--mx) var(--my), rgba(163,230,53,.16), transparent 38%);
	 transition: transform .28s ease, border-color .28s ease, background-color .28s ease;
}
 .card:hover, .info-card:hover, details:hover, .price-card:hover {
	 transform: translateY(-6px);
	 border-color: rgba(163,230,53,.36);
}
 .reveal {
	 opacity: 0;
	 transform: translateY(28px);
	 transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1);
	 transition-delay: var(--delay, 0ms);
}
 .reveal.is-visible {
	 opacity: 1;
	 transform: translateY(0);
}
 .hero .kicker, .hero h1, .hero .lead, .hero-actions, .stats-strip, .hero-media {
	 animation: riseIn .72s cubic-bezier(.2,.8,.2,1) both;
}
 .hero h1 {
	 animation-delay: .08s;
}
 .hero .lead {
	 animation-delay: .16s;
}
 .hero-actions {
	 animation-delay: .24s;
}
 .stats-strip {
	 animation-delay: .32s;
}
 .hero-media {
	 animation-delay: .18s;
}
 .floating-pill {
	 animation: floatPill 4.6s ease-in-out infinite;
}
 .toast-card::before {
	 content: "";
	 position: absolute;
	 inset: -2px;
	 z-index: -1;
	 border-radius: 32px;
	 background: linear-gradient(135deg, rgba(163,230,53,.6), rgba(248,250,252,.08), rgba(56,189,248,.34));
	 filter: blur(12px);
	 opacity: .65;
}
 .toast-card {
	 position: relative;
	 overflow: hidden;
}
 .confetti-piece {
	 position: fixed;
	 width: 8px;
	 height: 14px;
	 border-radius: 3px;
	 pointer-events: none;
	 z-index: 1400;
	 background: var(--lime);
	 animation: confettiFall .9s ease-out forwards;
}
 .mosaic-grid {
	 display: grid;
	 grid-template-columns: 1.1fr .9fr;
	 grid-template-rows: repeat(2, minmax(240px, 1fr));
	 gap: 22px;
	 align-items: stretch;
}
 .mosaic-card {
	 min-height: 260px;
	 border-radius: 30px;
	 border: 1px solid var(--line);
	 background: rgba(248,250,252,.07);
	 box-shadow: var(--shadow);
}
 .mosaic-card.tall {
	 grid-row: span 2;
}
 .mosaic-card img {
	 height: 100%;
	 min-height: 260px;
}
 .mosaic-card figcaption {
	 position: absolute;
	 left: 18px;
	 right: 18px;
	 bottom: 18px;
	 padding: 14px 16px;
	 border-radius: 18px;
	 color: #f8fafc;
	 font-weight: 800;
	 background: rgba(15,17,21,.72);
	 border: 1px solid rgba(248,250,252,.14);
	 backdrop-filter: blur(12px);
}
 .visual-story {
	 background: radial-gradient(circle at 20% 20%, rgba(163,230,53,.12), transparent 28%), radial-gradient(circle at 80% 0%, rgba(248,250,252,.08), transparent 28%);
}
 @keyframes riseIn {
	 from {
		 opacity: 0;
		 transform: translateY(24px);
	}
	 to {
		 opacity: 1;
		 transform: translateY(0);
	}
}
 @keyframes floatPill {
	 0%,100% {
		 transform: translateY(0);
	}
	 50% {
		 transform: translateY(-12px);
	}
}
 @keyframes confettiFall {
	 0% {
		 opacity: 1;
		 transform: translate3d(0,0,0) rotate(0deg);
	}
	 100% {
		 opacity: 0;
		 transform: translate3d(var(--dx), var(--dy), 0) rotate(220deg);
	}
}
 @media (max-width: 980px) {
	 .mosaic-grid {
		 grid-template-columns: 1fr;
		 grid-template-rows: none;
	}
	 .mosaic-card.tall {
		 grid-row: auto;
	}
}
 @media (prefers-reduced-motion: reduce) {
	 .js-enabled body {
		 opacity: 1;
	}
	 .reveal {
		 opacity: 1;
		 transform: none;
	}
	 .floating-pill, .hero .kicker, .hero h1, .hero .lead, .hero-actions, .stats-strip, .hero-media {
		 animation: none !important;
	}
}
 