/* Cashcraft Pty Ltd — institutional parent company site
   Calmer treatment than the SaaS products: no animations, no orbs.
   Dark navy + muted gold accent, Inter typography. */

:root {
  --bg:           #0A0E27;
  --bg-elevated:  #131835;
  --bg-card:      #161B3F;
  --text:         #E8E9F0;
  --text-muted:   #8B92B8;
  --text-dim:     #5C6493;
  --gold:         #C8A961;
  --gold-bright:  #DBC189;
  --gold-dim:     rgba(200, 169, 97, 0.15);
  --border:       #1F2547;
  --border-soft:  rgba(255, 255, 255, 0.06);
  --max-width:    1200px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: radial-gradient(ellipse 80% 50% at 70% -10%, rgba(200, 169, 97, 0.08), transparent 60%);
  background-attachment: fixed;
}

a { color: var(--text); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--gold-bright); }

p { color: var(--text-muted); }

/* ─── Layout ─── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

/* ─── Header ─── */
.site-header {
  border-bottom: 1px solid var(--border-soft);
  padding: 24px 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.wordmark {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.wordmark .accent { color: var(--gold); }

.site-nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}

.site-nav a { color: var(--text-muted); }
.site-nav a:hover { color: var(--text); }

@media (max-width: 640px) {
  .site-header .container { flex-direction: column; gap: 16px; align-items: flex-start; }
  .site-nav { gap: 20px; }
}

/* ─── Hero ─── */
.hero {
  padding: 100px 0 80px;
  position: relative;
}

.hero-headline {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  max-width: 880px;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 40px;
  line-height: 1.65;
}

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: #1A1611;
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: #1A1611;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

/* ─── Section base ─── */
.section {
  padding: 80px 0;
  border-top: 1px solid var(--border-soft);
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
  max-width: 720px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 48px;
  line-height: 1.65;
}

/* ─── Products grid ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: 1fr; }
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.product-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-name.storesignals { background: linear-gradient(90deg, #a78bfa, #c4b5fd); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.product-name.convrs       { background: linear-gradient(90deg, #b643fb, #2389fe); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.product-name.sendrly      { background: linear-gradient(90deg, #d164ea, #24c2e8); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.product-tagline {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.4;
}

.product-card p {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.product-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-link:hover { color: var(--gold-bright); }

/* ─── About ─── */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
}

.about-prose p { margin-bottom: 16px; line-height: 1.7; font-size: 15px; }

.facts {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}

.facts dl { display: grid; gap: 14px; }
.facts dt { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 4px; }
.facts dd { font-size: 14px; font-weight: 500; color: var(--text); }

/* ─── AI scope ─── */
.ai-scope p { font-size: 15px; line-height: 1.7; margin-bottom: 16px; max-width: 820px; }
.ai-scope strong { color: var(--text); font-weight: 600; }

.ai-scope-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
}
.ai-scope-cta:hover { color: var(--gold-bright); }

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.contact-card a { color: var(--text); font-weight: 500; }
.contact-card a:hover { color: var(--gold-bright); }

.contact-card p { color: var(--text); font-size: 14px; line-height: 1.6; }
.contact-card .small { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* ─── Footer ─── */
.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 32px 0;
  margin-top: 40px;
  text-align: center;
}

.site-footer .copyright { font-size: 13px; color: var(--text-dim); margin-bottom: 8px; }

.site-footer .footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
}

.site-footer .footer-links a { color: var(--text-muted); }
.site-footer .footer-links a:hover { color: var(--gold-bright); }

/* ─── Legal page (sub-pages) ─── */
.legal-page {
  padding: 60px 0 80px;
}

.legal-prose {
  max-width: 800px;
  margin: 0 auto;
}

.legal-prose h1 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}

.legal-prose .effective {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 40px;
}

.legal-prose h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-top: 36px;
  margin-bottom: 14px;
}

.legal-prose h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-prose p, .legal-prose li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.legal-prose ul, .legal-prose ol {
  padding-left: 22px;
  margin-bottom: 14px;
}

.legal-prose li { margin-bottom: 8px; }

.legal-prose strong { color: var(--text); font-weight: 600; }

.legal-prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.legal-prose a:hover { color: var(--gold-bright); }

.legal-prose .callout {
  border: 1px solid var(--gold-dim);
  background: rgba(200, 169, 97, 0.05);
  border-radius: 10px;
  padding: 18px 22px;
  margin: 20px 0;
}
.legal-prose .callout p { margin-bottom: 0; color: var(--text); font-size: 14px; }
