:root {
  --paper: #f5f5f4;
  --paper-warm: #f1f2ee;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --ink: #202426;
  --muted: #5e6669;
  --line: #e4e6e1;
  --clay: #2f7470;
  --clay-dark: #225b59;
  --apricot: #d19a55;
  --sage: #738367;
  --teal: #3b8a84;
  --gold: #b5894a;
  --copper: #a75f3d;
  --brown: #302820;
  --brown-light: #4a3a2d;
  --indigo: #5b4b86;
  --indigo-soft: #ece8f3;
  --rose: #c4685e;
  --rose-soft: #f6e8e4;
  --shadow: 0 22px 70px rgba(48, 70, 66, 0.11);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 6%, rgba(91, 75, 134, 0.05), transparent 42%),
    radial-gradient(circle at 96% 28%, rgba(196, 104, 94, 0.04), transparent 44%),
    var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(250, 250, 247, 0.88);
  border-bottom: 1px solid rgba(228, 230, 225, 0.74);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: #fffdf8;
  background: linear-gradient(135deg, var(--brown), var(--brown-light));
  box-shadow: 0 10px 28px rgba(48, 40, 32, 0.25);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--clay-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  min-height: auto;
  padding: clamp(64px, 8vw, 92px) clamp(20px, 5vw, 72px) 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 28px clamp(20px, 5vw, 72px) auto;
  height: 66%;
  border-radius: 36px;
  background:
    radial-gradient(circle at 18% 12%, rgba(91, 75, 134, 0.06), transparent 30%),
    radial-gradient(circle at 80% 24%, rgba(47, 116, 112, 0.10), transparent 28%),
    linear-gradient(135deg, #ffffff, rgba(241, 242, 238, 0.55));
  border: 1px solid rgba(228, 230, 225, 0.78);
  z-index: -1;
}

.hero-inner {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 850px;
  font-size: clamp(42px, 5.9vw, 82px);
}

.hero-copy {
  max-width: 700px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 1.55vw, 19px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 9px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid transparent;
}

.button.primary {
  color: #fffdf8;
  background: var(--brown);
  box-shadow: 0 18px 40px rgba(48, 40, 32, 0.28);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--line);
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  margin-top: clamp(42px, 6vw, 72px);
}

.mini-product,
.product-card,
.signara-visual {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(228, 230, 225, 0.95);
  box-shadow: var(--shadow);
}

.mini-product {
  min-height: 190px;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.mini-product::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  top: -40px;
  right: -32px;
  background: #8c6a47;
  opacity: 0.45;
}

.mini-product.singletable::before {
  background: #8c6a47;
}

.mini-product.calmtouch::before {
  background: #8c6a47;
}

.mini-label,
.product-kicker {
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-product h2 {
  margin-top: 14px;
  font-size: 33px;
}

.mini-product p {
  margin: 12px 0 0;
  color: var(--muted);
  max-width: 300px;
}

.section {
  padding: 82px clamp(20px, 5vw, 72px) 34px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.5fr);
  gap: 36px;
  align-items: end;
}

.section-heading h2,
.principle h2,
.contact h2 {
  font-size: clamp(38px, 6vw, 78px);
}

.section-lede {
  margin: 0;
  max-width: 460px;
  color: var(--muted);
  font-size: 18px;
}

.product-feature,
.product-pair,
.principle,
.founder,
.contact {
  margin: 36px clamp(20px, 5vw, 72px);
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.8fr);
  gap: 40px;
  align-items: stretch;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff, rgba(241, 242, 238, 0.85));
  border: 1px solid rgba(228, 230, 225, 0.95);
}

.singletable-feature {
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  background:
    radial-gradient(circle at 84% 16%, rgba(47, 116, 112, 0.08), transparent 28%),
    linear-gradient(135deg, #ffffff, rgba(241, 242, 238, 0.82));
}

.calmtouch-feature {
  background:
    radial-gradient(circle at 88% 18%, rgba(91, 75, 134, 0.07), transparent 30%),
    linear-gradient(135deg, #ffffff, rgba(241, 242, 238, 0.82));
}

.product-copy h2 {
  margin-top: 16px;
  font-size: clamp(38px, 5.2vw, 72px);
}

.product-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.product-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.product-points li {
  position: relative;
  padding-left: 24px;
  color: #35413e;
  font-weight: 600;
}

.product-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--clay);
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--clay-dark);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.text-link.muted {
  color: var(--muted);
  text-decoration: none;
}

.signara-visual {
  border-radius: 22px;
  padding: 18px;
  min-height: 460px;
  align-self: center;
  width: 100%;
  transform: rotate(1.2deg);
}

.visual-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 4px 18px;
}

.visual-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
}

.visual-toolbar p {
  margin: 0 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.kpi-block,
.chart-block,
.insight-block {
  border-radius: 16px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  padding: 18px;
}

.kpi-block small,
.insight-block small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.kpi-block strong {
  display: block;
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 1;
}

.kpi-block em {
  display: block;
  margin-top: 12px;
  color: var(--sage);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.chart-block {
  grid-column: span 2;
  height: 150px;
  display: flex;
  align-items: end;
  gap: 14px;
}

.bar {
  flex: 1;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, var(--clay), #8fb7a7);
}

.h1 { height: 48%; }
.h2 { height: 78%; }
.h3 { height: 62%; }
.h4 { height: 92%; }

.insight-block {
  grid-column: span 2;
}

.insight-block p {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
}

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

.product-pair-single {
  grid-template-columns: minmax(0, 1fr);
}

.product-card {
  border-radius: 24px;
  padding: clamp(26px, 4vw, 42px);
}

.product-card h3 {
  margin-top: 14px;
  font-size: clamp(33px, 4vw, 52px);
}

.product-card p {
  color: var(--muted);
  font-size: 16px;
}

.booking-visual {
  display: grid;
  gap: 10px;
  max-width: 420px;
  margin-bottom: 34px;
}

.booking-visual-large {
  max-width: 440px;
  width: 100%;
  margin: 0;
  align-self: center;
  justify-self: center;
  gap: 14px;
}

.booking-visual-large .table-row {
  min-height: 62px;
  align-items: center;
  padding: 16px 22px;
  font-size: 16px;
  border-radius: 14px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-strong);
  color: var(--muted);
}

.table-row.active {
  color: var(--ink);
  background: #eaf0df;
  border-color: #c8d3bc;
}

.phone-visual {
  height: 180px;
  display: flex;
  align-items: center;
  margin-bottom: 34px;
}

.calmtouch-feature .calmtouch-visual {
  display: grid;
  place-items: center;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(150deg, #2f7470, #225b59);
  box-shadow: 0 20px 50px rgba(47, 116, 112, 0.30);
  border: 1px solid rgba(91, 75, 134, 0.22);
  padding: 56px 40px;
  width: 100%;
  max-width: 440px;
  min-height: 320px;
  align-self: center;
  justify-self: center;
}

.calmtouch-feature .calmtouch-visual img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
}

.product-wedge {
  margin: 0 0 18px;
  padding: 12px 16px;
  background: var(--indigo-soft);
  color: var(--indigo);
  border-left: 3px solid var(--indigo);
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.55;
}

.phone-shell {
  position: relative;
  width: 118px;
  height: 166px;
  border: 9px solid #2b2320;
  border-radius: 26px;
  background: linear-gradient(180deg, #fff8ec, #efe2d1);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.phone-shell p {
  margin: 0;
  color: var(--clay-dark);
  font-weight: 800;
  font-size: 12px;
}

.pulse-ring {
  position: absolute;
  border: 2px solid rgba(46, 129, 118, 0.28);
  border-radius: 50%;
}

.pulse-ring.one { width: 48px; height: 48px; }
.pulse-ring.two { width: 86px; height: 86px; }
.pulse-ring.three { width: 124px; height: 124px; }

.principle {
  padding: clamp(34px, 6vw, 72px);
  border-radius: 28px;
  background: #302820;
  color: #fffdf8;
}

.principle .eyebrow {
  color: var(--apricot);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.principle-grid article {
  padding: 26px;
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.07);
  border: 1px solid rgba(255, 253, 248, 0.12);
}

.principle-grid span {
  color: var(--apricot);
  font-weight: 800;
}

.principle-grid h3 {
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: 21px;
  letter-spacing: 0;
}

.principle-grid p {
  margin: 12px 0 0;
  color: rgba(255, 253, 248, 0.72);
}

.founder {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.founder-aside,
.founder-story,
.contact {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.84);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.founder-aside {
  padding: 34px;
  position: sticky;
  top: 100px;
  color: #fffdf8;
  background:
    linear-gradient(160deg, rgba(47, 116, 112, 0.2), transparent 44%),
    #302820;
  border-color: rgba(255, 253, 248, 0.12);
}

.founder-aside .eyebrow {
  color: var(--apricot);
}

#products .eyebrow {
  color: var(--rose);
}

#contact .eyebrow {
  color: var(--indigo);
}

.product-feature-primary .product-kicker {
  color: var(--indigo);
}

.singletable-feature .product-kicker {
  color: var(--rose);
}

.founder-photo {
  position: relative;
  display: grid;
  place-items: end start;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3 / 4;
  margin-bottom: 28px;
  padding: 18px;
  border-radius: 38px;
  overflow: hidden;
  color: rgba(255, 253, 248, 0.82);
  background:
    linear-gradient(180deg, transparent 52%, rgba(47, 38, 31, 0.72)),
    linear-gradient(135deg, rgba(47, 116, 112, 0.62), rgba(115, 131, 103, 0.54));
  border: 1px solid rgba(255, 253, 248, 0.22);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.founder-photo img {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  object-fit: cover;
  object-position: center 38%;
}

.founder-photo span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.16);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.founder-photo.has-photo span {
  display: none;
}

.founder-aside h2 {
  font-size: clamp(38px, 4vw, 60px);
}

.founder-role {
  margin: 14px 0 0;
  color: rgba(255, 253, 248, 0.72);
  font-weight: 700;
}

.credential-list {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.credential-list span {
  padding: 12px 0;
  color: rgba(255, 253, 248, 0.84);
  border-top: 1px solid rgba(255, 253, 248, 0.15);
  font-size: 14px;
  font-weight: 700;
}

.founder-story {
  padding: clamp(30px, 5vw, 58px);
}

.founder-product-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(60, 50, 40, 0.12);
  font-size: 14px;
}

.founder-product-links span {
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.founder-product-links a {
  color: var(--clay-dark);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(47, 116, 112, 0.35);
  padding-bottom: 1px;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.founder-product-links a:hover {
  color: var(--indigo);
  border-color: var(--indigo);
}

.founder-story p {
  margin: 0 0 20px;
  color: #443830;
  font-size: clamp(17px, 1.8vw, 21px);
}

blockquote {
  margin: 36px 0 0;
  padding: 28px;
  border-left: 6px solid var(--clay);
  background: #eef0e7;
  border-radius: 0 18px 18px 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.04;
}

.contact {
  padding: clamp(34px, 6vw, 76px);
  text-align: center;
}

.contact p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.contact-actions {
  justify-content: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 32px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

@media (max-width: 980px) {
  .product-strip,
  .intro,
  .product-feature,
  .product-pair,
  .principle-grid,
  .founder {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .founder-aside {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 68px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px 12px;
  }

  h1 {
    font-size: clamp(38px, 12.5vw, 56px);
  }

  .hero::before {
    inset: 18px;
    height: 72%;
    border-radius: 24px;
  }

  .section {
    padding-top: 76px;
  }

  .signara-visual {
    min-height: auto;
    transform: none;
  }

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

  .chart-block,
  .insight-block {
    grid-column: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}
