*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0A0F1E; --bg2: #0E1528; --bg3: #141c35;
  --gold: #D4A017; --gold-light: #E8BE45;
  --green: #00C896; --green-dark: #00A87D;
  --white: #F0EDE6; --muted: #8892A4;
  --border: rgba(212,160,23,0.18);
  --card: rgba(255,255,255,0.04); --card-hover: rgba(255,255,255,0.07);
  --radius: 16px;
  --font-display: 'Syne', sans-serif; --font-body: 'Inter', sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--white); font-family: var(--font-body); line-height: 1.6; overflow-x: hidden; }

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 4vw; background: rgba(10,15,30,0.85); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
.nav-logo { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--white); text-decoration: none; display: flex; align-items: center; gap: .5rem; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: .9rem; transition: color .2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { background: var(--gold); color: var(--bg); padding: .5rem 1.25rem; border-radius: 8px; font-weight: 600; font-size: .875rem; text-decoration: none; transition: background .2s, transform .15s; }
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); transition: all .3s; display: block; }

#hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 7rem 4vw 4rem; position: relative; overflow: hidden; text-align: center; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse 80% 60% at 50% 20%, rgba(212,160,23,0.08) 0%, transparent 70%), radial-gradient(ellipse 60% 40% at 80% 80%, rgba(0,200,150,0.05) 0%, transparent 60%); }
.target-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: min(70vw, 600px); height: min(70vw, 600px); opacity: .04; z-index: 0; }
.hero-content { position: relative; z-index: 1; max-width: 820px; }
.eyebrow { display: inline-flex; align-items: center; gap: .5rem; background: rgba(212,160,23,0.12); border: 1px solid var(--border); color: var(--gold); font-size: .8rem; font-weight: 600; letter-spacing: .1em; padding: .4rem 1rem; border-radius: 100px; margin-bottom: 1.5rem; text-transform: uppercase; }
.eyebrow .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }
h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 6vw, 5rem); font-weight: 800; line-height: 1.08; margin-bottom: 1.25rem; }
h1 .accent { color: var(--gold); } h1 .accent2 { color: var(--green); }
.hero-sub { font-size: clamp(.95rem, 2.2vw, 1.2rem); color: var(--muted); max-width: 560px; margin: 0 auto 2.5rem; }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }
.btn-primary { background: var(--green); color: var(--bg); padding: .85rem 2rem; border-radius: 10px; font-weight: 600; font-size: 1rem; text-decoration: none; transition: background .2s, transform .15s, box-shadow .2s; box-shadow: 0 0 30px rgba(0,200,150,0.25); border: none; cursor: pointer; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 0 40px rgba(0,200,150,0.4); }
.btn-outline { border: 1.5px solid var(--border); background: transparent; color: var(--white); padding: .85rem 2rem; border-radius: 10px; font-weight: 500; font-size: 1rem; text-decoration: none; transition: border-color .2s, background .2s; cursor: pointer; }
.btn-outline:hover { border-color: var(--gold); background: rgba(212,160,23,0.07); }
.btn-primary.small, .btn-outline.small { padding: .55rem 1.2rem; font-size: .85rem; }

.countdown-wrapper { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem 2rem; display: inline-flex; flex-direction: column; align-items: center; gap: .5rem; }
.countdown-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); font-weight: 600; }
.countdown-units { display: flex; gap: 1rem; align-items: center; }
.cd-unit { display: flex; flex-direction: column; align-items: center; gap: .2rem; }
.cd-num { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; line-height: 1; min-width: 2.5ch; text-align: center; color: var(--white); }
.cd-lbl { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.cd-sep { font-family: var(--font-display); font-size: 2rem; color: var(--gold); opacity: .5; margin-bottom: .8rem; }
.artemisa-tag { font-size: .75rem; color: var(--muted); }
.artemisa-tag strong { color: var(--green); }

section { padding: 5rem 4vw; }
.section-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .14em; color: var(--gold); font-weight: 600; margin-bottom: .75rem; }
.section-title { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.15; margin-bottom: 1rem; }
.section-sub { color: var(--muted); font-size: 1rem; max-width: 600px; line-height: 1.7; }
.container { max-width: 1100px; margin: 0 auto; }

#about { background: var(--bg2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.feature-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; background: var(--card); border: 1px solid var(--border); padding: 1.25rem; border-radius: 12px; transition: background .2s; }
.feature-item:hover { background: var(--card-hover); }
.feature-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(212,160,23,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.2rem; }
.feature-text h4 { font-family: var(--font-display); font-weight: 600; margin-bottom: .25rem; font-size: .95rem; }
.feature-text p { font-size: .875rem; color: var(--muted); line-height: 1.5; }

.artemisa-visual { background: var(--bg3); border: 1px solid var(--border); border-radius: 20px; padding: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.browser-bar { display: flex; gap: .4rem; align-items: center; margin-bottom: .5rem; }
.browser-dot { width: 10px; height: 10px; border-radius: 50%; }
.browser-url { flex: 1; background: rgba(255,255,255,0.06); border-radius: 6px; padding: .3rem .75rem; font-size: .75rem; color: var(--muted); margin-left: .5rem; }
.mock-panel { background: rgba(255,255,255,0.03); border-radius: 12px; padding: 1.2rem; display: flex; flex-direction: column; gap: .75rem; }
.mock-row { display: flex; gap: .75rem; align-items: center; }
.mock-avatar { width: 32px; height: 32px; border-radius: 8px; background: var(--gold); opacity: .5; flex-shrink: 0; }
.mock-lines { flex: 1; display: flex; flex-direction: column; gap: .3rem; }
.mock-line { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.1); }
.mock-line.short { width: 40%; } .mock-line.medium { width: 65%; }
.mock-badge { background: rgba(0,200,150,0.15); border: 1px solid rgba(0,200,150,0.3); color: var(--green); font-size: .7rem; padding: .2rem .6rem; border-radius: 100px; font-weight: 600; }
.artemisa-logo-big { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--gold); text-align: center; letter-spacing: .05em; }
.artemisa-logo-big span { color: var(--white); }

#how { background: var(--bg); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.step-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem 1.5rem; position: relative; overflow: hidden; transition: border-color .2s, transform .2s; }
.step-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.step-num { font-family: var(--font-display); font-size: 4rem; font-weight: 800; color: var(--gold); opacity: .12; position: absolute; top: .5rem; right: 1rem; line-height: 1; }
.step-icon { font-size: 2rem; margin-bottom: 1rem; }
.step-card h4 { font-family: var(--font-display); font-weight: 700; margin-bottom: .5rem; }
.step-card p { font-size: .875rem; color: var(--muted); line-height: 1.6; }

#pricing { background: var(--bg2); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; align-items: start; }
.plan-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 2rem; transition: border-color .2s, transform .2s; position: relative; overflow: hidden; }
.plan-card.featured { border-color: var(--gold); background: linear-gradient(135deg, rgba(212,160,23,0.08) 0%, rgba(212,160,23,0.03) 100%); }
.plan-card.featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.plan-badge { position: absolute; top: 1.2rem; right: 1.2rem; background: var(--gold); color: var(--bg); font-size: .65rem; font-weight: 700; letter-spacing: .08em; padding: .25rem .65rem; border-radius: 100px; text-transform: uppercase; }
.plan-name { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin-bottom: .5rem; }
.plan-desc { font-size: .875rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.5; }
.plan-price { display: flex; align-items: baseline; gap: .3rem; margin-bottom: 1.5rem; }
.plan-price .currency { font-size: 1.1rem; color: var(--muted); }
.plan-price .amount { font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; line-height: 1; }
.plan-price .period { font-size: .85rem; color: var(--muted); }
.plan-price .free-tag { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--green); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.plan-features li { display: flex; gap: .6rem; font-size: .875rem; align-items: flex-start; }
.plan-features li .check { color: var(--green); flex-shrink: 0; margin-top: .1rem; }
.plan-features li .cross { color: var(--muted); flex-shrink: 0; }
.plan-features li.disabled { color: var(--muted); }
.plan-cta { display: block; text-align: center; text-decoration: none; padding: .85rem; border-radius: 10px; font-weight: 600; font-size: .9rem; transition: all .2s; }
.plan-cta.primary { background: var(--green); color: var(--bg); }
.plan-cta.primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.plan-cta.secondary { background: rgba(255,255,255,0.07); color: var(--white); }
.plan-cta.secondary:hover { background: rgba(255,255,255,0.12); }
.plan-cta.gold { background: var(--gold); color: var(--bg); }
.plan-cta.gold:hover { background: var(--gold-light); }
.pricing-note { text-align: center; margin-top: 2rem; color: var(--muted); font-size: .85rem; }
.pricing-note strong { color: var(--gold); }

#modules { background: var(--bg); }
.modules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; margin-top: 3rem; }
.module-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; transition: border-color .2s, transform .2s; }
.module-card:hover { border-color: rgba(0,200,150,0.4); transform: translateY(-3px); }
.module-icon { font-size: 2rem; margin-bottom: 1rem; }
.module-card h4 { font-family: var(--font-display); font-weight: 700; margin-bottom: .4rem; }
.module-card p { font-size: .85rem; color: var(--muted); line-height: 1.6; }
.module-price-tag { display: inline-block; margin-top: .75rem; background: rgba(0,200,150,0.1); border: 1px solid rgba(0,200,150,0.25); color: var(--green); font-size: .75rem; font-weight: 600; padding: .25rem .65rem; border-radius: 100px; }

#contact { background: var(--bg2); }
.contact-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.contact-form { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; text-align: left; position: relative; }
.form-group label { display: block; font-size: .85rem; color: var(--muted); margin-bottom: .4rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 10px; color: var(--white); font-family: var(--font-body); font-size: .95rem; padding: .8rem 1rem; transition: border-color .2s; outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: var(--bg2); }
.consent-group { display: flex; flex-direction: column; gap: .6rem; }
.consent-label { display: flex; align-items: flex-start; gap: .5rem; font-size: .8rem; color: var(--muted); cursor: pointer; }
.consent-label input[type=checkbox] { margin-top: .15rem; accent-color: var(--gold); }
.consent-label a { color: var(--gold); }
.form-submit { background: var(--green); color: var(--bg); border: none; cursor: pointer; padding: .9rem; border-radius: 10px; font-weight: 600; font-size: 1rem; font-family: var(--font-body); transition: background .2s; width: 100%; }
.form-submit:hover { background: var(--green-dark); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-msg { text-align: center; padding: .75rem; border-radius: 8px; font-size: .875rem; display: none; }
.form-msg.success { background: rgba(0,200,150,0.12); color: var(--green); border: 1px solid rgba(0,200,150,0.25); }
.form-msg.error { background: rgba(220,50,50,0.12); color: #ff7b7b; border: 1px solid rgba(220,50,50,0.25); }

footer { background: var(--bg); border-top: 1px solid var(--border); padding: 2rem 4vw; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-brand { font-family: var(--font-display); font-weight: 700; }
.footer-brand span { color: var(--gold); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: .85rem; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { color: var(--muted); font-size: .8rem; width: 100%; text-align: center; }

/* Cookie banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 500; background: rgba(8,12,24,0.97); border-top: 1px solid var(--border); padding: 1.25rem 4vw; backdrop-filter: blur(10px); }
.cookie-banner-inner { max-width: 1000px; margin: 0 auto; }
.cookie-banner-inner p { font-size: .85rem; color: var(--muted); margin-bottom: 1rem; }
.cookie-banner-inner a { color: var(--gold); }
.cookie-banner-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.cookie-settings-panel { margin-top: 1rem; display: flex; flex-direction: column; gap: .6rem; padding-top: 1rem; border-top: 1px solid var(--border); }

/* Legal pages */
.legal-page { max-width: 760px; margin: 0 auto; padding: 8rem 5vw 5rem; color: var(--white); }
.legal-page h1 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 1.5rem; }
.legal-page h2 { font-family: var(--font-display); font-size: 1.3rem; margin: 2rem 0 .75rem; color: var(--gold); }
.legal-page p, .legal-page li { color: var(--muted); font-size: .95rem; line-height: 1.7; margin-bottom: .75rem; }
.legal-page a { color: var(--gold); }
.legal-page .back-link { display: inline-block; margin-bottom: 2rem; color: var(--muted); text-decoration: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.divider { height: 1px; background: var(--border); margin: 0; }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 60px; left: 0; right: 0; background: var(--bg2); padding: 1.5rem 4vw 2rem; border-bottom: 1px solid var(--border); gap: 1.25rem; z-index: 99; }
  .nav-links.open a { color: var(--white); font-size: 1rem; }
  .about-grid { grid-template-columns: 1fr; }
}
