/* Developer storefront — multi-product landing */
:root {
  --bg0: #dfe8f2;
  --bg1: #eef3f8;
  --ink: #132033;
  --ink-soft: #3d4f66;
  --muted: #5c6f86;
  --line: rgba(19, 32, 51, 0.12);
  --brand: #0b3d5c;
  --accent: #0f7a6e;
  --accent-2: #1a8f82;
  --warn: #8a5a12;
  --card: rgba(255, 255, 255, 0.78);
  --shadow: 0 16px 40px rgba(19, 32, 51, 0.1);
  --radius: 18px;
  --font-brand: "Bricolage Grotesque", "Segoe UI", sans-serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  background: var(--bg1);
  min-height: 100vh;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(820px 480px at 8% -8%, rgba(26, 143, 130, 0.16), transparent 58%),
    radial-gradient(760px 440px at 96% 4%, rgba(11, 61, 92, 0.14), transparent 52%),
    radial-gradient(640px 460px at 48% 108%, rgba(70, 110, 160, 0.12), transparent 48%),
    linear-gradient(165deg, #d5e0ec 0%, #eef3f8 48%, #e4ecf5 100%);
  background-attachment: fixed;
}

.atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(19, 32, 51, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 32, 51, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 80%);
  pointer-events: none;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--brand);
}

code,
.url-hint {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.92em;
  background: rgba(11, 61, 92, 0.07);
  padding: 0.12em 0.4em;
  border-radius: 6px;
}

.top {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 3vw, 2rem);
  backdrop-filter: blur(14px);
  background: rgba(238, 243, 248, 0.82);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--brand);
  text-decoration: none;
  font-family: var(--font-brand);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #2bb3a4 55%, var(--brand));
  box-shadow: 0 0 0 4px rgba(15, 122, 110, 0.15);
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: center;
  justify-content: flex-end;
}

.top-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.top-nav a:hover {
  color: var(--brand);
}

.nav-cta {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff !important;
}

.nav-cta:hover {
  background: var(--accent);
}

/* —— Hero: brand first, inset mockup —— */
.hero {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.2rem, 5vw, 3.8rem) 0 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}

.hero-copy {
  animation: rise 0.7s ease both;
}

.hero-kicker {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-brand {
  margin: 0 0 0.9rem;
  font-family: var(--font-brand);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--brand);
  font-weight: 800;
}

.hero-lead {
  margin: 0;
  max-width: 34rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.hero-note {
  margin: 1.25rem 0 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 10px 24px rgba(15, 122, 110, 0.28);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.55);
  border-color: var(--line);
  color: var(--brand);
}

.btn.is-disabled,
.btn[aria-disabled="true"] {
  opacity: 0.72;
}

.hero-aside {
  animation: fade 0.9s ease both 0.12s;
}

.mock-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0d1826;
  box-shadow: var(--shadow);
  max-width: 460px;
  margin-left: auto;
  transform: rotate(-1.2deg);
}

.mock-chrome {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.75rem;
  background: #152336;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-chrome span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #3d5168;
}

.mock-chrome span:nth-child(1) { background: #c27a6a; }
.mock-chrome span:nth-child(2) { background: #c2a86a; }
.mock-chrome span:nth-child(3) { background: #6aa88a; }

.mock-chrome em {
  margin-left: 0.5rem;
  font-style: normal;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-screen {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0b1522;
}

.mock-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  opacity: 0.96;
}

.mock-caption {
  margin: 0.75rem 0 0;
  text-align: right;
  color: var(--muted);
  font-size: 0.85rem;
}

.strip {
  width: min(var(--max), calc(100% - 2rem));
  margin: 2rem auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  animation: rise 0.8s ease both 0.2s;
}

.strip-item {
  background: rgba(255, 255, 255, 0.92);
  padding: 1.15rem 1.25rem;
  display: grid;
  gap: 0.35rem;
}

.strip-item strong {
  font-family: var(--font-brand);
  color: var(--brand);
  font-size: 0.95rem;
}

.strip-item span {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 1.75rem;
}

.section-head h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-brand);
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  letter-spacing: -0.03em;
  color: var(--brand);
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
}

/* —— Product grid —— */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  backdrop-filter: blur(8px);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 100%;
}

.product-card__media {
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(145deg, rgba(11, 61, 92, 0.88), rgba(15, 122, 110, 0.55)),
    #0d1826;
  overflow: hidden;
}

.product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  opacity: 0.9;
}

.product-card__media--empty {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-brand);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  padding: 1rem;
  text-align: center;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.15rem 1.2rem 1.25rem;
  flex: 1;
}

.product-badge {
  margin: 0;
  display: inline-flex;
  align-self: flex-start;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: rgba(15, 122, 110, 0.12);
  color: var(--accent);
}

.product-badge[data-status="soon"] {
  background: rgba(138, 90, 18, 0.12);
  color: var(--warn);
}

.product-badge[data-status="external"] {
  background: rgba(11, 61, 92, 0.1);
  color: var(--brand);
}

.product-card__body h3 {
  margin: 0;
  font-family: var(--font-brand);
  font-size: 1.25rem;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.product-card__body > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  flex: 1;
}

.product-points {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.product-points li {
  margin-bottom: 0.25rem;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.5rem;
}

.product-actions .btn {
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature {
  padding: 1.2rem 1.25rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--card);
  backdrop-filter: blur(8px);
}

.feature h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-brand);
  font-size: 1.1rem;
  color: var(--brand);
}

.feature p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.proof-section {
  border-top: 1px solid var(--line);
}

.identity {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.identity-main,
.identity-note,
.get-box {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow);
}

.identity-label {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.identity-main h3 {
  margin: 0 0 1rem;
  font-family: var(--font-brand);
  font-size: 1.55rem;
  color: var(--brand);
}

.facts {
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.facts > div {
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

.facts dt {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.facts dd {
  margin: 0;
  font-weight: 560;
}

.identity-note h4 {
  margin: 0 0 0.7rem;
  font-family: var(--font-brand);
  color: var(--brand);
}

.identity-note ul {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  color: var(--ink-soft);
}

.small {
  color: var(--muted);
  font-size: 0.9rem;
}

.proof-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.proof-gallery figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.proof-gallery img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  object-position: top;
  background: #f0f0f0;
}

.proof-gallery figcaption {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 1rem 1rem;
}

.proof-gallery figcaption strong {
  font-family: var(--font-brand);
  color: var(--brand);
}

.proof-gallery figcaption span {
  color: var(--muted);
  font-size: 0.9rem;
}

.verify-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: verify;
  display: grid;
  gap: 0.75rem;
}

.verify-list li {
  counter-increment: verify;
  position: relative;
  padding: 1rem 1rem 1rem 3.4rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.verify-list li::before {
  content: counter(verify);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-brand);
  font-size: 0.9rem;
  font-weight: 700;
}

.help-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.help-links a {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.help-links a:hover {
  border-color: rgba(15, 122, 110, 0.45);
  transform: translateY(-1px);
}

.help-links strong {
  font-family: var(--font-brand);
  color: var(--brand);
}

.help-links span {
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-inline {
  margin-top: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.35rem 1rem 0.35rem;
}

.faq-inline summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.85rem 0;
  color: var(--brand);
  font-family: var(--font-brand);
}

.faq-body {
  padding-bottom: 1rem;
  color: var(--ink-soft);
}

.faq-body h3 {
  margin: 1rem 0 0.35rem;
  font-size: 1.05rem;
  color: var(--ink);
}

.faq-body p,
.faq-body ol {
  margin: 0 0 0.5rem;
}

.get-section .get-box p {
  margin: 0 0 0.75rem;
  color: var(--ink-soft);
}

.footer {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto 2rem;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
}

.footer strong {
  display: block;
  color: var(--brand);
  font-family: var(--font-brand);
  margin-bottom: 0.2rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .mock-frame {
    margin: 0 auto;
    max-width: 420px;
    transform: none;
  }

  .mock-caption {
    text-align: center;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .strip,
  .feature-grid,
  .identity,
  .proof-gallery,
  .help-links {
    grid-template-columns: 1fr;
  }

  .facts > div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .top-nav a:not(.nav-cta) {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .product-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 122, 110, 0.45);
  color: inherit;
}

.contact-card--primary {
  border-color: rgba(15, 122, 110, 0.35);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(15, 122, 110, 0.08));
}

.contact-label {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.contact-card strong {
  font-family: var(--font-brand);
  font-size: 1.05rem;
  color: var(--brand);
  word-break: break-word;
}

.contact-hint {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.license-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
  counter-reset: lic;
}

.license-steps li {
  counter-increment: lic;
  position: relative;
  padding: 1.1rem 1.2rem 1.1rem 3.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.license-steps li::before {
  content: counter(lic);
  position: absolute;
  left: 1rem;
  top: 1.05rem;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.license-steps strong {
  display: block;
  font-family: var(--font-brand);
  color: var(--brand);
  margin-bottom: 0.35rem;
}

.license-steps p {
  margin: 0;
  color: var(--ink-soft);
}

.license-more {
  margin: 1rem 0 0;
  color: var(--muted);
}

.product-price {
  margin: 0 0 0.45rem;
  font-family: var(--font-brand);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand);
}

.product-price-note {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.product-badge[data-status="addon"] {
  color: var(--accent);
}

.product-badge[data-status="external"] {
  color: var(--brand);
}

@media (max-width: 960px) {
  .contacts-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy,
  .hero-aside,
  .strip,
  .product-card,
  .feature,
  .help-links a,
  .verify-list li,
  .proof-gallery figure,
  .contact-card {
    animation: none !important;
    transition: none !important;
  }
}
