/* ---=== base ===--- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--dark); overflow-x: hidden; letter-spacing: 1px; }

/* ---=== root ===--- */
:root {
  --green:        #3a8c4c;
  --green-light:  #4caf64;
  --green-dim:    rgba(58, 140, 76, 0.15);
  --dark:         #0f1f14;
  --dark-2:       #1a3023;
  --white:        #f9faf8;
  --gray:         #8a9488;
  --gray-light:   #e8ebe6;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --gutter:       5vw;
  --max-width:    1200px;
  --radius-sm:    10px;
  --radius-md:    16px;
  --radius-lg:    28px;
  --radius-pill:  100px;
}


/* ---=== animations ===--- */
@keyframes fadeUp    { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn    { from { opacity: 0; } to { opacity: 1; } }
@keyframes marquee   { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes breathe   { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.07); } }
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(20px, -30px) scale(1.05); }
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0    rgba(58, 140, 76, 0.6); }
  50%       { box-shadow: 0 0 0 10px rgba(58, 140, 76, 0); }
}

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }


/* ---=== section & buttons ===--- */
section { position: relative; overflow: hidden; }
.section-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); }
.section-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 2rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; transition: color 0.3s, text-shadow 0.3s; }
.section-tag:hover { color: var(--green-light); text-shadow: 0 0 8px rgba(76, 175, 100, 0.6); }
.section-tag-icon { width: 45px; height: 45px; object-fit: contain; filter: drop-shadow(0 0 0px rgba(58,140,76,0)); transition: filter 0.3s; }
.section-tag:hover .section-tag-icon { filter: drop-shadow(0 0 6px rgba(58, 140, 76, 0.9)); }
.section-title { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 4rem); font-weight: 600; letter-spacing: -0.01em; line-height: 1.05; margin-bottom: 24px; color: #000; }
.section-sub   { font-size: 1.15rem; font-weight: 300; line-height: 1.9; color: var(--gray); max-width: 540px; border-left: 2px solid var(--green); padding-left: 20px; }
.btn-primary { background: var(--green); color: #fff; font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.03em; padding: 14px 32px; border-radius: var(--radius-pill); text-decoration: none; border: none; cursor: pointer; box-shadow: 0 4px 20px rgba(58,140,76,0.3); transition: background 0.2s, transform 0.2s, box-shadow 0.2s; }
.btn-primary:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(58,140,76,0.4); }
.btn-ghost { display: flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 0.85rem; font-weight: 500; color: var(--dark); text-decoration: none; opacity: 0.6; transition: opacity 0.2s, gap 0.2s; }
.btn-ghost:hover { opacity: 1; gap: 12px; }
.btn-outline { background: transparent; color: rgba(255,255,255,0.7); font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; padding: 14px 32px; border-radius: var(--radius-pill); text-decoration: none; border: 1px solid rgba(255,255,255,0.15); transition: border-color 0.2s, color 0.2s, transform 0.2s; }
.btn-outline:hover { border-color: rgba(255,255,255,0.4); color: #fff; transform: translateY(-2px); }


/* ---=== navigation menu ===--- */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0 var(--gutter); height: 72px; display: flex; align-items: center; justify-content: space-between; background: rgba(15,31,20,0.92); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid rgba(255,255,255,0.06); transition: background 0.4s, border-color 0.4s, box-shadow 0.4s; }
nav .nav-links a       { color: #fff; opacity: 0.7; }
nav .nav-links a:hover { opacity: 1; color: var(--green-light); }
nav .nav-logo img      { filter: brightness(0) invert(1); }
nav.nav-light                    { background: rgba(249,250,248,0.92); border-bottom-color: rgba(58,140,76,0.1); }
nav.nav-light .nav-links a       { color: var(--dark); opacity: 0.55; }
nav.nav-light .nav-links a:hover { opacity: 1; color: var(--green); }
nav.nav-light .nav-logo img      { filter: none; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 36px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-family: var(--font-body); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; transition: opacity 0.2s, color 0.2s; }
.nav-cta { background: var(--green) !important; color: #fff !important; opacity: 1 !important; padding: 9px 22px; border-radius: var(--radius-pill); transition: background 0.2s, transform 0.2s !important; }
.nav-cta:hover { background: var(--green-light) !important; transform: translateY(-1px); }


/* ---=== hero section ===--- */
.hero { min-height: 100vh; padding: 72px var(--gutter) 0; display: flex; align-items: center; position: relative; overflow: hidden; background: #eef5f0; }
.hero-bg   { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.18; }
.hero-blob-1 { width: 600px; height: 600px; background: radial-gradient(circle, var(--green-light), transparent 70%); top: -100px; right: -100px; animation: blobFloat 8s ease-in-out infinite; }
.hero-blob-2 { width: 400px; height: 400px; background: radial-gradient(circle, #a8d5b0, transparent 70%); bottom: 80px; left: var(--gutter); animation: blobFloat 10s ease-in-out infinite reverse; }
.hero-grid   { position: absolute; inset: 0; background-image: linear-gradient(rgba(58,140,76,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(58,140,76,0.04) 1px, transparent 1px); background-size: 60px 60px; }
.hero-slash  { position: absolute; top: 0; right: 0; width: 45%; height: 100%; background: var(--dark); clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%); z-index: 0; }
.hero-inner { position: relative; z-index: 2; max-width: var(--max-width); width: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.hero-left  { display: flex; flex-direction: column; align-items: flex-start; }
.hero-right-dark { display: flex; flex-direction: column; justify-content: center; padding: 40px 20px 40px 40px; }
.hero-right-text { font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 2.2rem); font-weight: 400; font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.5; margin-bottom: 32px; }
.hero-right-text em { color: var(--green-light); font-style: normal; }
.hero-right-tag     { font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.hero-title { font-family: var(--font-display); font-size: clamp(3.8rem, 7vw, 7rem); font-weight: 600; line-height: 0.95; letter-spacing: -0.01em; color: var(--dark); margin-bottom: 24px; opacity: 0; animation: fadeUp 0.7s 0.25s forwards; }
.hero-title .accent { color: var(--green); position: relative; display: inline-block; }
.hero-title .accent::after { content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--green), transparent); border-radius: 2px; }
.hero-sub     { font-size: 1rem; font-weight: 300; line-height: 1.75; color: var(--gray); max-width: 560px; margin-bottom: 40px; opacity: 0; animation: fadeUp 0.7s 0.4s forwards; letter-spacing: 0px; }
.hero-actions { display: flex; align-items: center; gap: 16px; opacity: 0; animation: fadeUp 0.7s 0.55s forwards; }
.scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0; animation: fadeIn 1s 1.2s forwards; }
.scroll-hint span { font-family: var(--font-body); font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--green), transparent); animation: scrollLine 2s ease-in-out infinite; }
.hero-pulse-wrap { flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.logo-stage      { position: relative; display: flex; align-items: center; justify-content: center; width: 320px; height: 320px; }
.ripple-canvas   { position: absolute; inset: 0; pointer-events: none; }
.pulse-logo-img  { position: relative; z-index: 1; width: 133px; height: 133px; animation: breathe 4s ease-in-out infinite; transform-origin: center; }


/* ---=== marquee section ===--- */
.marquee-section { background: var(--dark); padding: 18px 0; overflow: hidden; border-top: 1px solid var(--dark-2); border-bottom: 1px solid var(--dark-2); }
.marquee-track   { display: flex; animation: marquee 28s linear infinite; width: max-content; }
.marquee-item    { display: flex; align-items: center; gap: 28px; padding: 0 28px; white-space: nowrap; font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.marquee-dot     { width: 5px; height: 5px; background: var(--green); border-radius: 50%; flex-shrink: 0; }
.logo-moment         { background: var(--white); padding: 80px 0 60px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; }
.logo-grow-img       { width: 300px; max-width: 65vw; height: auto; display: block; will-change: transform; }
.logo-moment-caption { font-family: var(--font-display); font-size: clamp(1rem, 2vw, 1.4rem); font-weight: 300; font-style: italic; color: var(--gray); letter-spacing: 0.02em; }


/* ---=== about section ===--- */
.about-strip { background: var(--white); padding: 80px 0 120px; }
.about-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual-box { background: var(--dark); border-radius: var(--radius-lg); padding: 48px 40px; position: relative; overflow: hidden; }
.about-visual-box::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; background: radial-gradient(circle, var(--green-dim), transparent 70%); border-radius: 50%; }
.mission-text        { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; font-style: italic; line-height: 1.45; color: #fff; position: relative; z-index: 1; }
.mission-text .green { color: var(--green-light); }
.mission-since       { margin-top: 32px; font-size: 0.82rem; color: rgba(255,255,255,0.35); font-weight: 300; position: relative; z-index: 1; letter-spacing: 0.04em; }


/* ---=== products section ===--- */
.products-section { background: var(--dark); padding: 120px 0; }
.products-section .section-title { color: var(--white); }
.products-section .section-sub   { color: rgba(255,255,255,0.4); }
.products-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 60px; gap: 32px; }
.view-all-link   { font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green-light); text-decoration: none; display: flex; align-items: center; gap: 8px; opacity: 0.8; flex-shrink: 0; transition: opacity 0.2s, gap 0.2s; }
.view-all-link:hover { opacity: 1; gap: 12px; }
.products-list { display: flex; flex-direction: column; gap: 2px; }
.product-row { display: grid; grid-template-columns: 80px 1fr auto; align-items: center; gap: 32px; padding: 32px 24px; border-bottom: 1px solid rgba(255,255,255,0.07); text-decoration: none; color: inherit; position: relative; border-radius: var(--radius-md); transition: background 0.25s; }
.product-row::before { content: ''; position: absolute; inset: 0; border-radius: var(--radius-md); background: rgba(255,255,255,0.03); opacity: 0; transition: opacity 0.25s; }
.product-row:hover::before { opacity: 1; }
.product-row:hover .product-row-arrow { background: var(--green); color: #fff; transform: translate(2px,-2px); }
.product-row-logo  { width: 64px; height: 64px; border-radius: var(--radius-md); background: transparent; object-fit: contain; flex-shrink: 0; }
.product-row-body  { display: flex; flex-direction: column; gap: 6px; }
.product-row-meta  { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.product-row-name  { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--white); letter-spacing: -0.01em; line-height: 1; }
.product-row-desc  { font-size: 1.1rem; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.6; max-width: 600px; }
.product-row-arrow { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); font-size: 1rem; transition: background 0.2s, color 0.2s, transform 0.2s; }
.product-badge     { display: inline-block; font-family: var(--font-body); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; background: rgba(76,175,100,0.12); border: 1px solid rgba(76,175,100,0.25); padding: 3px 10px; border-radius: var(--radius-pill); }


/* ---=== founder section ===--- */
.founder-section { background: var(--white); padding: 120px 0; }
.founder-grid    { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }
.founder-photo-wrap        { position: relative; }
.founder-photo-placeholder { width: 100%; aspect-ratio: 3/4; border-radius: var(--radius-lg); display: block; object-fit: cover; }
.founder-badge-wrap        { position: absolute; bottom: -20px; left: 32px; }
.founder-badge             { background: var(--dark); border-radius: 14px; padding: 14px 20px; display: flex; align-items: center; gap: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.18); }
.founder-badge-icon        { width: 36px; height: 36px; background: var(--green-dim); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1rem; border: 1px solid rgba(58,140,76,0.2); }
.founder-badge-name        { font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; color: #fff; line-height: 1.2; }
.founder-badge-title       { font-size: 0.72rem; font-weight: 300; color: #fff; margin-top: 2px; }
.founder-quote { font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2.4rem); font-weight: 400; font-style: italic; line-height: 1.4; color: var(--dark); margin-bottom: 28px; padding-left: 24px; border-left: 3px solid var(--green); }
.founder-bio   { font-size: 0.92rem; font-weight: 300; line-height: 1.8; color: var(--gray); margin-bottom: 20px; }
.founder-name  { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.founder-role  { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); }


/* ---=== values marquee ===--- */
.values-marquee       { background: var(--white); padding: 64px 0; overflow: hidden; border-top: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light); }
.values-track         { display: flex; animation: marquee 30s linear infinite; width: max-content; }
.values-track-reverse { animation-direction: reverse; margin-top: 20px; }
.values-item          { display: flex; align-items: center; gap: 20px; padding: 0 20px; white-space: nowrap; font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 400; font-style: italic; color: var(--dark); opacity: 0.75; }
.values-item.accent   { color: var(--green); opacity: 1; font-style: normal; font-weight: 600; }
.values-sep           { width: 5px; height: 5px; background: var(--green); border-radius: 50%; opacity: 0.4; flex-shrink: 0; }


/* ---=== call-to-action section ===--- */
.cta-section { background: linear-gradient(160deg, #0a1a0f 0%, #0f2318 60%, #122b1e 100%); padding: 100px 0; position: relative; overflow: hidden; }
.cta-bg-grad { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 400px; background: radial-gradient(ellipse, rgba(58,140,76,0.15), transparent 70%); pointer-events: none; }
.cta-inner   { position: relative; z-index: 1; text-align: center; }
.cta-title   { font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 5rem); font-weight: 600; letter-spacing: -0.01em; color: var(--white); line-height: 1.05; margin-bottom: 20px; }
.cta-title .accent { color: var(--green-light); }
.cta-sub     { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.4); margin-bottom: 40px; max-width: 480px; margin-inline: auto; line-height: 1.7; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }


/* ---=== footer ===--- */
footer        { background: linear-gradient(160deg, #0f2318 0%, #0a1a0f 60%, #071209 100%); padding: 64px 0 32px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); }
.footer-top   { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 32px; }
.footer-brand img { height: 32px; margin-bottom: 16px; display: block; filter: brightness(0) invert(1) sepia(1) saturate(0) hue-rotate(100deg) brightness(0.85); }
.footer-tagline   { font-size: 0.88rem; font-weight: 300; color: rgba(255,255,255,0.35); line-height: 1.7; max-width: 220px; }
.footer-col-title { font-family: var(--font-body); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 20px; }
.footer-links     { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a   { font-size: 0.88rem; font-weight: 300; color: rgba(255,255,255,0.5); text-decoration: none; display: flex; align-items: center; transition: color 0.2s; }
.footer-links a:hover { color: var(--green-light); }



.footer-product-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    opacity: 0.5;
    vertical-align: middle;
    margin-right: 8px;
}

.footer-links a:hover .footer-product-icon {
    opacity: 1;
}



.footer-bottom  { display: flex; align-items: center; justify-content: space-between; }
.footer-copy    { font-size: 0.78rem; color: rgba(255,255,255,0.2); }
.footer-socials { display: flex; gap: 12px; }
.social-btn     { width: 34px; height: 34px; background: rgba(255,255,255,0.05); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.35); text-decoration: none; font-size: 0.85rem; transition: background 0.2s, color 0.2s; }
.social-btn:hover { background: var(--green); color: #fff; }


/* ---=== page headers ===--- */
.page-header       { padding: 140px var(--gutter) 80px; background: var(--white); position: relative; overflow: hidden; border-bottom: 1px solid var(--gray-light); }
.page-header-inner { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 60px; }
.page-header-bg    { position: absolute; inset: 0; background-image: linear-gradient(rgba(58,140,76,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(58,140,76,0.04) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
.page-header-blob  { position: absolute; top: -80px; right: -80px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(58,140,76,0.1), transparent 70%); border-radius: 50%; filter: blur(60px); pointer-events: none; }
.page-header-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); margin-bottom: 20px; }
.page-header-eyebrow::before { content: ''; display: block; width: 20px; height: 2px; background: var(--green); border-radius: 2px; }
.page-header-title { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 6.5rem); font-weight: 600; line-height: 0.95; letter-spacing: -0.01em; color: var(--dark); position: relative; z-index: 1; }
.page-header-title em { font-style: italic; color: var(--green); }
.page-header-desc  { font-size: 1rem; font-weight: 300; line-height: 1.75; color: var(--gray); max-width: 420px; position: relative; z-index: 1; align-self: end; padding-bottom: 6px; }


/* ---=== careers section ===--- */
.careers-openings       { background: var(--dark); padding: 120px var(--gutter); }
.careers-openings-inner { max-width: var(--max-width); margin: 0 auto; }
.openings-empty         { margin-top: 56px; border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-lg); padding: 80px 60px; text-align: center; position: relative; overflow: hidden; }
.openings-empty::before { content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 400px; height: 400px; background: radial-gradient(circle, rgba(58,140,76,0.08), transparent 70%); border-radius: 50%; pointer-events: none; }
.openings-empty-title   { font-family: var(--font-display); font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 600; color: var(--white); margin-bottom: 16px; line-height: 1.1; position: relative; z-index: 1; }
.openings-empty-sub     { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.75; max-width: 480px; margin: 0 auto 40px; position: relative; z-index: 1; }
.openings-pulse       { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 28px; position: relative; z-index: 1; }
.openings-pulse-dot   { width: 10px; height: 10px; background: var(--green); border-radius: 50%; flex-shrink: 0; animation: pulse 2s ease-in-out infinite; }
.openings-pulse-label { font-family: var(--font-body); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.notify-form  { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; position: relative; z-index: 1; }
.notify-input { flex: 1; padding: 14px 22px; border-radius: var(--radius-pill); border: 1px solid rgba(255,255,255,0.12); font-family: var(--font-body); font-size: 0.9rem; font-weight: 300; color: var(--white); background: rgba(255,255,255,0.05); outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.notify-input:focus       { border-color: var(--green); box-shadow: 0 0 0 3px rgba(58,140,76,0.15); }
.notify-input::placeholder { color: rgba(255,255,255,0.3); }
.notify-btn     { background: var(--green); color: #fff; font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; padding: 14px 28px; border-radius: var(--radius-pill); border: none; cursor: pointer; white-space: nowrap; box-shadow: 0 4px 20px rgba(58,140,76,0.3); transition: background 0.2s, transform 0.2s; }
.notify-btn:hover { background: var(--green-light); transform: translateY(-1px); }
.notify-success { display: none; font-size: 0.9rem; font-weight: 400; color: var(--green-light); margin-top: 20px; position: relative; z-index: 1; }
.notify-note    { font-size: 0.75rem; font-weight: 300; color: rgba(255,255,255,0.2); margin-top: 14px; position: relative; z-index: 1; }


/* ---=== team section ===--- */
.team-page-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); text-align: center; }
.team-founder-section                   { background: #162a1c; padding: 80px 0; text-align: center; }
.team-founder-section .section-tag      { color: var(--green-light); justify-content: center; font-size: 4rem; }
.team-founder-section .section-tag-icon { width: 65px; height: 65px; }
.team-founder-section .team-member-role { color: rgba(255,255,255,0.4); }
.team-founder-wrap { display: flex; flex-direction: column; align-items: center; text-align: center; margin-top: 40px; gap: 16px; }
.team-founder-img  { width: 260px; height: 320px; object-fit: cover; border-radius: 24px; display: block; }
.team-founder-name { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--white); }
.team-founder-name em { font-style: italic; color: var(--green-light); }
.team-grid-section                   { background: #162a1c; padding: 60px 0 80px; border-top: 1px solid rgba(255,255,255,0.06); }
.team-grid-section .section-tag      { color: var(--green-light); font-size: 3.8rem; justify-content: center; }
.team-grid-section .section-tag-icon { width: 60px; height: 60px; }
.team-grid-section .section-title    { color: var(--white); text-align: center; }
.team-row    { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; justify-items: center; }
.team-member { display: flex; flex-direction: column; align-items: center; text-align: center; }
.team-member-photo     { margin-bottom: 16px; width: 100%; display: flex; justify-content: center; }
.team-member-photo img { width: 100%; height: 320px; object-fit: cover; border-radius: 24px; display: block; }
.team-member-placeholder { width: 100%; height: 320px; border-radius: 24px; background: linear-gradient(160deg, #1a3a22, #0d2016); position: relative; overflow: hidden; }
.team-member-placeholder::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%; background: linear-gradient(to top, rgba(58,140,76,0.08), transparent); }
.team-member-name        { font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; color: var(--white); margin-bottom: 6px; line-height: 1.2; }
.team-member-name strong { font-weight: 700; }
.team-member-role        { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.35); }

/* ---=== remwes logo with pulse animation ===--- */
.hero-pulse-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 320px;
}
.ripple-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.pulse-logo-img {
  position: relative;
  z-index: 1;
  width: 120px;
  height: 120px;
  animation: breathe 4s ease-in-out infinite;
  transform-origin: center;
}
.particle-canvas {
  position: absolute;
  inset: 0;
  overflow: visible;
  pointer-events: none;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.07); }
}
@media (max-width: 768px) {
  .hero-pulse-wrap { display: none; }
}

/* ---=== responsive media queries (less than 768px) ===--- */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; }
  nav { flex-wrap: wrap; height: auto; padding: 12px var(--gutter); }
  .nav-links { flex-wrap: wrap; gap: 8px; width: 100%; padding: 8px 0; }
  .nav-links a { font-size: 0.6rem; letter-spacing: 0.03em; }
  .nav-cta     { padding: 6px 12px !important; font-size: 0.6rem !important; }
  .hero { padding: 100px var(--gutter) 60px; }
  .hero-inner { flex-direction: column; gap: 32px; }
  .hero-title { font-size: clamp(2.5rem, 9vw, 4rem); }
  .hero-slash, .hero-right-dark, .hero-pulse-wrap { display: none; }
  .about-grid, .founder-grid { display: block; }
  .about-grid > div, .founder-grid > div { width: 100%; margin-bottom: 32px; }
  .about-visual-box { padding: 28px 20px; }
  .mission-text { font-size: 1.2rem; }
  .section-sub  { max-width: 100%; font-size: 0.9rem; }
  .section-tag  { font-size: 1rem; }
  .section-tag-icon { width: 24px; height: 24px; }
  .section-title    { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .products-header { flex-direction: column; gap: 16px; }
  .product-row     { grid-template-columns: 56px 1fr; gap: 14px; padding: 20px 16px; }
  .product-row-logo  { width: 56px; height: 56px; }
  .product-row-arrow { display: none; }
  .product-row-name  { font-size: 1.3rem; }
  .founder-photo-placeholder { width: 100%; }
  .founder-quote  { font-size: 1.1rem; word-break: break-word; }
  .founder-bio    { font-size: 0.88rem; word-break: break-word; }
  .founder-badge-wrap { position: static; margin-top: 16px; }
  .page-header-inner { display: flex; flex-direction: column; gap: 24px; }
  .cta-title   { font-size: 2rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; justify-content: center; }
  .footer-top    { display: flex; flex-direction: column; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .notify-form    { flex-direction: column; }
  .openings-empty { padding: 48px 28px; }
  .team-founder-section { padding: 60px 0; }
  .team-founder-wrap    { padding: 0 var(--gutter); }
  .team-founder-img     { width: 180px; height: 220px; }
  .team-founder-name    { font-size: 1.5rem; }
  .team-row             { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .team-member-photo img { height: 180px; }
  .team-member-name      { font-size: 0.9rem; }
  .team-member-role      { font-size: 0.6rem; }
  .team-grid-section .section-tag, .team-founder-section .section-tag { font-size: 1.5rem; }
  .team-grid-section .section-tag-icon, .team-founder-section .section-tag-icon { width: 28px; height: 28px; }
}


/* ---=== responsive media queries (less than 480px) ===--- */
@media (max-width: 480px) {
  .team-row { grid-template-columns: 1fr; }
}