:root {
  --ink: #171512;
  --muted: #6e6458;
  --cream: #f6f1e8;
  --panel: #fffdf4;
  --green: #2d9568;
  --green-text: #237650;
  --green-dark: #153f31;
  --green-deep: #0d3025;
  --green-light: #dfece2;
  --line: #d3c6b2;
  --shadow: 0 24px 70px rgba(64, 47, 24, 0.13);
  --radius-lg: 34px;
  --radius-md: 22px;
  --page: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--cream);
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.13'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.045;
  pointer-events: none;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  color: white;
  background: var(--green-dark);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  width: var(--page);
  min-height: 92px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 820;
  letter-spacing: -0.7px;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav a {
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}

nav a:not(.nav-pill) {
  color: var(--muted);
}

nav a:hover,
nav a:focus-visible {
  color: var(--green-text);
}

.nav-pill {
  padding: 9px 15px;
  border: 1px solid rgba(45, 149, 104, 0.28);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(255, 253, 244, 0.62);
}

.hero {
  display: grid;
  width: var(--page);
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: 58px 0 110px;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.88fr);
  align-items: center;
  gap: 74px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green-text);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.15em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero .eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(45, 149, 104, 0.11);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(58px, 6vw, 86px);
  font-weight: 860;
  letter-spacing: -0.064em;
  line-height: 0.98;
}

h1 em,
.closing h2 em {
  color: var(--green);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.hero-lede {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 760;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

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

.button:focus-visible,
nav a:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(45, 149, 104, 0.36);
  outline-offset: 4px;
}

.button-primary {
  color: white;
  background: var(--green-dark);
  box-shadow: 0 10px 24px rgba(21, 63, 49, 0.2);
}

.button-primary:hover {
  box-shadow: 0 14px 32px rgba(21, 63, 49, 0.26);
}

.app-store-link svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button-text {
  color: var(--green-dark);
}

.button-text svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.trust-list {
  display: flex;
  margin: 36px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.035em;
  list-style: none;
  text-transform: uppercase;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
}

.trust-list li:not(:last-child)::after {
  width: 3px;
  height: 3px;
  margin: 0 12px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 625px;
}

.whale-glow {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 110%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 149, 104, 0.19), rgba(45, 149, 104, 0) 68%);
}

.hero-whale {
  position: absolute;
  z-index: 3;
  top: -30px;
  right: 12px;
  width: 195px;
  height: 195px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(28, 91, 64, 0.2));
  animation: float 5s ease-in-out infinite;
}

.log-card {
  position: absolute;
  right: 0;
  bottom: 20px;
  width: min(100%, 445px);
  padding: 28px;
  border: 1px solid rgba(211, 198, 178, 0.72);
  border-radius: 38px;
  background: rgba(255, 253, 244, 0.86);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
  backdrop-filter: blur(14px);
}

.log-card::before {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  content: "";
  pointer-events: none;
}

.log-header,
.note-meta,
.capture-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.log-header {
  position: relative;
  margin-bottom: 20px;
}

.log-label {
  margin: 0;
  font-size: 27px;
  font-weight: 840;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.log-date {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.local-badge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  align-items: center;
  gap: 5px;
  color: var(--green-text);
  background: rgba(45, 149, 104, 0.1);
  font-size: 11px;
  font-weight: 800;
}

.local-badge svg,
.step-icon svg,
.principle-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.note-card {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(211, 198, 178, 0.54);
  border-radius: 16px;
  background: #fffdf8;
  box-shadow: 0 3px 12px rgba(64, 47, 24, 0.045);
}

.note-card + .note-card {
  margin-top: 10px;
}

.note-meta {
  color: var(--muted);
  font-size: 10px;
  font-weight: 720;
}

.note-card p {
  margin: 9px 0 0;
  font-size: 14px;
  font-weight: 560;
  line-height: 1.48;
}

.note-tags {
  display: flex;
  margin-top: 12px;
  gap: 6px;
}

.note-tags span {
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--green-light);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.note-card-muted {
  opacity: 0.76;
}

.capture-row {
  position: relative;
  margin-top: 16px;
  padding: 12px 14px 12px 12px;
  border: 1px solid rgba(45, 149, 104, 0.18);
  border-radius: 18px;
  justify-content: flex-start;
  gap: 12px;
  background: rgba(223, 236, 226, 0.55);
}

.record-button {
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: white;
  background: var(--green);
  place-items: center;
}

.record-button svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.capture-row > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.capture-row strong {
  font-size: 13px;
}

.capture-row small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.section {
  width: var(--page);
  margin: 0 auto;
}

.how {
  padding: 130px 0 150px;
}

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

.section-heading h2,
.ethos h2,
.closing h2 {
  margin: 0;
  font-size: clamp(43px, 5vw, 68px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.steps {
  display: grid;
  margin: 74px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  list-style: none;
}

.steps li {
  position: relative;
  min-height: 328px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(211, 198, 178, 0.68);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 244, 0.64);
}

.steps li::after {
  position: absolute;
  right: -35px;
  bottom: -60px;
  width: 165px;
  height: 165px;
  border-radius: 50%;
  background: rgba(45, 149, 104, 0.055);
  content: "";
}

.step-number {
  position: absolute;
  top: 22px;
  right: 26px;
  color: var(--line);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.08em;
}

.step-icon,
.principle-icon {
  display: grid;
  width: 58px;
  height: 58px;
  border-radius: 17px;
  color: var(--green);
  background: rgba(45, 149, 104, 0.11);
  place-items: center;
}

.step-icon svg,
.principle-icon svg {
  width: 28px;
  height: 28px;
}

.steps h3,
.principles h3 {
  margin: 46px 0 10px;
  font-size: 23px;
  font-weight: 810;
  letter-spacing: -0.035em;
}

.steps p,
.principles p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.ethos {
  position: relative;
  display: grid;
  width: min(1280px, calc(100% - 32px));
  min-height: 690px;
  padding: 90px clamp(40px, 7vw, 100px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: #f8f4e9;
  background:
    radial-gradient(circle at 12% 40%, rgba(73, 167, 122, 0.23), transparent 38%),
    linear-gradient(145deg, var(--green-dark), var(--green-deep));
  grid-template-columns: 0.85fr 1fr;
  align-items: center;
  gap: 60px;
}

.ethos::after {
  position: absolute;
  top: -18%;
  right: -8%;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 75px rgba(255, 255, 255, 0.025),
    0 0 0 150px rgba(255, 255, 255, 0.018);
  content: "";
}

.ethos-mark {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 440px;
  place-items: center;
}

.ethos-mark::before {
  position: absolute;
  width: min(39vw, 440px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 90px rgba(255, 255, 255, 0.025);
  content: "";
}

.ethos-mark img {
  position: relative;
  width: min(30vw, 330px);
  height: auto;
  filter: brightness(1.14) saturate(0.9) drop-shadow(0 25px 35px rgba(0, 0, 0, 0.22));
}

.ethos-copy {
  position: relative;
  z-index: 2;
  max-width: 590px;
}

.eyebrow-light {
  color: #8fd1ad;
}

.ethos-copy > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: rgba(248, 244, 233, 0.71);
  font-size: 19px;
  line-height: 1.62;
}

.ethos-lines {
  display: grid;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.ethos-lines p {
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(248, 244, 233, 0.66);
  font-size: 14px;
}

.ethos-lines strong {
  display: inline-block;
  min-width: 112px;
  color: #f8f4e9;
}

.privacy {
  padding: 150px 0 160px;
}

.privacy-heading {
  margin: 0 auto;
  text-align: center;
}

.privacy-heading > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.principles {
  display: grid;
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.principles article {
  padding: 44px 36px 46px;
}

.principles article + article {
  border-left: 1px solid var(--line);
}

.principles h3 {
  margin-top: 30px;
}

.closing {
  position: relative;
  padding: 110px 40px 120px;
  overflow: hidden;
  border: 1px solid rgba(211, 198, 178, 0.72);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 8%, rgba(45, 149, 104, 0.15), transparent 35%),
    rgba(255, 253, 244, 0.62);
  text-align: center;
}

.closing > img {
  width: 170px;
  height: 170px;
  margin: -32px auto 10px;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(28, 91, 64, 0.15));
}

.closing h2 {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
}

.closing > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.closing-store-link {
  width: fit-content;
  margin: 28px auto 0;
}

.coming-pill {
  display: inline-flex;
  margin-top: 18px;
  padding: 9px 15px;
  border-radius: 999px;
  color: var(--green-text);
  background: rgba(45, 149, 104, 0.1);
  font-size: 12px;
  font-weight: 800;
}

footer {
  display: grid;
  width: var(--page);
  min-height: 150px;
  margin: 0 auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 12px;
}

footer p:last-child {
  justify-self: end;
}

.footer-brand {
  font-size: 18px;
}

.footer-brand img {
  width: 38px;
  height: 38px;
}

.not-found {
  display: flex;
  min-height: 100vh;
  padding: 48px 24px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.not-found img {
  width: 190px;
  height: 190px;
  object-fit: contain;
}

.not-found h1 {
  font-size: clamp(54px, 10vw, 90px);
}

.not-found > p:not(.eyebrow) {
  margin: 20px 0 28px;
  color: var(--muted);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

@media (max-width: 980px) {
  :root {
    --page: min(100% - 40px, 760px);
  }

  .site-header nav a:not(.nav-pill) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-copy {
    max-width: 740px;
  }

  .hero-visual {
    width: min(100%, 560px);
    margin: 0 auto;
  }

  .steps,
  .principles {
    grid-template-columns: 1fr;
  }

  .steps li {
    min-height: 280px;
  }

  .principles article {
    display: grid;
    grid-template-columns: 70px 1fr;
    column-gap: 16px;
  }

  .principles article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .principles h3 {
    margin: 2px 0 8px;
  }

  .principles p {
    grid-column: 2;
  }

  .ethos {
    grid-template-columns: 0.72fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 720px) {
  :root {
    --page: calc(100% - 32px);
    --radius-lg: 25px;
  }

  body {
    font-size: 16px;
  }

  .site-header {
    min-height: 78px;
  }

  .brand {
    font-size: 19px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .nav-pill {
    padding: 8px 12px;
    font-size: 12px;
  }

  .hero {
    padding: 54px 0 86px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
  }

  h1 {
    font-size: clamp(49px, 15vw, 68px);
    line-height: 0.98;
  }

  .hero-lede {
    margin-top: 23px;
    font-size: 17px;
  }

  .hero-actions {
    margin-top: 26px;
    align-items: flex-start;
    flex-direction: column;
  }

  .button-text {
    padding-left: 8px;
  }

  .trust-list {
    margin-top: 24px;
    row-gap: 8px;
  }

  .trust-list li:not(:last-child)::after {
    margin: 0 8px;
  }

  .hero-visual {
    min-height: 535px;
  }

  .hero-whale {
    top: -12px;
    right: 0;
    width: 145px;
    height: 145px;
  }

  .whale-glow {
    left: -5%;
    width: 108%;
  }

  .log-card {
    right: 2%;
    bottom: 8px;
    width: 96%;
    padding: 22px;
    border-radius: 29px;
  }

  .log-card::before {
    border-radius: 22px;
  }

  .note-card {
    padding: 15px;
  }

  .how {
    padding: 96px 0 105px;
  }

  .section-heading h2,
  .ethos h2,
  .closing h2 {
    font-size: clamp(39px, 12vw, 52px);
  }

  .section-heading > p:last-child,
  .ethos-copy > p:not(.eyebrow) {
    margin-top: 19px;
    font-size: 17px;
  }

  .steps {
    margin-top: 46px;
  }

  .steps li {
    min-height: 265px;
    padding: 25px;
  }

  .steps h3 {
    margin-top: 32px;
  }

  .ethos {
    width: calc(100% - 16px);
    padding: 60px 26px 66px;
    grid-template-columns: 1fr;
  }

  .ethos-mark {
    min-height: 240px;
  }

  .ethos-mark::before {
    width: 255px;
  }

  .ethos-mark img {
    width: 210px;
  }

  .privacy {
    padding: 105px 0;
  }

  .principles {
    margin-top: 46px;
  }

  .principles article {
    padding: 32px 4px;
    grid-template-columns: 58px 1fr;
  }

  .principle-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .principle-icon svg {
    width: 24px;
    height: 24px;
  }

  .closing {
    width: calc(100% - 16px);
    padding: 80px 18px 86px;
  }

  .closing > img {
    width: 140px;
    height: 140px;
  }

  footer {
    padding: 30px 0;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 6px;
  }

  footer p {
    margin: 0;
  }

  footer p:last-child {
    justify-self: center;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
