:root {
  color-scheme: light;
  --bg: #f7f4ee;
  --panel: rgba(255, 255, 255, 0.78);
  --panel-strong: #ffffff;
  --text: #191919;
  --muted: #626262;
  --line: rgba(25, 25, 25, 0.12);
  --accent: #23463f;
  --accent-soft: #edf5f2;
  --shadow: 0 18px 48px rgba(25, 25, 25, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

img {
  max-width: 100%;
}

.page {
  width: min(1100px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 20px 0 80px;
}

.page-know-you {
  width: min(1180px, calc(100vw - 32px));
}

.page-zenawake {
  width: min(1160px, calc(100vw - 32px));
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 8px 0 28px;
}

.brand,
.nav a {
  font-size: 0.95rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

.nav a {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.hero,
.feature,
.about {
  padding: 38px 0;
  border-top: 1px solid var(--line);
}

.profile-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  padding: 18px 0 34px;
}

.profile-copy {
  display: grid;
  gap: 16px;
}

.profile-summary {
  max-width: 680px;
}

.profile-summary.profile-statement {
  position: relative;
  display: grid;
  gap: 6px;
  width: fit-content;
  max-width: min(560px, 100%);
  padding: 13px 16px;
  border: 1px solid rgba(35, 70, 63, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(237, 245, 242, 0.72)),
    var(--panel);
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.45;
  box-shadow: 0 10px 24px rgba(25, 25, 25, 0.05);
}

.profile-summary.profile-statement span {
  display: block;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero {
  border-top: none;
  padding-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 28px;
  align-items: center;
}

.hero-home {
  align-items: start;
}

.hero-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.eyebrow,
.section-label,
.card-kicker {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero h1,
.feature h2 {
  margin: 0;
  line-height: 0.98;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.6rem, 4.4vw, 4rem);
  letter-spacing: 0;
}

.hero-product h1 {
  max-width: 660px;
}

.product-name {
  font-size: clamp(4.3rem, 8vw, 7rem);
  letter-spacing: 0;
}

.product-tagline {
  margin: -4px 0 4px;
  color: var(--muted);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.35;
}

.lede,
.profile-summary,
.feature p,
.about p,
.section-heading p,
.mini-spotlight p,
.metric-card span,
.info-card p {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.65;
  color: var(--muted);
}

.founder-strip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 8px 20px rgba(25, 25, 25, 0.04);
}

.founder-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 34%;
  border: 2px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 22px rgba(25, 25, 25, 0.12);
}

.founder-meta {
  display: grid;
  gap: 2px;
}

.founder-meta strong {
  font-size: 0.96rem;
}

.founder-meta span {
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-pills,
.contact-icons,
.hero-actions,
.hero-notes,
.product-grid,
.use-case-grid,
.metric-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-link,
.icon-link,
.hero-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  font-size: 0.9rem;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.pill-link:hover,
.pill-link:focus-visible,
.icon-link:hover,
.icon-link:focus-visible,
.button:hover,
.button:focus-visible,
.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-1px);
}

.contact-icons {
  margin-top: 18px;
}

.profile-intro .contact-icons {
  justify-content: flex-end;
  margin-top: 0;
}

.icon-link {
  width: 48px;
  height: 48px;
  padding: 0;
}

.icon-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.hero-note {
  color: var(--muted);
}

.button,
.product-card,
.info-card,
.metric-card {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 8px 20px rgba(25, 25, 25, 0.04);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 18px;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #f8f4ef;
}

.button-secondary {
  background: transparent;
}

.product-shot {
  position: relative;
}

.product-shot-stack {
  display: grid;
  gap: 16px;
}

.screenshot-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #111;
}

.screenshot-frame-hero {
  aspect-ratio: 16 / 9;
}

.screenshot-frame-card {
  min-height: 220px;
}

.screenshot-frame-proof {
  background: #171717;
}

.screenshot-frame-dark {
  background: #181818;
}

.screenshot-frame-light {
  background: linear-gradient(180deg, #fff 0%, #f7f5fb 100%);
}

.screenshot-image {
  display: block;
  width: 100%;
  height: 100%;
}

.screenshot-image-hero {
  object-fit: contain;
  object-position: 50% 50%;
}

.screenshot-image-proof {
  object-fit: contain;
  object-position: 50% 50%;
}

.screenshot-image-card {
  min-height: 220px;
  object-fit: cover;
}

.screenshot-image-know-you-card {
  object-fit: contain;
  object-position: 50% 50%;
}

.screenshot-image-who-card {
  object-position: 50% 0%;
}

.screenshot-image-homeskill-card {
  object-fit: contain;
  object-position: 50% 50%;
}

.product-card-zenawake {
  background: var(--panel);
}

.product-thumb-phone {
  position: relative;
  display: grid;
  min-height: 220px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f4ee 100%);
  box-shadow: var(--shadow);
}

.zenawake-card-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 15px;
  box-shadow: 0 12px 24px rgba(25, 25, 25, 0.16);
}

.phone-preview-row {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 14px;
  width: 100%;
  padding: 26px 20px 0;
}

.phone-preview-row img {
  width: min(42%, 128px);
  aspect-ratio: 6 / 13;
  border: 1px solid rgba(25, 25, 25, 0.14);
  border-radius: 18px 18px 0 0;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 16px 30px rgba(25, 25, 25, 0.15);
}

.phone-preview-row img + img {
  transform: translateY(24px);
}

.mini-spotlight,
.product-card,
.info-card,
.metric-card {
  border-radius: 8px;
}

.mini-spotlight {
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.mini-spotlight strong {
  display: block;
  margin: 6px 0 8px;
  font-size: 1.25rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: end;
  margin-bottom: 18px;
}

.section-heading h2 {
  margin-top: 10px;
}

.product-grid {
  align-items: stretch;
}

.product-grid-featured {
  display: grid;
  margin-bottom: 14px;
}

.product-grid-secondary-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  display: inline-flex;
  flex: 1 1 320px;
  min-width: min(320px, 100%);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
  padding: 20px;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.product-card strong,
.info-card strong,
.metric-card strong {
  font-size: 1.2rem;
  line-height: 1.15;
}

.product-card-primary {
  background: var(--panel-strong);
}

.product-card-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(280px, 0.68fr);
  gap: 26px;
  min-width: 0;
  padding: 22px;
  border-color: rgba(35, 70, 63, 0.24);
  background:
    linear-gradient(135deg, rgba(237, 245, 242, 0.82), rgba(255, 255, 255, 0.96)),
    var(--panel-strong);
  box-shadow: 0 24px 58px rgba(25, 25, 25, 0.1);
}

.product-card-featured .screenshot-frame-card {
  min-height: 340px;
}

.product-card-featured .screenshot-image-card {
  min-height: 340px;
}

.product-card-body {
  display: grid;
  align-content: center;
  gap: 14px;
  min-width: 0;
}

.product-card-featured strong {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  letter-spacing: 0;
}

.featured-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid rgba(35, 70, 63, 0.18);
  border-radius: 8px;
  background: var(--accent);
  color: #f8f4ef;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-copy-emphasis {
  padding-top: 12px;
  border-top: 1px solid rgba(35, 70, 63, 0.14);
  color: var(--accent);
}

.product-card-secondary {
  justify-content: flex-start;
}

.product-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.product-thumb {
  width: 100%;
}

.card-copy {
  color: var(--muted);
  line-height: 1.55;
}

.feature-compact,
.about-compact {
  padding-top: 30px;
  padding-bottom: 30px;
}

.hero-product-split,
.hero-product-simple,
.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: center;
}

.hero-product-simple {
  grid-template-columns: minmax(0, 520px) minmax(0, 560px);
  justify-content: center;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
}

.hero-product-simple .lede {
  max-width: 620px;
}

.hero-product-simple .hero-copy {
  max-width: none;
}

.hero-product-simple .hero-actions {
  width: 100%;
  margin-top: 10px;
}

.hero-product-simple .button-primary {
  width: 100%;
}

.hero-product-simple .product-shot {
  margin-top: 140px;
}

.hero-product-simple .screenshot-frame-hero {
  aspect-ratio: 16 / 10;
}

.hero-zenawake {
  grid-template-columns: minmax(0, 500px) minmax(360px, 1fr);
  gap: 42px;
  align-items: center;
}

.zenawake-title-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
}

.zenawake-icon {
  flex: 0 0 auto;
  width: 86px;
  height: 86px;
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(25, 25, 25, 0.14);
}

.hero-zenawake .product-name {
  font-size: clamp(3.5rem, 7vw, 6rem);
}

.zenawake-hero-gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: center;
  padding: 18px 18px 0;
  overflow: hidden;
}

.phone-shot {
  display: block;
  width: 100%;
  aspect-ratio: 6 / 13;
  border: 1px solid rgba(25, 25, 25, 0.14);
  border-radius: 34px;
  background: #f5f5f5;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 20px 46px rgba(25, 25, 25, 0.16);
}

.phone-shot-main {
  transform: translateY(18px);
}

.phone-shot-offset {
  transform: translateY(-18px);
}

.feature-zenawake-screens {
  overflow: hidden;
}

.zenawake-screen-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.feature-list-plain {
  display: grid;
  gap: 2px;
  width: 100%;
  max-width: none;
  margin: 12px 0 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  color: var(--text);
  list-style: none;
}

.feature-list-plain li {
  position: relative;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-width: 0;
  padding: 11px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--text);
  overflow: hidden;
}

.feature-list-plain li + li {
  border-top: 1px solid rgba(35, 70, 63, 0.12);
}

.feature-list-plain li::before {
  content: none;
}

.feature-list-plain li div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.feature-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(35, 70, 63, 0.16);
  border-radius: 50%;
  background: rgba(237, 245, 242, 0.82);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.feature-list-plain strong {
  font-size: 1.02rem;
  line-height: 1.35;
  color: var(--accent);
}

.feature-list-plain span {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.product-shot-caption {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.product-shot-caption strong {
  font-size: 1.4rem;
  line-height: 1.1;
}

.product-shot-caption span {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.feature-apps {
  padding-top: 34px;
}

.section-heading-compact {
  align-items: start;
  margin-bottom: 22px;
}

.app-icon-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 12px;
}

.app-icon {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
  padding: 14px 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 8px 20px rgba(25, 25, 25, 0.04);
}

.app-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 10px;
}

.app-icon span {
  max-width: 100%;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.15;
  text-align: center;
  overflow-wrap: anywhere;
}

.metric-grid {
  margin-top: 6px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-card {
  padding: 16px 18px;
}

.metric-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.use-case-grid {
  margin-top: 8px;
}

.info-card {
  flex: 1 1 220px;
  padding: 18px 18px 20px;
}

.info-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.proof-copy {
  display: grid;
  gap: 12px;
}

.feature-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.65;
}

.feature-list li + li {
  margin-top: 8px;
}

.feature-cta {
  text-align: center;
}

.feature-cta h2,
.feature-cta p {
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}

.feature-cta .hero-actions {
  justify-content: center;
}

@media (max-width: 860px) {
  .hero,
  .hero-product-split,
  .hero-product-simple,
  .proof-layout,
  .section-heading,
  .product-card-featured,
  .product-grid-secondary-row {
    grid-template-columns: 1fr;
  }

  .app-icon-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .hero-zenawake {
    grid-template-columns: 1fr;
  }

  .zenawake-hero-gallery {
    max-width: 620px;
    margin: 0 auto;
  }

  .profile-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .profile-intro .contact-icons {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-product-simple .product-shot {
    margin-top: 12px;
  }
}

@media (min-width: 861px) and (max-width: 1160px) {
  .hero-product-simple .product-shot {
    margin-top: 114px;
  }
}

@media (max-width: 720px) {
  .page {
    width: min(100vw - 24px, 1100px);
    padding-top: 14px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    gap: 10px 14px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .contact-pills,
  .hero-actions,
  .hero-notes,
  .product-grid,
  .use-case-grid {
    flex-direction: column;
  }

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

  .app-icon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .zenawake-title-lockup {
    align-items: flex-start;
    flex-direction: column;
  }

  .zenawake-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }

  .zenawake-hero-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 8px 4px 0;
  }

  .phone-shot {
    border-radius: 24px;
  }

  .zenawake-screen-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .feature-list-plain li {
    padding-right: 14px;
  }

  .app-icon img {
    width: 48px;
    height: 48px;
  }

  .pill-link,
  .hero-note,
  .button {
    width: 100%;
  }

  .product-card,
  .info-card,
  .metric-card {
    min-width: 100%;
  }
}
