/* Kitebots-aligned marketing (minimalDesignTokens) — amiznhub.com static test harness */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --land-text: #3e3e3e;
  --land-muted: #6a6a6a;
  --land-accent: #038eff;
  --land-hero-bg: rgb(231 243 255);
  --land-soft: #ebf7ff;
  --land-cta: #fac51c;
  --land-cta-hover: #e5b010;
  --land-cta-ink: #000000;
  --header-glass: rgba(255, 255, 255, 0.97);
  --shadow-card: 0 0 2px 0 rgba(145, 158, 171, 0.2), 0 12px 24px -4px rgba(145, 158, 171, 0.12);
  --radius: 12px;
  --header-h: 4.25rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--land-text);
  min-height: 100vh;
  background: #f8fafc;
}

/* --- Fixed header (LandingHeader) — content cleared via hero padding --- */
body.has-fixed-header {
  padding-top: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--header-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.site-header__inner {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--land-accent) 0%, #0066cc 100%);
  box-shadow: 0 2px 8px rgba(3, 142, 255, 0.3);
  letter-spacing: -0.02em;
}

.brand__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand__name {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--land-text);
}

.brand__tag {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--land-muted);
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-main a {
  text-decoration: none;
  color: #64748b;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-main a:hover {
  color: var(--land-text);
  background: rgba(3, 142, 255, 0.06);
}

.nav-main a.active {
  color: var(--land-accent);
  font-weight: 600;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem 1.1rem;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.8125rem;
  text-transform: none;
  text-decoration: none;
  color: var(--land-cta-ink);
  background: var(--land-cta);
  box-shadow: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-cta:hover {
  background: var(--land-cta-hover);
}

/* --- Hero band (MarketingLandingPage) --- */
.hero-band {
  background: var(--land-hero-bg);
  background-image: radial-gradient(ellipse 85% 55% at 100% -10%, rgba(0, 102, 255, 0.07) 0%, transparent 55%);
  border-bottom: 1px solid rgba(3, 142, 255, 0.08);
  padding: calc(var(--header-h) + 1.5rem) 1.25rem clamp(2.5rem, 6vw, 4.5rem);
  margin: 0;
}

.hero-band--compact {
  padding-top: calc(var(--header-h) + 1.25rem);
  padding-bottom: 2rem;
}

.hero-band__inner {
  max-width: 52rem;
  margin: 0 auto;
  text-align: left;
}

.eyebrow {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--land-accent);
  margin-bottom: 0.5rem;
}

.hero-band h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--land-text);
  margin-bottom: 0.75rem;
}

.text-accent {
  color: var(--land-accent);
}

.lead-para {
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  line-height: 1.65;
  color: var(--land-muted);
  max-width: 40rem;
  margin-bottom: 1.25rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.25rem;
}

.link-quiet {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--land-accent);
  text-decoration: none;
}

.link-quiet:hover {
  text-decoration: underline;
}

/* --- Test card (white panel) --- */
.content-wrap {
  max-width: 52rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2.5rem;
}

.shell {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.shell__head {
  padding: 0.9rem 1.25rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}

nav.top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  flex-wrap: wrap;
}

nav.top a {
  text-decoration: none;
  color: #64748b;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

nav.top a:hover {
  color: var(--land-text);
  background: rgba(3, 142, 255, 0.06);
}

nav.top a.active {
  color: #fff;
  background: var(--land-accent);
}

main {
  padding: clamp(1.35rem, 3vw, 1.75rem) clamp(1.15rem, 3vw, 1.6rem) 1.75rem;
}

.lead {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}

.lead .emoji {
  font-size: 1.75rem;
  line-height: 1.2;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06));
}

h1 {
  font-size: clamp(1.35rem, 3vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--land-text);
  margin-bottom: 0.2rem;
}

.subtitle {
  color: var(--land-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.content {
  color: var(--land-text);
  line-height: 1.7;
  font-size: 0.98rem;
}

.content p {
  margin-bottom: 0.9rem;
}

.content a {
  color: var(--land-accent);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(3, 142, 255, 0.35);
  transition: color 0.2s, border-color 0.2s;
}

.content a:hover {
  color: #006fcc;
  border-bottom-color: #006fcc;
}

.callout {
  margin: 1.25rem 0;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  background: var(--land-soft);
  border: 1px solid rgba(3, 142, 255, 0.15);
}

.callout h2 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--land-accent);
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.callout p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--land-text);
  line-height: 1.6;
}

.hint {
  font-size: 0.88rem;
  color: var(--land-muted);
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.content code {
  font-family: ui-monospace, "Cascadia Code", "SF Mono", Menlo, monospace;
  font-size: 0.88em;
  background: #f1f5f9;
  padding: 0.1em 0.35em;
  border-radius: 4px;
  color: #0f172a;
}

/* Profile */
body.page-profile .hero-band {
  background: linear-gradient(180deg, #eef6ff 0%, var(--land-hero-bg) 100%);
  background-image: radial-gradient(ellipse 80% 50% at 0% 0%, rgba(3, 142, 255, 0.08) 0%, transparent 55%), radial-gradient(ellipse 85% 55% at 100% -10%, rgba(0, 102, 255, 0.07) 0%, transparent 55%);
}

body.page-profile nav.top a.active {
  background: #0066cc;
}

.profile-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0;
  padding: 1.1rem 1.2rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid rgba(3, 142, 255, 0.2);
}

.avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, var(--land-accent) 0%, #0066cc 100%);
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(3, 142, 255, 0.3);
}

.profile-block h2 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--land-text);
  margin-bottom: 0.2rem;
}

.profile-block p {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  color: var(--land-muted);
}

body.page-profile .callout h2 {
  color: #0066cc;
}

@media (max-width: 640px) {
  .site-header__inner {
    flex-wrap: wrap;
  }

  .nav-main {
    width: 100%;
    justify-content: flex-start;
  }
}
