/* ==========================================================================
   getstudiodrop.com — shared stylesheet
   Change a colour here and it changes on every page.
   ========================================================================== */

:root {
  --bg:        #ffffff;
  --bg-soft:   #f6f7f9;
  --ink:       #0e1116;
  --ink-soft:  #4b5563;
  --ink-faint: #7b8494;
  --accent:    #2f6df6;
  --accent-dk: #1e51ce;
  --lime:      #16a34a;
  --line:      rgba(14, 17, 22, 0.11);
  --panel:     #ffffff;
  --dark:      #0e1116;

  --shadow-sm: 0 1px 2px rgba(14,17,22,.05), 0 2px 8px rgba(14,17,22,.05);
  --shadow-md: 0 2px 6px rgba(14,17,22,.06), 0 12px 30px rgba(14,17,22,.09);
  --shadow-lg: 0 4px 12px rgba(14,17,22,.07), 0 26px 64px rgba(14,17,22,.14);

  --sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --wrap: 1140px;
  --radius: 14px;
}

/* --- reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--sans); font-size: 17px; line-height: 1.65;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--accent-dk); }
h1, h2, h3, h4 { line-height: 1.13; letter-spacing: -0.023em; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2.35rem, 5.8vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.9vw, 2.6rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.012em; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: .42em; }
strong { font-weight: 650; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* --- layout --------------------------------------------------------------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
section { padding: 76px 0; }
.section-tight { padding: 50px 0; }
.eyebrow {
  font-family: var(--mono); font-size: .70rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent); font-weight: 600; margin: 0 0 .85em;
}
.lede { font-size: clamp(1.07rem, 2vw, 1.28rem); color: var(--ink-soft); line-height: 1.58; }
.center { text-align: center; }

.skip { position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0; }
.skip:focus { left: 0; }

/* --- header --------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 62px; }
.brand {
  font-weight: 700; font-size: 1.06rem; letter-spacing: -.02em; color: var(--ink);
  text-decoration: none; display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
}
.brand:hover { color: var(--ink); }
.brand-mark {
  /* the real app icon. It carries its own squircle and drop shadow, so no
     border-radius or background here; 26px compensates for the transparent
     margin baked into the icon file so it optically matches the wordmark. */
  width: 26px; height: 26px; flex: none;
  background: url("/brand-mark.png") center / contain no-repeat;
}
.nav { display: flex; align-items: center; gap: 24px; }
.nav a { color: var(--ink-soft); text-decoration: none; font-size: .875rem; font-weight: 500; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--accent); }
.nav .btn-sm { color: #fff; }
@media (max-width: 820px) { .nav { gap: 15px; } .nav .hide-sm { display: none; } }

/* --- buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--ink); color: #fff; padding: 15px 26px; border-radius: 11px; border: 0;
  font-family: inherit; font-size: 1rem; font-weight: 600; letter-spacing: -.005em;
  text-decoration: none; cursor: pointer; box-shadow: var(--shadow-md);
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.btn:hover { background: #000; color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn:active { transform: translateY(0); }
.btn-accent { background: var(--accent); }
.btn-accent:hover { background: var(--accent-dk); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); box-shadow: none; }
.btn-ghost:hover { background: var(--bg-soft); color: var(--ink); border-color: var(--ink-faint); }
.btn-sm { padding: 9px 17px; font-size: .855rem; border-radius: 9px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 13px; align-items: center; }
.btn-note { font-size: .855rem; color: var(--ink-faint); margin: 14px 0 0; }
.btn .price {
  font-family: var(--mono); font-size: .8rem; opacity: .74; font-weight: 500;
  padding-left: 10px; border-left: 1px solid currentColor;
}

/* --- hero ----------------------------------------------------------------- */
.hero {
  padding: 66px 0 56px;
  background:
    radial-gradient(1000px 460px at 78% -10%, rgba(47,109,246,.16), transparent 62%),
    radial-gradient(760px 380px at 4% 0%, rgba(22,163,74,.09), transparent 60%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; gap: 36px; } }
.hero h1 em { font-style: normal; color: var(--accent); }

/* --- backdrop playground -------------------------------------------------- */
.playground {
  background: var(--panel); border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow-lg); padding: 18px; user-select: none; -webkit-user-select: none;
}
.pg-stage {
  border-radius: 12px; overflow: hidden; border: 1px solid var(--line);
  display: grid; place-items: center; padding: 20px;
  transition: background-color .35s ease, aspect-ratio .35s ease;
  aspect-ratio: 1 / 1; background: #ffffff;
}
.pg-stage.transparent {
  background-color: transparent !important;
  background-image:
    linear-gradient(45deg, #e3e6ea 25%, transparent 25%, transparent 75%, #e3e6ea 75%),
    linear-gradient(45deg, #e3e6ea 25%, transparent 25%, transparent 75%, #e3e6ea 75%);
  background-size: 18px 18px;
  background-position: 0 0, 9px 9px;
}
.pg-stage svg { width: 100%; height: 100%; max-height: 100%; }

/* --- founder story ------------------------------------------------------- */
.story-head {
  display: grid; grid-template-columns: 168px 1fr; gap: 32px; align-items: center;
  max-width: 780px; margin: 0 auto 34px;
}
.story-icon { width: 168px; height: auto; display: block; }
.story { max-width: 680px; margin: 0 auto 52px; }
.story p { margin: 0 0 18px; }
.story h3 { margin: 32px 0 10px; }
.story-sign {
  font-family: var(--mono); font-size: .8rem; color: var(--ink-faint);
  margin-top: 26px !important;
}
@media (max-width: 640px) {
  .story-head { grid-template-columns: 1fr; gap: 20px; text-align: center; justify-items: center; }
  .story-icon { width: 132px; }
}

/* the real cut-out sitting on the backdrop, with the app's studio shadow */
.pg-item {
  position: relative; width: 100%; height: 100%;
  display: grid; place-items: center;
}
.pg-item img {
  position: relative; z-index: 1;
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain; display: block;
}
.pg-shadow {
  position: absolute; z-index: 0; bottom: 6%; left: 50%;
  width: 62%; height: 9%; transform: translateX(-50%);
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(closest-side, rgba(0,0,0,.30), rgba(0,0,0,.09) 62%, rgba(0,0,0,0) 100%);
}
.pg-label {
  font-family: var(--mono); font-size: .65rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-faint); margin: 0 0 10px;
}
.pg-row { margin-top: 16px; }
.pg-swatches { display: flex; flex-wrap: wrap; gap: 7px; }
.swatch {
  width: 30px; height: 30px; border-radius: 8px; cursor: pointer; padding: 0;
  border: 1.5px solid var(--line); box-shadow: inset 0 1px 3px rgba(0,0,0,.07);
  transition: transform .12s ease, box-shadow .12s ease;
}
.swatch:hover { transform: scale(1.09); }
.swatch[aria-pressed="true"] { box-shadow: 0 0 0 2.5px var(--accent); transform: scale(1.09); }
.swatch.checker {
  background-image:
    linear-gradient(45deg, #cfd4da 25%, transparent 25%, transparent 75%, #cfd4da 75%),
    linear-gradient(45deg, #cfd4da 25%, transparent 25%, transparent 75%, #cfd4da 75%);
  background-size: 12px 12px; background-position: 0 0, 6px 6px; background-color: #fff;
}
.pg-shapes { display: flex; flex-wrap: wrap; gap: 6px; }
.shape-btn {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  font-family: var(--mono); font-size: .655rem; letter-spacing: .07em; text-transform: uppercase;
  padding: 7px 11px; border-radius: 8px; font-weight: 600;
  background: transparent; border: 1.5px solid var(--line); color: var(--ink-soft);
}
.shape-btn[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.pg-foot {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: .68rem; color: var(--ink-faint); letter-spacing: .04em;
}
.demo-caption { font-size: .8rem; color: var(--ink-faint); margin: 14px 0 0; text-align: center; }

/* --- grids / cards -------------------------------------------------------- */
.grid { display: grid; gap: 21px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: .4em; }
.card p:last-child { margin-bottom: 0; }
.card-icon {
  width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(155deg, rgba(47,109,246,.13), rgba(47,109,246,.05));
  font-size: 1.2rem; margin-bottom: 15px;
}

/* --- comparison ----------------------------------------------------------- */
.versus { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 720px) { .versus { grid-template-columns: 1fr; } }
.versus > div { border-radius: var(--radius); padding: 28px; border: 1px solid var(--line); }
.versus .them { background: var(--bg-soft); }
.versus .us { background: #fff; border: 2px solid var(--accent); box-shadow: var(--shadow-md); }
.versus h3 { margin-top: 0; }
.versus ul { list-style: none; padding: 0; margin: 0; }
.versus li { padding-left: 27px; position: relative; margin-bottom: .6em; }
.versus .them li::before { content: "\2715"; position: absolute; left: 0; color: #b9414a; font-weight: 700; }
.versus .us li::before { content: "\2713"; position: absolute; left: 0; color: var(--lime); font-weight: 700; }

/* --- stats ---------------------------------------------------------------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { background: var(--panel); padding: 26px 18px; text-align: center; }
.stat b { display: block; font-size: 1.95rem; font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.stat span { display: block; margin-top: 7px; font-size: .79rem; color: var(--ink-faint); }

/* --- bands ---------------------------------------------------------------- */
.band { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band-dark { background: var(--dark); color: rgba(255,255,255,.72); }
.band-dark h2, .band-dark h3 { color: #fff; }
.band-dark .lede { color: rgba(255,255,255,.68); }
.band-dark a { color: #7fb0ff; }
.band-dark .card { background: rgba(255,255,255,.055); border-color: rgba(255,255,255,.13); color: rgba(255,255,255,.72); }
.band-dark .card h3 { color: #fff; }
.band-dark .eyebrow { color: #7fb0ff; }

/* --- feature rows --------------------------------------------------------- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 74px; }
.feature-row:last-child { margin-bottom: 0; }
.feature-row.flip > *:first-child { order: 2; }
@media (max-width: 880px) {
  .feature-row { grid-template-columns: 1fr; gap: 26px; margin-bottom: 50px; }
  .feature-row.flip > *:first-child { order: 0; }
}

/* --- app picker ----------------------------------------------------------- */
.app-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 18px;
  padding: 32px; box-shadow: var(--shadow-md); display: flex; flex-direction: column;
}
.app-card .badge {
  display: inline-block; align-self: flex-start; font-family: var(--mono);
  font-size: .64rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 600;
  background: var(--bg-soft); border: 1px solid var(--line); color: var(--ink-soft);
  padding: 5px 11px; border-radius: 999px; margin-bottom: 16px;
}
.app-card .app-price { font-size: 2rem; font-weight: 700; letter-spacing: -.03em; margin: 4px 0 2px; }
.app-card .app-price small { font-size: .82rem; font-weight: 500; color: var(--ink-faint); letter-spacing: 0; }
.app-card ul { list-style: none; padding: 0; margin: 18px 0 24px; flex: 1; }
.app-card li { padding-left: 25px; position: relative; margin-bottom: .55em; font-size: .95rem; }
.app-card li::before { content: "\2713"; position: absolute; left: 0; color: var(--lime); font-weight: 700; }

/* --- screenshots ---------------------------------------------------------- */
.shot-frame {
  border-radius: 16px; overflow: hidden; background: var(--bg-soft);
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
}
/* [hidden] must beat display:grid — without this the placeholder shows
   underneath the real screenshot once the image loads. */
.shot-placeholder[hidden] { display: none !important; }
.shot-placeholder {
  aspect-ratio: 4 / 3; display: grid; place-items: center; padding: 24px; text-align: center;
  color: var(--ink-faint); font-family: var(--mono); font-size: .72rem; line-height: 1.7;
  background: repeating-linear-gradient(45deg, #eef0f3 0 12px, #e7eaee 12px 24px);
}
.shot-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.shot-strip-4 { grid-template-columns: repeat(4, 1fr); }
.shot-strip-2 { grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* --- embedded demo video (vertical, phone-shaped) ------------------------- */
.video-wrap {
  max-width: 330px; margin: 0 auto 14px; background: #000;
  border-radius: 22px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
}
.video-wrap video { display: block; width: 100%; height: auto; }
@media (max-width: 420px) { .video-wrap { max-width: 100%; } }
.video-wide { max-width: 760px; border-radius: 14px; }
.strip-label {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-faint); margin: 0 0 14px; text-align: center;
}
.shot-cap { margin: 0; }
.shot-cap figcaption {
  font-size: .8rem; color: var(--ink-soft); padding: 12px 16px 14px;
  background: var(--bg); border-top: 1px solid var(--line);
}
@media (max-width: 900px) { .shot-strip-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .shot-strip { grid-template-columns: 1fr; } }

/* --- before / after proof ------------------------------------------------- */
.proof { margin: 0; }
.proof img {
  width: 100%; border-radius: 16px; border: 1px solid var(--line);
  box-shadow: var(--shadow-lg); background: var(--bg-soft);
}
.proof img.tall { max-width: 372px; margin: 0 auto; }
.proof figcaption {
  text-align: center; font-size: .84rem; color: var(--ink-faint);
  margin-top: 14px; line-height: 1.5;
}
.shot-caption {
  text-align: center; font-size: .8rem; color: var(--ink-faint);
  margin: 14px 0 0; font-family: var(--mono); letter-spacing: .07em;
  text-transform: uppercase;
}

/* --- FAQ ------------------------------------------------------------------ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 21px 40px 21px 0; position: relative; font-weight: 600; font-size: 1.03rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 300; color: var(--accent); line-height: 1;
}
.faq details[open] summary::after { content: "\2212"; }
.faq .faq-body { padding: 0 0 21px; color: var(--ink-soft); }
.faq .faq-body p:last-child { margin-bottom: 0; }


/* --- lists ---------------------------------------------------------------- */
.check { list-style: none; padding: 0; margin: 0; }
.check li { padding-left: 29px; position: relative; margin-bottom: .6em; }
.check li::before { content: "\2713"; position: absolute; left: 0; top: -1px; color: var(--lime); font-weight: 700; font-size: 1.05rem; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; list-style: none; margin: 0; }
.pills li {
  background: var(--panel); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 15px; font-size: .87rem; margin: 0;
}

/* --- table ---------------------------------------------------------------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
table { border-collapse: collapse; width: 100%; font-size: .93rem; }
th, td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
th { font-size: .73rem; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }
tbody tr:last-child td { border-bottom: 0; }
td:first-child { font-weight: 600; }

/* --- prose ---------------------------------------------------------------- */
.prose { padding: 54px 0 84px; }
.prose h2 { margin-top: 2em; font-size: 1.6rem; }
.prose h2:first-of-type { margin-top: 1em; }
.prose h3 { margin-top: 1.6em; }
.prose code { font-family: var(--mono); font-size: .87em; background: var(--bg-soft); padding: 2px 6px; border-radius: 4px; }
.updated { font-size: .84rem; color: var(--ink-faint); font-family: var(--mono); }

/* --- step list ------------------------------------------------------------ */
.steps { list-style: none; padding: 0; margin: 0; counter-reset: step; }
.steps > li {
  counter-increment: step; position: relative; padding-left: 60px; margin-bottom: 30px;
}
.steps > li::before {
  content: counter(step); position: absolute; left: 0; top: 0;
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: var(--accent); color: #fff; font-weight: 700; font-size: 1rem;
}
.steps h3 { margin: 4px 0 .4em; }

/* --- footer --------------------------------------------------------------- */
.site-footer { background: var(--dark); color: rgba(255,255,255,.58); padding: 54px 0 40px; font-size: .89rem; }
.site-footer a { color: rgba(255,255,255,.86); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 38px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; } }
.footer-grid h4 {
  font-family: var(--mono); font-size: .67rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.42); margin-bottom: 1.1em; font-weight: 600;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .55em; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.13); padding-top: 25px; font-size: .81rem; color: rgba(255,255,255,.45); line-height: 1.7; }
.footer-brand { color: #fff; font-weight: 700; font-size: 1.02rem; display: block; margin-bottom: 13px; }

/* --- misc ----------------------------------------------------------------- */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

/* --- AI/answer-engine summary block --------------------------------------
   A short, factual, quotable summary near the top of key pages. Helps human
   skimmers and gives answer engines a clean block to lift. */
.tldr {
  background: var(--bg-soft, #f6f7f9);
  border-left: 4px solid var(--accent, #2f6df6);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 0 0 30px;
  font-size: .98rem;
}
.tldr p { margin: 0; }
.tldr strong:first-child { letter-spacing: -.01em; }

/* --- before / after gallery ------------------------------------------------ */
.proof-hero { margin-bottom: 26px; }
.proof-hero img { border-radius: 18px; }
.proof-hero figcaption { font-size: .95rem; }
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 780px) { .ba-grid { grid-template-columns: 1fr; } }
.ba-grid figcaption { font-size: .86rem; }

/* --- flexibility demo: same item, two treatments --------------------------- */
.flex-demo {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 28px; align-items: start; justify-items: center;
  max-width: 780px; margin: 0 auto;
}
.flex-demo figure { margin: 0; width: 100%; }
.flex-demo img { border-radius: 14px; }
.flex-demo figcaption { font-size: .88rem; line-height: 1.45; }
@media (max-width: 620px) { .flex-demo { grid-template-columns: 1fr; gap: 24px; } }
