/* paralaks.tools — landing site
 * ─────────────────────────────────────────────────────────────────────────────
 * Deliberately the same palette as the plugin window: white ground, Claude
 * clay accent, Apple-grey ink. Somebody who sees the site and then installs
 * the extension should feel they are in the same product.
 * ───────────────────────────────────────────────────────────────────────────── */

:root {
  --ink:        #1d1d1f;
  --muted:      #6e6e73;
  --subtle:     #8a8a8e;
  --accent:     #d97757;
  --accent-dk:  #c15f3c;
  --accent-wash:rgba(217, 119, 87, 0.08);
  --line:       rgba(0, 0, 0, 0.10);
  --line-soft:  rgba(0, 0, 0, 0.06);
  --wash:       #fafafa;
  --radius:     10px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

section[id], [id] {
  scroll-margin-top: 84px;
}

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: #ffffff;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 1040px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }

a { color: var(--accent-dk); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── Header ──────────────────────────────────────────────────────────────── */
.site-head {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

/* Brand | section links | Try+Buy. ONE bar, not two: the page used to carry a
 * second sticky bar under this one, and between them they ate 116px of screen
 * and repeated Features / Pricing / FAQ verbatim, under two different spellings
 * of the product name. The sub-bar existed so Buy was always one click away --
 * that job moved here, where it costs no extra row. */
.site-head .wrap {
  display: flex;
  align-items: center;
  gap: 26px;
  height: 64px;
}

.head-cta { display: flex; gap: 9px; margin-left: auto; }

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand__logo {
  height: 30px;
  max-height: 34px;
  width: auto;
  object-fit: contain;
  display: block;
}

.site-nav { display: flex; gap: 26px; font-size: 15px; }
.site-nav a { color: var(--muted); }
.site-nav a:hover { color: var(--ink); text-decoration: none; }

/* ─── Hero ────────────────────────────────────────────────────────────────── */
.hero { padding: 96px 0 72px; text-align: center; }

.hero h1 {
  font-size: clamp(38px, 6vw, 60px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.038em;
  margin-bottom: 22px;
}

.hero h1 em { font-style: normal; color: var(--accent); }

.hero p {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 34px;
}

.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease;
}

.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dk); text-decoration: none; }

.btn--ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.btn--ghost:hover { border-color: rgba(0,0,0,.22); text-decoration: none; }

.hero__note { margin-top: 30px; font-size: 14px; color: var(--subtle); }

/* ─── Window mock ─────────────────────────────────────────────────────────── */
.shot {
  margin: 56px auto 0;
  max-width: 880px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 18px 50px rgba(0,0,0,.08);
  background: #fff;
}

.shot__bar {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 15px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--wash);
}
.shot__dot { width: 11px; height: 11px; border-radius: 50%; background: #d8d8dc; }
.shot__title { margin-left: 8px; font-size: 13px; color: var(--subtle); }

.shot__body { display: flex; min-height: 300px; }

.shot__side {
  width: 190px; flex: 0 0 auto;
  border-right: 1px solid var(--line-soft);
  padding: 14px 10px;
  font-size: 13px;
}
.shot__group { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--subtle); padding: 12px 8px 5px; }
.shot__row { display: flex; align-items: center; gap: 8px; padding: 7px 8px; border-radius: 6px; color: var(--muted); }
.shot__row.on { background: var(--accent-wash); color: var(--accent-dk); font-weight: 500; }
.shot__row span:last-child { margin-left: auto; font-size: 12px; color: var(--subtle); }

.shot__main { flex: 1; padding: 14px; min-width: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.chip { font-size: 12px; padding: 5px 11px; border-radius: 14px; border: 1px solid var(--line); color: var(--muted); }
.chip.on { background: var(--accent); border-color: transparent; color: #fff; font-weight: 500; }

.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.tile { border: 1px solid var(--line-soft); border-radius: 9px; overflow: hidden; }
.tile__img { height: 62px; background: var(--wash); }
.tile__name { padding: 7px 9px; font-size: 12px; color: var(--ink); }

/* ─── Sections ────────────────────────────────────────────────────────────── */
section { padding: 76px 0; }
section.alt { background: var(--wash); border-block: 1px solid var(--line-soft); }

.sec-head { text-align: center; margin-bottom: 48px; }
.sec-head h2 {
  font-size: clamp(27px, 3.6vw, 36px);
  font-weight: 700;
  letter-spacing: -0.028em;
  margin-bottom: 12px;
  line-height: 1.25;
}
.sec-head h2 em {
  font-style: normal;
  color: var(--accent);
}
.sec-head h2 .sec-head__sub {
  display: block;
  font-size: clamp(18px, 2.3vw, 22px);
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -0.015em;
  margin-top: 8px;
}
.sec-head h2 .sec-head__sub em {
  color: var(--accent);
  font-weight: 600;
}
.sec-head p { color: var(--muted); max-width: 580px; margin: 0 auto; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; }

.feature h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.015em; }
.feature p { color: var(--muted); font-size: 15.5px; }

.feature__mark {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--accent-wash);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: var(--accent-dk);
  margin-bottom: 14px;
}

/* ─── Pricing ─────────────────────────────────────────────────────────────── */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
  align-items: stretch;
}

.plan {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.plan--pick { border-color: var(--accent); border-width: 2px; }

.plan__badge-wrap {
  min-height: 28px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.plan__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-dk);
  background: var(--accent-wash);
  padding: 3px 11px;
  border-radius: 20px;
}

.plan__badge--subtle {
  color: var(--muted);
  background: var(--wash);
  border: 1px solid var(--line-soft);
}

.plan h3 { font-size: 20px; font-weight: 600; margin-bottom: 6px; min-height: 26px; }
.plan__price {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.03em;
  min-height: 54px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
}
.plan__per { font-size: 14.5px; color: var(--subtle); font-weight: 400; }

.plan ul {
  list-style: none;
  margin: 20px 0 28px;
  flex: 1 1 auto;
}
.plan li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}
.plan li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--accent);
  font-weight: 600;
}

.plan .btn {
  margin-top: auto;
  display: block;
  width: 100%;
  text-align: center;
}

.plans__footer {
  max-width: 680px;
  margin: 32px auto 0;
  text-align: center;
}

.plans__note {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.plans__subnote {
  color: var(--subtle);
  font-size: 13.5px;
  line-height: 1.6;
}

/* ─── Requirements strip ──────────────────────────────────────────────────── */
.specs { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px; }
.spec dt { font-size: 13px; color: var(--subtle); margin-bottom: 3px; }
.spec dd { font-size: 15.5px; }

/* ─── Prose (privacy / terms) ─────────────────────────────────────────────── */
.prose { padding: 60px 0 90px; }
.prose h1 { font-size: 36px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 8px; }
.prose .stamp { color: var(--subtle); font-size: 14px; margin-bottom: 40px; }
.prose h2 { font-size: 22px; font-weight: 600; margin: 38px 0 12px; letter-spacing: -0.018em; }
.prose h3 { font-size: 17px; font-weight: 600; margin: 26px 0 8px; }
.prose p, .prose li { color: #37373a; font-size: 16.5px; }
.prose p { margin-bottom: 14px; }
.prose ul { margin: 0 0 16px 22px; }
.prose li { margin-bottom: 7px; }
.prose table { width: 100%; border-collapse: collapse; margin: 18px 0 24px; font-size: 15.5px; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.prose th { font-weight: 600; font-size: 14px; color: var(--muted); }
.prose strong { font-weight: 600; }

.callout {
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--accent-wash);
  padding: 16px 20px;
  margin: 22px 0;
}
.callout p:last-child { margin-bottom: 0; }

/* ─── Footer ──────────────────────────────────────────────────────────────── */
.site-foot { border-top: 1px solid var(--line-soft); padding: 40px 0; background: var(--wash); }
.site-foot .wrap { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.site-foot p { font-size: 14px; color: var(--subtle); }
.site-foot nav { display: flex; gap: 22px; font-size: 14px; }
.site-foot nav a { color: var(--muted); }


/* Anchors must clear the sticky header, or a heading lands underneath it. */
section[id] { scroll-margin-top: 84px; }
#plans { scroll-margin-top: 100px; }

.btn--sm { padding: 7px 15px; font-size: 14px; }
.btn--full { display: block; text-align: center; margin-top: 22px; width: 100%; }

/* --- Alternating feature blocks ------------------------------------------- */
.fblock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
  padding: 46px 0;
}
.fblock + .fblock { border-top: 1px solid var(--line-soft); }
.fblock--flip .fblock__text { order: 2; }
.fblock--full {
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
}
.fblock--full .fblock__text {
  max-width: 720px;
}
.fblock--full .fblock__art {
  width: 100%;
}
.fblock__art { min-width: 0; }   /* stops a wide mock blowing out the grid column */

.fblock__text h3 { font-size: 27px; font-weight: 700; letter-spacing: -0.025em; margin-bottom: 12px; }
.fblock__text p { color: var(--muted); font-size: 16.5px; }
.fblock__text code { font-size: 15px; background: var(--wash); padding: 1px 5px; border-radius: 4px; }

/* --- The little CSS-drawn illustrations -------------------------------------
 * Same reasoning as the hero mock: drawn, not photographed, so the page is
 * honest before real captures exist and cannot go stale when the UI moves.
 * ------------------------------------------------------------------------- */
.mock {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.05);
}
.mock--flow { display: flex; align-items: center; gap: 14px; }
.mock__card { flex: 1; min-width: 0; }
.mock__arrow { color: var(--accent); font-size: 22px; flex: 0 0 auto; }
.mock__action { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 0 0 auto; }
.mock__btn {
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(217,119,87,.28);
}
.mock__cap { margin-top: 8px; font-size: 12px; color: var(--subtle); text-align: center; }

.mock__scene {
  height: 78px;
  border-radius: 8px;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(to right, var(--line-soft) 1px, transparent 1px) 0 0 / 15px 15px,
    linear-gradient(to bottom, var(--line-soft) 1px, transparent 1px) 0 0 / 15px 15px,
    var(--wash);
}
.mock__scene--selected { position: relative; }
.mock__scene--selected::after {
  content: '';
  position: absolute; left: 50%; top: 50%;
  width: 28px; height: 28px; margin: -14px 0 0 -14px;
  border-radius: 5px;
  border: 1.5px dashed var(--accent);
  background: var(--accent-wash);
}
.mock__scene--placed { position: relative; }
.mock__scene--placed::after {
  content: '';
  position: absolute; left: 50%; top: 50%;
  width: 26px; height: 26px; margin: -13px 0 0 -13px;
  border-radius: 5px;
  background: var(--accent);
  box-shadow: 0 0 0 5px var(--accent-wash);
}

.mock--panel .shot__group:first-child { padding-top: 0; }
.mock--shot {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 12px 32px rgba(0,0,0,.08);
  max-width: 860px;
  margin: 0 auto;
}
.mock--shot .mock__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  background: #fbfbf9;
  border-bottom: 1px solid var(--line-soft);
}
.mock--shot .mock__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e2e1dc;
}
.mock--shot .mock__photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.mock__code {
  margin-top: 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px; letter-spacing: .06em;
  color: var(--accent-dk); background: var(--accent-wash);
  border: 1px dashed rgba(217,119,87,.4);
  border-radius: 7px; padding: 8px 10px; text-align: center;
}
.mock__badge {
  margin-top: 14px; font-size: 12px; color: var(--muted);
  background: var(--wash); border: 1px solid var(--line-soft);
  border-radius: 20px; padding: 6px 12px; display: inline-block;
}

/* --- Interactive Model & Material Stacked Cards ----------------------------
 * Interactive layered cards displaying both 3D components and real SketchUp
 * materials with responsive fanning, hover tilt, and studio glow effects.
 * ------------------------------------------------------------------------- */
.stacks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 860px;
  margin: 0 auto;
}

.stack-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stack-col__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--subtle);
}

.stack-col__icon {
  color: var(--accent);
  font-size: 14px;
}

.stack-col__title {
  color: var(--ink);
}

.stack-col__count {
  background: var(--wash);
  border: 1px solid var(--line-soft);
  padding: 2px 7px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* Deck container */
.deck {
  position: relative;
  width: 100%;
  max-width: 240px;
  height: 275px;
  margin: 0 auto 18px;
}

/* Original plugin card style */
.model-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.25s ease;
  cursor: pointer;
  transform-origin: 50% 90%;
  user-select: none;
}

.model-card__thumb {
  position: relative;
  width: 100%;
  padding-top: 80%;
  background: #ffffff;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}

.model-card__thumb picture,
.model-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.deck--models .model-card__thumb img {
  object-fit: contain;
  padding: 8px;
  box-sizing: border-box;
}

.deck--textures .model-card__thumb img {
  object-fit: cover;
  padding: 0;
}

/* Edit pencil button */
.model-card__edit {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: 5px;
  cursor: pointer;
  z-index: 2;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.model-card:hover .model-card__edit {
  color: #ffffff;
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.05);
}

.model-card__label {
  padding: 8px 10px 3px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.01em;
}

.model-card__meta {
  padding: 0 10px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.model-card__meta-left { color: var(--subtle); }
.model-card__meta-right { color: var(--muted); font-weight: 500; }

/* Stacking positions (Default / Idle) */
.deck--models .deck__card--1 {
  z-index: 2;
  transform: translateY(0px) rotate(0deg);
}
.deck--models .deck__card--2 {
  z-index: 1;
  transform: translateY(8px) translateX(14px) rotate(4.5deg);
}

.deck--textures .deck__card--1 {
  z-index: 3;
  transform: translateY(0px) rotate(0deg);
}
.deck--textures .deck__card--2 {
  z-index: 2;
  transform: translateY(6px) translateX(-14px) rotate(-4deg);
}
.deck--textures .deck__card--3 {
  z-index: 1;
  transform: translateY(12px) translateX(14px) rotate(4.5deg);
}

/* Deck Hover (Fanning out naturally like cards, without under-cards coming on top) */
.deck--models:hover .deck__card--1 {
  transform: translateY(-4px) translateX(-34px) rotate(-6deg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.deck--models:hover .deck__card--2 {
  transform: translateY(-2px) translateX(34px) rotate(6deg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.deck--textures:hover .deck__card--1 {
  transform: translateY(-6px) translateX(0px) rotate(0deg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.deck--textures:hover .deck__card--2 {
  transform: translateY(-2px) translateX(-64px) rotate(-8deg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.deck--textures:hover .deck__card--3 {
  transform: translateY(-2px) translateX(64px) rotate(8deg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Card hover subtle glow (stays in its layer) */
.model-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 30px var(--accent-wash), 0 0 0 1px var(--accent) !important;
}

.stack-col__note {
  font-size: 14px;
  color: var(--muted);
  max-width: 290px;
  line-height: 1.5;
  margin-top: 8px;
}

/* --- FAQ ------------------------------------------------------------------ */
.faq { border-top: 1px solid var(--line-soft); }
.faq__item { border-bottom: 1px solid var(--line-soft); }
.faq__item summary {
  cursor: pointer; list-style: none;
  padding: 18px 34px 18px 0; position: relative;
  font-size: 17px; font-weight: 500; color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 21px; font-weight: 400; color: var(--accent);
}
.faq__item[open] summary::after { content: '\2212'; }
.faq__item summary:hover { color: var(--accent-dk); }
.faq__item p { color: var(--muted); font-size: 16px; padding: 0 34px 20px 0; }

/* --- Footer columns ------------------------------------------------------- */
.site-foot .foot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.foot-col { display: flex; flex-direction: column; gap: 9px; }
.foot-col h3 { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.foot-col a { font-size: 14px; color: var(--muted); }
.foot-note { font-size: 14px; color: var(--subtle); }

.site-foot .foot-legal {
  margin-top: 36px; padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  display: block;
}
.foot-legal p { font-size: 13px; color: var(--subtle); max-width: 640px; }
.foot-legal p + p { margin-top: 10px; }

.site-foot .foot-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}
.foot-bottom__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.foot-bottom .foot-copy {
  font-size: 13px;
  color: var(--subtle);
  margin: 0;
}
.foot-powered {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--subtle);
}
.foot-powered svg {
  flex-shrink: 0;
  display: block;
}
.foot-powered strong {
  color: var(--ink);
  font-weight: 600;
}


/* --- Screen mockups ---------------------------------------------------------
 * A monitor and a laptop with a SketchUp-ish shell inside, and the Paralaks
 * window floating over the viewport. Drawn, not photographed, for the same
 * reason as the hero mock: it cannot go stale and it needed no screenshots.
 *
 * Everything inside the screen is sized in cqw (a percentage of the SCREEN's
 * own width), so the identical markup renders correctly at monitor size and at
 * laptop size with no second set of numbers. Each cqw rule is preceded by a px
 * fallback for browsers without container query units.
 * ------------------------------------------------------------------------- */
.device { margin: 0 auto; }
.device--monitor { max-width: 860px; }

.device__bezel {
  background: linear-gradient(180deg, #37373b 0%, #2a2a2e 100%);
  padding: 12px 12px 14px;
  border-radius: 14px;
  box-shadow: 0 2px 4px rgba(0,0,0,.10), 0 24px 60px rgba(0,0,0,.16);
}
.device__screen {
  container-type: inline-size;
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.device__neck {
  width: 96px; height: 36px; margin: 0 auto;
  background: linear-gradient(180deg, #2e2e32 0%, #26262a 100%);
  clip-path: polygon(24% 0, 76% 0, 100% 100%, 0 100%);
}
.device__base {
  width: 250px; height: 11px; margin: 0 auto;
  border-radius: 0 0 7px 7px;
  background: linear-gradient(180deg, #2a2a2e 0%, #202024 100%);
  box-shadow: 0 8px 22px rgba(0,0,0,.14);
}

/* The monitor shows the REAL plugin window, served from arayuz.html with the
 * product's own stylesheet. It lives in an iframe on purpose: that stylesheet
 * redefines :root and body, so embedding it directly would repaint this page. */
.device__frame {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; display: block;
  background: #fff;
}

.device--laptop .device__bezel { padding: 8px 8px 9px; border-radius: 10px 10px 3px 3px; }
.device__hinge {
  width: 114%; height: 11px; margin: 0 0 0 -7%;
  border-radius: 0 0 11px 11px;
  background: linear-gradient(180deg, #303034 0%, #232327 100%);
  box-shadow: 0 8px 20px rgba(0,0,0,.14);
  position: relative;
}
.device__hinge::after {
  content: ''; position: absolute; left: 50%; top: 0;
  width: 62px; height: 4px; margin-left: -31px;
  border-radius: 0 0 4px 4px; background: rgba(0,0,0,.30);
}

/* The CSS-drawn SketchUp shell and the fake Paralaks window that used to fill
 * these screens lived here. They were replaced by an <iframe> showing the
 * REAL plugin UI (site/arayuz.html), so every rule below them was dead: 26
 * selectors styling markup that no longer exists anywhere in the page.
 * Deleted 25 Aug 2026 rather than left to rot. */

/* The laptop lives inside a feature column, so its badge sits under it. */
.fblock__art .device--laptop + .mock__badge { margin-top: 18px; }

@media (max-width: 900px) {
  .stacks-grid { grid-template-columns: 1fr; gap: 40px; }
  .site-foot .foot-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
}

@media (max-width: 720px) {
  .foot-bottom__wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .device__neck { height: 26px; }
  .device__base { width: 190px; }
  /* Section links go; brand and the two buttons stay -- on a phone the reader
     scrolls rather than jumps, but Buy must never disappear. */
  .site-nav { display: none; }
  .site-head .wrap { gap: 12px; }
  .brand__by { display: none; }
  .shot__side { display: none; }
  .tiles { grid-template-columns: repeat(2, 1fr); }
  section { padding: 56px 0; }
  .hero { padding: 64px 0 48px; }

  .fblock { grid-template-columns: 1fr; gap: 26px; padding: 34px 0; }
  .fblock--flip .fblock__text { order: 0; }   /* text first on a phone, always */
  .fblock__text h3 { font-size: 23px; }
  section[id] { scroll-margin-top: 76px; }
}

/* ─── Try / Download Modal ────────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 18, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  max-width: 580px;
  width: 100%;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transform: scale(0.95) translateY(10px);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.is-open .modal {
  transform: scale(1) translateY(0);
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--wash);
  color: var(--muted);
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.modal__close:hover {
  background: var(--line-soft);
  color: var(--ink);
}

.modal__body {
  padding: 36px 32px 32px;
}

.modal__head {
  text-align: center;
  margin-bottom: 28px;
}

.modal__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-dk);
  background: var(--accent-wash);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.modal__title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
  color: var(--ink);
}

.modal__desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 440px;
  margin: 0 auto;
}

.modal__downloads {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 26px;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--wash);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}

.download-btn--single {
  justify-content: center;
  padding: 18px 24px;
  text-align: center;
}

.download-btn--single .download-btn__info {
  align-items: center;
}

.download-btn--single .download-btn__title {
  font-size: 16.5px;
}

.download-btn:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(217, 119, 87, 0.12);
  text-decoration: none;
}

.download-btn--primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.download-btn--primary:hover {
  background: #111;
  border-color: #111;
  color: #fff;
}

.download-btn__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-btn__info {
  display: flex;
  flex-direction: column;
}

.download-btn__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.download-btn__sub {
  font-size: 12.5px;
  color: var(--subtle);
  margin-top: 3px;
}
.download-btn--primary .download-btn__sub {
  color: #a3a3a8;
}

.modal__steps {
  background: var(--wash);
  border-radius: 12px;
  padding: 18px 20px;
  border: 1px solid var(--line-soft);
  margin-bottom: 22px;
}

.modal__steps-title {
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--subtle);
  margin-bottom: 10px;
}

.modal__steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal__step {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1.45;
}

.modal__step-num {
  font-size: 11.5px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.modal__foot {
  text-align: center;
  font-size: 13px;
  color: var(--subtle);
}
.modal__foot a {
  color: var(--accent-dk);
}

@media (max-width: 600px) {
  .modal__body { padding: 28px 20px 24px; }
  .modal__downloads { grid-template-columns: 1fr; }
}

/* ─── Buy / Checkout Page ─────────────────────────────────────────────────── */
.buy-page {
  padding: 56px 0 88px;
  background: radial-gradient(circle at 50% 0%, rgba(217, 119, 87, 0.05) 0%, transparent 60%), #ffffff;
}

.buy-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.buy-head {
  text-align: center;
  margin-bottom: 36px;
}

.buy-head h1 {
  font-size: clamp(30px, 4.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.buy-head p {
  color: var(--muted);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto;
}

.plan-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.plan-option {
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 22px 20px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.18s ease;
  position: relative;
  user-select: none;
}

.plan-option:hover {
  border-color: rgba(217, 119, 87, 0.4);
}

.plan-option.is-active {
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(217, 119, 87, 0.08);
}

.plan-option__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.plan-option__name {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}

.plan-option__badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-dk);
  background: var(--accent-wash);
  padding: 2px 8px;
  border-radius: 12px;
}

.plan-option__price {
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.plan-option__price span {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--subtle);
}

.plan-option__desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.45;
}

.seats-box {
  background: var(--wash);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.seats-box.is-visible {
  display: flex;
}

.seats-box__info h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.seats-box__info p {
  font-size: 13.5px;
  color: var(--subtle);
}

.seats-counter {
  display: flex;
  align-items: center;
  gap: 10px;
}

.seats-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
}

.seats-btn:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent-dk);
}

.seats-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.seats-input {
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  width: 60px;
  height: 36px;
  text-align: center;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 4px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  -moz-appearance: textfield;
}

.seats-input::-webkit-outer-spin-button,
.seats-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.seats-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(217, 119, 87, 0.15);
}

.order-summary {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  margin-bottom: 28px;
}

.order-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
}

.order-summary__row:last-of-type {
  border-bottom: none;
  padding-top: 16px;
}

.order-summary__row.total {
  font-size: 17px;
  font-weight: 600;
}

.order-summary__row.total .total-amount {
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.btn--checkout {
  width: 100%;
  padding: 15px 24px;
  font-size: 16.5px;
  font-weight: 600;
  border-radius: 10px;
  display: block;
  text-align: center;
  margin-top: 20px;
  border: none;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--muted);
}

.trust-item__icon {
  font-size: 18px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .plan-switch { grid-template-columns: 1fr; }
  .seats-box { flex-direction: column; align-items: flex-start; }
}

/* ── Checkout Success Screen ──────────────────────────────────────────────── */
.checkout-success {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  margin-top: 12px;
  text-align: left;
}

.checkout-success__header {
  margin-bottom: 20px;
}

.checkout-success__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #1b5e20;
  background: #e8f5e9;
  border: 1px solid #c8e6c9;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.checkout-success__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.checkout-success__desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

.key-box {
  background: var(--wash);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}

.key-box__label {
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--subtle);
  margin-bottom: 10px;
}

.key-box__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
}

.key-box__code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  user-select: all;
  word-break: break-all;
}

.activation-guide {
  border-top: 1px solid var(--line-soft);
  padding-top: 24px;
  margin-bottom: 24px;
}

.activation-guide h4 {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}

.activation-guide ol {
  padding-left: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.activation-guide li {
  margin-bottom: 8px;
}

.activation-guide li strong {
  color: var(--ink);
}
