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

:root {
  --green: #077e59;
  --green-light: #e8f5f0;
  --green-mid: #34d399;
  --bg: #f9f9f9;
  --surface: #ffffff;
  --text: #1a1a1a;
  --text-dim: #555;
  --text-muted: #999;
  --border: #e0e0da;
}


html, body { height: 100%; overflow: hidden; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

/* ── Page shell ── */
.page {
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0 24px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--text);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.btn-primary:hover { background: #333; }
.btn-primary.btn-lg { padding: 13px 26px; font-size: 14px; border-radius: 8px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  background: none;
  color: var(--text-dim);
  border: 1px solid var(--border);
  padding: 13px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s, color 0.15s;
}
.btn-outline:hover { border-color: var(--text); color: var(--text); }

.btn-ghost {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  padding: 10px 12px;
  border-radius: 7px;
  transition: color 0.15s;
}
.btn-ghost:hover { color: var(--text); }

/* ── Brand ── */
.brand { display: inline-flex; align-items: center; }
.brand-link { font-size: 18px; font-weight: 800; color: var(--green); letter-spacing: -0.5px; }
.brand-vo   { font-size: 18px; font-weight: 800; color: var(--text); letter-spacing: -0.5px; }

/* ── Nav ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  flex-shrink: 0;
  border-bottom: 1px solid var(--border);
}
.nav-actions { display: flex; align-items: center; gap: 4px; }

/* ── Hero ── */
.hero {
  flex: 1;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: center;
  min-height: 0;
  width: 100%;
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.hero-heading {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 10px; margin-bottom: 14px; }
.hero-note { font-size: 12px; color: var(--text-muted); }

/* ── Phone mockup ── */
.hero-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
}

.phone {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.phone-cover {
  height: 110px;
  background: linear-gradient(120deg, #0b2a1a 0%, var(--green) 60%, var(--green-mid) 100%);
}
.phone-profile {
  padding: 0 14px 12px;
  border-bottom: 1px solid var(--border);
  margin-top: -20px;
}
.phone-avatar {
  width: 60px;
  height: 60px;
  font-size: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  border: 2px solid var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.phone-name    { font-size: 16px; font-weight: 700; color: var(--text); }
.phone-handle  { font-size: 12px; color: var(--green); margin-bottom: 3px; }
.phone-tagline { font-size: 12px; color: var(--text-dim); margin-bottom: 8px; }
.phone-socials { display: flex; gap: 4px; flex-wrap: wrap; }
.pill { font-size: 9px; padding: 2px 7px; border: 1px solid var(--border); border-radius: 99px; color: var(--text-dim); }

.phone-section { padding: 14px 18px; border-bottom: 1px solid var(--border); }
.section-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 8px; }

.link-row { display: flex; align-items: center; gap: 7px; padding: 4px 0; }
.link-icon { width: 28px; height: 28px; border-radius: 6px; flex-shrink: 0; }
.link-title { font-size: 13px; font-weight: 600; color: var(--text); }
.link-url   { font-size: 11px; color: var(--text-muted); }

.products-row { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.product-card { border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.product-img  { height: 70px; }
.product-name { font-size: 12px; font-weight: 600; color: var(--text); padding: 6px 8px 0; }
.product-price { font-size: 12px; color: var(--green); font-weight: 700; padding: 2px 8px 8px; }

.phone-footer {
  padding: 12px 18px;
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
}
.phone-footer strong { color: var(--text-dim); }

/* ── Footer ── */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  flex-shrink: 0;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
}
.footer-left { display: flex; gap: 20px; }
.footer-link { color: var(--text-muted); transition: color 0.15s; }
.footer-link:hover { color: var(--text); }

/* ── Responsive ── */
@media (max-width: 860px) {
  html, body { overflow: auto; }
  .page { padding: 0 24px; height: auto; }
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 48px 0; }
  .hero-mockup { height: auto; }
  .phone { width: 100%; max-width: 300px; margin: 0 auto; }
  .hero-heading { font-size: 40px; }
}

@media (max-width: 480px) {
  .page { padding: 0 16px; }
  .hero-heading { font-size: 34px; letter-spacing: -1.5px; }
  .hero-actions { flex-direction: column; }
  .btn-outline, .btn-primary.btn-lg { width: 100%; justify-content: center; }
  .footer-left { gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}