:root{
  --bg:#0c0d10;
  --card:#16181f;
  --card-hover:#1c1f28;
  --border:#272b36;
  --border-hover:rgba(255,150,70,.5);
  --text:#F1F2F4;
  --body:#c6cbd4;
  --muted:#969ca8;
  --muted-2:#6b7280;
  --ember-1:#FF5E3A;
  --ember-2:#FF9F1C;
  --ember-3:#FFC65C;
  --radius:18px;
  --radius-sm:14px;
  --max:780px;
}
*{box-sizing:border-box;margin:0;padding:0}
html{-webkit-text-size-adjust:100%}
body{
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Text","Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  background:var(--bg);color:var(--text);line-height:1.65;font-size:17px;
  -webkit-font-smoothing:antialiased;
}
a{color:var(--ember-2);text-decoration:none}
a:hover{text-decoration:underline}
.wrap{max-width:var(--max);margin:0 auto;padding-left:24px;padding-right:24px}

/* nav */
.nav{position:sticky;top:0;z-index:20;
  backdrop-filter:saturate(180%) blur(20px);-webkit-backdrop-filter:saturate(180%) blur(20px);
  background:rgba(12,13,16,.72);border-bottom:1px solid var(--border)}
.nav .wrap{display:flex;align-items:center;justify-content:space-between;height:64px}
.brand{display:flex;align-items:center;gap:10px;font-weight:700;font-size:19px;color:var(--text)}
.brand:hover{text-decoration:none}
.brand .flame{font-size:22px}
.nav-links{display:flex;gap:26px;font-size:15px}
.nav-links a{color:var(--muted)}
.nav-links a:hover{color:var(--text);text-decoration:none}

/* hero */
.hero{text-align:center;padding:88px 0 60px;position:relative;overflow:hidden}
.hero::before{content:"";position:absolute;top:0;left:50%;transform:translateX(-50%);
  width:560px;height:340px;max-width:95%;
  background:radial-gradient(ellipse at center,rgba(255,94,58,.20),transparent 68%);
  pointer-events:none;z-index:0}
.hero .wrap{position:relative;z-index:1}
.hero .flame{font-size:66px;display:block;margin-bottom:18px;
  filter:drop-shadow(0 8px 34px rgba(255,94,58,.5))}
.hero h1{font-size:46px;line-height:1.08;font-weight:800;letter-spacing:-.02em;
  background:linear-gradient(135deg,var(--ember-1),var(--ember-3));
  -webkit-background-clip:text;background-clip:text;color:transparent;margin-bottom:16px}
.tagline{font-size:21px;color:var(--text);font-weight:600;margin-bottom:14px}
.subtitle{font-size:18px;color:var(--muted);max-width:580px;margin:0 auto 30px}
.badges{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.badge{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.04);
  border:1px solid var(--border);padding:8px 16px;border-radius:999px;font-size:14px;color:var(--body)}
.badge .dot{width:7px;height:7px;border-radius:50%;
  background:linear-gradient(135deg,var(--ember-1),var(--ember-2));
  box-shadow:0 0 8px rgba(255,120,40,.6)}

/* sections */
section{padding:44px 0}
.section-title{font-size:13px;text-transform:uppercase;letter-spacing:.1em;
  color:var(--ember-2);font-weight:700;margin-bottom:22px}
.cards{display:grid;gap:20px;grid-template-columns:repeat(3,1fr)}
.card{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);
  padding:28px;transition:transform .18s ease,border-color .18s ease,background .18s ease}
.card:hover{transform:translateY(-3px);border-color:var(--border-hover);background:var(--card-hover)}
.card .ico{width:52px;height:52px;border-radius:14px;display:flex;align-items:center;
  justify-content:center;font-size:26px;margin-bottom:18px;
  background:linear-gradient(135deg,rgba(255,94,58,.18),rgba(255,159,28,.10));
  border:1px solid rgba(255,159,28,.22)}
.card h3{font-size:18px;margin-bottom:8px}
.card p{color:var(--muted);font-size:15px}

/* callout */
.callout{margin-top:8px;
  background:linear-gradient(135deg,rgba(255,94,58,.12),rgba(255,159,28,.05));
  border:1px solid rgba(255,159,28,.28);border-radius:var(--radius);padding:38px 32px;text-align:center}
.callout h2{font-size:25px;margin-bottom:12px}
.callout p{color:var(--body);max-width:600px;margin:0 auto}

/* content pages */
.page{padding:60px 0}
.page h1{font-size:38px;font-weight:800;letter-spacing:-.02em;margin-bottom:8px}
.page .updated{color:var(--muted-2);font-size:15px;margin-bottom:38px}
.page h2{font-size:21px;margin:34px 0 12px;font-weight:700}
.page p,.page li{color:var(--body);margin-bottom:14px}
.page ul{padding-left:22px}
.page li{margin-bottom:10px}
.page strong{color:var(--text)}
.lead{font-size:19px;color:var(--text)}

/* faq */
.faq{display:flex;flex-direction:column;gap:14px}
.qa{background:var(--card);border:1px solid var(--border);border-radius:var(--radius-sm);
  padding:22px 24px;transition:border-color .18s ease,background .18s ease}
.qa:hover{border-color:var(--border-hover);background:var(--card-hover)}
.qa h3{font-size:17px;margin-bottom:6px}
.qa p{color:var(--muted);font-size:15px;margin:0}

/* contact button */
.contact{text-align:center;padding:44px 0}
.btn{display:inline-flex;align-items:center;gap:10px;
  background:linear-gradient(135deg,var(--ember-1),var(--ember-2));
  color:#1a1206;font-weight:700;font-size:17px;padding:15px 30px;border-radius:999px;
  box-shadow:0 10px 34px rgba(255,94,58,.38);transition:filter .18s ease,transform .18s ease}
.btn:hover{text-decoration:none;filter:brightness(1.07);transform:translateY(-2px)}

/* footer */
footer{border-top:1px solid var(--border);margin-top:48px;padding:34px 0;color:var(--muted-2);font-size:14px}
footer .wrap{display:flex;justify-content:space-between;flex-wrap:wrap;gap:12px}
footer a{color:var(--muted)}
footer a:hover{color:var(--text)}

/* responsive */
@media(max-width:680px){
  .cards{grid-template-columns:1fr;gap:16px}
  .hero h1{font-size:36px}
  .hero{padding:60px 0 44px}
  .nav-links{gap:18px}
  body{font-size:16px}
  section{padding:36px 0}
}

/* App icon — the real Kiln app icon (assets/icon.png), squircle-rounded.
   The inset hairline defines the dark icon against the dark page. */
.app-icon{display:inline-block;width:28px;height:28px;border-radius:7px;flex:none;
  background:url(assets/icon.png) center/cover no-repeat;
  box-shadow:0 1px 3px rgba(0,0,0,.45),inset 0 0 0 1px rgba(255,255,255,.07)}
.hero .app-icon{display:block;width:96px;height:96px;border-radius:22px;margin:0 auto 18px;
  box-shadow:0 10px 34px rgba(255,94,58,.28),inset 0 0 0 1px rgba(255,255,255,.08)}

/* App Store download badges (hero CTA) */
.store-row{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;margin-top:30px}
.appstore{display:inline-block;line-height:0;border-radius:12px;
  transition:transform .18s ease,filter .18s ease}
.appstore:hover{transform:translateY(-2px);filter:brightness(1.08);text-decoration:none}
.appstore img{height:56px;width:auto;display:block}
