/* ── albms™ / Varosso Brand Tokens ── */
:root {
  --teal:        #1D9E75;
  --teal-dark:   #0F6E56;
  --teal-light:  #E1F5EE;
  --charcoal:    #2C2C2A;
  --off-white:   #F1EFE8;
  --text-sec:    #5F5E5A;
  --border:      #D3D1C7;
  --white:       #FFFFFF;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius:      14px;
  --shadow:      0 2px 16px rgba(0,0,0,0.08);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font); background: var(--white); color: var(--charcoal); line-height: 1.6; }

/* NAV */
nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); padding: 0 32px; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon { width: 36px; height: 36px; border-radius: 9px; background: var(--teal); display: flex; align-items: center; justify-content: center; }
.nav-logo-text { font-size: 20px; font-weight: 600; color: var(--charcoal); }
.nav-logo-text .ms { color: var(--teal); }
.nav-logo-tm { font-size: 11px; color: var(--text-sec); vertical-align: super; margin-left: 1px; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-sec); font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--teal); }
.nav-cta { background: var(--teal); color: var(--white) !important; padding: 8px 20px; border-radius: 8px; font-weight: 600 !important; }
.nav-cta:hover { background: var(--teal-dark) !important; }

/* HERO */
.hero { background: linear-gradient(135deg, var(--off-white) 0%, var(--teal-light) 100%); padding: 100px 32px 80px; text-align: center; }
.hero-badge { display: inline-block; background: var(--teal-light); color: var(--teal-dark); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; padding: 6px 16px; border-radius: 20px; margin-bottom: 24px; border: 1px solid rgba(29,158,117,0.2); }
.hero-wordmark { font-size: clamp(56px, 8vw, 96px); font-weight: 700; letter-spacing: -0.04em; line-height: 1; margin-bottom: 8px; }
.hero-wordmark .ms { color: var(--teal); }
.hero-wordmark .tm { font-size: 0.35em; vertical-align: super; color: var(--text-sec); font-weight: 400; }
.hero-tagline { font-size: clamp(18px, 3vw, 26px); color: var(--text-sec); margin-bottom: 40px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--teal); color: var(--white); padding: 16px 36px; border-radius: var(--radius); font-size: 16px; font-weight: 700; text-decoration: none; transition: background .2s, transform .1s; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn-secondary { background: var(--white); color: var(--charcoal); padding: 16px 36px; border-radius: var(--radius); font-size: 16px; font-weight: 600; text-decoration: none; border: 1.5px solid var(--border); transition: border-color .2s, transform .1s; }
.btn-secondary:hover { border-color: var(--teal); transform: translateY(-1px); }
.hero-sub { margin-top: 24px; font-size: 13px; color: var(--text-sec); }

/* SECTIONS */
section { padding: 80px 32px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--teal); text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-size: clamp(28px, 4vw, 44px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 16px; line-height: 1.2; }
.section-subtitle { font-size: 18px; color: var(--text-sec); margin-bottom: 56px; max-width: 600px; }

/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.feature-card { background: var(--off-white); border-radius: var(--radius); padding: 28px; border: 1px solid var(--border); transition: transform .2s, box-shadow .2s; }
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feature-icon { width: 48px; height: 48px; background: var(--teal-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 22px; }
.feature-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature-desc { font-size: 14px; color: var(--text-sec); line-height: 1.6; }

/* HOW IT WORKS */
.how-bg { background: var(--off-white); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; margin-top: 48px; }
.step { text-align: center; }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--teal); color: var(--white); font-size: 20px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--text-sec); }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 700px; }
.pricing-card { border-radius: var(--radius); padding: 32px; border: 1.5px solid var(--border); position: relative; background: var(--white); }
.pricing-card.featured { border-color: var(--teal); border-width: 2px; box-shadow: 0 4px 24px rgba(29,158,117,0.12); }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--teal); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; padding: 4px 16px; border-radius: 20px; white-space: nowrap; }
.pricing-name { font-size: 15px; font-weight: 600; color: var(--text-sec); margin-bottom: 8px; }
.pricing-price { font-size: 44px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 4px; }
.pricing-price span { font-size: 18px; font-weight: 500; color: var(--text-sec); }
.pricing-equiv { font-size: 13px; color: var(--teal); font-weight: 600; margin-bottom: 4px; }
.pricing-save { font-size: 13px; color: var(--text-sec); margin-bottom: 24px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li { font-size: 14px; display: flex; gap: 8px; align-items: flex-start; }
.pricing-features li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.pricing-trial { font-size: 12px; color: var(--text-sec); text-align: center; margin-top: 12px; }

/* CLOUD */
.cloud-logos { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; justify-content: center; margin-top: 40px; }
.cloud-logo { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 20px 28px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--off-white); font-size: 13px; font-weight: 600; color: var(--text-sec); min-width: 120px; }
.cloud-logo-icon { font-size: 32px; }

/* PRIVACY STATEMENT */
.privacy-statement { background: var(--teal-light); border-radius: 20px; padding: 48px; text-align: center; border: 1px solid rgba(29,158,117,0.2); }
.privacy-statement h3 { font-size: 24px; font-weight: 700; margin-bottom: 16px; }
.privacy-statement p { font-size: 16px; color: var(--text-sec); max-width: 600px; margin: 0 auto 8px; }

/* FOOTER */
footer { background: var(--charcoal); color: var(--white); padding: 60px 32px 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: #AAAAAA; margin-top: 12px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: #AAAAAA; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: #CCCCCC; text-decoration: none; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p, .footer-bottom a { font-size: 13px; color: #888886; text-decoration: none; }
.footer-bottom a:hover { color: var(--teal); }

/* PAGE */
.page-hero { background: var(--off-white); padding: 64px 32px 48px; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; margin-bottom: 8px; }
.page-hero p { font-size: 16px; color: var(--text-sec); }
.page-content { max-width: 760px; margin: 0 auto; padding: 64px 32px; }
.page-content h2 { font-size: 22px; font-weight: 700; margin: 40px 0 12px; }
.page-content h3 { font-size: 17px; font-weight: 700; margin: 24px 0 8px; color: var(--teal-dark); }
.page-content p { font-size: 15px; color: var(--text-sec); margin-bottom: 16px; line-height: 1.8; }
.page-content ul { margin: 12px 0 20px 20px; }
.page-content li { font-size: 15px; color: var(--text-sec); margin-bottom: 8px; line-height: 1.7; }

/* FORM */
.form-card { background: var(--off-white); border-radius: var(--radius); border: 1px solid var(--border); padding: 40px; max-width: 640px; }
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 14px; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 15px; font-family: var(--font); color: var(--charcoal); background: var(--white); transition: border-color .2s; outline: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--teal); }
.form-textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 12px; color: var(--text-sec); margin-top: 6px; }
.form-submit { background: var(--teal); color: var(--white); border: none; padding: 14px 36px; border-radius: var(--radius); font-size: 16px; font-weight: 700; cursor: pointer; font-family: var(--font); transition: background .2s; width: 100%; }
.form-submit:hover { background: var(--teal-dark); }
.success-msg { background: var(--teal-light); color: var(--teal-dark); border: 1px solid rgba(29,158,117,0.3); border-radius: var(--radius); padding: 16px 20px; margin-top: 16px; font-size: 14px; font-weight: 600; display: none; }

/* NAV SVG icon */
.nav-cam { stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 768px) {
  nav { padding: 0 16px; }
  .nav-links { display: none; }
  .hero { padding: 64px 20px 48px; }
  section { padding: 56px 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .privacy-statement { padding: 32px 20px; }
}
