/* imgest — product site (actioncam.dev). Clean, single-product, commercial.
   Operated by LIMOD. Accent: #ff6a00. */
:root {
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --bg-card: #ffffff;
  --ink: #16181d;
  --ink-soft: #4b515b;
  --ink-faint: #868d99;
  --line: #e7e9ee;
  --accent: #ff6a00;
  --accent-ink: #b84e00;
  --radius: 14px;
  --maxw: 1060px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font); color: var(--ink); background: var(--bg);
  line-height: 1.6; font-size: 17px; -webkit-font-smoothing: antialiased;
}
a { color: var(--accent-ink); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* header */
.site-header { border-bottom: 1px solid var(--line); background: rgba(255,255,255,.86); backdrop-filter: saturate(180%) blur(8px); position: sticky; top: 0; z-index: 10; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; color: var(--ink); letter-spacing: -.01em; }
.brand:hover { text-decoration: none; }
.brand .logo { width: 28px; height: 28px; border-radius: 8px; background: linear-gradient(135deg,#ff9248,var(--accent)); display: inline-flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 13px; }
.brand .by { font-size: 12px; color: var(--ink-faint); font-weight: 500; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a { color: var(--ink-soft); font-size: 15px; font-weight: 500; }
.nav a:hover { color: var(--ink); text-decoration: none; }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 10px; font-weight: 600; font-size: 16px; border: 1px solid transparent; cursor: pointer; }
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #ff7d1f; color: #fff; }
.btn-ghost { background: var(--bg-soft); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: #eef0f3; color: var(--ink); }
.btn.sm { padding: 8px 16px; font-size: 15px; }

/* hero */
.hero { padding: 80px 0 60px; text-align: center; }
.badge { display: inline-block; font-size: 13px; font-weight: 600; color: var(--accent-ink); background: #fff1e6; border: 1px solid #ffd9bd; padding: 5px 12px; border-radius: 999px; margin-bottom: 22px; }
.hero h1 { font-size: 50px; line-height: 1.08; letter-spacing: -.025em; margin: 0 0 18px; font-weight: 800; }
.hero h1 .accent { color: var(--accent); }
.hero p.lead { font-size: 21px; color: var(--ink-soft); max-width: 650px; margin: 0 auto 30px; }
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero .note { margin-top: 16px; font-size: 14px; color: var(--ink-faint); }

/* sections */
section.block { padding: 56px 0; }
section.block.soft { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-head h2 { font-size: 32px; letter-spacing: -.02em; margin: 0 0 10px; font-weight: 800; }
.section-head p { font-size: 18px; color: var(--ink-soft); margin: 0; }
.grid { display: grid; gap: 20px; grid-template-columns: repeat(3,1fr); }
@media (max-width: 800px){ .grid{ grid-template-columns: 1fr; } .hero h1{ font-size: 36px; } .hero p.lead{ font-size: 18px; } }
.card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.card .ic { font-size: 26px; margin-bottom: 12px; }
.card h3 { margin: 0 0 8px; font-size: 19px; letter-spacing: -.01em; }
.card p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* steps */
.steps { display: grid; gap: 18px; grid-template-columns: repeat(3,1fr); }
@media (max-width: 800px){ .steps{ grid-template-columns: 1fr; } }
.step { padding: 22px; }
.step .num { width: 34px; height: 34px; border-radius: 50%; background: var(--accent); color: #fff; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.step h3 { margin: 0 0 6px; font-size: 17px; }
.step p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* pricing */
.price-grid { display: grid; gap: 20px; grid-template-columns: repeat(3,1fr); align-items: stretch; }
@media (max-width: 820px){ .price-grid{ grid-template-columns: 1fr; } }
.price-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.price-card .tag { font-size: 13px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .05em; }
.price-card .name { font-size: 22px; font-weight: 800; margin: 6px 0 4px; }
.price-card .amount { font-size: 30px; font-weight: 800; letter-spacing: -.02em; }
.price-card .amount small { font-size: 15px; font-weight: 600; color: var(--ink-faint); }
.price-card .quota { margin: 12px 0; font-size: 16px; color: var(--ink); font-weight: 600; }
.price-card .desc { color: var(--ink-soft); font-size: 15px; margin: 0 0 18px; flex: 1; }
.price-card .pill { display: inline-block; font-size: 12px; font-weight: 700; padding: 3px 9px; border-radius: 999px; background: #fff1e6; color: var(--accent-ink); margin-left: 8px; vertical-align: middle; }
.pricing-note { text-align: center; color: var(--ink-faint); font-size: 14px; margin-top: 22px; }

/* legal / prose */
.prose { max-width: 760px; margin: 0 auto; padding: 56px 0 80px; }
.prose h1 { font-size: 38px; letter-spacing: -.02em; margin: 0 0 6px; }
.prose .meta { color: var(--ink-faint); font-size: 14px; margin: 0 0 36px; }
.prose h2 { font-size: 23px; margin: 40px 0 12px; letter-spacing: -.01em; }
.prose h3 { font-size: 18px; margin: 26px 0 8px; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 22px; }
.prose li { margin: 6px 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
.prose th, .prose td { border: 1px solid var(--line); padding: 8px 10px; text-align: left; vertical-align: top; }
.prose th { background: var(--bg-soft); }
.prose code { background: var(--bg-soft); padding: 1px 6px; border-radius: 5px; font-size: 13px; }
.callout { background: #fff8f2; border: 1px solid #ffd9bd; border-radius: 10px; padding: 16px 18px; margin: 22px 0; font-size: 15px; color: var(--ink); }

/* footer */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-soft); padding: 40px 0; margin-top: 40px; }
.site-footer .container { display: flex; flex-wrap: wrap; gap: 18px 40px; justify-content: space-between; align-items: flex-start; }
.site-footer .f-brand { font-weight: 700; }
.site-footer .f-links { display: flex; flex-wrap: wrap; gap: 18px; }
.site-footer .f-links a { color: var(--ink-soft); font-size: 14px; }
.site-footer .copy { color: var(--ink-faint); font-size: 13px; width: 100%; margin-top: 12px; }
