:root {
  --navy: #0b95b5;
  --green: #16935f;
  --green-dark: #11784d;
  --text: #16384b;
  --muted: #627a88;
  --line: #d4e8ea;
  --bg: #f3fbfb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(11, 90, 109, 0.10);
  --radius: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: var(--bg);
}

.section-title {
  margin: 0 0 1rem;
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--navy);
}

.section-title.left {
  text-align: left;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-content.narrow {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.emphasis {
  font-weight: 700;
  color: var(--navy);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 232, 234, 0.9);
}

.nav-container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand,
.footer-brand {
  display: flex;
  align-items: center;
}

.nav-logo {
  width: min(280px, 42vw);
  height: auto;
  object-fit: contain;
}

.footer-logo {
  width: min(220px, 48vw);
  height: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu a {
  color: var(--text);
  font-weight: 600;
}

.nav-cta {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--navy);
  transition: 0.25s ease;
}

.hero {
  padding: 6.2rem 0 5rem;
  background:
    radial-gradient(circle at top right, rgba(11, 149, 181, 0.14), transparent 34%),
    linear-gradient(180deg, #f8feff 0%, #eef9f8 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(22, 147, 95, 0.12);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.92rem;
}

.hero-headline {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  line-height: 0.97;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.hero-subheadline {
  font-size: 1.25rem;
  color: var(--text);
  max-width: 760px;
}

.hero-supporting {
  color: var(--muted);
  max-width: 720px;
  font-size: 1.06rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(11, 90, 109, 0.16);
}

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

.btn-secondary {
  background: var(--green);
  color: #fff;
}

.btn-outline {
  border-color: rgba(11, 149, 181, 0.22);
  background: #fff;
  color: var(--navy);
}

.btn-full {
  width: 100%;
}

.hero-panel-card,
.insight-card,
.cta-card,
.contact-info,
.profile-card {
  background: #fff;
  border: 1px solid rgba(212, 232, 234, 0.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel-card {
  padding: 2rem;
}

.hero-panel-card h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: 1.35rem;
}

.panel-list {
  padding-left: 1.1rem;
  color: var(--muted);
}

.two-column {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.insight-card {
  padding: 2rem;
}

.insight-card h3 {
  margin-top: 0;
  color: var(--navy);
}

.value-list li + li {
  margin-top: 0.6rem;
}



.team-grid,
.cta-grid {
  display: grid;
  gap: 1.5rem;
}

.team-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
}

.advisory-grid {
  margin-top: 0;
}

.profile-card {
  overflow: hidden;
}

.profile-card-small .profile-photo {
  aspect-ratio: 1 / 1;
}

.profile-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.profile-body {
  padding: 1.35rem 1.35rem 1.5rem;
}

.profile-kicker {
  margin-bottom: 0.3rem;
  color: var(--green-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.profile-body h3 {
  margin: 0 0 0.25rem;
  color: var(--navy);
  font-size: 1.35rem;
}

.role {
  margin-bottom: 0.8rem;
  color: var(--muted);
  font-weight: 700;
}

.advisory-block {
  margin-top: 2.5rem;
}

.advisory-header {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.advisory-header h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  color: var(--navy);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-info,
.contact-form {
  padding: 1.5rem;
}

.contact-info h3 {
  margin-top: 0;
  color: var(--navy);
}

.contact-email a {
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 800;
}

.contact-form {
  background: #fff;
  border: 1px solid rgba(212, 232, 234, 0.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-group + .form-group {
  margin-top: 1rem;
}

label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 700;
  color: var(--text);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid #cfdbe6;
  border-radius: 14px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(11, 149, 181, 0.45);
  box-shadow: 0 0 0 4px rgba(11, 149, 181, 0.10);
}

textarea {
  resize: vertical;
  min-height: 140px;
}

.footer {
  padding: 2.4rem 0 1.2rem;
  border-top: 1px solid rgba(212, 232, 234, 0.92);
  background: #fff;
}

.footer-content,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-contact a {
  color: var(--navy);
  font-weight: 700;
}

.footer-bottom {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 232, 234, 0.92);
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 1040px) {
  .hero-grid,
  .two-column,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-logo {
    width: min(240px, 58vw);
  }

  .nav-menu {
    position: absolute;
    right: 1rem;
    top: calc(100% + 0.5rem);
    width: min(320px, calc(100vw - 2rem));
    padding: 1rem;
    background: #fff;
    border: 1px solid rgba(212, 232, 234, 0.95);
    border-radius: 18px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-menu.active {
    display: flex;
  }

  .team-grid,
  .advisory-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.25rem 0;
  }

  .hero {
    padding: 6rem 0 4rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .nav-container {
    min-height: 88px;
  }

  .nav-logo {
    width: min(210px, 60vw);
  }

  .footer-logo {
    width: min(180px, 58vw);
  }

  .footer-content,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.lifecycle-section {
  background: #f8f8f8;
}

.lifecycle-figure {
  margin: 0 auto;
}

.lifecycle-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.founders-grid .profile-photo {
  aspect-ratio: 1 / 1;
}

.profile-photo-naftali {
  object-position: center 18%;
}

.contact-info {
  min-height: 100%;
}

.footer-brand {
  justify-content: flex-start;
}
