Skip to content
/* ============================================ DESIGN SYSTEM · BewerberDNA v2 ============================================ */ :root { --ink: #0A0E27; --ink-2: #0F1333; --ink-3: #161B3F; --periwinkle: #6B6FE8; --periwinkle-light: #9BA0FF; --periwinkle-bright: #8A8EFF; --periwinkle-dark: #4A4ECC; --periwinkle-deep: #3236A8; --lavender: #C8CBFF; --cloud: #F0F1FF; --paper: #F8F9FF; --white: #FFFFFF; --mist: #E4E6F5; --graphite: #2A2D4A; --slate: #5A5E7A; --cyan: #6DD5ED; --cyan-deep: #3BAAC7; --signal: #00E5A0; --gold: #FFD166; --magenta: #FF6B9D; --plasma: #B46FFF; --font-display: 'Fraunces', Georgia, serif; --font-body: 'Inter Tight', -apple-system, sans-serif; --font-mono: 'JetBrains Mono', monospace; --radius-sm: 10px; --radius: 18px; --radius-lg: 32px; --max-width: 1320px; --gutter: clamp(20px, 4vw, 56px); --shadow-soft: 0 4px 20px rgba(10, 14, 39, 0.06); --shadow-med: 0 12px 40px rgba(10, 14, 39, 0.10); --shadow-deep: 0 28px 70px rgba(10, 14, 39, 0.18); --glow-periwinkle: 0 0 40px rgba(107, 111, 232, 0.5), 0 0 80px rgba(107, 111, 232, 0.25); --glow-cyan: 0 0 30px rgba(109, 213, 237, 0.5); --glow-signal: 0 0 30px rgba(0, 229, 160, 0.5); } * { box-sizing: border-box; margin: 0; padding: 0; } *::selection { background: var(--periwinkle); color: white; } html { scroll-behavior: smooth; } body { font-family: var(--font-body); background: var(--paper); color: var(--ink); line-height: 1.55; overflow-x: hidden; -webkit-font-smoothing: antialiased; font-feature-settings: "ss01", "cv11"; } a { color: inherit; text-decoration: none; } button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; } img { max-width: 100%; display: block; } .container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); position: relative; } /* Background effects */ .bg-mesh { position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: 0.4; background: radial-gradient(ellipse 600px 400px at 15% 20%, rgba(107, 111, 232, 0.18), transparent 60%), radial-gradient(ellipse 500px 400px at 85% 60%, rgba(109, 213, 237, 0.12), transparent 60%), radial-gradient(ellipse 400px 300px at 50% 90%, rgba(180, 111, 255, 0.08), transparent 60%); animation: mesh-shift 20s ease-in-out infinite; } @keyframes mesh-shift { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(-2%, 2%) scale(1.05); } 66% { transform: translate(2%, -1%) scale(0.98); } } .noise { position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: 0.035; mix-blend-mode: overlay; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.8'/%3E%3C/svg%3E"); } .scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--periwinkle), var(--plasma), var(--cyan)); z-index: 101; width: 0%; transition: width 0.1s; box-shadow: 0 0 10px var(--periwinkle); } @media (hover: hover) and (pointer: fine) { .cursor-glow { position: fixed; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(107, 111, 232, 0.15), transparent 60%); pointer-events: none; z-index: 2; filter: blur(40px); transform: translate(-50%, -50%); transition: opacity 0.3s; } } /* Eyebrow */ .eyebrow { font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--periwinkle); display: inline-flex; align-items: center; gap: 12px; } .eyebrow::before { content: ""; width: 32px; height: 1px; background: linear-gradient(90deg, var(--periwinkle), transparent); } .eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--periwinkle); box-shadow: 0 0 10px var(--periwinkle); animation: pulse-dot 2s ease-in-out infinite; } @keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } } .section-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(36px, 5.5vw, 68px); line-height: 1.02; letter-spacing: -0.025em; margin-top: 20px; font-variation-settings: "opsz" 144, "SOFT" 30; } .section-title em { font-style: italic; font-weight: 300; background: linear-gradient(135deg, var(--periwinkle), var(--plasma)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-variation-settings: "opsz" 144, "SOFT" 100; } .section-intro { max-width: 660px; font-size: 18px; color: var(--slate); margin-top: 24px; line-height: 1.65; } /* Buttons with Glow */ .btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 30px; border-radius: 100px; font-size: 15px; font-weight: 500; letter-spacing: -0.005em; transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1); cursor: pointer; white-space: nowrap; overflow: hidden; isolation: isolate; } .btn svg { width: 14px; height: 14px; transition: transform 0.3s; } .btn:hover svg { transform: translateX(4px); } .btn-primary { background: linear-gradient(135deg, var(--periwinkle) 0%, var(--periwinkle-deep) 100%); color: white; box-shadow: 0 10px 30px rgba(107, 111, 232, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset; } .btn-primary::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, var(--plasma) 0%, var(--periwinkle) 100%); opacity: 0; transition: opacity 0.4s; z-index: -1; } .btn-primary::after { content: ""; position: absolute; inset: -2px; background: linear-gradient(135deg, var(--periwinkle), var(--cyan), var(--plasma)); border-radius: 100px; z-index: -2; opacity: 0; filter: blur(14px); transition: opacity 0.4s; } .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(107, 111, 232, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.15) inset; } .btn-primary:hover::before { opacity: 1; } .btn-primary:hover::after { opacity: 0.7; } .btn-secondary { background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(10px); border: 1px solid rgba(107, 111, 232, 0.2); color: var(--ink); } .btn-secondary:hover { background: white; border-color: var(--periwinkle); color: var(--periwinkle-dark); transform: translateY(-3px); box-shadow: 0 14px 34px rgba(107, 111, 232, 0.2); } /* NAV */ .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 18px 0; transition: all 0.35s ease; } .nav.scrolled { background: rgba(248, 249, 255, 0.78); backdrop-filter: blur(24px) saturate(1.4); border-bottom: 1px solid rgba(107, 111, 232, 0.08); padding: 12px 0; box-shadow: 0 4px 20px rgba(10, 14, 39, 0.04); } .nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; } .nav-logo { display: inline-flex; align-items: center; } .nav-logo img { height: 38px; width: auto; transition: transform 0.3s; } .nav-logo:hover img { transform: scale(1.03); } .nav-menu { display: flex; align-items: center; gap: 6px; list-style: none; } .nav-menu > li { position: relative; } .nav-menu > li > a, .nav-menu-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 14.5px; font-weight: 500; color: var(--graphite); padding: 10px 16px; border-radius: 100px; transition: all 0.2s; cursor: pointer; } .nav-menu > li > a:hover, .nav-menu-btn:hover { color: var(--periwinkle-dark); background: rgba(107, 111, 232, 0.08); } .nav-menu-btn svg { width: 10px; height: 10px; transition: transform 0.25s; } .nav-menu > li.open .nav-menu-btn svg { transform: rotate(180deg); } .dropdown { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(-8px); min-width: 340px; background: white; border-radius: 22px; border: 1px solid rgba(107, 111, 232, 0.12); box-shadow: 0 30px 60px rgba(10, 14, 39, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.6) inset; padding: 14px; opacity: 0; pointer-events: none; transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1); } .nav-menu > li.open .dropdown, .nav-menu > li:hover .dropdown { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); } .dropdown::before { content: ""; position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg); width: 12px; height: 12px; background: white; border-left: 1px solid rgba(107, 111, 232, 0.12); border-top: 1px solid rgba(107, 111, 232, 0.12); } .dropdown-item { display: flex; gap: 14px; padding: 12px 14px; border-radius: 14px; transition: background 0.2s; } .dropdown-item:hover { background: linear-gradient(135deg, rgba(107, 111, 232, 0.08), rgba(180, 111, 255, 0.04)); } .dropdown-icon { width: 36px; height: 36px; flex-shrink: 0; border-radius: 10px; background: linear-gradient(135deg, var(--periwinkle), var(--periwinkle-dark)); display: grid; place-items: center; color: white; box-shadow: 0 4px 12px rgba(107, 111, 232, 0.35); } .dropdown-icon svg { width: 18px; height: 18px; } .dropdown-item-text { flex: 1; min-width: 0; } .dropdown-item-title { font-size: 14.5px; font-weight: 600; color: var(--ink); margin-bottom: 2px; } .dropdown-item-desc { font-size: 12.5px; color: var(--slate); line-height: 1.45; } .dropdown-footer { margin-top: 8px; padding: 14px 18px; background: linear-gradient(135deg, rgba(107, 111, 232, 0.06), rgba(109, 213, 237, 0.04)); border-radius: 14px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--graphite); } .dropdown-footer a { color: var(--periwinkle-dark); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; } .dropdown-footer a:hover { gap: 10px; } .dropdown-wide { min-width: 560px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; } .dropdown-wide .dropdown-footer { grid-column: 1 / -1; } .dropdown-wide .dropdown-item { padding: 10px 12px; } .nav-cta { padding: 12px 22px; background: var(--ink); color: white !important; border-radius: 100px; font-size: 14px; font-weight: 500; display: inline-flex !important; align-items: center; gap: 8px; position: relative; transition: all 0.3s ease; overflow: hidden; } .nav-cta::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, var(--periwinkle), var(--periwinkle-deep)); opacity: 0; transition: opacity 0.3s; z-index: 0; } .nav-cta > * { position: relative; z-index: 1; } .nav-cta:hover { transform: translateY(-2px); box-shadow: var(--glow-periwinkle); } .nav-cta:hover::before { opacity: 1; } .nav-cta svg { width: 14px; height: 14px; transition: transform 0.25s; } .nav-cta:hover svg { transform: translateX(3px); } .mobile-toggle { display: none; } @media (max-width: 1050px) { .nav-menu, .nav-cta { display: none; } .mobile-toggle { display: flex; flex-direction: column; gap: 5px; padding: 10px; cursor: pointer; } .mobile-toggle span { width: 24px; height: 2px; background: var(--ink); transition: all 0.3s; border-radius: 2px; } .mobile-open .mobile-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); } .mobile-open .mobile-toggle span:nth-child(2) { opacity: 0; } .mobile-open .mobile-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); } .mobile-menu { position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--paper); padding: 24px var(--gutter) 40px; display: none; flex-direction: column; gap: 4px; overflow-y: auto; } .mobile-open .mobile-menu { display: flex; } .mobile-menu-section { border-bottom: 1px solid var(--mist); padding: 8px 0; } .mobile-menu-section > summary { font-size: 17px; font-weight: 500; padding: 16px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; } .mobile-menu-section > summary::after { content: "+"; font-size: 22px; color: var(--periwinkle); transition: transform 0.3s; } .mobile-menu-section[open] > summary::after { transform: rotate(45deg); } .mobile-menu-section a { display: block; padding: 10px 0 10px 16px; font-size: 15px; color: var(--slate); } .mobile-menu > a { display: block; padding: 16px 0; font-size: 17px; font-weight: 500; border-bottom: 1px solid var(--mist); } .mobile-menu .nav-cta { display: inline-flex !important; margin-top: 20px; align-self: flex-start; } } /* HERO */ .hero { padding: 160px 0 120px; position: relative; overflow: hidden; } .hero-bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(107, 111, 232, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(107, 111, 232, 0.06) 1px, transparent 1px); background-size: 80px 80px; mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 90%); pointer-events: none; } .hero-orb { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; z-index: 0; } .hero-orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, var(--periwinkle) 0%, transparent 70%); top: -10%; left: -10%; opacity: 0.35; animation: orb-float-1 18s ease-in-out infinite; } .hero-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, var(--cyan) 0%, transparent 70%); top: 40%; right: -10%; opacity: 0.25; animation: orb-float-2 22s ease-in-out infinite; } .hero-orb-3 { width: 450px; height: 450px; background: radial-gradient(circle, var(--plasma) 0%, transparent 70%); bottom: -15%; left: 30%; opacity: 0.2; animation: orb-float-3 20s ease-in-out infinite; } @keyframes orb-float-1 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(80px, 60px); } } @keyframes orb-float-2 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-70px, 40px); } } @keyframes orb-float-3 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(60px, -80px); } } .hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 2; } @media (max-width: 1000px) { .hero-grid { grid-template-columns: 1fr; gap: 60px; } .hero { padding: 130px 0 80px; } } .hero-badge { display: inline-flex; align-items: center; gap: 12px; padding: 9px 18px 9px 12px; background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(10px); border: 1px solid rgba(107, 111, 232, 0.2); border-radius: 100px; font-size: 13px; font-weight: 500; color: var(--graphite); box-shadow: 0 4px 20px rgba(107, 111, 232, 0.08); margin-bottom: 32px; animation: fadeInUp 0.9s ease backwards; position: relative; overflow: hidden; } .hero-badge::after { content: ""; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(107, 111, 232, 0.2), transparent); animation: shine 4s ease-in-out infinite; } @keyframes shine { 0%, 100% { left: -100%; } 50% { left: 100%; } } .hero-badge-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 4px rgba(0, 229, 160, 0.2), var(--glow-signal); animation: pulse-ring 2s infinite; position: relative; z-index: 1; } @keyframes pulse-ring { 0%, 100% { box-shadow: 0 0 0 4px rgba(0, 229, 160, 0.2), 0 0 20px rgba(0, 229, 160, 0.5); } 50% { box-shadow: 0 0 0 9px rgba(0, 229, 160, 0.05), 0 0 30px rgba(0, 229, 160, 0.8); } } .hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(44px, 7vw, 92px); line-height: 1.00; letter-spacing: -0.04em; color: var(--ink); animation: fadeInUp 1s ease 0.1s backwards; font-variation-settings: "opsz" 144, "SOFT" 30; } .hero h1 em { font-style: italic; font-weight: 300; font-variation-settings: "opsz" 144, "SOFT" 100; position: relative; display: inline-block; background: linear-gradient(135deg, var(--periwinkle) 0%, var(--plasma) 60%, var(--cyan) 100%); background-size: 200% 200%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: gradient-shift 6s ease infinite; } @keyframes gradient-shift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } } .hero-sub { font-size: clamp(16px, 1.6vw, 20px); color: var(--slate); max-width: 560px; margin-top: 32px; line-height: 1.6; animation: fadeInUp 1s ease 0.25s backwards; } .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 40px; animation: fadeInUp 1s ease 0.4s backwards; } .hero-trust { margin-top: 64px; padding-top: 36px; border-top: 1px solid rgba(107, 111, 232, 0.15); display: flex; gap: 48px; flex-wrap: wrap; animation: fadeInUp 1s ease 0.55s backwards; } .trust-item-num { font-family: var(--font-display); font-size: 42px; font-weight: 400; color: var(--ink); letter-spacing: -0.025em; line-height: 1; display: flex; align-items: baseline; gap: 4px; } .trust-item-num em { font-style: italic; font-weight: 300; color: var(--periwinkle-dark); } .trust-item-num span { font-size: 22px; font-weight: 500; color: var(--periwinkle); } .trust-item-label { font-size: 13px; color: var(--slate); margin-top: 8px; font-weight: 500; } .hero-visual { position: relative; aspect-ratio: 1 / 1.05; max-width: 580px; margin-left: auto; animation: fadeIn 1.4s ease 0.3s backwards; } .hero-visual-card { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 30%, var(--periwinkle-deep) 0%, transparent 70%), linear-gradient(145deg, var(--ink) 0%, var(--ink-3) 100%); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 40px 80px -20px rgba(10, 14, 39, 0.5), 0 0 100px -20px rgba(107, 111, 232, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08) inset; } .hero-visual-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 30px 30px; mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 30%, transparent 100%); animation: grid-move 20s linear infinite; } @keyframes grid-move { from { background-position: 0 0; } to { background-position: 60px 60px; } } .hero-visual-scan { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 0%, rgba(107, 111, 232, 0.1) 50%, transparent 100%); height: 200px; animation: scan 4s ease-in-out infinite; } @keyframes scan { 0% { top: -20%; opacity: 0; } 50% { opacity: 1; } 100% { top: 120%; opacity: 0; } } .hero-visual-glow { position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(107, 111, 232, 0.5), transparent 60%); top: 50%; left: 50%; transform: translate(-50%, -50%); filter: blur(50px); animation: glow-pulse 4s ease-in-out infinite; pointer-events: none; } @keyframes glow-pulse { 0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); } 50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); } } .hero-particles { position: absolute; inset: 0; pointer-events: none; } .particle { position: absolute; width: 3px; height: 3px; background: white; border-radius: 50%; box-shadow: 0 0 6px rgba(255, 255, 255, 0.8); animation: particle-drift var(--dur, 15s) linear infinite; animation-delay: var(--delay, 0s); opacity: 0; } @keyframes particle-drift { 0% { transform: translate(var(--x1, 0), 100%); opacity: 0; } 10%, 90% { opacity: 1; } 100% { transform: translate(var(--x2, 0), -20%); opacity: 0; } } .hero-helix { position: absolute; inset: 0; display: grid; place-items: center; z-index: 2; } .hero-helix svg { width: 75%; height: 75%; filter: drop-shadow(0 0 20px rgba(155, 160, 255, 0.4)); } .data-chip { position: absolute; background: rgba(255, 255, 255, 0.07); backdrop-filter: blur(24px); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 14px; padding: 14px 18px; color: white; font-size: 12px; box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.1); z-index: 3; animation: float 7s ease-in-out infinite; } .data-chip-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--periwinkle-light); margin-bottom: 4px; display: flex; align-items: center; gap: 6px; } .data-chip-label::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 8px var(--signal); animation: pulse-dot 1.5s ease-in-out infinite; } .data-chip-value { font-family: var(--font-display); font-size: 24px; font-weight: 500; letter-spacing: -0.015em; line-height: 1.1; } .data-chip-value small { font-size: 13px; color: var(--signal); font-family: var(--font-body); font-weight: 500; margin-left: 6px; } .data-chip-1 { top: 7%; left: -10%; animation-delay: 0s; } .data-chip-2 { top: 58%; right: -8%; animation-delay: -2s; } .data-chip-3 { bottom: 8%; left: 10%; animation-delay: -4s; } @keyframes float { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-14px) rotate(1deg); } } @media (max-width: 1000px) { .hero-visual { max-width: 450px; margin: 0 auto; } .data-chip-1 { left: -5%; } .data-chip-2 { right: -5%; } } @media (max-width: 500px) { .data-chip { padding: 10px 14px; } .data-chip-value { font-size: 18px; } .hero-trust { gap: 24px; } .trust-item-num { font-size: 32px; } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } /* MARQUEE */ .marquee-section { padding: 60px 0; background: linear-gradient(180deg, var(--paper) 0%, var(--cloud) 100%); border-top: 1px solid rgba(107, 111, 232, 0.08); border-bottom: 1px solid rgba(107, 111, 232, 0.08); overflow: hidden; position: relative; z-index: 2; } .marquee-label { text-align: center; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--slate); margin-bottom: 36px; } .marquee-wrap { position: relative; mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); } .marquee { display: flex; gap: 90px; animation: scroll 45s linear infinite; white-space: nowrap; width: max-content; } .marquee:hover { animation-play-state: paused; } .marquee-item { font-family: var(--font-display); font-size: 30px; font-weight: 500; font-style: italic; color: var(--graphite); opacity: 0.45; transition: all 0.3s; display: flex; align-items: center; gap: 18px; letter-spacing: -0.015em; } .marquee-item:hover { opacity: 1; color: var(--periwinkle-dark); transform: scale(1.05); } .marquee-item::before { content: "✦"; color: var(--periwinkle); font-size: 12px; font-style: normal; text-shadow: 0 0 12px var(--periwinkle); } @keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } } /* PROBLEM */ .problem { padding: 140px 0; background: var(--ink); color: white; position: relative; overflow: hidden; } .problem::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 40% at 85% 15%, rgba(107, 111, 232, 0.25), transparent 60%), radial-gradient(ellipse 50% 35% at 15% 85%, rgba(180, 111, 255, 0.15), transparent 65%), radial-gradient(ellipse 30% 20% at 50% 50%, rgba(109, 213, 237, 0.08), transparent 70%); } .problem .container { position: relative; z-index: 2; } .problem .eyebrow { color: var(--periwinkle-light); } .problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; } @media (max-width: 900px) { .problem-grid { grid-template-columns: 1fr; gap: 60px; } .problem { padding: 100px 0; } } .problem h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(36px, 5vw, 60px); line-height: 1.03; letter-spacing: -0.03em; margin-top: 20px; color: white; } .problem h2 em { font-style: italic; font-weight: 300; background: linear-gradient(135deg, var(--periwinkle-light) 0%, var(--cyan) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; } .problem p { margin-top: 28px; font-size: 18px; color: rgba(255,255,255,0.72); line-height: 1.65; } .problem p + p { margin-top: 18px; } .problem-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; } .stat-card { padding: 36px 32px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: var(--radius); transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1); position: relative; overflow: hidden; backdrop-filter: blur(10px); } .stat-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(107, 111, 232, 0.15), transparent); opacity: 0; transition: opacity 0.4s; } .stat-card::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--periwinkle), transparent); opacity: 0; transition: opacity 0.4s; } .stat-card:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(107, 111, 232, 0.4); transform: translateY(-6px); box-shadow: 0 20px 40px rgba(107, 111, 232, 0.15); } .stat-card:hover::before { opacity: 1; } .stat-card:hover::after { opacity: 1; } .stat-card > * { position: relative; z-index: 1; } .stat-num { font-family: var(--font-display); font-size: 60px; font-weight: 400; color: white; letter-spacing: -0.035em; line-height: 1; font-variation-settings: "opsz" 144, "SOFT" 30; } .stat-num em { font-style: italic; font-weight: 300; background: linear-gradient(135deg, var(--periwinkle-light), var(--cyan)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-variation-settings: "opsz" 144, "SOFT" 100; } .stat-label { font-size: 14px; color: rgba(255,255,255,0.65); margin-top: 14px; line-height: 1.5; } .stat-source { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; color: rgba(255,255,255,0.32); margin-top: 14px; text-transform: uppercase; } /* SOLUTION / FEATURES */ .solution { padding: 140px 0; background: var(--paper); position: relative; overflow: hidden; } .solution::before { content: ""; position: absolute; top: 20%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(180, 111, 255, 0.1), transparent 60%); filter: blur(80px); pointer-events: none; } .solution::after { content: ""; position: absolute; bottom: 10%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(109, 213, 237, 0.08), transparent 60%); filter: blur(80px); pointer-events: none; } .solution .container { position: relative; z-index: 2; } .solution-head { max-width: 780px; margin-bottom: 80px; } .solution-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; } @media (max-width: 820px) { .solution-grid { grid-template-columns: 1fr; } .solution { padding: 100px 0; } } .feature { background: white; border: 1px solid rgba(107, 111, 232, 0.15); border-radius: var(--radius-lg); padding: 48px 44px; position: relative; overflow: hidden; transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1); } .feature::before { content: ""; position: absolute; inset: -1px; padding: 1px; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--periwinkle), var(--plasma), var(--cyan)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity 0.4s; } .feature::after { content: ""; position: absolute; bottom: -50%; right: -20%; width: 350px; height: 350px; background: radial-gradient(circle, rgba(107, 111, 232, 0.15), transparent 70%); opacity: 0; transition: opacity 0.5s; pointer-events: none; } .feature:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(107, 111, 232, 0.15), 0 0 60px rgba(107, 111, 232, 0.1); border-color: transparent; } .feature:hover::before { opacity: 1; } .feature:hover::after { opacity: 1; } .feature > * { position: relative; z-index: 1; } .feature-number { font-family: var(--font-mono); font-size: 12px; font-weight: 500; color: var(--periwinkle); letter-spacing: 0.12em; margin-bottom: 28px; display: flex; align-items: center; gap: 10px; } .feature-number::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(107, 111, 232, 0.3), transparent); } .feature-icon { width: 68px; height: 68px; border-radius: 18px; background: linear-gradient(135deg, var(--ink) 0%, var(--periwinkle-dark) 100%); display: grid; place-items: center; margin-bottom: 28px; box-shadow: 0 12px 28px rgba(74, 78, 204, 0.4), inset 0 1px 0 rgba(255,255,255,0.1); position: relative; overflow: hidden; transition: all 0.4s; } .feature-icon::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, var(--periwinkle), var(--plasma)); opacity: 0; transition: opacity 0.4s; } .feature:hover .feature-icon { transform: scale(1.08) rotate(-3deg); box-shadow: 0 16px 36px rgba(107, 111, 232, 0.55), 0 0 40px rgba(180, 111, 255, 0.3); } .feature:hover .feature-icon::before { opacity: 1; } .feature-icon svg { width: 30px; height: 30px; stroke: white; fill: none; stroke-width: 1.5; position: relative; z-index: 1; } .feature h3 { font-family: var(--font-display); font-weight: 500; font-size: 28px; letter-spacing: -0.022em; line-height: 1.2; color: var(--ink); } .feature p { font-size: 15.5px; color: var(--slate); margin-top: 16px; line-height: 1.65; } .feature-meta { margin-top: 32px; padding-top: 24px; border-top: 1px dashed rgba(107, 111, 232, 0.25); display: flex; align-items: center; justify-content: space-between; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--graphite); } .feature-meta-tags { display: flex; align-items: center; gap: 8px; } .feature-meta-dot { width: 6px; height: 6px; background: var(--signal); border-radius: 50%; box-shadow: 0 0 10px var(--signal); } .feature-link { color: var(--periwinkle-dark); font-weight: 600; font-family: var(--font-body); font-size: 13px; text-transform: none; letter-spacing: 0; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; } .feature-link:hover { gap: 10px; } .feature-link svg { width: 14px; height: 14px; } /* PROCESS */ .process { padding: 140px 0; background: linear-gradient(180deg, var(--cloud) 0%, var(--paper) 100%); position: relative; overflow: hidden; } .process::before { content: ""; position: absolute; top: -200px; right: -100px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(107, 111, 232, 0.15), transparent 70%); filter: blur(80px); pointer-events: none; } .process-steps { margin-top: 80px; position: relative; } .process-line { position: absolute; left: 36px; top: 50px; bottom: 50px; width: 2px; background: linear-gradient(180deg, transparent 0%, var(--periwinkle) 10%, var(--plasma) 50%, var(--periwinkle) 90%, transparent 100%); opacity: 0.5; } .process-line::after { content: ""; position: absolute; left: -3px; top: 0; width: 8px; height: 40px; background: linear-gradient(180deg, var(--periwinkle), transparent); filter: blur(4px); animation: line-pulse 3s linear infinite; } @keyframes line-pulse { 0% { top: 0; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { top: 100%; opacity: 0; } } .step { display: grid; grid-template-columns: 88px 1fr auto; gap: 44px; align-items: flex-start; padding: 40px 0; border-bottom: 1px solid rgba(107, 111, 232, 0.12); position: relative; opacity: 0; transform: translateY(24px); transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1); } .step.visible { opacity: 1; transform: translateY(0); } .step:last-child { border-bottom: none; } .step-num { width: 72px; height: 72px; border-radius: 50%; background: white; border: 2px solid var(--periwinkle); display: grid; place-items: center; font-family: var(--font-display); font-size: 26px; font-weight: 500; color: var(--periwinkle-dark); position: relative; z-index: 2; transition: all 0.4s; font-style: italic; box-shadow: 0 0 0 6px rgba(107, 111, 232, 0.08); } .step:hover .step-num { background: linear-gradient(135deg, var(--periwinkle), var(--periwinkle-dark)); color: white; transform: scale(1.1) rotate(-5deg); box-shadow: 0 0 0 8px rgba(107, 111, 232, 0.15), var(--glow-periwinkle); border-color: transparent; } .step-content h4 { font-family: var(--font-display); font-weight: 500; font-size: 30px; letter-spacing: -0.022em; color: var(--ink); line-height: 1.2; transition: color 0.3s; } .step:hover .step-content h4 { color: var(--periwinkle-dark); } .step-content p { font-size: 16px; color: var(--slate); margin-top: 12px; line-height: 1.6; max-width: 600px; } .step-duration { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--periwinkle-dark); background: white; padding: 10px 16px; border-radius: 100px; border: 1px solid rgba(107, 111, 232, 0.2); white-space: nowrap; box-shadow: 0 4px 12px rgba(107, 111, 232, 0.08); transition: all 0.3s; } .step:hover .step-duration { background: var(--periwinkle); color: white; border-color: transparent; transform: translateY(-2px); box-shadow: var(--glow-periwinkle); } @media (max-width: 780px) { .step { grid-template-columns: 56px 1fr; gap: 20px; padding: 28px 0; } .step-duration { grid-column: 2; margin-top: 8px; justify-self: start; } .step-num { width: 56px; height: 56px; font-size: 22px; } .process-line { left: 28px; } .process { padding: 100px 0; } .step-content h4 { font-size: 24px; } } /* BRANCHEN */ .branchen { padding: 140px 0; background: white; position: relative; overflow: hidden; } .branchen-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; margin-top: 64px; } .branche { padding: 36px 32px; background: var(--paper); border: 1px solid var(--mist); border-radius: var(--radius); transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1); position: relative; overflow: hidden; text-decoration: none; color: inherit; display: block; } .branche::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, var(--periwinkle) 0%, var(--periwinkle-deep) 60%, var(--plasma) 100%); opacity: 0; transition: opacity 0.4s; z-index: 0; } .branche::after { content: "→"; position: absolute; top: 24px; right: 24px; color: var(--periwinkle); opacity: 0; transform: translateX(-8px); transition: all 0.3s; font-size: 20px; z-index: 2; } .branche:hover::before { opacity: 1; } .branche:hover::after { opacity: 1; color: white; transform: translateX(0); } .branche:hover { transform: translateY(-6px); border-color: transparent; box-shadow: 0 24px 50px rgba(107, 111, 232, 0.3); } .branche:hover .branche-icon { color: white; transform: scale(1.1) rotate(-4deg); } .branche:hover h4 { color: white; } .branche:hover p { color: rgba(255,255,255,0.85); } .branche-icon { width: 44px; height: 44px; color: var(--periwinkle-dark); transition: all 0.4s; position: relative; z-index: 2; margin-bottom: 20px; } .branche-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.3; } .branche h4 { font-family: var(--font-display); font-weight: 500; font-size: 21px; color: var(--ink); letter-spacing: -0.018em; position: relative; z-index: 2; transition: color 0.3s; } .branche p { font-size: 13px; color: var(--slate); margin-top: 8px; position: relative; z-index: 2; transition: color 0.3s; line-height: 1.55; } /* COMPARISON */ .comparison { padding: 140px 0; background: var(--ink); color: white; position: relative; overflow: hidden; } .comparison::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(107, 111, 232, 0.18), transparent 70%), radial-gradient(ellipse 50% 40% at 10% 20%, rgba(180, 111, 255, 0.12), transparent 65%); } .comparison .container { position: relative; z-index: 2; } .comparison .eyebrow { color: var(--periwinkle-light); } .comparison h2 { color: white; } .comparison .section-intro { color: rgba(255,255,255,0.7); } .compare-table { margin-top: 72px; display: grid; grid-template-columns: 1.4fr 1fr 1fr; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: var(--radius-lg); overflow: hidden; backdrop-filter: blur(20px); box-shadow: 0 30px 60px rgba(0,0,0,0.3); } .compare-cell { padding: 26px 32px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); display: flex; align-items: center; gap: 12px; font-size: 15px; transition: background 0.2s; } .compare-head { font-family: var(--font-display); font-size: 20px; font-weight: 500; letter-spacing: -0.015em; padding: 32px !important; background: rgba(255, 255, 255, 0.02); } .compare-head.us { background: linear-gradient(180deg, rgba(107, 111, 232, 0.25), rgba(107, 111, 232, 0.08)); color: var(--periwinkle-light); position: relative; } .compare-head.us::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--periwinkle), var(--plasma), var(--cyan)); } .compare-label { color: rgba(255,255,255,0.75); font-weight: 400; } .compare-val { color: rgba(255,255,255,0.55); } .compare-val.yes { color: var(--signal); } .compare-val svg { width: 18px; height: 18px; } .compare-cell.us { background: rgba(107, 111, 232, 0.08); } .compare-cell.us .compare-val { color: white; } .compare-table > div:nth-last-child(-n+3) { border-bottom: none; } @media (max-width: 780px) { .compare-table { grid-template-columns: 1fr; } .compare-cell { padding: 16px 22px; } .compare-head { padding: 22px !important; } .compare-table > div { border-bottom: 1px solid rgba(255,255,255,0.06); } .comparison { padding: 100px 0; } } /* RESULTS */ .results { padding: 140px 0; background: var(--paper); position: relative; overflow: hidden; } .results::before { content: ""; position: absolute; top: 30%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(109, 213, 237, 0.12), transparent 60%); filter: blur(80px); pointer-events: none; } .results .container { position: relative; z-index: 2; } .results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 64px; } @media (max-width: 780px) { .results-grid { grid-template-columns: 1fr; } .results { padding: 100px 0; } } .result { padding: 48px 42px; border: 1px solid rgba(107, 111, 232, 0.15); border-radius: var(--radius-lg); background: white; transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1); position: relative; overflow: hidden; } .result::before { content: ""; position: absolute; bottom: -40%; right: -20%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(107, 111, 232, 0.18), transparent 70%); opacity: 0; transition: opacity 0.5s; } .result:hover { border-color: var(--periwinkle); box-shadow: 0 30px 60px rgba(107, 111, 232, 0.18), 0 0 50px rgba(107, 111, 232, 0.1); transform: translateY(-6px); } .result:hover::before { opacity: 1; } .result > * { position: relative; z-index: 1; } .result-num { font-family: var(--font-display); font-size: 80px; font-weight: 400; letter-spacing: -0.045em; line-height: 1; font-variation-settings: "opsz" 144, "SOFT" 30; background: linear-gradient(135deg, var(--ink) 0%, var(--periwinkle-dark) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; display: flex; align-items: baseline; gap: 4px; } .result-num em { font-style: italic; font-weight: 300; font-size: 64px; font-variation-settings: "opsz" 144, "SOFT" 100; background: linear-gradient(135deg, var(--periwinkle) 0%, var(--plasma) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; } .result-suffix { font-family: var(--font-display); font-size: 56px; background: linear-gradient(135deg, var(--periwinkle), var(--plasma)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-style: italic; font-weight: 300; } .result h4 { font-family: var(--font-display); font-size: 24px; font-weight: 500; letter-spacing: -0.018em; color: var(--ink); margin-top: 26px; line-height: 1.2; } .result p { font-size: 14.5px; color: var(--slate); margin-top: 12px; line-height: 1.6; } /* TESTIMONIALS */ .testimonials { padding: 140px 0; background: linear-gradient(180deg, var(--paper) 0%, var(--cloud) 100%); position: relative; overflow: hidden; } .testimonials::before { content: ""; position: absolute; bottom: -200px; left: -200px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(107, 111, 232, 0.1), transparent 70%); pointer-events: none; filter: blur(60px); } .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 72px; } @media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } .testimonials { padding: 100px 0; } } .testi-card { background: white; border-radius: var(--radius-lg); padding: 44px 38px; border: 1px solid rgba(107, 111, 232, 0.12); box-shadow: 0 10px 30px rgba(107, 111, 232, 0.08); transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1); display: flex; flex-direction: column; position: relative; overflow: hidden; } .testi-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--periwinkle), var(--plasma), var(--cyan)); transform: scaleX(0); transform-origin: left; transition: transform 0.5s; } .testi-card:hover::before { transform: scaleX(1); } .testi-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(107, 111, 232, 0.2); } .testi-quote-mark { font-family: var(--font-display); font-size: 100px; line-height: 0.8; opacity: 0.2; height: 50px; margin-bottom: 14px; background: linear-gradient(135deg, var(--periwinkle), var(--plasma)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-style: italic; } .testi-text { font-family: var(--font-display); font-size: 20px; line-height: 1.45; color: var(--ink); font-weight: 400; letter-spacing: -0.012em; flex-grow: 1; } .testi-stars { display: flex; gap: 3px; margin-top: 26px; color: var(--periwinkle); } .testi-stars svg { width: 17px; height: 17px; fill: currentColor; filter: drop-shadow(0 0 4px currentColor); } .testi-author { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(107, 111, 232, 0.15); display: flex; gap: 14px; align-items: center; } .testi-avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--periwinkle), var(--plasma)); display: grid; place-items: center; color: white; font-family: var(--font-display); font-size: 19px; font-weight: 500; letter-spacing: -0.02em; flex-shrink: 0; box-shadow: 0 6px 18px rgba(107, 111, 232, 0.35); } .testi-name { font-size: 15px; font-weight: 600; color: var(--ink); } .testi-role { font-size: 13px; color: var(--slate); margin-top: 3px; } /* FAQ */ .faq { padding: 140px 0; background: var(--paper); position: relative; } .faq-wrapper { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; } @media (max-width: 880px) { .faq-wrapper { grid-template-columns: 1fr; gap: 40px; } .faq { padding: 100px 0; } } .faq-item { border-bottom: 1px solid rgba(107, 111, 232, 0.15); transition: border-color 0.3s; } .faq-item:first-child { border-top: 1px solid rgba(107, 111, 232, 0.15); } .faq-item.open { border-color: var(--periwinkle); } .faq-q { width: 100%; text-align: left; padding: 26px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px; font-size: 17px; font-weight: 500; color: var(--ink); transition: color 0.25s; } .faq-q:hover { color: var(--periwinkle-dark); } .faq-item.open .faq-q { color: var(--periwinkle-dark); } .faq-icon { width: 36px; height: 36px; flex-shrink: 0; border-radius: 50%; border: 1px solid rgba(107, 111, 232, 0.3); position: relative; transition: all 0.3s; } .faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--periwinkle-dark); transition: transform 0.3s; } .faq-icon::before { top: 50%; left: 30%; right: 30%; height: 2px; transform: translateY(-50%); } .faq-icon::after { left: 50%; top: 30%; bottom: 30%; width: 2px; transform: translateX(-50%); } .faq-item:hover .faq-icon { background: rgba(107, 111, 232, 0.08); border-color: var(--periwinkle); } .faq-item.open .faq-icon { background: var(--periwinkle); border-color: transparent; box-shadow: var(--glow-periwinkle); } .faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: white; } .faq-item.open .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; } .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s ease, padding 0.5s ease; } .faq-item.open .faq-a { max-height: 400px; padding-bottom: 28px; } .faq-a p { font-size: 15.5px; color: var(--slate); line-height: 1.7; padding-right: 50px; } /* CONTACT */ .contact { padding: 140px 0; background: var(--ink); color: white; position: relative; overflow: hidden; } .contact::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 15% 25%, rgba(107, 111, 232, 0.25), transparent 60%), radial-gradient(ellipse 60% 40% at 85% 75%, rgba(180, 111, 255, 0.18), transparent 65%), radial-gradient(ellipse 40% 30% at 50% 50%, rgba(109, 213, 237, 0.1), transparent 70%); } .contact .container { position: relative; z-index: 2; } .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; } @media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 60px; } .contact { padding: 100px 0; } } .contact .eyebrow { color: var(--periwinkle-light); } .contact h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(36px, 5vw, 58px); line-height: 1.05; letter-spacing: -0.025em; margin-top: 20px; color: white; } .contact h2 em { font-style: italic; font-weight: 300; background: linear-gradient(135deg, var(--periwinkle-light), var(--cyan)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; } .contact-benefits { margin-top: 42px; display: flex; flex-direction: column; gap: 16px; } .contact-benefit { display: flex; align-items: flex-start; gap: 14px; color: rgba(255,255,255,0.9); font-size: 15.5px; padding: 12px 0; } .contact-benefit-check { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, var(--signal), #00b97f); display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; box-shadow: 0 0 14px rgba(0, 229, 160, 0.5); } .contact-benefit-check svg { width: 12px; height: 12px; } .contact-meta { margin-top: 50px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); display: grid; grid-template-columns: 1fr 1fr; gap: 28px; } .contact-meta-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 10px; } .contact-meta-val { font-size: 15.5px; color: white; font-weight: 400; } .contact-meta-val a { transition: color 0.2s; } .contact-meta-val a:hover { color: var(--periwinkle-light); } .contact-form { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: var(--radius-lg); padding: 48px 42px; backdrop-filter: blur(20px); box-shadow: 0 30px 60px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05); position: relative; overflow: hidden; } .contact-form::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--periwinkle), var(--plasma), var(--cyan), transparent); opacity: 0.6; } .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; } @media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } .contact-form { padding: 32px 26px; } } .field { margin-bottom: 20px; position: relative; } .field label { display: block; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 10px; } .field input, .field select, .field textarea { width: 100%; padding: 15px 18px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 12px; color: white; font-family: var(--font-body); font-size: 15px; transition: all 0.25s; } .field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%239BA0FF' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; padding-right: 42px; cursor: pointer; } .field select option { background: var(--ink); color: white; } .field textarea { resize: vertical; min-height: 110px; font-family: var(--font-body); } .field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--periwinkle); background: rgba(107, 111, 232, 0.1); box-shadow: 0 0 0 4px rgba(107, 111, 232, 0.15), 0 0 30px rgba(107, 111, 232, 0.2); } .field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.3); } .consent { display: flex; gap: 14px; align-items: flex-start; margin: 24px 0 28px; font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.55; cursor: pointer; user-select: none; } .consent input { display: none; } .consent-box { width: 22px; height: 22px; border: 1px solid rgba(255,255,255,0.3); border-radius: 6px; flex-shrink: 0; margin-top: 1px; transition: all 0.2s; position: relative; background: rgba(255,255,255,0.03); } .consent input:checked + .consent-box { background: linear-gradient(135deg, var(--periwinkle), var(--periwinkle-dark)); border-color: var(--periwinkle); box-shadow: 0 0 12px rgba(107, 111, 232, 0.5); } .consent input:checked + .consent-box::after { content: ""; position: absolute; left: 7px; top: 3px; width: 5px; height: 10px; border: solid white; border-width: 0 2px 2px 0; transform: rotate(45deg); } .consent a { color: var(--periwinkle-light); text-decoration: underline; } .form-submit { width: 100%; padding: 18px; background: linear-gradient(135deg, var(--periwinkle) 0%, var(--periwinkle-deep) 100%); color: white; border-radius: 100px; font-size: 15px; font-weight: 600; display: inline-flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.35s ease; position: relative; overflow: hidden; box-shadow: 0 12px 30px rgba(107, 111, 232, 0.4); } .form-submit::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, var(--plasma), var(--periwinkle)); opacity: 0; transition: opacity 0.4s; } .form-submit > * { position: relative; z-index: 1; } .form-submit:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(107, 111, 232, 0.55), var(--glow-periwinkle); } .form-submit:hover::before { opacity: 1; } .form-submit svg { width: 14px; height: 14px; transition: transform 0.25s; } .form-submit:hover svg { transform: translateX(5px); } .form-success { display: none; text-align: center; padding: 40px 20px; } .form-success.show { display: block; } .form-success-icon { width: 68px; height: 68px; margin: 0 auto 24px; background: linear-gradient(135deg, var(--signal), #00b97f); border-radius: 50%; display: grid; place-items: center; animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); box-shadow: 0 0 40px rgba(0, 229, 160, 0.6); } @keyframes scaleIn { from { transform: scale(0) rotate(-180deg); opacity: 0; } to { transform: scale(1) rotate(0); opacity: 1; } } .form-success h4 { font-family: var(--font-display); font-size: 26px; font-weight: 500; color: white; } .form-success p { color: rgba(255,255,255,0.75); margin-top: 12px; font-size: 15px; } /* FOOTER */ .footer { background: var(--ink); color: white; padding: 80px 0 40px; position: relative; overflow: hidden; } .footer::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(107, 111, 232, 0.15), transparent 60%); } .footer .container { position: relative; z-index: 2; } .footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); } @media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; } .footer { padding: 60px 0 30px; } } @media (max-width: 500px) { .footer-top { grid-template-columns: 1fr; } } .footer-brand { padding-right: 40px; } .footer-logo img { height: 44px; width: auto; margin-bottom: 20px; } .footer-desc { font-size: 14.5px; color: rgba(255,255,255,0.6); line-height: 1.65; margin-bottom: 30px; max-width: 340px; } .footer-socials { display: flex; gap: 10px; } .footer-social { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); display: grid; place-items: center; color: rgba(255,255,255,0.75); transition: all 0.3s; position: relative; overflow: hidden; } .footer-social::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, var(--periwinkle), var(--plasma)); opacity: 0; transition: opacity 0.3s; } .footer-social:hover { border-color: transparent; color: white; transform: translateY(-3px) scale(1.05); box-shadow: var(--glow-periwinkle); } .footer-social:hover::before { opacity: 1; } .footer-social svg { width: 18px; height: 18px; fill: currentColor; position: relative; z-index: 1; } .footer-col h5 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--periwinkle-light); margin-bottom: 24px; font-weight: 500; } .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; } .footer-col a { font-size: 14.5px; color: rgba(255,255,255,0.7); transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px; } .footer-col a:hover { color: var(--periwinkle-light); gap: 10px; } .footer-col address { font-style: normal; font-size: 14.5px; color: rgba(255,255,255,0.7); line-height: 1.75; } .footer-bottom { padding-top: 30px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.4); } .footer-legal { display: flex; gap: 28px; } .footer-legal a { color: rgba(255,255,255,0.5); transition: color 0.2s; } .footer-legal a:hover { color: var(--periwinkle-light); } /* Scroll reveal */ .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); } .reveal.visible { opacity: 1; transform: translateY(0); } @media print { .nav, .hero-visual, .marquee-section, .footer-social, .bg-mesh, .noise, .scroll-progress, .cursor-glow { display: none; } } /* ============================================ SUB-PAGE STYLES (Leistungen + Branchen) ============================================ */ .sub-hero { padding: 160px 0 100px; position: relative; overflow: hidden; background: linear-gradient(180deg, var(--ink) 0%, var(--ink-3) 100%); color: white; } .sub-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 20% 30%, rgba(107, 111, 232, 0.3), transparent 60%), radial-gradient(ellipse 50% 40% at 80% 70%, rgba(180, 111, 255, 0.2), transparent 65%); } .sub-hero::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(107, 111, 232, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(107, 111, 232, 0.08) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 90%); pointer-events: none; } .sub-hero .container { position: relative; z-index: 2; } .sub-hero .eyebrow { color: var(--periwinkle-light); margin-bottom: 24px; } .sub-hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(40px, 6vw, 78px); line-height: 1.02; letter-spacing: -0.035em; color: white; max-width: 900px; } .sub-hero h1 em { font-style: italic; font-weight: 300; background: linear-gradient(135deg, var(--periwinkle-light), var(--plasma), var(--cyan)); background-size: 200% 200%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: gradient-shift 6s ease infinite; } .sub-hero-desc { font-size: 20px; color: rgba(255,255,255,0.78); margin-top: 32px; max-width: 740px; line-height: 1.6; } .sub-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 44px; } .sub-breadcrumbs { display: flex; gap: 8px; align-items: center; font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; margin-bottom: 24px; text-transform: uppercase; } .sub-breadcrumbs a { color: rgba(255,255,255,0.7); transition: color 0.2s; } .sub-breadcrumbs a:hover { color: var(--periwinkle-light); } .sub-breadcrumbs span { opacity: 0.4; } .sub-content { padding: 120px 0; position: relative; } .sub-content-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: start; } @media (max-width: 980px) { .sub-content-grid { grid-template-columns: 1fr; gap: 60px; } .sub-content { padding: 80px 0; } .sub-hero { padding: 130px 0 70px; } } .sub-prose h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(28px, 3.5vw, 42px); letter-spacing: -0.022em; line-height: 1.15; margin-top: 50px; margin-bottom: 20px; } .sub-prose h2:first-child { margin-top: 0; } .sub-prose h2 em { font-style: italic; font-weight: 300; background: linear-gradient(135deg, var(--periwinkle), var(--plasma)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; } .sub-prose h3 { font-family: var(--font-display); font-size: 22px; font-weight: 500; margin-top: 36px; margin-bottom: 12px; color: var(--ink); } .sub-prose p { font-size: 17px; color: var(--graphite); line-height: 1.75; margin-bottom: 16px; } .sub-prose ul { margin: 18px 0 24px; list-style: none; padding: 0; } .sub-prose ul li { position: relative; padding-left: 34px; margin-bottom: 14px; font-size: 16px; color: var(--graphite); line-height: 1.6; } .sub-prose ul li::before { content: ""; position: absolute; left: 0; top: 6px; width: 20px; height: 20px; border-radius: 50%; background: linear-gradient(135deg, var(--periwinkle), var(--periwinkle-dark)); box-shadow: 0 2px 10px rgba(107, 111, 232, 0.3); } .sub-prose ul li::after { content: ""; position: absolute; left: 6px; top: 10px; width: 8px; height: 5px; border-left: 2px solid white; border-bottom: 2px solid white; transform: rotate(-45deg); } .sub-prose strong { color: var(--ink); font-weight: 600; } .sub-aside { position: sticky; top: 100px; background: white; border: 1px solid rgba(107, 111, 232, 0.15); border-radius: var(--radius-lg); padding: 36px 32px; box-shadow: 0 20px 50px rgba(107, 111, 232, 0.1); } .sub-aside-title { font-family: var(--font-display); font-size: 22px; font-weight: 500; letter-spacing: -0.018em; margin-bottom: 20px; } .sub-aside-list { list-style: none; padding: 0; margin: 0 0 28px 0; display: flex; flex-direction: column; gap: 12px; } .sub-aside-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--graphite); line-height: 1.5; } .sub-aside-list li::before { content: ""; flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; background: var(--signal); margin-top: 2px; position: relative; box-shadow: 0 0 10px rgba(0, 229, 160, 0.4); } .cta-band { padding: 100px 0; background: var(--ink); color: white; position: relative; overflow: hidden; text-align: center; } .cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(107, 111, 232, 0.3), transparent 65%), radial-gradient(ellipse 50% 40% at 20% 80%, rgba(180, 111, 255, 0.18), transparent 70%); } .cta-band .container { position: relative; z-index: 2; max-width: 800px; } .cta-band h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(32px, 4.5vw, 54px); line-height: 1.05; letter-spacing: -0.025em; color: white; } .cta-band h2 em { font-style: italic; font-weight: 300; background: linear-gradient(135deg, var(--periwinkle-light), var(--cyan)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; } .cta-band p { font-size: 18px; color: rgba(255,255,255,0.75); margin-top: 24px; max-width: 560px; margin-left: auto; margin-right: auto; } .cta-band-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 40px; } .cta-band .btn-secondary { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); color: white; backdrop-filter: blur(10px); } .cta-band .btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: var(--periwinkle-light); color: white; } .feature-highlights { padding: 100px 0; background: var(--paper); } .feature-highlights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin-top: 56px; } .highlight { background: white; border: 1px solid rgba(107, 111, 232, 0.12); border-radius: var(--radius); padding: 34px 28px; transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1); position: relative; overflow: hidden; } .highlight:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(107, 111, 232, 0.2); border-color: var(--periwinkle); } .highlight-num { font-family: var(--font-display); font-size: 48px; font-weight: 400; font-style: italic; line-height: 1; background: linear-gradient(135deg, var(--periwinkle), var(--plasma)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 16px; } .highlight h4 { font-family: var(--font-display); font-weight: 500; font-size: 20px; letter-spacing: -0.015em; margin-bottom: 10px; color: var(--ink); } .highlight p { font-size: 14.5px; color: var(--slate); line-height: 1.6; }