@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f8f5ee;
  --bg-2: #f1ece1;
  --surface: #ffffff;
  --surface-2: #fffaf2;
  --line: #ece5d6;
  --line-2: #ddd3be;
  --ink: #14110d;
  --ink-2: #3d362d;
  --ink-3: #6f665a;
  --ink-4: #a89f90;
  --accent: #ff5a3c;
  --accent-2: #e64626;
  --accent-soft: #ffeae3;
  --people: #ff6b5b;
  --people-soft: #ffe4de;
  --body: #4dbe96;
  --body-soft: #ddf1e7;
  --mind: #5fa1e8;
  --mind-soft: #deebf8;
  --craft: #e8b342;
  --craft-soft: #faefce;
  --home: #b084ec;
  --home-soft: #ece0f8;
  --outside: #4fb5bf;
  --outside-soft: #dbf0f2;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(20, 17, 13, 0.04), 0 2px 6px rgba(20, 17, 13, 0.04);
  --shadow-md: 0 2px 4px rgba(20, 17, 13, 0.04), 0 8px 24px rgba(20, 17, 13, 0.06);
  --shadow-lg: 0 8px 12px rgba(20, 17, 13, 0.05), 0 24px 60px rgba(20, 17, 13, 0.1);
  --max: 1180px;
  --gutter: clamp(20px, 5vw, 80px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20, 17, 13, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 17, 13, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 55%);
}

img,
svg {
  display: block;
}

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

button,
.button {
  font: inherit;
}

p,
h1,
h2,
h3,
ul {
  margin: 0;
}

.wrap {
  width: min(100% - (var(--gutter) * 2), var(--max));
  margin-inline: auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(236, 229, 214, 0.82);
  background: rgba(248, 245, 238, 0.88);
  backdrop-filter: blur(14px) saturate(140%);
}

.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 22px;
}

.brand-mark {
  width: 30px;
  height: 30px;
  color: var(--ink);
}

.dot-accent {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  opacity: 0.86;
  transition: opacity 0.16s ease, color 0.16s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--accent-2);
  opacity: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-sm);
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.accent {
  background: var(--accent);
}

.button.accent:hover {
  background: var(--accent-2);
}

.button.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: none;
}

.button.soft {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}

.hero {
  padding: clamp(44px, 7vw, 96px) 0 clamp(42px, 7vw, 78px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(38px, 5vw, 68px);
  align-items: center;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(58px, 8.2vw, 112px);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 800;
}

.hero h1 span {
  color: var(--accent);
}

.lede {
  margin-top: 26px;
  max-width: 590px;
  color: var(--ink-2);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.42;
  font-weight: 500;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-note {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  color: var(--ink-3);
  font-size: 13px;
  font-weight: 600;
}

.mini-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.device-stage {
  display: grid;
  place-items: center;
}

.phone {
  width: min(100%, 380px);
  aspect-ratio: 0.5;
  padding: 12px;
  border-radius: 50px;
  background: linear-gradient(160deg, #14110d 0%, #2a241d 100%);
  box-shadow: 0 42px 120px rgba(20, 17, 13, 0.28), 0 8px 24px rgba(20, 17, 13, 0.14);
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 39px;
  background: var(--bg);
  padding: 42px 16px 0;
}

.phone-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 6px;
}

.phone-title {
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.phone-date {
  margin-top: 4px;
  color: var(--ink-3);
  font-size: 11px;
  font-weight: 600;
}

.eyebrow {
  color: var(--ink-3);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone-section-label {
  margin: 18px 4px 8px;
  color: var(--accent-2);
}

.item-card {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.hero-card {
  padding: 18px 17px 18px;
  background: var(--people-soft);
}

.card-kicker {
  display: flex;
  align-items: center;
  gap: 7px;
}

.dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: currentColor;
}

.hero-card-name {
  margin-top: 6px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 600;
}

.number-row {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.numeral {
  font-weight: 800;
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.phone .numeral {
  font-size: 124px;
}

.unit {
  color: var(--ink-3);
  font-size: 14px;
  font-weight: 600;
}

.mini-list {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.mini-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.mini-row span:nth-child(2) {
  font-size: 13px;
  font-weight: 700;
}

.mini-row .numeral {
  font-size: 30px;
}

.section-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}

.ethos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding: 34px 0;
}

.ethos strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: 0;
}

.ethos span {
  display: block;
  margin-top: 5px;
  color: var(--ink-3);
  font-size: 13px;
  font-weight: 600;
}

.split-section {
  padding: clamp(68px, 9vw, 118px) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.section-title {
  margin-top: 14px;
  color: var(--ink);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
}

.section-copy {
  margin-top: 18px;
  color: var(--ink-3);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
}

.thesis-copy {
  color: var(--ink-2);
  font-size: clamp(25px, 3.1vw, 38px);
  line-height: 1.25;
  font-weight: 500;
}

.thesis-copy strong,
.thesis-copy span {
  font-weight: 800;
}

.thesis-copy span {
  color: var(--accent);
}

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

.metric-card {
  min-height: 280px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--surface);
}

.metric-card.people {
  background: var(--people-soft);
}

.metric-card.craft {
  background: var(--craft-soft);
}

.metric-card.body {
  background: var(--body-soft);
}

.metric-card .numeral {
  font-size: clamp(74px, 8vw, 120px);
}

.metric-card p {
  margin-top: 10px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
}

.feature-section {
  padding: 0 0 clamp(70px, 9vw, 118px);
}

.feature-head {
  max-width: 900px;
}

.feature-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 250px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card h3 {
  margin-top: 18px;
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: 0;
}

.feature-card p {
  margin-top: 12px;
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}

.feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 11px;
}

.quote-band {
  padding: clamp(70px, 9vw, 116px) 0;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

.quote {
  max-width: 1060px;
  position: relative;
}

.quote::after {
  content: "";
  position: absolute;
  right: -210px;
  top: -120px;
  width: 560px;
  height: 560px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 90, 60, 0.22), transparent 67%);
}

.quote h2 {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 800;
}

.quote span {
  color: var(--accent);
}

.quote p {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 600;
}

.pricing {
  padding: clamp(70px, 9vw, 116px) 0;
}

.pricing-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.pricing-head .section-title {
  max-width: 760px;
}

.pricing-head p {
  max-width: 350px;
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
}

.plan {
  padding: 34px;
  border-radius: var(--r-xl);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.plan.pro {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--ink) 0%, #2a241d 100%);
  color: #fff;
}

.plan.pro::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -110px;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 90, 60, 0.5), transparent 70%);
}

.plan > * {
  position: relative;
}

.plan-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.plan-name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 13px;
  border-radius: var(--r-pill);
  background: var(--bg-2);
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 700;
}

.pro .chip {
  background: var(--accent);
  color: #fff;
}

.price {
  margin-top: 20px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price .numeral {
  font-size: clamp(68px, 8vw, 102px);
}

.price small {
  color: var(--ink-3);
  font-size: 15px;
  font-weight: 700;
}

.pro .price .numeral {
  color: var(--accent);
}

.pro .price small,
.pro .plan-note,
.pro li {
  color: rgba(255, 255, 255, 0.68);
}

.plan-note {
  margin-top: 2px;
  color: var(--ink-3);
  font-size: 14px;
  font-weight: 600;
}

.tier-list {
  margin-top: 18px;
  display: grid;
  gap: 8px;
}

.tier-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 13px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.07);
}

.tier-list span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
}

.tier-list strong {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin-top: 28px;
  display: grid;
  gap: 13px;
}

.plan li {
  display: flex;
  gap: 11px;
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.38;
}

.check {
  color: var(--body);
  font-weight: 800;
}

.pro .check {
  color: var(--accent);
}

.faq {
  padding: 0 0 clamp(70px, 9vw, 116px);
}

.faq-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 70px;
}

.qa {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.qa h3 {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
}

.qa p {
  margin-top: 8px;
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.58;
  font-weight: 600;
}

.cta {
  padding: clamp(72px, 9vw, 106px) 0;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}

.cta h2 {
  max-width: 920px;
  font-size: clamp(48px, 8vw, 94px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 800;
}

.cta h2 span {
  color: var(--accent);
}

.cta .hero-actions {
  margin-top: 28px;
}

.page-hero {
  padding: clamp(56px, 8vw, 98px) 0 clamp(44px, 7vw, 74px);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 800;
}

.page-hero p {
  margin-top: 22px;
  max-width: 720px;
  color: var(--ink-2);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.45;
  font-weight: 500;
}

.content-grid {
  padding: 0 0 clamp(78px, 9vw, 120px);
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 76px);
}

.contact-card,
.policy-card {
  padding: 30px;
  border-radius: var(--r-xl);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.contact-card {
  position: sticky;
  top: 100px;
}

.contact-card h2,
.policy-card h2 {
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: 0;
}

.contact-card p,
.policy-card p,
.policy-card li {
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 600;
}

.contact-card p,
.policy-card p {
  margin-top: 12px;
}

.email-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--accent-2);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.support-list {
  display: grid;
  gap: 18px;
}

.policy-card + .policy-card {
  margin-top: 18px;
}

.policy-card ul {
  margin-top: 12px;
  padding-left: 20px;
}

.policy-card a,
.contact-card a:not(.email-link) {
  color: var(--accent-2);
  border-bottom: 1px solid rgba(230, 70, 38, 0.28);
}

.footer {
  padding: 38px 0 54px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  color: var(--ink-3);
  font-size: 13px;
  font-weight: 700;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.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;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-section,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .pricing-head {
    display: block;
  }

  .pricing-head p {
    margin-top: 18px;
  }

  .cards-3,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .metric-card {
    min-height: auto;
  }

  .contact-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .nav-inner {
    height: 64px;
  }

  .nav-links {
    gap: 18px;
    font-size: 13px;
  }

  .nav-links a:nth-child(1),
  .nav-links a:nth-child(2) {
    display: none;
  }

  .nav .button {
    display: none;
  }

  .hero {
    padding-top: 28px;
  }

  .phone {
    width: min(100%, 310px);
    border-radius: 42px;
  }

  .phone-screen {
    border-radius: 32px;
    padding-top: 34px;
  }

  .phone .numeral {
    font-size: 90px;
  }

  .hero-card {
    padding: 15px;
  }

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

  .feature-grid {
    margin-top: 28px;
  }

  .quote::after {
    right: -280px;
  }

  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .plan {
    padding: 26px 22px;
  }

  .footer-inner {
    display: grid;
    justify-items: start;
  }
}

@media (max-width: 430px) {
  :root {
    --gutter: 20px;
  }

  .brand {
    font-size: 19px;
  }

  .brand-mark {
    width: 25px;
    height: 25px;
  }

  .nav-links {
    gap: 14px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .ethos strong {
    font-size: 18px;
  }
}
