﻿:root {
  --bg: #f4f2ed;
  --surface: #fbfaf7;
  --text: #11110f;
  --muted: #686862;
  --line: rgba(17, 17, 15, 0.12);
  --dark: #11110f;
  --white: #ffffff;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 24px 80px rgba(25, 25, 20, 0.09);
  --container: 1180px;

  /* PSALMS brand indigo, used sparingly against the warm neutrals */
  --accent: #4f46e5;
  --accent-soft: #eef2ff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.88), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 112px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(244, 242, 237, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line);
}

.nav {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.82rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 11px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--dark);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.25s ease;
}

.hero {
  min-height: 850px;
  padding-top: 170px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 78px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.approach-copy h2,
.about-title h2,
.contact-card h2 {
  font-family: "Manrope", sans-serif;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3.7rem, 7vw, 7rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.hero h1 span {
  color: #7a7a73;
}

.hero-description {
  max-width: 590px;
  margin-top: 30px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(17, 17, 15, 0.14);
}

.button-dark:hover {
  box-shadow: 0 16px 34px rgba(17, 17, 15, 0.2);
}

.button-light {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.hero-visual {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
}

.visual-glow {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  filter: blur(2px);
}

.hero-shot {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-shot img {
  width: 100%;
  max-width: 440px;
  height: auto;
  /* The source shot is on a white backdrop; multiply drops it onto the page
     tint so the phone floats instead of sitting in a white box. */
  mix-blend-mode: multiply;
}

.floating-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(17, 17, 15, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 50px rgba(17, 17, 15, 0.12);
  backdrop-filter: blur(16px);
}

.floating-one {
  left: -22px;
  bottom: 58px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.floating-one strong,
.floating-one small {
  display: block;
}

.floating-one strong {
  font-size: 0.78rem;
}

.floating-one small {
  color: var(--muted);
  font-size: 0.67rem;
}

.floating-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--dark);
  color: white;
  font-size: 0.7rem;
}

.floating-two {
  top: 54px;
  right: -15px;
  padding: 15px 18px;
}

.floating-two small,
.floating-two strong {
  display: block;
}

.floating-two small {
  color: var(--muted);
  font-size: 0.65rem;
}

.floating-two strong {
  margin-top: 3px;
  font-size: 0.84rem;
}

.logo-strip {
  padding: 28px 0;
  border-block: 1px solid var(--line);
}

.logo-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.logo-strip p {
  color: var(--muted);
  font-size: 0.8rem;
}

.logo-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 38px;
  font-family: "Manrope", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  color: #7c7b75;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 54px;
}

.section-heading h2,
.about-title h2 {
  max-width: 720px;
  font-size: clamp(2.5rem, 5vw, 4.9rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.section-heading > p {
  max-width: 440px;
  color: var(--muted);
  justify-self: end;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card {
  min-height: 430px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.product-card-dark {
  background: var(--dark);
  color: white;
}

.product-card-light {
  background: #dedbd3;
}

.product-card-minimal {
  background: rgba(255, 255, 255, 0.54);
}

.product-card-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-card-dark .product-card-top,
.product-card-dark p {
  color: rgba(255, 255, 255, 0.62);
}

.product-state {
  padding: 7px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: 0.75;
}

.product-card-dark .product-state.live {
  border-color: transparent;
  background: var(--accent);
  color: var(--white);
  opacity: 1;
}

.product-logo {
  width: 72px;
  height: 72px;
  display: block;
  margin-bottom: 28px;
  padding: 10px;
  border-radius: 20px;
  background: var(--white);
  object-fit: contain;
}

.product-card-dark .product-fullname {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
  line-height: 1.45;
}

.product-symbol {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 20px;
  background: white;
  color: var(--dark);
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.product-symbol.outline {
  border: 1px solid rgba(17, 17, 15, 0.14);
  background: transparent;
}

.product-symbol.soft {
  background: #e8e5de;
}

.product-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1.7rem;
  letter-spacing: -0.045em;
}

.product-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid currentColor;
  font-size: 0.82rem;
  opacity: 0.82;
}

.psalms-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.psalms-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.psalms-feature {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.psalms-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.psalms-number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.psalms-feature h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.psalms-feature p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.psalms-cta {
  margin-top: 24px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--accent-soft);
}

.psalms-cta > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.psalms-cta p {
  max-width: 620px;
  font-size: 0.92rem;
}

.psalms-trust-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
}

.psalms-cta .button {
  flex-shrink: 0;
}

.approach-panel {
  padding: 72px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  border-radius: var(--radius-xl);
  background: var(--dark);
  color: white;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.55);
}

.approach-copy h2 {
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.07em;
}

.approach-copy > p:last-child {
  max-width: 440px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.58);
}

.approach-list article {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.approach-list article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.approach-list article > span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.74rem;
}

.approach-list h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1.22rem;
  letter-spacing: -0.035em;
}

.approach-list p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 110px;
}

.about-copy .lead {
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  line-height: 1.28;
  letter-spacing: -0.04em;
}

.about-copy > p:nth-child(2) {
  max-width: 570px;
  margin-top: 24px;
  color: var(--muted);
}

.about-values {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-values div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.about-values strong,
.about-values span {
  display: block;
}

.about-values strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
}

.about-values span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.73rem;
}

.contact-card {
  padding: 68px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.9), transparent 25rem),
    #ddd9d0;
}

.contact-card h2 {
  max-width: 770px;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.07em;
}

.contact-actions {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

footer {
  padding: 34px 0 44px;
}

.footer-grid {
  padding-top: 30px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
  border-top: 1px solid var(--line);
}

.footer-grid > p {
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-right {
  justify-self: end;
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 0.75rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .section {
    padding: 88px 0;
  }

  .hero {
    padding-top: 145px;
  }

  .hero-grid,
  .section-heading,
  .approach-panel,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 60px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .section-heading {
    gap: 24px;
  }

  .section-heading > p {
    justify-self: start;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-card:last-child {
    grid-column: 1 / -1;
  }

  .approach-panel {
    gap: 44px;
  }

  .about-grid {
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > p {
    display: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    padding: 12px 0;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 102;
  }

  .menu-toggle.active span:first-child {
    transform: translateY(3.25px) rotate(45deg);
  }

  .menu-toggle.active span:last-child {
    transform: translateY(-3.25px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 101;
    padding: 120px 28px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    background: var(--bg);
    font-family: "Manrope", sans-serif;
    font-size: 1.6rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-cta {
    margin-top: 10px;
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
    padding-top: 130px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 16vw, 5rem);
  }

  .hero-visual {
    min-height: 450px;
  }

  .floating-one {
    left: 5px;
    bottom: 8px;
  }

  .floating-two {
    top: 16px;
    right: 5px;
  }

  .logo-strip .container {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .logo-list {
    justify-content: flex-start;
    gap: 20px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card:last-child {
    grid-column: auto;
  }

  .approach-panel,
  .contact-card {
    padding: 42px 24px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .psalms-grid {
    margin-top: 44px;
    grid-template-columns: 1fr;
  }

  .psalms-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 32px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .footer-right {
    justify-self: start;
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 520px) {
  .section {
    padding: 72px 0;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 390px;
  }

  .floating-one,
  .floating-two {
    display: none;
  }

  .product-card {
    min-height: 380px;
  }

  .approach-list article {
    grid-template-columns: 32px 1fr;
    gap: 14px;
  }

  .psalms-feature {
    padding: 32px 24px;
  }

  .contact-actions {
    flex-direction: column;
  }
}
