@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap");

:root {
  --ink: #24384d;
  --muted: #68798a;
  --navy: #2e6f9e;
  --blue: #84c8f2;
  --sky: #e9f7ff;
  --paper: #fff5e3;
  --sand: #f2e4ca;
  --white: #ffffff;
  --line: #eadbc0;
  --teal: #72beb8;
  --coral: #ed9b8b;
  --gold: #efc766;
  --container: 1120px;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(46, 111, 158, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

main {
  flex: 1;
}

a {
  color: inherit;
}

site-header,
site-footer {
  display: block;
}

site-header {
  position: sticky;
  z-index: 30;
  top: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 20px;
  font-size: 4.7rem;
  line-height: 1.04;
  font-weight: 900;
}

h2 {
  margin-bottom: 14px;
  font-size: 2.8rem;
  line-height: 1.08;
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.18;
  font-weight: 900;
}

p,
li {
  line-height: 1.62;
}

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

.site-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 22px clamp(18px, 5vw, 64px);
  color: var(--ink);
  background: rgba(233, 247, 255, 0.94);
  box-shadow: 0 1px 0 rgba(46, 111, 158, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  font-size: 1.25rem;
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  width: 78px;
  height: 58px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.site-nav a {
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.site-nav a[aria-current="page"] {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.nav-toggle {
  display: none;
}

.hero {
  isolation: isolate;
  position: relative;
  overflow: hidden;
  padding: 88px 0 82px;
  color: var(--ink);
  background: #fff6e8;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    url("assets/brand-mark.png") no-repeat calc(50% + 430px) 38px / min(390px, 34vw) auto,
    linear-gradient(135deg, rgba(132, 200, 242, 0.34) 0%, rgba(132, 200, 242, 0) 36%),
    linear-gradient(225deg, rgba(239, 199, 102, 0.26) 0%, rgba(239, 199, 102, 0) 34%),
    repeating-linear-gradient(135deg, rgba(46, 111, 158, 0.055) 0 1px, transparent 1px 30px),
    linear-gradient(180deg, #eef9ff 0%, #fff8ed 62%, #fff1df 100%);
  background-blend-mode: soft-light, normal, normal, normal, normal;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -4vw;
  bottom: -74px;
  left: -4vw;
  z-index: 1;
  height: 184px;
  background:
    linear-gradient(90deg, rgba(114, 190, 184, 0.34), rgba(239, 199, 102, 0.32) 50%, rgba(237, 155, 139, 0.24));
  clip-path: polygon(0 58%, 13% 42%, 26% 55%, 40% 34%, 55% 50%, 70% 28%, 84% 46%, 100% 33%, 100% 100%, 0 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 880px;
  text-align: center;
}

.hero-copy {
  max-width: 820px;
  margin: 0 auto;
}

.hero h1 {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  color: #244968;
  font-size: 4.75rem;
}

.page-hero {
  padding: 78px 0 34px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--navy);
}

.summary {
  max-width: 720px;
  margin-right: 0;
  margin-left: 0;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.58;
  text-align: left;
}

.hero .summary {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.page-hero .summary {
  max-width: 900px;
}

.summary--dark,
.section-heading p,
.card p,
.panel li,
.panel p,
.callout--light p,
footer p {
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button--primary {
  background: var(--blue);
  color: #17364c;
}

.button--secondary {
  border: 1px solid #dcc9a8;
  background: rgba(255, 255, 255, 0.7);
  color: var(--navy);
}

.button--blue {
  background: var(--navy);
  color: var(--white);
}

.site-section {
  padding: 64px 0;
}

.site-section--white {
  background: #fffbf3;
}

.site-section--blue {
  background: var(--sky);
}

.site-section--mission {
  padding: 58px 0;
  background: #fffaf0;
}

.site-section--sand {
  background: var(--sand);
}

.site-section--border {
  border-top: 1px solid var(--line);
}

.site-section--flush {
  padding-top: 18px;
}

.founder-section {
  padding-bottom: 34px;
}

.founder-section .container {
  --container: 1320px;
}

.home-intro {
  display: grid;
  gap: 38px;
}

.mission-statement {
  max-width: 920px;
  text-align: center;
}

.mission-statement h2 {
  color: #244968;
}

.mission-statement p:last-child {
  max-width: 760px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  color: var(--muted);
  font-size: 1.12rem;
}

.section-heading {
  max-width: 760px;
}

.section-heading--wide {
  max-width: 860px;
  margin-bottom: 22px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: start;
}

.split--balanced {
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

.card-grid--stack {
  grid-template-columns: 1fr;
  gap: 14px;
}

.card,
.panel {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
  box-shadow: var(--shadow);
}

.card--compact,
.panel {
  min-height: auto;
}

.card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--navy);
  font-weight: 900;
}

.card__badge--blue {
  background: #d9f0ff;
  color: var(--navy);
}

.card__badge--gold {
  background: #fff0c6;
  color: #80602a;
}

.card__badge--teal {
  background: #dff3ef;
  color: var(--teal);
}

.card__badge--coral {
  background: #ffe4dc;
  color: #a95e4f;
}

.founder-card {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  min-height: 296px;
}

.founder-card__photo {
  display: block;
  width: 200px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf0;
  object-fit: cover;
}

.founder-card__photo--empty {
  border-style: dashed;
  background:
    linear-gradient(135deg, rgba(132, 200, 242, 0.18), transparent 42%),
    #fffaf0;
}

.founder-card__identity {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
}

.founder-card__identity h2 {
  margin-bottom: 0;
  font-size: 1.82rem;
  line-height: 1.08;
}

.founder-card__identity span {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
}

.about-contact-section {
  padding-top: 0;
  padding-bottom: 86px;
}

.about-contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: auto;
  background:
    linear-gradient(135deg, rgba(132, 200, 242, 0.18), transparent 44%),
    #fffdf8;
}

.about-contact-card h2 {
  margin-bottom: 10px;
  font-size: 2.15rem;
}

.about-contact-card p:last-child {
  max-width: 650px;
  margin-bottom: 0;
}

.about-contact-card__email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid #dcc9a8;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: anywhere;
  box-shadow: 0 10px 24px rgba(46, 111, 158, 0.08);
}

.panel {
  background:
    linear-gradient(135deg, rgba(132, 200, 242, 0.18), transparent 44%),
    #fffdf8;
}

.plain-list,
.stack-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.plain-list {
  padding-left: 20px;
}

.stack-list {
  gap: 14px;
  list-style: none;
}

.prompt-example-card {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(132, 200, 242, 0.08), transparent 44%),
    rgba(255, 253, 248, 0.72);
  box-shadow: var(--shadow);
}

.prompt-example-card__intro p:last-child {
  margin-bottom: 0;
  font-size: 1.22rem;
  line-height: 1.65;
}

.prompt-example-card__outline {
  padding: 18px;
  border: 1px solid rgba(234, 219, 192, 0.78);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.7);
}

.stack-list__item {
  padding: 18px 20px;
  border-left: 5px solid var(--blue);
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--muted);
  box-shadow: 0 12px 32px rgba(46, 111, 158, 0.08);
}

.stack-list__item--blue {
  border-color: var(--blue);
}

.stack-list__item--gold {
  border-color: var(--gold);
}

.stack-list__item--teal {
  border-color: var(--teal);
}

.stack-list__item--coral {
  border-color: var(--coral);
}

.callout {
  padding: 42px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
}

.callout p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
}

.callout .eyebrow {
  color: var(--gold);
}

.callout .button {
  margin-top: 8px;
}

.callout--light {
  background: #fffdf8;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.callout--light .eyebrow {
  color: var(--blue);
}

.request-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 1.18fr);
  gap: 34px;
  align-items: start;
}

.request-section__intro {
  max-width: none;
}

.request-section__intro p:last-child {
  margin-bottom: 0;
}

.form-actions a {
  color: var(--navy);
  font-weight: 900;
}

.request-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(132, 200, 242, 0.12), transparent 44%),
    #fffdf8;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 900;
}

.required-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.required-note span,
.required-mark {
  color: #c95a4c;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid #dcc9a8;
  border-radius: var(--radius);
  background: #fffaf0;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.form-field textarea {
  min-height: 130px;
  padding: 12px;
  line-height: 1.5;
  resize: vertical;
}

.form-field input::placeholder {
  color: rgba(104, 121, 138, 0.76);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--navy);
  outline: 3px solid rgba(132, 200, 242, 0.35);
}

.form-status {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(114, 190, 184, 0.46);
  border-radius: var(--radius);
  background: #dff3ef;
  color: #285c58;
  font-weight: 900;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.form-actions p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-honey {
  display: none;
}

.request-form .button:disabled {
  opacity: 0.7;
  cursor: wait;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.stat {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
  box-shadow: 0 12px 28px rgba(46, 111, 158, 0.08);
}

.stat strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 1.4rem;
}

.stat span {
  color: var(--muted);
}

.email-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

footer {
  padding: 0;
}

footer p {
  margin-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fffaf0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 34px 0 38px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 900;
  text-decoration: none;
}

.footer-content p {
  max-width: 520px;
}

.footer-actions,
.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid #dcc9a8;
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--navy);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(46, 111, 158, 0.08);
}

.social-link svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

@media (max-width: 930px) {
  .site-header {
    padding: 18px clamp(18px, 4vw, 36px);
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
    padding-bottom: 40px;
  }

  .hero::before {
    background-position: calc(50% + 260px) 28px, 0 0, 0 0, 0 0, 0 0;
    background-size: 300px auto, auto, auto, auto, auto;
  }

  .hero::after {
    bottom: -68px;
    height: 148px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .split,
  .split--balanced,
  .prompt-example-card,
  .request-section,
  .card-grid--three,
  .card-grid--two,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }

  .founder-card {
    grid-template-columns: 170px minmax(0, 1fr);
    min-height: 238px;
  }

  .founder-card__photo {
    width: 170px;
  }

  .about-contact-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .about-contact-card__email {
    justify-self: start;
  }

  h1,
  .hero h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.35rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px 12px;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
    font-size: 1.05rem;
  }

  .site-header .brand-mark {
    width: 54px;
    height: 40px;
  }

  .brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid #dcc9a8;
    border-radius: var(--radius);
    background: #fffdf8;
    color: var(--navy);
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(46, 111, 158, 0.08);
  }

  .nav-toggle__line {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-header.nav-open .nav-toggle__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle__line:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .nav-toggle__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    align-items: stretch;
    flex-direction: column;
    width: 100%;
    gap: 8px;
    padding: 8px 0 2px;
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 10px 12px;
    border-color: rgba(46, 111, 158, 0.12);
    background: rgba(255, 253, 248, 0.72);
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .site-header,
  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding-top: 20px;
    padding-bottom: 10px;
  }

  .hero::before {
    background-position: calc(50% + 88px) 8px, 0 0, 0 0, 0 0, 0 0;
    background-size: 190px auto, auto, auto, auto, auto;
  }

  .hero::after {
    bottom: -50px;
    height: 104px;
  }

  .hero-content {
    gap: 20px;
  }

  .hero .eyebrow {
    margin-bottom: 8px;
  }

  .hero h1 {
    margin-bottom: 14px;
  }

  h1,
  .hero h1 {
    font-size: 2rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 1.85rem;
  }

  .summary {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .button-row {
    gap: 8px;
    margin-top: 12px;
  }

  .button-row .button {
    width: 100%;
  }

  .button {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .founder-card {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 16px;
    min-height: 172px;
    padding: 20px;
  }

  .founder-card__photo {
    width: 120px;
  }

  .founder-card__identity h2 {
    font-size: 1.35rem;
  }

  .founder-card__identity span {
    font-size: 0.78rem;
  }

  .about-contact-card__email {
    width: 100%;
  }

  .site-section {
    padding: 42px 0;
  }

  .about-contact-section {
    padding-top: 0;
  }

  .page-hero {
    padding: 46px 0 18px;
  }

  .callout {
    padding: 30px 22px;
  }

  .prompt-example-card {
    padding: 24px;
  }

  .request-section {
    gap: 22px;
  }

  .request-form {
    padding: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .button {
    width: 100%;
  }

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

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

  .reveal-ready .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
