/* LayrStudio — shared styles. Dark, calm, saffron accent (matches the apps). */
:root {
  --ink: #0C0B12;
  --ink-2: #16151F;
  --surface: #1B1A26;
  --surface-2: #232234;
  --paper: #F6F4EE;
  --muted: #9892A8;
  --hairline: rgba(255, 255, 255, 0.09);
  --saffron: #F5A623;
  --saffron-2: #F0851C;
  --radius: 16px;
  --max: 1080px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--paper);
  background: linear-gradient(180deg, #16151F 0%, #0C0B12 60%);
  background-attachment: fixed;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.muted { color: var(--muted); }
.mono { font-family: var(--mono); }

/* Nav */
.nav { position: sticky; top: 0; z-index: 10; backdrop-filter: blur(14px);
  background: rgba(12, 11, 18, 0.7); border-bottom: 1px solid var(--hairline); }
.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: 18px; }
.brand .dot { width: 11px; height: 11px; border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-2)); }
.brand-mark { width: 40px; height: 40px; border-radius: 10px; display: block; }
.nav-links { display: flex; gap: 26px; font-size: 14px; }
.nav-links a { color: var(--muted); transition: color .15s; }
.nav-links a:hover { color: var(--paper); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px;
  padding: 13px 22px; border-radius: 999px; border: 1px solid transparent; cursor: pointer; transition: transform .12s, box-shadow .12s; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--saffron), var(--saffron-2)); color: #15140F;
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.3); }
.btn-ghost { border-color: var(--hairline); color: var(--paper); background: var(--surface); }
.btn-sm { padding: 9px 16px; font-size: 13px; }

/* Hero */
.hero { text-align: center; padding: 96px 0 64px; }
.hero h1 { font-size: clamp(40px, 7vw, 68px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; }
.hero p.lead { font-size: clamp(17px, 2.4vw, 21px); color: var(--muted); margin: 18px auto 0; max-width: 620px; }
.hero .cta { display: flex; gap: 14px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.hero .sub { margin-top: 14px; font-size: 13px; color: var(--muted); }

/* Orb mark */
.orb { width: 120px; height: 120px; margin: 0 auto 28px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, #FFC24B, #F0851C);
  box-shadow: 0 0 60px rgba(245, 166, 35, 0.4), inset 0 -8px 20px rgba(0,0,0,0.2); }
.orb svg { width: 54px; height: 54px; fill: #fff; }

/* App icon as hero / tile */
.hero-icon { width: 132px; height: 132px; margin: 0 auto 28px; border-radius: 29px; display: block;
  box-shadow: 0 18px 50px rgba(245, 166, 35, 0.22), 0 6px 18px rgba(0,0,0,0.4); }
.app-tile { width: 76px; height: 76px; border-radius: 18px; flex: none; display: block; }

/* Sections */
section { padding: 56px 0; }
.section-title { font-size: 13px; text-transform: uppercase; letter-spacing: 1.4px; color: var(--muted); font-weight: 600; margin-bottom: 22px; }
h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; letter-spacing: -0.01em; }

/* Cards grid */
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 22px; }
.card h3 { font-size: 18px; margin-bottom: 6px; }
.card p { color: var(--muted); font-size: 14px; }
.card .ico { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; margin-bottom: 14px; font-size: 18px; }

/* App row (studio home) */
.app-row { display: flex; gap: 20px; align-items: center; background: var(--surface); border: 1px solid var(--hairline);
  border-radius: var(--radius); padding: 24px; }
.app-row .app-icon { width: 76px; height: 76px; border-radius: 18px; flex: none;
  background: linear-gradient(135deg, #2A2740, #0C0B12); display: grid; place-items: center; }
.app-row .app-icon .mini-orb { width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, #FFC24B, #F0851C); display: grid; place-items: center; }
.app-row .app-icon svg { width: 20px; height: 20px; fill: #fff; }
.app-row.coming { opacity: .6; border-style: dashed; }

/* Editions */
.editions { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.edition { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 26px; }
.edition.featured { border-color: rgba(245,166,35,.5); box-shadow: 0 0 0 1px rgba(245,166,35,.25); }
.edition .price { font-family: var(--mono); font-size: 30px; font-weight: 600; margin: 8px 0 4px; }
.edition ul { list-style: none; margin: 16px 0 22px; }
.edition li { padding: 6px 0 6px 26px; position: relative; color: var(--paper); font-size: 14px; }
.edition li::before { content: "✓"; position: absolute; left: 0; color: var(--saffron); font-weight: 700; }
.edition li.no { color: var(--muted); }
.edition li.no::before { content: "—"; color: var(--muted); }

/* Shots */
.shots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.shots img { width: 100%; border-radius: 12px; border: 1px solid var(--hairline); display: block; background: var(--surface); }
.shot-ph { aspect-ratio: 16/10; border-radius: 12px; border: 1px dashed var(--hairline); display: grid; place-items: center; color: var(--muted); font-size: 13px; background: var(--surface); }

/* FAQ / prose */
.prose { max-width: 760px; }
.prose h2 { margin: 32px 0 10px; font-size: 24px; }
.prose h3 { margin: 24px 0 6px; font-size: 17px; }
.prose p, .prose li { color: var(--muted); margin-bottom: 10px; }
.prose ul { margin-left: 20px; }
.faq-item { border-top: 1px solid var(--hairline); padding: 18px 0; }
.faq-item h3 { font-size: 16px; margin-bottom: 6px; color: var(--paper); }
.faq-item p { color: var(--muted); font-size: 14px; }

/* Footer */
footer { border-top: 1px solid var(--hairline); padding: 40px 0; margin-top: 40px; color: var(--muted); font-size: 14px; }
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
footer a { color: var(--muted); } footer a:hover { color: var(--paper); }

@media (max-width: 760px) {
  .grid-3, .grid-2, .editions, .shots { grid-template-columns: 1fr; }
  .nav-links { gap: 16px; }
  .app-row { flex-direction: column; text-align: center; }
}
