* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--attendry-text);
  background: var(--attendry-cloud);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--radius-control);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--attendry-blue-700); color: #fff; }
.btn-primary:hover { background: var(--attendry-blue-500); }
.btn-ghost { background: transparent; color: var(--attendry-text); border-color: var(--attendry-line); }
.btn-ghost:hover { border-color: var(--attendry-blue-700); color: var(--attendry-blue-700); }
.btn-lg { padding: 13px 26px; font-size: 15px; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 249, 252, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--attendry-line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}
.brand { display: flex; align-items: center; }
.main-nav { display: flex; gap: 22px; margin-left: 12px; flex: 1; }
.main-nav a { font-size: 14px; font-weight: 600; color: var(--attendry-muted); }
.main-nav a:hover { color: var(--attendry-blue-700); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-switch { display: flex; gap: 2px; border: 1px solid var(--attendry-line); border-radius: 8px; padding: 2px; }
.lang-btn { border: none; background: none; padding: 4px 8px; font-size: 12px; font-weight: 700; color: var(--attendry-muted); border-radius: 6px; cursor: pointer; }
.lang-btn.active { background: var(--attendry-blue-700); color: #fff; }
.menu-toggle { display: none; border: none; background: none; font-size: 22px; cursor: pointer; }

/* Hero */
.hero { padding: 64px 0 40px; }
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.eyebrow { color: var(--attendry-blue-700); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 10px; }
.hero h1 { font-size: 40px; line-height: 1.15; margin: 0 0 16px; letter-spacing: -0.02em; }
.hero-sub { font-size: 17px; color: var(--attendry-muted); margin: 0 0 24px; max-width: 46ch; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-note { font-size: 13px; color: var(--attendry-muted); margin: 12px 0 0; }

.hero-visual { display: flex; justify-content: center; }
.mock-window {
  width: 100%;
  max-width: 420px;
  background: var(--attendry-surface);
  border: 1px solid var(--attendry-line);
  border-radius: var(--radius-panel);
  box-shadow: 0 20px 50px -20px rgba(6, 23, 42, 0.25);
  overflow: hidden;
}
.mock-topbar { display: flex; gap: 6px; padding: 12px 14px; background: var(--attendry-ink-950); }
.mock-topbar span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.mock-body { padding: 18px; }
.mock-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; }
.mock-avatar { width: 26px; height: 26px; border-radius: 50%; background: var(--attendry-line); flex-shrink: 0; }
.mock-bar { height: 8px; border-radius: 4px; background: var(--attendry-line); flex: 1; }
.mock-pill { font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 999px; white-space: nowrap; }
.mock-pill-ok { background: #e6f7f4; color: var(--attendry-teal-700); }
.mock-pill-warn { background: #fef3e2; color: #b45309; }
.mock-pill-off { background: #eaf0fd; color: var(--attendry-blue-700); }
.mock-summary { display: flex; justify-content: space-between; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--attendry-line); }
.mock-summary div { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: var(--attendry-muted); }
.mock-summary strong { font-size: 16px; color: var(--attendry-text); }

/* Trust strip */
.logos-strip { padding: 20px 0; border-top: 1px solid var(--attendry-line); border-bottom: 1px solid var(--attendry-line); background: var(--attendry-surface); }
.logos-strip p { margin: 0; text-align: center; font-size: 14px; color: var(--attendry-muted); }

/* Features */
.features { padding: 72px 0; }
.features h2, .how h2, .pricing h2 { font-size: 30px; text-align: center; margin: 0 0 40px; letter-spacing: -0.01em; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { background: var(--attendry-surface); border: 1px solid var(--attendry-line); border-radius: var(--radius-card); padding: 24px; }
.feature-icon { font-size: 26px; margin-bottom: 12px; }
.feature-card h3 { margin: 0 0 8px; font-size: 16px; }
.feature-card p { margin: 0; font-size: 14px; color: var(--attendry-muted); }

/* How it works */
.how { padding: 72px 0; background: var(--attendry-surface); border-top: 1px solid var(--attendry-line); border-bottom: 1px solid var(--attendry-line); }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.how-step { text-align: center; }
.how-num { width: 34px; height: 34px; border-radius: 50%; background: var(--attendry-blue-700); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; margin: 0 auto 14px; }
.how-step h3 { margin: 0 0 8px; font-size: 16px; }
.how-step p { margin: 0; font-size: 14px; color: var(--attendry-muted); max-width: 32ch; margin-inline: auto; }

/* Pricing */
.pricing { padding: 72px 0; }
.pricing-sub { text-align: center; color: var(--attendry-muted); margin: -24px 0 40px; font-size: 15px; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
.price-card { position: relative; background: var(--attendry-surface); border: 1px solid var(--attendry-line); border-radius: var(--radius-card); padding: 24px; display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--attendry-blue-700); box-shadow: 0 12px 30px -18px rgba(23, 92, 211, 0.45); }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--attendry-blue-700); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.price-card h3 { margin: 0 0 6px; font-size: 16px; }
.price-amount { margin: 0; }
.price-number { font-size: 28px; font-weight: 800; letter-spacing: -0.01em; }
.price-amount span:not(.price-number) { font-size: 13px; color: var(--attendry-muted); }
.price-note { font-size: 12px; color: var(--attendry-muted); margin: 4px 0 16px; min-height: 16px; }
.price-features { list-style: none; padding: 0; margin: 0 0 20px; flex: 1; display: flex; flex-direction: column; gap: 9px; }
.price-features li { font-size: 13px; padding-left: 20px; position: relative; }
.price-features li::before { content: '✓'; position: absolute; left: 0; color: var(--attendry-teal-700); font-weight: 700; }
.price-features li.muted { color: var(--attendry-muted); }
.price-features li.muted::before { content: '–'; color: var(--attendry-muted); }

/* CTA band */
.cta-band { padding: 64px 0; text-align: center; background: var(--attendry-ink-950); color: #fff; }
.cta-band h2 { margin: 0 0 12px; font-size: 28px; }
.cta-band p { margin: 0 0 24px; color: rgba(255,255,255,0.7); }
.cta-band a[href^="mailto"] { color: #fff; text-decoration: underline; }

/* Footer */
.site-footer { background: var(--attendry-ink-950); color: rgba(255,255,255,0.75); padding: 32px 0 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand p { max-width: 44ch; font-size: 12px; margin: 12px 0 0; color: rgba(255,255,255,0.5); }
.footer-links { display: flex; gap: 18px; font-size: 13px; font-weight: 600; }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding: 16px 0 24px; font-size: 12px; color: rgba(255,255,255,0.4); }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: 1fr; gap: 32px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .main-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--attendry-surface);
    border-bottom: 1px solid var(--attendry-line);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 16px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 0; border-bottom: 1px solid var(--attendry-line); }
  .main-nav a:last-child { border-bottom: none; }
  .menu-toggle { display: block; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 30px; }
  .feature-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .header-actions .btn-ghost { display: none; }
  .footer-inner { flex-direction: column; }
}
