:root { --theme-color: var(--sp-color-primary); --theme-color-light: color-mix(in srgb, var(--sp-color-primary) 78%, white); --theme-color-dark: color-mix(in srgb, var(--sp-color-primary) 82%, black); --theme-color-soft: color-mix(in srgb, var(--sp-color-primary) 22%, transparent); --theme-color-muted: color-mix(in srgb, var(--sp-color-primary) 16%, transparent); --theme-color-strong: color-mix(in srgb, var(--sp-color-primary) 32%, black); --theme-hue: 65deg; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--sp-font-body); line-height: 1.6; color: #333; background: var(--sp-color-background); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.main-nav { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 1rem 20px; display: flex; justify-content: space-between; align-items: center; }
.nav-brand { font-size: 1.5rem; font-weight: 700; color: var(--theme-color); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1002; position: relative; }
.nav-toggle-line { width: 24px; height: 2px; background: var(--theme-color-strong); border-radius: 2px; transition: all 0.3s ease; }
.nav-toggle.open .nav-toggle-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle.open .nav-toggle-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-menu { display: flex; gap: 2rem; align-items: center; }
.nav-link { text-decoration: none; color: #333; font-weight: 500; }
.nav-link:hover, .nav-link.active { color: var(--theme-color); }
.nav-close { display: none; position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 28px; cursor: pointer; color: var(--theme-color-strong); padding: 8px; line-height: 1; }
.nav-cta { background: var(--theme-color); color: white !important; padding: 0.5rem 1.5rem; border-radius: 8px; }
.btn { display: inline-block; padding: 0.85rem 2rem; border-radius: 10px; text-decoration: none; font-weight: 600; border: 2px solid transparent; cursor: pointer; font-size: 1rem; transition: all 0.2s ease; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.btn-primary { background: var(--theme-color); color: white; border-color: var(--theme-color); box-shadow: 0 4px 14px var(--theme-color-soft); }
.btn-primary:hover, .btn-primary { background: var(--theme-color-dark); transform: translateY(-2px); box-shadow: 0 6px 20px var(--theme-color-soft); }
.btn-secondary { background: rgba(255,255,255,0.1); color: var(--theme-color); border-color: var(--theme-color-soft); box-shadow: none; }
.btn-secondary:hover, .btn-secondary { background: var(--theme-color-muted); color: var(--theme-color); border-color: var(--theme-color); }
.btn-large { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-small { padding: 0.5rem 1rem; font-size: 0.9rem; }
.btn-full { width: 100%; }
.hero { background: linear-gradient(160deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%), url('/active/assets/images/app_demo.webp'); background-size: cover; background-position: center; background-repeat: no-repeat; padding: 8rem 20px; text-align: center; position: relative; overflow: hidden; }
.hero-content { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.hero-title { font-size: 3.5rem; font-weight: 800; color: white; margin-bottom: 1rem; letter-spacing: -0.02em; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hero-tagline { font-size: 1.35rem; color: rgba(255,255,255,0.9); margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.6; text-shadow: 0 1px 5px rgba(0,0,0,0.2); }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.page-header { background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('/active/assets/images/app_demo.webp') center/cover no-repeat; padding: 100px 24px; text-align: center; color: #fff; min-height: 340px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.page-header h1, .page-header { font-size: 3rem; color: #fff; margin-bottom: 1rem; }
.page-header p, .page-header { font-size: 1.2rem; color: rgba(255,255,255,0.85); }
.section-title { text-align: center; font-size: 2.5rem; color: var(--theme-color-strong); margin-bottom: 3rem; }
.section-subtitle { text-align: center; font-size: 1.2rem; color: #666; margin-bottom: 3rem; }
.cta-center { text-align: center; display: flex; justify-content: center; margin-top: 1rem; }
.cta-with-hint { flex-direction: column; align-items: center; gap: 0.75rem; }
.cta-hint { font-size: 0.9rem; color: #666; margin: 0; }
.about { padding: 6rem 20px; background: white; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text h2, .about-text { font-size: 2.5rem; color: var(--theme-color-strong); margin-bottom: 1.5rem; }
.about-text p, .about-text { font-size: 1.1rem; color: #666; margin-bottom: 2rem; }
.about-highlights { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; padding: 0; margin: 0; }
.highlight-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 1.05rem; color: #333; line-height: 1.5; }
.check-icon { color: var(--theme-color); font-weight: bold; font-size: 1.1rem; line-height: 1.5; min-width: 20px; }
.image-placeholder { width: 100%; height: 400px; background: linear-gradient(145deg, var(--theme-color-soft) 0%, var(--theme-color-muted) 100%); border-radius: 20px; display: flex; justify-content: center; align-items: center; font-size: 1.25rem; color: var(--theme-color); border: 2px dashed var(--theme-color); box-shadow: 0 10px 40px var(--theme-color-muted); }
.memberships-preview { padding: 6rem 20px; background: var(--theme-color-muted); }
.memberships-content { display: flex; flex-direction: column; align-items: center; }
.memberships-title { text-align: center; font-size: 2.5rem; color: var(--theme-color-strong); margin-bottom: 1rem; }
.widget-placeholder { width: 100%; max-width: 800px; margin: 0 auto 40px; padding: 80px 40px; background: white; border-radius: 16px; text-align: center; border: 2px dashed var(--theme-color); display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.widget-placeholder p, .widget-placeholder { font-size: 1.1rem; color: var(--theme-color); margin: 0; font-weight: 500; }
.placeholder-note { font-size: 0.9rem !important; color: #999 !important; margin-top: 0.5rem !important; }
.how-it-works { padding: 6rem 20px; background: white; }
.how-it-works h2, .how-it-works { text-align: center; font-size: 2.5rem; color: var(--theme-color-strong); margin-bottom: 3rem; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-bottom: 3rem; }
.step { text-align: center; background: white; padding: 2rem; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.step:hover, .step { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.step-number { width: 60px; height: 60px; background: linear-gradient(135deg, var(--theme-color) 0%, var(--theme-color-dark) 100%); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; margin: 0 auto 1.25rem; box-shadow: 0 4px 15px var(--theme-color-soft); }
.step h3, .step { font-size: 1.5rem; color: var(--theme-color-strong); margin-bottom: 0.5rem; }
.step p, .step { color: #666; }
.contact-section { padding: 4rem 20px 2rem; background: var(--theme-color-muted); }
.contact-section h2, .contact-section { text-align: center; font-size: 2.5rem; color: var(--theme-color-strong); margin-bottom: 1rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; align-items: start; }
.contact-info { display: grid; gap: 1rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; background: white; padding: 1.25rem; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); text-align: left; }
.contact-icon { font-size: 1.25rem; flex-shrink: 0; width: 24px; text-align: center; filter: sepia(100%) saturate(250%) brightness(80%) hue-rotate(var(--theme-hue)); }
.contact-text { flex: 1; min-width: 0; text-align: left; }
.contact-title { color: var(--theme-color-strong); margin: 0 0 0.25rem 0; font-size: 0.95rem; font-weight: 600; text-align: left; }
.contact-detail { color: #555; margin: 0; font-size: 0.9rem; line-height: 1.5; text-align: left; }
.contact-map { height: 100%; min-height: 450px; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); border: 1px solid #1a1a1a; }
.map-container { border-radius: 20px; overflow: hidden; height: 450px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); border: 1px solid #1a1a1a; }
.google-map { width: 100%; height: 100%; display: block; }
.map-placeholder { width: 100%; height: 100%; min-height: 280px; background: var(--theme-color-soft); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--theme-color); }
.main-footer { background: #f8f9fa; padding: 2rem 20px 2rem; color: #666; }
.footer-content { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; margin-bottom: 2rem; max-width: 1200px; margin-left: auto; margin-right: auto; }
.footer-section h4, .footer-section { color: var(--theme-color-strong); margin-bottom: 1rem; }
.footer-section ul, .footer-section { list-style: none; }
.footer-section ul li, .footer-section { margin-bottom: 0.5rem; }
.footer-section a, .footer-section { color: #666; text-decoration: none; }
.footer-section a:hover, .footer-section { color: var(--theme-color); }
.social-links { display: flex; gap: 1rem; margin-top: 1rem; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid #ddd; max-width: 1200px; margin: 0 auto; }
.footer-bottom a, .footer-bottom { color: #666; margin: 0 0.5rem; }
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #fff; box-shadow: 0 -4px 20px rgba(0,0,0,0.15); padding: 1rem 20px; z-index: 9999; }
.cookie-content { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cookie-content p, .cookie-content { margin: 0; color: #666; }
.cookie-content a, .cookie-content { color: var(--theme-color); }
.cookie-buttons { display: flex; gap: 0.5rem; }
.legal-header { background: var(--theme-color-muted); padding: 4rem 20px; text-align: center; }
.legal-header h1, .legal-header { font-size: 2.5rem; color: var(--theme-color-strong); }
.legal-content { padding: 4rem 20px; max-width: 800px; margin: 0 auto; }
.legal-content h2, .legal-content { font-size: 1.5rem; color: var(--theme-color-strong); margin: 2rem 0 1rem; }
.legal-content h3, .legal-content { font-size: 1.2rem; color: var(--theme-color-strong); margin: 1.5rem 0 0.5rem; }
.legal-content p, .legal-content { margin-bottom: 1rem; color: #555; }
.legal-content a, .legal-content { color: var(--theme-color); }
.phone-container { max-width: 375px; margin: 0 auto; background: #1a1a1a; border-radius: 40px; padding: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.phone-notch { width: 150px; height: 25px; background: #1a1a1a; border-radius: 0 0 20px 20px; margin: 0 auto 8px; }
.phone-screen { background: white; border-radius: 28px; overflow: hidden; min-height: 600px; display: flex; align-items: center; justify-content: center; }
.app-placeholder { text-align: center; padding: 40px; }
.app-placeholder p, .app-placeholder { font-size: 1.2rem; color: var(--theme-color); margin: 0; }
.app-demo-hero { background: linear-gradient(135deg, var(--theme-color-soft) 0%, var(--theme-color-muted) 100%); padding: 5rem 20px; text-align: center; }
.app-hero-title { font-size: 3.5rem; font-weight: 800; color: var(--theme-color-strong); margin-bottom: 1.5rem; letter-spacing: -0.02em; }
@media (max-width: 768px) { .app-hero-title { font-size: 2.5rem; } }
.app-hero-subtitle { font-size: 1.25rem; color: #444; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.app-demo-section { padding: 4rem 20px; }
.demo-intro h2, .demo-intro { text-align: center; font-size: 2.5rem; color: var(--theme-color-strong); margin-bottom: 3rem; }
.view-description { text-align: center; margin-bottom: 1.5rem; color: #666; }
#flutter-app-container { width: 100vw; height: var(--sp-app-visual-viewport-height, 100dvh); position: fixed; top: 0; left: 0; background: #ffffff; }
/* Website-only releases can reuse an older Flutter artifact whose generated
   bootstrap owns the implicit body view. Keep that view renderable alongside
   the newer custom-container bootstrap used by current Flutter builds. */
body.sp-app-shell > flutter-view { display: block !important; position: fixed !important; inset: 0 !important; width: 100vw !important; height: var(--sp-app-visual-viewport-height, 100dvh) !important; z-index: 1001; }
body.sp-app-shell > flutter-view > flt-glass-pane { display: block !important; position: absolute !important; inset: 0 !important; width: 100% !important; height: 100% !important; }
.app-fullscreen { width: 100vw; height: 100vh; position: fixed; top: 0; left: 0; background: #ffffff; z-index: 1000; }
.app-fullscreen .app-placeholder, .app-fullscreen { text-align: center; padding: 60px; background: white; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.app-fullscreen .app-placeholder h1, .app-fullscreen { font-size: 3rem; margin-bottom: 1rem; color: #333; }
.app-fullscreen .app-placeholder p, .app-fullscreen { font-size: 1.2rem; color: #666; margin: 0.5rem 0; }
.contact-page { padding: 4rem 20px; }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-form-section h2, .contact-info-section h2, .contact-form-section { font-size: 1.5rem; color: var(--theme-color-strong); margin-bottom: 2rem; }
.contact-form { background: white; padding: 2rem; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.form-group { margin-bottom: 1.5rem; }
.form-group label, .form-group { display: block; font-weight: 500; margin-bottom: 0.5rem; color: #333; }
.form-group input, .form-group select, .form-group textarea, .form-group { width: 100%; padding: 0.75rem 1rem; border: 2px solid #e0e0e0; border-radius: 8px; font-size: 1rem; font-family: inherit; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus, .form-group { outline: none; border-color: var(--theme-color); }
.form-group.checkbox, .form-group.checkbox { display: flex; gap: 0.75rem; align-items: flex-start; }
.form-group.checkbox input, .form-group.checkbox { width: auto; margin-top: 4px; }
.form-group.checkbox label, .form-group.checkbox { font-weight: 400; font-size: 0.9rem; }
.form-group.checkbox a, .form-group.checkbox { color: var(--theme-color); }
.form-success { text-align: center; padding: 3rem 2rem; background: white; border-radius: 16px; }
.success-icon { width: 80px; height: 80px; background: var(--theme-color); color: white; font-size: 2.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.form-success h3, .form-success { color: var(--theme-color-strong); margin-bottom: 0.5rem; }
.info-cards { display: grid; gap: 1rem; margin-bottom: 2rem; }
.info-card { background: white; padding: 1.5rem; border-radius: 12px; display: flex; gap: 1rem; align-items: flex-start; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.info-icon { font-size: 1.5rem; filter: sepia(100%) saturate(250%) brightness(80%) hue-rotate(var(--theme-hue)); }
.info-card h4, .info-card { color: var(--theme-color-strong); margin-bottom: 0.25rem; }
.info-card p, .info-card { color: #666; margin: 0; }
.map-container { margin-top: 2rem; }
.memberships-section { padding: 6rem 20px; }
@media (max-width: 768px) { .hero-title { font-size: 2.5rem; } }
@media (max-width: 768px) { .about-content { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .steps { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .footer-content { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .contact-wrapper { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .nav-toggle { display: flex; } }
@media (max-width: 768px) { .nav-menu { position: fixed; top: 0; right: -280px; width: 280px; height: 100vh; background: white; flex-direction: column; padding: 80px 30px 30px; gap: 0; box-shadow: -5px 0 30px rgba(0,0,0,0.1); transition: right 0.3s ease; z-index: 1001; } }
@media (max-width: 768px) { .nav-menu.open { right: 0; } }
@media (max-width: 768px) { .nav-close { display: none; } }
@media (max-width: 768px) { .nav-link { padding: 1rem 0; border-bottom: 1px solid #eee; width: 100%; display: block; } }
@media (max-width: 768px) { .nav-link.nav-cta { margin-top: 1rem; text-align: center; } }
@media (max-width: 768px) { .cookie-content { flex-direction: column; text-align: center; } }
.page-hero { padding: 100px 24px; text-align: center; background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('/active/assets/images/app_demo.webp') center/cover no-repeat; color: #fff; min-height: 340px; display: flex; align-items: center; justify-content: center; }
.page-hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 1rem; color: #fff; }
.gradient-text { background: linear-gradient(135deg, var(--theme-color) 0%, var(--theme-color-strong) 100%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle { font-size: 1.2rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; }
.demo-section { padding: 50px 24px 80px; }
.demo-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; max-width: 1000px; margin: 0 auto; }
.demo-sidebar { padding-right: 1rem; }
.phone-container { display: flex; justify-content: center; padding-left: 1rem; }
@media (max-width: 1050px) { .demo-sidebar { display: none; } }
.demo-sidebar h3 { font-size: 1.4rem; margin-bottom: 1.5rem; color: var(--dark); }
.demo-actions { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.demo-action { display: flex; gap: 1rem; align-items: flex-start; background: white; border: 1px solid #e5e5e5; border-radius: 12px; padding: 1.25rem; min-width: 300px; }
.demo-action:hover { border-color: var(--theme-color); }
.demo-action span { font-size: 2rem; filter: sepia(100%) saturate(250%) brightness(80%) hue-rotate(var(--theme-hue)); }
.demo-action strong { display: block; margin-bottom: 0.2rem; font-size: 0.95rem; }
.demo-action p { color: var(--gray-600); font-size: 0.8rem; margin: 0; }
.demo-note { background: var(--theme-color-muted); border: 1px solid var(--theme-color-soft); border-radius: 12px; padding: 1rem; }
.demo-note p { font-size: 0.85rem; margin: 0; color: var(--gray-600); }
.phone-container { display: flex; justify-content: center; }
.phone-frame { background: #1a1a1a; border-radius: 26px; border: 1px solid #1a1a1a; padding: 0; box-shadow: 0 20px 50px rgba(0,0,0,0.12); width: 340px; overflow: hidden; }
.phone-screen { background: #f5f5f5; border-radius: 26px; overflow: hidden; position: relative; min-height: 620px; display: flex; align-items: center; justify-content: center; }
.app-preview, .app-placeholder { display: flex; align-items: center; justify-content: center; background: linear-gradient(180deg, var(--theme-color) 0%, var(--theme-color-strong) 100%); color: white; }
.cta-section { padding: 80px 24px; }
.cta-box { background: var(--gray-100); border-radius: 24px; padding: 3rem; text-align: center; }
.cta-box h2 { font-size: 2rem; margin-bottom: 1rem; }
.cta-box p { color: var(--gray-600); margin-bottom: 2rem; }
.mobile-demo { display: none; padding: 0.5rem 1.5rem 2rem; text-align: center; background: var(--gray-100); }
@media (max-width: 1050px) { .mobile-demo { display: block; } }
.mobile-demo h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--dark); }
.mobile-demo .demo-actions { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1rem; }
.mobile-demo .demo-action { display: flex; align-items: center; gap: 0.75rem; background: var(--white); padding: 0.75rem 1rem; border-radius: 8px; text-align: left; }
.mobile-demo .demo-note { font-size: 0.875rem; color: var(--gray-600); background: var(--white); padding: 0.75rem; border-radius: 8px; }
@media (max-width: 900px) { .phone-frame-demo { max-width: 280px; margin: 0 auto; } }
.features-section { padding: 80px 24px; text-align: center; background: var(--sp-color-background); }
.features-title { font-size: 2.8rem; font-weight: 800; color: var(--dark); margin-bottom: 2.5rem; }
.features-list { list-style: none; padding: 0; margin: 0 auto 2.5rem; max-width: 700px; text-align: left; }
.feature-item { display: flex; align-items: center; gap: 1rem; padding: 0.75rem 0; font-size: 1.1rem; color: var(--gray-600); }
.feature-check { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; background: var(--theme-color); color: white; border-radius: 50%; font-size: 1rem; font-weight: bold; flex-shrink: 0; }
.features-tagline { font-size: 1.25rem; color: var(--dark); margin-bottom: 2.5rem; }
.store-badges { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.store-badge { display: block; transition: transform 0.2s ease; }
.store-badge:hover { transform: scale(1.05); }
.store-badge img { height: 50px; width: auto; }
@media (max-width: 768px) { .features-title { font-size: 2rem; } }
@media (max-width: 768px) { .feature-item { font-size: 1rem; } }
