/* =========================================================================
   Juralto — investor & partner site
   Style: clean fintech / minimal
   ========================================================================= */

:root {
  --navy:       #0B1F3A;
  --navy-700:   #14305A;
  --navy-500:   #1F4880;
  --accent:     #2E5BFF;
  --accent-700: #1E45D6;
  --bg:         #FFFFFF;
  --bg-soft:    #F6F8FC;
  --bg-grid:    #F0F4FA;
  --text:       #0F172A;
  --muted:      #4A5A75;
  --muted-2:    #6B7A93;
  --border:     #E3E8F0;
  --border-2:   #D7DEEA;

  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 18px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow:    0 4px 12px rgba(15, 23, 42, 0.06), 0 2px 4px rgba(15, 23, 42, 0.04);

  --container: 1120px;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-700); }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================================
   Header
   ========================================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 20px;
}

.brand-mark {
  display: inline-block;
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.nav a:hover { color: var(--navy); }

.nav .btn-sm {
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
}

.nav .btn-sm:hover { background: var(--navy-700); color: #fff; }

@media (max-width: 720px) {
  .nav a:not(.btn-sm) { display: none; }
}

/* =========================================================================
   Hero
   ========================================================================= */

.hero {
  position: relative;
  padding: 96px 0 80px;
  background:
    radial-gradient(1200px 500px at 80% -20%, rgba(46, 91, 255, 0.10), transparent 60%),
    radial-gradient(800px 400px at 0% 110%, rgba(11, 31, 58, 0.06), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, var(--bg-soft) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--bg-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--bg-grid) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 60% 70% at 50% 30%, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 30%, #000 30%, transparent 70%);
  opacity: 0.7;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 820px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.eyebrow strong { color: var(--navy); font-weight: 600; }

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25);
}

h1.hero-title {
  font-size: clamp(36px, 5.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  color: var(--navy);
  font-weight: 700;
}

h1.hero-title .accent { color: var(--accent); }

.hero-sub {
  font-size: clamp(17px, 1.6vw, 19px);
  color: var(--muted);
  max-width: 680px;
  margin: 0 0 32px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.06s ease, background 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover { background: var(--navy-700); color: #fff; }

.btn-ghost {
  background: #fff;
  color: var(--navy);
  border-color: var(--border-2);
}
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }

.btn .arrow {
  transition: transform 0.15s ease;
}
.btn:hover .arrow { transform: translateX(2px); }

/* =========================================================================
   Jura Vista — pasture image section
   ========================================================================= */

.jura-vista {
  position: relative;
  height: 480px;
  overflow: hidden;
  padding: 0;
}

.jura-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}

.jura-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 31, 58, 0.08) 0%,
    rgba(11, 31, 58, 0.35) 45%,
    rgba(11, 31, 58, 0.82) 100%
  );
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
}

.jura-overlay .container {
  max-width: 760px;
}

.jura-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 10px;
}

.jura-quote {
  font-size: clamp(16px, 1.8vw, 21px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.90);
  font-weight: 300;
  margin: 0;
  letter-spacing: -0.01em;
}

@media (max-width: 760px) {
  .jura-vista { height: 360px; }
  .jura-overlay { padding-bottom: 36px; }
}

/* =========================================================================
   Section scaffolding
   ========================================================================= */

section { padding: 80px 0; }

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

.section-title {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 16px;
  font-weight: 700;
}

.section-lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 740px;
  margin: 0;
}

/* =========================================================================
   Mission
   ========================================================================= */

.mission {
  background: #fff;
  border-top: 1px solid var(--border);
}

.mission .section-lede {
  margin-top: 8px;
  color: var(--text);
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.55;
  max-width: 820px;
}

.mission .section-lede sup {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.7em;
  margin-left: 1px;
}

.footnotes {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

.footnote-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}

.footnote-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(46, 91, 255, 0.12);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footnote-title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footnote-card p {
  margin: 0;
  font-size: 13px;
  color: var(--muted-2);
  line-height: 1.6;
}

/* =========================================================================
   Contact CTA
   ========================================================================= */

.contact {
  background: #fff;
}

.contact-card {
  margin-top: 32px;
  background:
    radial-gradient(600px 200px at 100% 0%, rgba(46, 91, 255, 0.18), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 60%, var(--navy-500) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

@media (max-width: 800px) {
  .contact-card { grid-template-columns: 1fr; padding: 36px 28px; }
}

.contact-card h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.contact-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

@media (min-width: 801px) {
  .contact-actions { align-items: flex-end; }
}

.btn-on-dark {
  background: #fff;
  color: var(--navy);
}
.btn-on-dark:hover { background: #F1F5FB; color: var(--navy); }

.contact-card .small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

/* =========================================================================
   Footer
   ========================================================================= */

footer.site-footer {
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 36px 0 48px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer .brand {
  font-size: 16px;
  color: var(--navy);
}

.site-footer .legal { color: var(--muted-2); }

/* =========================================================================
   Reduced motion
   ========================================================================= */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
