:root { --cream: #f8f5ef; --white: #ffffff; --dark: #0e1a14; --green-deep: #0d3320; --green-mid: #1a5c35; --green-accent: #4CAF50; --green-accent-light: #66BB6A; --hero-green-bg: #E0EEDF; --nav-dark: #2d4a3e; --nav-dark-hover: #3d5a4c; --hero-gradient: linear-gradient(180deg, #dcebdb 0%, #e5f0e4 35%, #e0eedf 70%, #dcebdb 100%); --green-bright: #22c55e; --green-glow: #4ade80; --blue-mid: #1a3a6b; --blue-bright: #3b82f6; --gold: #c9a84c; --gold-light: #e8c97a; --text-dark: #0e1a14; --text-muted: #4a6358; --text-light: #7a9a8a; --border: rgba(34, 197, 94, 0.15); --grad-main: linear-gradient(135deg, #0d3320 0%, #1a3a6b 50%, #0d2b1a 100%); --grad-accent: linear-gradient(135deg, #22c55e, #3b82f6); --grad-gold: linear-gradient(135deg, #c9a84c, #e8c97a, #c9a84c); --grad-section: linear-gradient(180deg, #f8f5ef 0%, #eef5f0 100%); } *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; } body { font-family: 'Instrument Sans', 'DM Sans', sans-serif; background: var(--cream); color: var(--text-dark); overflow-x: hidden; } /* ── NAVBAR (white bar, black text, green CTA) — exact UI ── */ nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 5%; height: 72px; background: #ffffff; border-bottom: 1px solid rgba(0,0,0,0.06); transition: all 0.3s; } nav.scrolled { background: #ffffff; height: 64px; box-shadow: 0 1px 12px rgba(0,0,0,0.06); } .nav-logo { display: flex; align-items: center; text-decoration: none; } .nav-logo-text { font-family: 'Inter', sans-serif; font-size: 1.25rem; font-weight: 700; color: #000000; letter-spacing: 0.01em; } .nav-logo-text .logo-safe { color: #000000; font-weight: 700; } .nav-logo-text .logo-label { color: #34A853; font-weight: 700; } .nav-links { display: flex; gap: 2rem; list-style: none; } .nav-links a { font-family: 'Inter', sans-serif; color: #000000; font-size: 0.9rem; font-weight: 400; text-decoration: none; letter-spacing: 0.02em; transition: color 0.2s; } .nav-links a:hover { color: #333; } .nav-cta { display: flex; align-items: center; } .btn-nav { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.55rem 1.35rem; border-radius: 6px; font-family: 'Inter', sans-serif; font-size: 0.88rem; font-weight: 600; cursor: pointer; text-decoration: none; transition: all 0.25s; letter-spacing: 0.02em; } .btn-nav-download { border: none; color: #ffffff; background: #34A853; } .btn-nav-download:hover { background: #2d9349; color: #fff; } .nav-hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 28px; height: 28px; background: none; border: none; cursor: pointer; padding: 0; position: relative; } .nav-hamburger span { display: block; width: 100%; height: 2px; background: #000000; border-radius: 1px; transition: transform 0.3s ease, opacity 0.3s ease; transform-origin: center; } .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); } .nav-hamburger.open span:nth-child(2) { opacity: 0; } .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); } @keyframes navItemIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } } .nav-mobile-menu { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; z-index: 98; background: #ffffff; border-bottom: 1px solid rgba(0,0,0,0.08); padding: 0 5%; gap: 0; z-index: 99; box-shadow: 0 8px 24px rgba(0,0,0,0.08); max-height: 0; overflow: hidden; opacity: 0; visibility: hidden; transition: max-height 0.35s ease-out, opacity 0.25s ease, visibility 0s linear 0.35s; } .nav-mobile-menu.open { max-height: 380px; opacity: 1; visibility: visible; padding: 1.25rem 5%; transition: max-height 0.35s ease-out, opacity 0.25s ease, visibility 0s; } .nav-mobile-menu a { font-family: 'Poppins', sans-serif; color: #000000; text-decoration: none; font-size: 0.95rem; font-weight: 400; padding: 0.85rem 0; border-bottom: 1px solid rgba(0,0,0,0.08); opacity: 0; } .nav-mobile-menu.open a { animation: navItemIn 0.35s ease forwards; } .nav-mobile-menu.open a:nth-child(1) { animation-delay: 0.05s; } .nav-mobile-menu.open a:nth-child(2) { animation-delay: 0.1s; } .nav-mobile-menu.open a:nth-child(3) { animation-delay: 0.15s; } .nav-mobile-menu.open a:nth-child(4) { animation-delay: 0.2s; } .nav-mobile-menu.open a:nth-child(5) { animation-delay: 0.25s; } .nav-mobile-menu a:last-of-type { border-bottom: none; } .nav-mobile-menu a.btn-nav-download { display: block; text-align: center; margin-top: 1rem; padding: 0.85rem 1.25rem; border-radius: 8px; background: #66BB6A; color: #fff; font-weight: 600; border: none; width: 100%; max-width: 100%; box-sizing: border-box; } .nav-mobile-menu a.btn-nav-download:hover { background: #5aa85e; } /* ── MARQUEE BANNER ── */ .marquee-wrap { background: var(--grad-accent); padding: 0.55rem 0; overflow: hidden; position: fixed; top: 72px; left: 0; right: 0; z-index: 99; box-shadow: 0 2px 20px rgba(34,197,94,0.2); } .marquee-track { display: flex; white-space: nowrap; animation: marqueeScroll 30s linear infinite; } .marquee-track span { font-size: 0.78rem; font-weight: 500; color: #fff; padding: 0 2.5rem; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.92; } .marquee-track span::before { content: ''; display: inline-block; width: 0.65em; height: 0.65em; margin-right: 1rem; opacity: 0.7; vertical-align: middle; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E") no-repeat center/contain; } @keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } } /* ── HERO (image top, text below) ── */ .hero { min-height: auto; background: var(--cream); display: flex; flex-direction: column; padding: 0; position: relative; overflow: hidden; } /* ── HERO IMAGE (full-width top) ── */ .hero-image-wrap { position: relative; z-index: 1; width: 100%; height: 34vh; min-height: 240px; max-height: 340px; overflow: hidden; margin-top: 102px; animation: heroImgReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both; } @keyframes heroImgReveal { from { opacity: 0; transform: scale(1.04); } to { opacity: 1; transform: scale(1); } } .hero-image-inner { position: absolute; inset: 0; overflow: hidden; } .hero-image-inner img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 30%; } .hero-image-inner::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient( 180deg, transparent 35%, rgba(248, 245, 239, 0.3) 70%, var(--cream) 100% ); pointer-events: none; } .hero-image-glow { display: none; } .hero-image-caption { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; align-items: center; gap: 10px; background: rgba(255, 255, 255, 0.14); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 14px; padding: 12px 20px; white-space: nowrap; animation: fadeUp 1s ease 0.8s both; } .hero-image-caption-icon { width: 36px; height: 36px; border-radius: 10px; background: rgba(34, 197, 94, 0.25); border: 1px solid rgba(34, 197, 94, 0.4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; } .hero-image-caption-text { font-size: 0.78rem; color: #fff; font-weight: 500; line-height: 1.4; letter-spacing: 0.01em; } .hero-image-caption-text span { display: block; font-size: 0.65rem; color: rgba(255, 255, 255, 0.6); font-weight: 400; margin-top: 2px; letter-spacing: 0.03em; } /* ── HERO DECORATIONS (desktop only, product display in circled areas) ── */ .hero-decor { display: none; pointer-events: none; position: absolute; inset: 0; z-index: 0; overflow: visible; perspective: 3000px; } .hero-decor-item { position: absolute; animation: decorFloat 14s ease-in-out infinite; filter: drop-shadow(0 8px 20px rgba(13, 51, 32, 0.12)); } .hero-decor-item:nth-child(2) { animation-delay: -6s; } .hero-decor-item:nth-child(3) { animation-delay: -9s; } .hero-decor-item img { width: 100%; height: 100%; object-fit: contain; display: block; opacity: 0.92; } @keyframes decorFloat { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(4px, -5px) scale(1.02); } } /* Top-left: chocolate */ .hero-decor-tl { top: 28%; left: 2.5%; width: 115px; height: 115px; } /* Bottom-left: big 3D flying bottle (serum) */ .hero-decor-bl { bottom: 5%; left: -3%; width: 512px; height: 512px; transform-style: preserve-3d; animation: decorFloat3D 18s ease-in-out infinite; filter: drop-shadow(0 20px 40px rgba(13, 51, 32, 0.18)); } .hero-decor-bl img { opacity: 0.94; } @keyframes decorFloat3D { 0%, 100% { transform: translate(0, 0) rotateY(-8deg) rotateX(6deg) scale(1); } 33% { transform: translate(12px, -15px) rotateY(5deg) rotateX(2deg) scale(1.03); } 66% { transform: translate(-8px, -8px) rotateY(12deg) rotateX(8deg) scale(1.02); } } /* Bottom-right: big 3D flying chocolate */ .hero-decor-br { bottom: 5%; right: -3%; width: 512px; height: 512px; transform-style: preserve-3d; animation: decorFloat3D-br 20s ease-in-out infinite; filter: drop-shadow(0 20px 40px rgba(13, 51, 32, 0.18)); } .hero-decor-br img { transform: none; opacity: 0.94; } @keyframes decorFloat3D-br { 0%, 100% { transform: translate(0, 0) rotateY(10deg) rotateX(4deg) scale(1); } 33% { transform: translate(-10px, -12px) rotateY(-5deg) rotateX(8deg) scale(1.03); } 66% { transform: translate(8px, -6px) rotateY(15deg) rotateX(2deg) scale(1.02); } } @media (min-width: 1025px) { .hero-decor { display: block; } } .hero-left { text-align: center; position: relative; z-index: 2; max-width: 760px; margin: -4rem auto 0; padding: 0 6% 3rem; display: flex; flex-direction: column; align-items: center; } .hero-bg-blob { position: absolute; top: -100px; right: -100px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(34,197,94, 0.12) 0%, transparent 70%); pointer-events: none; } .hero-bg-blob2 { position: absolute; bottom: -150px; left: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(34,197,94, 0.08) 0%, transparent 70%); pointer-events: none; } .hero-badge { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(34,197,94,0.35); background: rgba(34,197,94,0.08); color: var(--green-mid); padding: 6px 14px; border-radius: 100px; font-size: 0.78rem; letter-spacing: 0.5px; text-transform: uppercase; font-weight: 500; margin-bottom: 1.2rem; position: relative; z-index: 1; animation: fadeUp 0.8s ease both; } .hero-badge::before { content: ''; display: inline-block; width: 0.4em; height: 0.4em; margin-right: 0.35em; vertical-align: middle; border-radius: 50%; background: currentColor; animation: pulse 2s infinite; } @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } } .hero h1 { font-family: 'Clash Display', 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 700; line-height: 1.1; color: var(--dark); letter-spacing: -1.5px; max-width: 700px; margin: 0 auto; position: relative; z-index: 1; animation: fadeUp 0.9s ease 0.1s both; } .hero h1 em { font-style: normal; background: linear-gradient(135deg, var(--green-mid), var(--green-bright)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .hero h1 .gold { color: var(--dark); position: relative; } .hero h1 .gold::after { content: ''; position: absolute; bottom: 2px; left: 0; width: 100%; height: 6px; background: rgba(34,197,94,0.15); border-radius: 3px; z-index: -1; } .hero-sub { font-size: clamp(0.9rem, 1.4vw, 1.05rem); color: var(--text-muted); font-weight: 400; max-width: 560px; line-height: 1.65; margin: 0.75rem auto 0; position: relative; z-index: 1; animation: fadeUp 0.9s ease 0.25s both; } .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 1rem; position: relative; z-index: 1; animation: fadeUp 0.9s ease 0.4s both; } .btn-primary { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.75rem 2rem; border-radius: 50px; background: var(--dark); color: #fff; font-weight: 600; font-size: 0.95rem; text-decoration: none; letter-spacing: 0.02em; box-shadow: 0 4px 20px rgba(0,0,0,0.15); transition: all 0.3s; border: none; cursor: pointer; } .btn-primary:hover { transform: translateY(-3px); background: var(--green-mid); box-shadow: 0 8px 30px rgba(34,197,94,0.3); } .btn-secondary { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.75rem 2rem; border-radius: 50px; border: 1px solid rgba(14,26,20,0.15); color: var(--dark); font-weight: 500; font-size: 0.95rem; text-decoration: none; background: transparent; letter-spacing: 0.02em; transition: all 0.3s; cursor: pointer; } .btn-secondary:hover { border-color: var(--green-mid); color: var(--green-mid); transform: translateY(-2px); } /* Hero product mockup — glassmorphism, floating */ .hero-mockup-wrap { position: relative; animation: floatMockup 6s ease-in-out infinite; } @keyframes floatMockup { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } } .hero-mockup-ingredients { background: rgba(255,255,255,0.7); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(34,197,94,0.15); border-radius: 16px; padding: 1.25rem 1.5rem; box-shadow: 0 20px 50px rgba(13,51,32,0.08), 0 0 0 1px rgba(255,255,255,0.5) inset; margin-bottom: 1rem; font-size: 0.85rem; color: var(--text-muted); line-height: 1.9; } .hero-mockup-ingredients strong { color: var(--text-dark); font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; } .hero-mockup-result { background: linear-gradient(135deg, rgba(13,51,32,0.95), rgba(26,58,107,0.9)); backdrop-filter: blur(20px); border: 1px solid rgba(34,197,94,0.25); border-radius: 20px; padding: 1.75rem 1.5rem; box-shadow: 0 25px 60px rgba(0,0,0,0.2), 0 0 40px rgba(34,197,94,0.08); position: relative; } .hero-mockup-result .mockup-badge { position: absolute; top: -10px; right: 16px; background: rgba(34,197,94,0.2); border: 1px solid rgba(34,197,94,0.4); color: var(--green-glow); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem 0.75rem; border-radius: 50px; } .hero-mockup-result .mockup-score-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; } .hero-mockup-result .mockup-score-num { font-family: 'Clash Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--green-glow); line-height: 1; } .hero-mockup-result .mockup-score-label { font-size: 0.7rem; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; text-transform: uppercase; } .hero-mockup-result .mockup-rating { font-size: 0.85rem; color: var(--gold-light); font-weight: 600; } .hero-mockup-result .mockup-ing-list { font-size: 0.78rem; line-height: 2; } .hero-mockup-result .mockup-ing-list span { display: block; padding: 0.2rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); } .hero-mockup-result .mockup-ing-list .safe { color: #4ade80; } .hero-mockup-result .mockup-ing-list .caution { color: #fbbf24; } .hero-mockup-result .mockup-ing-list .avoid { color: #f87171; } /* Floating product images around hero */ .hero-product-float { position: absolute; border-radius: 16px; overflow: hidden; box-shadow: 0 12px 40px rgba(13,51,32,0.12); border: 1px solid rgba(34,197,94,0.1); object-fit: cover; z-index: 1; } .hero-product-float.img1 { width: 70px; height: 70px; top: 5%; right: 8%; animation: floatImg 5s ease-in-out infinite; } .hero-product-float.img2 { width: 56px; height: 56px; bottom: 25%; right: -5%; animation: floatImg 6s ease-in-out infinite 0.5s; } .hero-product-float.img3 { width: 60px; height: 60px; bottom: 10%; left: -3%; animation: floatImg 5.5s ease-in-out infinite 1s; } @keyframes floatImg { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } } /* hero stats */ .hero-stats { display: flex; gap: 2rem; margin-top: 1rem; padding-top: 0.75rem; border-top: 1px solid rgba(14,26,20,0.1); position: relative; z-index: 1; animation: fadeUp 0.9s ease 0.55s both; flex-wrap: wrap; justify-content: center; } .hero-stat { text-align: center; } .hero-stat-num { font-family: 'Clash Display', sans-serif; font-size: 1.8rem; font-weight: 700; letter-spacing: -1px; line-height: 1; background: linear-gradient(135deg, var(--dark), var(--green-mid)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .hero-stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.25rem; font-weight: 400; } .hero-pills { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; margin-top: 1rem; position: relative; z-index: 1; animation: fadeUp 0.9s ease 0.5s both; } .pill { padding: 0.4rem 1rem; border-radius: 50px; background: rgba(34,197,94,0.06); border: 1px solid rgba(34,197,94,0.2); color: var(--green-mid); font-size: 0.78rem; letter-spacing: 0.04em; font-weight: 500; transition: all 0.25s; } .pill:hover { background: rgba(34,197,94,0.12); border-color: rgba(34,197,94,0.35); transform: translateY(-1px); } @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } } .orb { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; z-index: 0; animation: orbFloat 8s ease-in-out infinite alternate; } .orb-1 { width: 500px; height: 500px; background: rgba(34,197,94,0.08); top: -100px; left: -100px; } .orb-2 { width: 400px; height: 400px; background: rgba(59,130,246,0.08); bottom: -50px; right: -50px; animation-delay: -4s; } .orb-3 { width: 300px; height: 300px; background: rgba(201,168,76,0.06); top: 40%; left: 50%; animation-delay: -2s; } @keyframes orbFloat { from { transform: translate(0,0) scale(1); } to { transform: translate(30px, 30px) scale(1.1); } } /* ── HERO NEW (exact UI: white header, light green hero, pill button, depth image) ── */ .hero.hero-new { margin-top: 0; padding-top: 72px; min-height: 0; background: #e0f2e0; display: block; } .hero-new-bg { position: absolute; inset: 0; background: #e0f2e0; z-index: 0; } @keyframes heroFadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } } @keyframes heroFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } } .hero-new-content { position: relative; z-index: 2; text-align: center; padding: 3rem 6% 2.75rem; max-width: 720px; margin: 0 auto; background: transparent; border-radius: 0; box-shadow: none; } .hero-new-title { font-family: 'Poppins', sans-serif; font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 600; line-height: 1.25; color: #1e1e1e; letter-spacing: -0.02em; margin: 0 0 1rem; animation: heroFadeUp 0.7s ease-out both; } .hero-new-highlight { color: #46a046; font-weight: 600; } .hero-new-sub { font-family: 'Poppins', sans-serif; font-size: clamp(0.9rem, 1.15vw, 1rem); font-weight: 600; line-height: 1.5; color: #3c3c3c; max-width: 28em; margin: 0 auto 1.5rem; animation: heroFadeUp 0.7s ease-out 0.15s both; } .btn-hero-scan { display: inline-flex; align-items: center; justify-content: center; padding: 0.9rem 2.25rem; border-radius: 50px; background: #46a046; color: #fff; font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 600; text-decoration: none; letter-spacing: 0.02em; transition: all 0.25s; border: none; cursor: pointer; animation: heroFadeUp 0.7s ease-out 0.3s both; } .btn-hero-scan:hover { background: #3d8f3d; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(70, 160, 70, 0.4); } .hero-stats.hero-stats-new { margin-top: 1.75rem; padding-top: 1.25rem; border-top: 1px solid rgba(0,0,0,0.08); animation: heroFadeUp 0.7s ease-out 0.4s both; display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; } .hero-stats-new .hero-stat { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; text-align: center; } .hero-stats-new .hero-stat-value { display: block; width: 100%; text-align: center; } .hero-stats-new .hero-stat-label { flex-shrink: 0; } .hero-stats-new .hero-stat-num { font-family: 'Inter', 'Poppins', sans-serif; font-size: clamp(1.75rem, 3.5vw, 2.25rem); font-weight: 700; line-height: 1.2; display: block; margin-bottom: 0; } .hero-stats-new .hero-stat-label { font-family: 'Inter', 'Poppins', sans-serif; font-size: 0.875rem; font-weight: 400; color: #4a6358; display: block; line-height: 1.3; margin-top: 0.4rem; width: 100%; text-align: center; } .hero-stats-new .hero-stat-num.hero-stat-green { color: #0d3320; background: none; -webkit-text-fill-color: #0d3320; } .hero-stats-new .hero-stat-num.hero-stat-dark { color: #1e1e1e; background: none; -webkit-text-fill-color: #1e1e1e; } .hero-new-visual { position: relative; z-index: 1; padding: 0; min-height: 0; display: block; } .hero-feature-cards { position: absolute; left: 0; right: 0; top: 1.5rem; display: flex; justify-content: space-between; padding: 0 8%; pointer-events: none; z-index: 2; } .hero-feature-card { background: #fff; border-radius: 16px; padding: 1.25rem 1.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.06); display: flex; flex-direction: column; align-items: center; gap: 0.75rem; max-width: 180px; text-align: center; font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600; color: #000000; animation: heroFadeUp 0.7s ease-out 0.4s both, heroFloat 4s ease-in-out 1s infinite; } .hero-feature-card.hero-feature-right { animation: heroFadeUp 0.7s ease-out 0.5s both, heroFloat 4s ease-in-out 1.2s infinite; } .hero-feature-icon { width: 40px; height: 40px; color: #000000; flex-shrink: 0; } .hero-feature-icon-shield { width: 40px; height: 40px; } .hero-new-image-wrap { width: 100%; height: 52vh; min-height: 380px; max-height: 560px; overflow: hidden; position: relative; animation: heroFadeUp 0.8s ease-out 0.5s both, heroFloat 5s ease-in-out 1.5s infinite; } .hero-new-image-wrap::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 280px; background: linear-gradient( 180deg, rgba(224,242,224,0.98) 0%, rgba(224,242,224,0.92) 12%, rgba(224,242,224,0.75) 28%, rgba(224,242,224,0.45) 50%, rgba(224,242,224,0.2) 72%, transparent 100% ); pointer-events: none; } .hero-new-image-wrap img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 42%; } /* ── SECTIONS GENERAL ── */ section { padding: 100px 6%; } .section-label { font-family: 'Space Mono', monospace; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-mid); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; } .section-label::before { content: ''; width: 28px; height: 1px; background: var(--green-bright); display: inline-block; } .section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4.5vw, 4rem); font-weight: 300; line-height: 1.12; color: var(--text-dark); letter-spacing: -0.01em; } .section-title em { font-style: italic; color: var(--green-mid); } .section-title .gold { font-style: italic; color: var(--gold); } .section-body { font-size: 1.05rem; line-height: 1.8; color: var(--text-muted); font-weight: 300; max-width: 680px; } /* ── WHAT IS ── */ .what-is { background: linear-gradient(180deg, #f0f7f2 0%, #eef5f0 40%, #f8f5ef 100%); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; } .what-is::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 200px; background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(34,197,94,0.06) 0%, transparent 70%); pointer-events: none; } .what-is-visual { position: relative; } .scan-card { background: linear-gradient(135deg, #0d3320, #1a3a6b); border-radius: 20px; padding: 2.5rem; border: 1px solid rgba(34,197,94,0.2); box-shadow: 0 20px 60px rgba(13,51,32,0.2); } .scan-card-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.8rem; } .scan-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.3); display: flex; align-items: center; justify-content: center; } .scan-icon svg { color: var(--green-mid); flex-shrink: 0; } .scan-card-title { font-family: 'Space Mono', monospace; font-size: 0.75rem; color: var(--green-glow); letter-spacing: 0.08em; text-transform: uppercase; } .scan-card-sub { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 2px; } .ingredient-row { display: flex; justify-content: space-between; align-items: center; padding: 0.7rem 1rem; border-radius: 10px; margin-bottom: 0.5rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); font-size: 0.82rem; } .ing-name { color: rgba(255,255,255,0.75); font-weight: 400; } .ing-badge { padding: 0.2rem 0.65rem; border-radius: 50px; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.04em; } .safe { background: rgba(34,197,94,0.15); color: #4ade80; border: 1px solid rgba(34,197,94,0.3); } .caution { background: rgba(234,179,8,0.15); color: #fbbf24; border: 1px solid rgba(234,179,8,0.3); } .alert { background: rgba(239,68,68,0.15); color: #f87171; border: 1px solid rgba(239,68,68,0.3); } .score-row { display: flex; align-items: center; justify-content: space-between; margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,0.08); } .score-label { font-size: 0.8rem; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; } .score-val { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 600; color: var(--green-glow); line-height: 1; } .score-bar-wrap { flex: 1; margin: 0 1.2rem; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.08); } .score-bar { height: 100%; border-radius: 3px; background: var(--grad-accent); width: 78%; } .float-badge { position: absolute; top: -20px; right: -20px; background: var(--grad-gold); color: var(--dark); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.5rem 1.1rem; border-radius: 50px; box-shadow: 0 8px 30px rgba(201,168,76,0.4); } /* ── WHY SAFELABEL ── */ .why-section { background: linear-gradient(180deg, #eef5f0 0%, #f8f5ef 100%); text-align: center; } .why-section .section-label { justify-content: center; } .why-section .section-label::before { display: none; } .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; } .why-card { background: #fff; border: 1px solid rgba(34,197,94,0.1); border-radius: 20px; padding: 2.2rem; text-align: left; transition: all 0.3s; position: relative; overflow: hidden; } .why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-accent); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; } .why-card:hover::before { transform: scaleX(1); } .why-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(13,51,32,0.1); } .why-icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, rgba(34,197,94,0.12), rgba(59,130,246,0.12)); border: 1px solid rgba(34,197,94,0.15); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.3rem; color: var(--green-mid); } .why-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.7rem; } .why-card p { font-size: 0.9rem; line-height: 1.7; color: var(--text-muted); font-weight: 300; } /* ── HOW IT WORKS ── */ .how-section { background: var(--dark); position: relative; overflow: hidden; } .how-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 0% 50%, rgba(34,197,94,0.07) 0%, transparent 60%), radial-gradient(ellipse 60% 60% at 100% 50%, rgba(59,130,246,0.07) 0%, transparent 60%); pointer-events: none; } .how-section .section-title { color: #fff; } .how-section .section-label { color: var(--green-glow); } .how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 4.5rem; position: relative; z-index: 1; } .how-steps::before { content: ''; position: absolute; top: 30px; left: 12.5%; right: 12.5%; height: 1px; background: linear-gradient(90deg, transparent, rgba(34,197,94,0.3), rgba(59,130,246,0.3), transparent); } .step-card { text-align: center; } .step-num { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-family: 'Space Mono', monospace; font-size: 1rem; font-weight: 700; color: #fff; position: relative; } .step-num-inner { width: 100%; height: 100%; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--grad-accent); box-shadow: 0 0 30px rgba(34,197,94,0.3); } .step-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: #fff; margin-bottom: 0.7rem; } .step-card p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; font-weight: 300; } /* ── WHO IT HELPS ── */ .who-section { background: var(--cream); } .who-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 4rem; } .who-card { background: linear-gradient(135deg, #fff, #f8f5ef); border: 1px solid rgba(34,197,94,0.12); border-radius: 16px; padding: 1.8rem 1.2rem; text-align: center; transition: all 0.3s; } .who-card:hover { border-color: rgba(34,197,94,0.35); box-shadow: 0 10px 30px rgba(13,51,32,0.08); transform: translateY(-4px); } .who-emoji { font-size: 2rem; margin-bottom: 0.9rem; display: block; color: var(--green-mid); } .who-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.4rem; } .who-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; } /* ── IMPACT / WORLD ── */ .impact-section { background: linear-gradient(135deg, #0d3320 0%, #0d2240 50%, #0d3320 100%); text-align: center; position: relative; overflow: hidden; } .impact-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(34,197,94,0.06) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; } .impact-section .section-title { color: #fff; } .impact-section .section-label { color: var(--green-glow); justify-content: center; } .impact-section .section-label::before { display: none; } .impact-body { font-size: 1.15rem; line-height: 1.85; color: rgba(255,255,255,0.6); max-width: 720px; margin: 1.5rem auto 0; font-weight: 300; } .impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; text-align: left; position: relative; z-index: 1; } .impact-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(34,197,94,0.15); border-radius: 18px; padding: 2rem; transition: all 0.3s; } .impact-card:hover { background: rgba(34,197,94,0.07); border-color: rgba(34,197,94,0.3); transform: translateY(-4px); } .impact-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; background: var(--grad-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 0.5rem; } .impact-card h4 { font-size: 1rem; color: rgba(255,255,255,0.85); font-weight: 500; margin-bottom: 0.5rem; } .impact-card p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.65; } /* ── VISION ── */ .vision-section { background: var(--cream); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; } .vision-list { margin-top: 2rem; } .vision-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(34,197,94,0.1); } .vision-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright); margin-top: 0.45rem; flex-shrink: 0; box-shadow: 0 0 8px rgba(34,197,94,0.5); } .vision-item p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.65; } .vision-quote { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-style: italic; font-weight: 300; color: var(--text-dark); line-height: 1.5; border-left: 3px solid var(--green-bright); padding-left: 1.5rem; margin-top: 2.5rem; } /* ── SOCIAL IMPACT ── */ .social-section { background: linear-gradient(180deg, #f8f5ef 0%, #eef5f0 100%); text-align: center; } .social-section .section-label { justify-content: center; } .social-section .section-label::before { display: none; } .social-section .section-body { margin: 1.2rem auto 0; text-align: center; } .world-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 4rem; text-align: left; } .world-card { background: #fff; border-radius: 20px; padding: 2.2rem; border: 1px solid rgba(34,197,94,0.1); display: flex; gap: 1.5rem; align-items: flex-start; transition: all 0.3s; } .world-card:hover { border-color: rgba(34,197,94,0.3); box-shadow: 0 12px 40px rgba(13,51,32,0.08); } .world-card-icon { width: 50px; height: 50px; flex-shrink: 0; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(59,130,246,0.1)); border: 1px solid rgba(34,197,94,0.15); color: var(--green-mid); } .world-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.5rem; } .world-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; font-weight: 300; } /* ── CTA ── */ .cta-section { background: var(--grad-main); text-align: center; padding: 120px 6%; position: relative; overflow: hidden; } .cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(34,197,94,0.1) 0%, transparent 70%); pointer-events: none; } .cta-section .section-title { color: #fff; } .cta-section .section-label { color: var(--green-glow); justify-content: center; } .cta-section .section-label::before { display: none; } .cta-sub { font-size: 1.1rem; color: rgba(255,255,255,0.55); font-weight: 300; max-width: 580px; margin: 1.2rem auto 0; line-height: 1.75; } .cta-btns { display: flex; gap: 1rem; justify-content: center; margin-top: 2.8rem; flex-wrap: wrap; } .btn-gold { display: inline-flex; align-items: center; gap: 0.6rem; padding: 1rem 2.5rem; border-radius: 50px; background: var(--grad-gold); color: var(--dark); font-weight: 600; font-size: 1rem; text-decoration: none; letter-spacing: 0.02em; box-shadow: 0 0 30px rgba(201,168,76,0.45); transition: all 0.3s; border: none; cursor: pointer; position: relative; overflow: hidden; } .btn-gold::before { content: ''; position: absolute; inset: -2px; border-radius: 52px; background: linear-gradient(135deg, rgba(201,168,76,0.6), rgba(232,201,122,0.3)); filter: blur(12px); opacity: 0; transition: opacity 0.3s; z-index: -1; } .btn-gold:hover { transform: translateY(-3px); box-shadow: 0 0 50px rgba(201,168,76,0.6); } .btn-gold:hover::before { opacity: 1; } .cta-note { margin-top: 1.5rem; font-size: 0.8rem; color: rgba(255,255,255,0.3); letter-spacing: 0.05em; } .cta-section .btn-secondary { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.8); } .cta-section .btn-secondary:hover { border-color: var(--green-glow); color: var(--green-glow); } /* ── FOOTER ── */ footer { background: #080f0b; padding: 60px 6% 40px; border-top: 1px solid rgba(34,197,94,0.1); } .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.06); } .footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; } .footer-brand-logo img { width: 36px; height: 36px; border-radius: 8px; } .footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: #fff; font-weight: 600; } .footer-brand-name span { color: var(--green-glow); } .footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 260px; font-weight: 300; } .footer-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem; color: var(--green-glow); margin-top: 1rem; opacity: 0.8; } .footer-col h5 { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 500; margin-bottom: 1.2rem; font-family: 'Space Mono', monospace; } .footer-col ul { list-style: none; } .footer-col ul li { margin-bottom: 0.65rem; } .footer-col ul li a { color: rgba(255,255,255,0.4); font-size: 0.875rem; text-decoration: none; transition: color 0.2s; font-weight: 300; } .footer-col ul li a:hover { color: var(--green-glow); } .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; flex-wrap: wrap; gap: 1rem; } .footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.25); font-weight: 300; } .footer-mail { font-size: 0.8rem; color: rgba(255,255,255,0.35); display: flex; align-items: center; gap: 0.4rem; } .footer-mail a { color: var(--green-glow); text-decoration: none; } .footer-mail a:hover { text-decoration: underline; } /* ── SCROLL ANIMATIONS ── */ .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; } .reveal.visible { opacity: 1; transform: translateY(0); } /* ── SKINCARE SECTION ── */ .skincare-hero { background: var(--grad-main); text-align: center; position: relative; overflow: hidden; padding: 100px 6% 80px; } .skincare-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 50% 30%, rgba(34,197,94,0.1), transparent 70%); pointer-events: none; } .skincare-hero .section-title { color: #fff; } .skincare-hero .section-label { color: var(--green-glow); justify-content: center; } .skincare-hero .section-label::before { display: none; } .skincare-intro { max-width: 720px; margin: 1.5rem auto 0; font-size: 1.05rem; color: rgba(255,255,255,0.55); line-height: 1.8; font-weight: 300; } .skincare-intro strong { color: rgba(255,255,255,0.8); font-weight: 500; } .skincare-sub { background: var(--cream); padding: 80px 6%; } .skincare-sub .section-label::before { display: none; } .skincare-sub .section-body { margin-top: 1rem; } /* feature bullets */ .feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; margin-top: 2rem; list-style: none; } .feature-list li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; } .feature-list li svg { color: var(--green-bright); flex-shrink: 0; margin-top: 3px; } /* skin type cards */ .skin-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 2.5rem; } .skin-card { background: #fff; border: 1px solid rgba(34,197,94,0.1); border-radius: 18px; padding: 1.8rem 1.4rem; transition: all 0.3s; text-align: left; } .skin-card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(13,51,32,0.1); border-color: rgba(34,197,94,0.3); } .skin-card-icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(59,130,246,0.1)); border: 1px solid rgba(34,197,94,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; } .skin-card-icon svg { color: var(--green-glow); } .skin-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.5rem; } .skin-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; } /* routine steps */ .routine-steps { display: flex; gap: 1.2rem; margin-top: 2.5rem; flex-wrap: wrap; justify-content: center; } .routine-step { display: flex; align-items: center; gap: 0.7rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 0.8rem 1.2rem; backdrop-filter: blur(8px); transition: all 0.3s; } .routine-step:hover { background: rgba(34,197,94,0.1); border-color: rgba(34,197,94,0.3); } .routine-num { width: 28px; height: 28px; border-radius: 50%; background: var(--grad-accent); display: flex; align-items: center; justify-content: center; font-family: 'Space Mono', monospace; font-size: 0.7rem; font-weight: 700; color: #fff; flex-shrink: 0; } .routine-step span:last-child { font-size: 0.85rem; color: rgba(255,255,255,0.75); font-weight: 400; } /* scan feature */ .scan-feature { background: linear-gradient(180deg, #eef5f0 0%, #f8f5ef 100%); padding: 80px 6%; } .scan-feature .section-label { justify-content: center; } .scan-feature .section-label::before { display: none; } .scan-highlights { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 2.5rem; } .scan-hl { background: #fff; border: 1px solid rgba(34,197,94,0.1); border-radius: 16px; padding: 1.6rem 1.2rem; text-align: center; transition: all 0.3s; } .scan-hl:hover { border-color: rgba(34,197,94,0.3); box-shadow: 0 8px 25px rgba(13,51,32,0.08); transform: translateY(-3px); } .scan-hl svg { color: var(--green-mid); margin-bottom: 0.8rem; } .scan-hl h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.3rem; } .scan-hl p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; } /* closing quote */ .skincare-close { background: var(--cream); padding: 80px 6%; text-align: center; } .skincare-close .section-label { justify-content: center; } .skincare-close .section-label::before { display: none; } .skincare-quote { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.4rem, 3vw, 2rem); font-style: italic; font-weight: 300; color: var(--text-dark); line-height: 1.6; max-width: 700px; margin: 1.5rem auto 0; } .skincare-quote strong { color: var(--green-mid); font-weight: 600; } /* ── SCROLL PROGRESS BAR ── */ .scroll-progress { position: fixed; top: 0; left: 0; width: 0%; height: 3px; background: var(--grad-accent); z-index: 9999; transition: width 0.1s linear; } /* ── SCANNING DEMO SECTION ── */ .scanning-demo { background: linear-gradient(180deg, #eef5f0 0%, #f8f5ef 100%); padding: 100px 6%; text-align: center; } .scanning-demo .section-label { justify-content: center; } .scanning-demo .section-label::before { display: none; } .scanning-flow { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 3rem; max-width: 800px; margin-left: auto; margin-right: auto; } .scanning-step { flex: 1; min-width: 160px; max-width: 260px; background: #fff; backdrop-filter: blur(12px); border: 1px solid rgba(34,197,94,0.15); border-radius: 16px; padding: 0; box-shadow: 0 10px 30px rgba(13,51,32,0.06); transition: transform 0.3s, box-shadow 0.3s; overflow: hidden; display: flex; flex-direction: column; } .scanning-step:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(34,197,94,0.12); } .scanning-step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--grad-accent); color: #fff; font-family: 'Space Mono', monospace; font-size: 0.9rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; } .scanning-step h4 { font-size: 0.95rem; color: var(--text-dark); margin-bottom: 0.4rem; } .scanning-step p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; } .scanning-step-img-wrap { width: 100%; aspect-ratio: 4/3; overflow: hidden; background: #f0f7f2; flex-shrink: 0; } .scanning-step-img { width: 100%; height: 100%; object-fit: cover; display: block; } .scanning-step .scanning-step-num { margin-top: 1rem; } .scanning-step h4, .scanning-step p { padding: 0 1.25rem; } .scanning-step p { padding-bottom: 1.5rem; } .scanning-arrow { color: var(--green-bright); flex-shrink: 0; display: flex; align-items: center; justify-content: center; } .scanning-arrow svg { color: currentColor; } .title-arrow { display: inline-flex; align-items: center; vertical-align: middle; margin: 0 0.2em; color: var(--green-mid); } .title-arrow svg { color: currentColor; } /* ── CATEGORY CARDS ── */ .category-section { background: var(--cream); padding: 100px 6%; } .category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; margin-top: 3rem; } .category-card { background: #fff; border: 1px solid rgba(34,197,94,0.12); border-radius: 20px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; text-align: center; } .category-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(13,51,32,0.1); border-color: rgba(34,197,94,0.25); } .category-card-img { width: 100%; aspect-ratio: 1; object-fit: cover; background: #f0f7f2; } .category-card-body { padding: 1.25rem 1rem; } .category-card-icon { width: 44px; height: 44px; margin: 0 auto 0.75rem; border-radius: 12px; background: linear-gradient(135deg, rgba(34,197,94,0.12), rgba(59,130,246,0.1)); border: 1px solid rgba(34,197,94,0.2); display: flex; align-items: center; justify-content: center; } .category-card-icon svg { color: var(--green-mid); flex-shrink: 0; } .category-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.4rem; } .category-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; } /* ── LARGE AI ANALYSIS CARD (ingredient indicators) ── */ .analysis-feature { background: linear-gradient(180deg, #f8f5ef 0%, #eef5f0 100%); padding: 100px 6%; } .analysis-card-large { max-width: 520px; margin: 2rem auto 0; background: linear-gradient(135deg, #0d3320, #1a3a6b); border-radius: 24px; padding: 2.5rem; border: 1px solid rgba(34,197,94,0.25); box-shadow: 0 30px 70px rgba(13,51,32,0.25); } .analysis-card-large .score-bar-wrap { height: 10px; border-radius: 5px; overflow: hidden; margin: 1rem 0 1.5rem; } .analysis-card-large .score-bar { height: 100%; border-radius: 5px; background: var(--grad-accent); width: 0; transition: width 1.2s ease; } .analysis-card-large .ingredient-row { padding: 0.85rem 1rem; font-size: 0.9rem; } .analysis-card-large .ing-safe .ing-name { color: #4ade80; } .analysis-card-large .ing-safe .ing-name::before { content: ''; display: inline-block; width: 1em; height: 1em; margin-right: 0.35em; vertical-align: -0.2em; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234ade80' stroke-width='2.5'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") no-repeat center/contain; } .analysis-card-large .ing-caution .ing-name { color: #fbbf24; } .analysis-card-large .ing-caution .ing-name::before { content: ''; display: inline-block; width: 1em; height: 1em; margin-right: 0.35em; vertical-align: -0.2em; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fbbf24' stroke-width='2'%3E%3Cpath d='m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z'/%3E%3Cpath d='M12 9v4'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E") no-repeat center/contain; } .analysis-card-large .ing-avoid .ing-name { color: #f87171; } .analysis-card-large .ing-avoid .ing-name::before { content: ''; display: inline-block; width: 1em; height: 1em; margin-right: 0.35em; vertical-align: -0.2em; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f87171' stroke-width='2.5'%3E%3Cpath d='M18 6 6 18'/%3E%3Cpath d='m6 6 12 12'/%3E%3C/svg%3E") no-repeat center/contain; } /* ── BENEFITS STAGGERED GRID ── */ .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; } .why-grid .why-card:nth-child(odd) { animation-delay: 0.1s; } .why-grid .why-card:nth-child(3n) { margin-top: 1.5rem; } .why-grid .why-card:nth-child(3n+2) { margin-top: 0.75rem; } /* ── PROCESS TIMELINE VERTICAL ── */ .how-section .how-timeline { display: flex; flex-direction: column; gap: 0; margin-top: 4rem; max-width: 560px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; } .how-timeline .step-card { display: grid; grid-template-columns: 80px 1fr; gap: 2rem; text-align: left; align-items: start; padding: 2rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); opacity: 0; transform: translateX(-20px); transition: opacity 0.6s ease, transform 0.6s ease; } .how-timeline .step-card.visible { opacity: 1; transform: translateX(0); } .how-timeline .step-card:last-child { border-bottom: none; } .how-timeline .step-num { width: 64px; height: 64px; margin: 0; box-shadow: 0 0 40px rgba(34,197,94,0.4); animation: stepGlow 3s ease-in-out infinite; } @keyframes stepGlow { 0%, 100% { box-shadow: 0 0 30px rgba(34,197,94,0.3); } 50% { box-shadow: 0 0 50px rgba(34,197,94,0.5); } } .how-timeline .step-card h3 { margin-bottom: 0.5rem; } .how-timeline .step-card p { margin: 0; } /* ── TESTIMONIALS ── */ .testimonials-section { background: linear-gradient(180deg, #f8f5ef 0%, #eef5f0 100%); padding: 100px 6%; text-align: center; } .testimonials-section .section-label { justify-content: center; } .testimonials-section .section-label::before { display: none; } .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; text-align: left; } .testimonial-card { background: #fff; border: 1px solid rgba(34,197,94,0.1); border-radius: 20px; padding: 2rem; transition: transform 0.3s, box-shadow 0.3s; } .testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(13,51,32,0.08); } .testimonial-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; } .testimonial-card .testimonial-author { font-weight: 600; color: var(--text-dark); font-size: 0.9rem; } .testimonial-card .testimonial-role { font-size: 0.8rem; color: var(--text-light); } /* ── FINAL CTA ── */ .final-cta-section { background: linear-gradient(135deg, #0d3320 0%, #1a3a6b 50%, #0d2b1a 100%); padding: 100px 6%; text-align: center; position: relative; overflow: hidden; } .final-cta-section .section-title { color: #fff; } .final-cta-section .section-label { color: var(--green-glow); justify-content: center; } .final-cta-section .section-label::before { display: none; } .final-cta-sub { font-size: 1.1rem; color: rgba(255,255,255,0.6); max-width: 560px; margin: 1rem auto 2rem; line-height: 1.7; } .final-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; } .final-cta-btns .btn-primary { min-height: 52px; min-width: 180px; } .final-cta-btns .btn-secondary { border-color: rgba(255,255,255,0.3); color: #fff; } .final-cta-btns .btn-secondary:hover { border-color: var(--green-glow); color: var(--green-glow); } /* ── NAVBAR: keep white on scroll ── */ nav, nav.scrolled { background: #ffffff !important; backdrop-filter: none; -webkit-backdrop-filter: none; } .btn-nav-solid { background: var(--grad-accent); color: #fff; box-shadow: 0 0 24px rgba(34,197,94,0.35); } .btn-nav-solid:hover { box-shadow: 0 0 36px rgba(34,197,94,0.5); transform: translateY(-2px); } /* ── RESPONSIVE ── */ @media (max-width: 1024px) { .hero-image-wrap { height: 36vw; min-height: 240px; max-height: 360px; } .category-grid { grid-template-columns: repeat(3, 1fr); } .what-is { grid-template-columns: 1fr; } .why-grid { grid-template-columns: repeat(2, 1fr); } .why-grid .why-card:nth-child(3n), .why-grid .why-card:nth-child(3n+2) { margin-top: 0; } .how-steps { grid-template-columns: repeat(2, 1fr); } .how-steps::before { display: none; } .who-grid { grid-template-columns: repeat(3, 1fr); } .vision-section { grid-template-columns: 1fr; } .footer-top { grid-template-columns: 1fr 1fr; } .testimonials-grid { grid-template-columns: 1fr; } } @media (max-width: 768px) { .nav-links { display: none; } .nav-cta { display: none; } .nav-hamburger { display: flex; } nav { padding: 0 4%; height: 64px; } .nav-logo-text { font-size: 1.1rem; } .hero-feature-cards { display: none !important; } .hero-new-content { padding: 2rem 5% 2rem; } .nav-mobile-menu { top: 64px; } .hero-new-title { font-size: clamp(1.5rem, 5.5vw, 2rem); } .hero-new-sub { font-size: 0.9rem; } .hero-new-image-wrap { height: 42vh; min-height: 260px; max-height: 420px; } .hero-new-image-wrap::after { height: 180px; } section { padding: 72px 5%; } .scanning-demo, .category-section, .analysis-feature, .testimonials-section, .final-cta-section { padding: 72px 5%; } .hero-image-wrap { height: 45vw; min-height: 220px; max-height: 300px; margin-top: 94px; } .hero-left { margin-top: -1rem; padding: 0 5% 3.5rem; } .hero h1 { font-size: clamp(1.9rem, 8vw, 2.8rem); } .hero-sub { font-size: 0.95rem; margin: 0.85rem auto 0; line-height: 1.65; } .hero-btns { margin-top: 1.5rem; } .btn-primary, .btn-secondary { padding: 0.85rem 1.8rem; font-size: 0.95rem; min-height: 48px; } .hero-pills { margin-top: 1.25rem; gap: 0.5rem; } .pill { font-size: 0.72rem; padding: 0.4rem 0.85rem; } .hero-stats { gap: 1.75rem; margin-top: 1.5rem; padding-top: 1.25rem; } .hero-stat-num { font-size: 1.5rem; } .hero-stat-label { font-size: 0.7rem; } .hero-image-caption { bottom: 16px; left: 50%; transform: translateX(-50%); padding: 10px 14px; border-radius: 12px; } .hero-image-caption-icon { width: 30px; height: 30px; border-radius: 8px; font-size: 0.85rem; } .hero-image-caption-text { font-size: 0.72rem; } .hero-image-caption-text span { font-size: 0.6rem; } .scanning-flow { flex-direction: column; } .scanning-arrow { transform: rotate(90deg); } .category-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } .analysis-card-large { margin: 1.5rem 1rem; padding: 1.75rem; } .how-timeline .step-card { grid-template-columns: 60px 1fr; gap: 1.25rem; padding: 1.5rem 0; } .how-timeline .step-num { width: 52px; height: 52px; font-size: 0.85rem; } .why-grid { grid-template-columns: 1fr; } .impact-grid { grid-template-columns: 1fr; } .how-steps { grid-template-columns: 1fr; } .who-grid { grid-template-columns: repeat(2, 1fr); } .world-grid { grid-template-columns: 1fr; } .skin-grid { grid-template-columns: repeat(2, 1fr); } .feature-list { grid-template-columns: 1fr; } .scan-highlights { grid-template-columns: repeat(2, 1fr); } .routine-steps { gap: 0.6rem; } .routine-step { padding: 0.6rem 0.9rem; } .footer-top { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } /* let first section peek on mobile */ .what-is { padding-top: 50px; } .what-is .section-label, .what-is .section-title { opacity: 1; transform: none; } } @media (max-width: 420px) { .who-grid { grid-template-columns: 1fr; } .hero h1 { font-size: 1.8rem; } .hero-pills { gap: 0.3rem; } .pill { font-size: 0.62rem; padding: 0.25rem 0.6rem; } .hero-image-wrap { height: 50vw; min-height: 200px; max-height: 260px; } .hero-image-caption { bottom: 10px; padding: 8px 12px; gap: 8px; border-radius: 10px; } } /* ── WEBGL 3D MODEL CONTAINERS ── */ #webgl-canvas-wrapper { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; } #webgl-canvas-wrapper canvas { display: block; width: 100%; height: 100%; } .webgl-model-container { position: absolute; overflow: hidden; z-index: 0; } .hero .hero-left, .hero .hero-badge, .hero h1, .hero .hero-sub, .hero .hero-btns, .hero .hero-stats, .hero .hero-pills { position: relative; z-index: 2; } .what-is > div:not(.webgl-model-container) { position: relative; z-index: 2; } .how-section .section-label, .how-section .section-title, .how-section .section-body, .how-section .how-steps, .how-section .how-timeline { position: relative; z-index: 2; } .skincare-hero .section-label, .skincare-hero .section-title, .skincare-hero .skincare-intro { position: relative; z-index: 2; } /* Corners: small viewports, out of the way */ .hero .webgl-model-container { top: 24px; right: 24px; width: 200px; height: 200px; } .what-is .webgl-model-container { bottom: 24px; left: 24px; width: 200px; height: 200px; } .how-section .webgl-model-container { bottom: 24px; right: 24px; width: 180px; height: 180px; } .skincare-hero .webgl-model-container { top: 24px; right: 24px; width: 180px; height: 180px; } @media (max-width: 1024px) { .hero .webgl-model-container { width: 160px; height: 160px; top: 20px; right: 20px; } .what-is .webgl-model-container { width: 160px; height: 160px; bottom: 20px; left: 20px; } .how-section .webgl-model-container { width: 150px; height: 150px; bottom: 20px; right: 20px; } .skincare-hero .webgl-model-container { width: 150px; height: 150px; top: 20px; right: 20px; } } @media (max-width: 768px) { .hero .webgl-model-container { width: 140px; height: 140px; top: 16px; right: 16px; } .what-is .webgl-model-container { width: 130px; height: 130px; bottom: 16px; left: 16px; } .how-section .webgl-model-container { width: 120px; height: 120px; bottom: 16px; right: 16px; } .skincare-hero .webgl-model-container { width: 120px; height: 120px; top: 16px; right: 16px; } }