:root {
   --ink: #111719;
   --muted: #596365;
   --teal: #0f5f66;
   --teal-dark: #0a4850;
   --teal-soft: #e8f3f2;
   --aqua: #6dc9c5;
   --cream: #f4e7d7;
   --paper: #ffffff;
   --mist: #f3f6f5;
   --line: rgba(15, 95, 102, 0.18);
   --shadow: 0 20px 55px rgba(17, 23, 25, 0.10);
   --shadow-soft: 0 10px 28px rgba(17, 23, 25, 0.08);
   --radius-xl: 28px;
   --radius-lg: 20px;
   --radius-md: 14px;
   --max: 1120px;
   --section: clamp(56px, 8vw, 104px);
   --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
   --display: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
 }

 * { box-sizing: border-box; }

 html {
   scroll-behavior: smooth;
   text-size-adjust: 100%;
 }

 body {
   margin: 0;
   font-family: var(--font);
   color: var(--ink);
   background: linear-gradient(180deg, #f7f9f8 0%, #ffffff 48%, #f7f9f8 100%);
   line-height: 1.5;
   overflow-x: hidden;
 }

 img { max-width: 100%; display: block; }

 a { color: inherit; }

 .page-wrap { min-height: 100vh; padding-top: 60px; }

 .container {
   width: min(var(--max), calc(100% - 40px));
   margin-inline: auto;
 }
 
 .hidden {
 	visibility: hidden;
	position: absolute;
	top: -5000px;
	left: -5000px;
 }

 .eyebrow {
   margin: 0 0 10px;
   color: var(--teal);
   font-weight: 800;
   letter-spacing: 0.02em;
   font-size: 0.88rem;
   text-transform: none;
 }

 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   min-height: 46px;
   padding: 0 22px;
   border-radius: 8px;
   border: 0;
   background: var(--teal);
   color: #fff;
   font-weight: 800;
   text-decoration: none;
   box-shadow: 0 10px 18px rgba(15, 95, 102, 0.20);
   cursor: pointer;
   transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
   white-space: nowrap;
 }

 .btn:hover,
 .btn:focus-visible {
   background: var(--teal-dark);
   transform: translateY(-1px);
   box-shadow: 0 14px 24px rgba(15, 95, 102, 0.24);
   outline: none;
 }

 .btn:active { transform: translateY(0); }

 .hero {
   position: relative;
   padding: clamp(34px, 6vw, 100px) 0 34px;
   background:
     radial-gradient(circle at 82% 12%, rgba(109, 201, 197, 0.12), transparent 30%),
     radial-gradient(circle at 14% 12%, rgba(244, 231, 215, 0.85), transparent 24%);
 }

 .hero-grid {
   display: grid;
   grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.8fr);
   gap: clamp(36px, 7vw, 96px);
   align-items: start;
 }
 
 .hero-right {
   display: flex;
   flex-direction: column;
   align-items: center;
	gap: 18px;
 }

 .hero-collage {
	max-width: 600px;
	height: auto;
	margin-top: 0px; /* tuck slightly under the orb if you want */
}

.quote {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin: 0 0 22px;
  color: #0d2d31;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.25;
}

.quote-mark {
  color: var(--teal);
  font-size: 2.4rem;
  line-height: 0.75;
  font-style: normal;
  transform: translateY(2px);
}

h1 {
  margin: 0 0 24px;
  font-family: var(--display);
  font-size: clamp(2.75rem, 7vw, 6.1rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
  max-width: 660px;
}

.brand-orb {
  justify-self: center;
  width: min(100%, 360px);
  aspect-ratio: 1.82 / 1;
  border-radius: 999px;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 34px 42px;
  box-shadow: var(--shadow-soft);
  margin-top: 20px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--aqua);
  border: 3px solid #0d1f22;
  color: #0d1f22;
  font-weight: 900;
  font-family: Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.brand-name sup { font-size: 0.44em; top: -0.7em; position: relative; }

.benefits {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
  width: min(920px, 100%);
  margin-inline: auto;
}

.benefit-card {
  background: var(--paper);
  border: 1px solid rgba(17, 23, 25, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(28px, 4vw, 42px);
  min-height: 360px;
}

.card-icon,
.item-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  background: var(--teal-soft);
  color: var(--teal);
  border: 1px solid var(--line);
}

.benefit-card h2 {
  margin: 0 auto 22px;
  max-width: 310px;
  text-align: center;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.check-list,
.mini-list,
.summary-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
}

.check-list li,
.mini-list li,
.summary-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 650;
  line-height: 1.35;
}

.check-list li::before,
.summary-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--teal);
  font-size: 0.75rem;
  font-weight: 900;
}

.mini-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.cta-strip {
  background: linear-gradient(90deg, var(--cream), #f7ecdf);
  padding: clamp(34px, 5vw, 52px) 0;
  margin-top: 58px;
}

.strip-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.cta-strip h2 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.cta-strip p {
  margin: 0;
  max-width: 760px;
  color: #192326;
  font-weight: 600;
}

.founders {
  padding: var(--section) 0;
  background: #fff;
}

.founders-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  /*gap: clamp(30px, 6vw, 76px);*/
 align-items: center;
}

.headshots {
  display: flex;
  justify-content: center;
  align-items: center;
  /*gap: clamp(14px, 3vw, 28px);*/
}

.headshot {
  width: clamp(132px, 18vw, 210px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--mist);
  border: 8px solid #fff;
  box-shadow: var(--shadow-soft);
}

.headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  color: var(--teal);
  font-weight: 800;
  background: linear-gradient(145deg, #f0f4f3, #fff);
}

.founders h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.founders p {
  margin: 0;
  max-width: 620px;
  color: #263133;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 560;
}

.included {
  padding: var(--section) 0;
  background: var(--mist);
}

.section-heading {
  margin: 0 0 30px;
  text-align: center;
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.included-stack {
  display: grid;
  gap: 14px;
  width: min(1060px, 100%);
  margin-inline: auto;
}

.included-item {
  display: grid;
  grid-template-columns: 82px 72px minmax(0, 1fr) minmax(270px, 0.82fr);
  gap: clamp(14px, 2vw, 26px);
  align-items: center;
  background: #fff;
  border: 1px solid rgba(17, 23, 25, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 26px rgba(17, 23, 25, 0.06);
  padding: clamp(16px, 2.4vw, 26px);
}

.item-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  margin: 0;
  background: #fbffff;
}

.item-number {
  color: var(--teal);
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.item-copy {
  padding-right: clamp(8px, 2vw, 26px);
  border-right: 1px solid rgba(17, 23, 25, 0.12);
}

.item-copy h3 {
  margin: 0 0 7px;
  font-size: clamp(1rem, 1.6vw, 1.32rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.item-copy p,
.item-details li {
  margin: 0;
  color: #2c3739;
  font-weight: 560;
  font-size: 0.97rem;
  line-height: 1.38;
}

.item-details .quote-bullet { font-style: italic; }

.client-event-videos {
  grid-column: 1 / -1;   /* span the full width of the article row */
  margin-top: 28px;
}

.videos-heading {
  text-align: center;
  margin: 0 0 16px;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.video-box video,
.video-box iframe {
  width: 100%;
  aspect-ratio: 16 / 9;   /* keeps both boxes equal height */
  display: block;
  border: 0;
  border-radius: 8px;
  background: #000;
}

@media (max-width: 640px) {
  .video-grid { grid-template-columns: 1fr; }
}

.investment {
  padding: var(--section) 0 calc(var(--section) * 0.72);
  background: #fff;
}

.investment-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(34px, 5vw, 80px);
    align-items: center;
    width: min(1200px, 100%);
    margin-inline: auto;
}

.investment-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    min-width: 0;  /* important - allows shrinking */
}

.investment-collage {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.logo-disc {
  width: min(100%, 340px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
  justify-self: center;
}

.logo-disc .brand-lockup {
  flex-direction: column;
  gap: 14px;
  text-align: center;
}

.logo-disc .brand-name { font-size: clamp(1.65rem, 3vw, 2.55rem); }

.summary-card {
  padding-left: clamp(0px, 4vw, 58px);
  border-left: 1px solid rgba(17, 23, 25, 0.14);
}

.summary-card h2 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.investment-label {
  color: var(--teal);
  font-weight: 900;
  margin: 0 0 4px;
  font-size: 1.12rem;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: clamp(1.35rem, 2vw, 1.5rem);
  font-weight: 900;
  letter-spacing: -0.025em;
}

.divider { color: var(--teal); opacity: 0.9; }

.disclaimer {
	text-align: center;
	padding-top: 8px;
	padding-bottom: 8px;
	font-style: italic;
}

.summary-title {
  color: var(--teal);
  font-weight: 900;
  margin: 0 0 8px;
}

.summary-list { gap: 7px; margin-bottom: 18px; }
.summary-list li { font-size: 0.98rem; font-weight: 720; padding-left: 28px; }
.summary-list li::before { width: 17px; height: 17px; top: 0.12em; }

.expiry {
  margin: 0 0 20px;
  font-weight: 800;
  color: #1b282b;
}

.register {
  padding: 0 0 var(--section);
  background: #fff;
}

.form-card {
  width: min(980px, 100%);
  margin-inline: auto;
  background: rgba(243, 246, 245, 0.92);
  border: 1px solid rgba(17, 23, 25, 0.08);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow-soft);
}

.form-card h2 {
  margin: 0 0 8px;
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.form-intro {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-weight: 560;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 22px;
}

.field { display: grid; gap: 7px; }

.field.full { grid-column: 1 / -1; }

label {
  font-size: 0.86rem;
  font-weight: 900;
  color: #132022;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border-radius: 7px;
  border: 1px solid rgba(17, 23, 25, 0.12);
  background: #fff;
  padding: 10px 12px;
  font: inherit;
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 95, 102, 0.12);
  outline: none;
}

.form-actions {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
}

.fine-print {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

svg { width: 28px; height: 28px; stroke-width: 1.8; }

@media (max-width: 980px) {
  .hero-grid,
  .founders-grid,
  .investment-grid {
    grid-template-columns: 1fr;
  }
  
  .investment-left { align-items: flex-start; }
  .investment-collage { max-width: 480px; }
  
  .hero-right { align-items: flex-start; }
  .hero-collage { max-width: 360px; }

  .brand-orb { justify-self: start; margin-top: 0; }

  .included-item {
    grid-template-columns: 62px minmax(0, 1fr);
    grid-template-areas:
      "icon number"
      "copy copy"
      "details details";
  }

  .included-item .item-icon { grid-area: icon; }
  .included-item .item-number { grid-area: number; }
  .included-item .item-copy { grid-area: copy; }
  .included-item .item-details { grid-area: details; }

  .item-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 23, 25, 0.12);
    padding: 0 0 14px;
  }

  .summary-card {
    border-left: 0;
    padding-left: 0;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--max)); }
  .hero { padding-top: 28px; }
  .benefits { grid-template-columns: 1fr; }
  .benefit-card { min-height: auto; }

  .strip-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
  
  .investment-left img { max-width: 80%; }

  .cta-strip .btn { width: fit-content; }
  .founders { padding-top: 54px; }
  .headshots { justify-content: flex-start; }
  .form-grid { grid-template-columns: 1fr; }
  .form-actions .btn { width: 100%; }
  .price-row { gap: 10px; }
  .divider { display: none; }
  .price-row span { width: 100%; }
}

@media (max-width: 520px) {
  h1 { font-size: clamp(2.55rem, 14vw, 4rem); }
  .brand-orb { width: 100%; padding: 24px; }
  .brand-lockup { gap: 12px; }
  .brand-mark { width: 46px; height: 46px; font-size: 1.55rem; }
  .brand-name { font-size: 1.55rem; }
  .headshots { gap: 8px; }
  .headshot { border-width: 5px; }
  .included-item { padding: 16px; }
  .item-number { font-size: 2.3rem; }
  .logo-disc { width: min(270px, 90vw); }
  .form-card { padding: 24px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}