@font-face {
  font-family: "Manrope";
  src: url("/assets/manrope-variable.52ecbc78831e.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --ivory: #fffaf2;
  --surface: #fffdf9;
  --espresso: #211711;
  --espresso-soft: #5f534b;
  --forest: #285b43;
  --forest-deep: #174532;
  --sage: #7c9b72;
  --sage-soft: #dfe9d8;
  --mint: #dceee2;
  --apricot: #e6794f;
  --apricot-soft: #f7d7c7;
  --honey: #efb63d;
  --honey-soft: #f9e6ae;
  --clay: #be6f58;
  --clay-soft: #efd7cf;
  --line: rgba(52, 37, 27, 0.14);
  --line-light: rgba(255, 250, 242, 0.26);
  --display: "Manrope", system-ui, sans-serif;
  --body: "Manrope", system-ui, sans-serif;
  --page: min(1440px, calc(100% - 72px));
  --radius-large: 42px;
  --radius-card: 26px;
  --shadow-soft: 0 28px 70px rgba(55, 39, 27, 0.11);
  --shadow-phone: 0 30px 70px rgba(38, 25, 17, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--espresso);
  font-family: var(--body);
  font-size: 17px;
  font-synthesis: none;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.reset-page {
  min-height: 100svh;
  background:
    linear-gradient(180deg, rgba(223, 233, 216, 0.58), transparent 34%),
    var(--ivory);
}

.reset-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 40px));
  min-height: 82px;
  margin-inline: auto;
}

.reset-language {
  display: grid;
  min-width: 46px;
  min-height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--forest-deep);
  font-size: 13px;
  font-weight: 800;
}

.reset-shell {
  display: grid;
  width: min(620px, calc(100% - 32px));
  min-height: calc(100svh - 82px);
  margin-inline: auto;
  padding: clamp(34px, 8vh, 92px) 0 48px;
  align-content: start;
}

.reset-card {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.reset-card h1 {
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(38px, 8vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.reset-card h2 {
  margin: 30px 0 10px;
  font-size: 25px;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.reset-intro,
.reset-card [data-request-panel] > p,
.reset-success p {
  color: var(--espresso-soft);
}

.reset-card [hidden] {
  display: none !important;
}

.reset-form {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.reset-form label {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 750;
}

.reset-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(52, 37, 27, 0.2);
  border-radius: 12px;
  background: #fff;
  color: var(--espresso);
  font: inherit;
}

.reset-form input:focus {
  border-color: var(--forest);
  outline: 3px solid rgba(40, 91, 67, 0.16);
}

.form-help,
.form-status {
  margin: 2px 0 0;
  color: var(--espresso-soft);
  font-size: 13px;
}

.form-status {
  min-height: 20px;
}

.form-status.is-error {
  color: #a2382b;
}

.reset-primary,
.reset-secondary {
  display: grid;
  width: 100%;
  min-height: 52px;
  margin-top: 10px;
  place-items: center;
  border: 0;
  border-radius: 12px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.reset-primary {
  background: var(--forest);
  color: #fff;
}

.reset-primary:disabled {
  cursor: wait;
  opacity: 0.56;
}

.reset-secondary {
  border: 1px solid rgba(40, 91, 67, 0.28);
  background: var(--sage-soft);
  color: var(--forest-deep);
}

.reset-success {
  margin-top: 28px;
}

.reset-success-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--forest-deep);
  font-size: 26px;
  font-weight: 800;
}

.reset-home-link {
  display: inline-flex;
  margin-top: 30px;
  color: var(--forest-deep);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.reset-support {
  margin: 22px 0 0;
  color: var(--espresso-soft);
  font-size: 14px;
  text-align: center;
}

.reset-support a {
  color: var(--forest-deep);
  font-weight: 750;
}

@media (max-width: 540px) {
  .reset-header {
    width: calc(100% - 32px);
  }

  .reset-card {
    padding: 26px 22px;
    border-radius: 20px;
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--honey);
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
}

h1,
h2 {
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.048em;
  line-height: 0.99;
  text-wrap: balance;
}

h1 {
  max-width: 720px;
  font-size: clamp(64px, 5.8vw, 92px);
}

h2 {
  font-size: clamp(48px, 4.5vw, 72px);
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
  font-weight: 760;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  border-radius: 10px;
  background: var(--espresso);
  color: var(--ivory);
  font-weight: 700;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 78px;
  margin: 0;
  padding: 12px clamp(22px, 3vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.96);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 32px rgba(48, 34, 24, 0.09);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  box-shadow: 0 8px 18px rgba(57, 40, 28, 0.1);
}

.primary-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 18px;
  width: auto;
  min-width: 0;
  margin-left: clamp(28px, 4vw, 68px);
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: clamp(18px, 2.2vw, 36px);
}

.nav-actions {
  gap: 10px;
  margin-left: auto;
}

.primary-nav a:not(.nav-launch) {
  position: relative;
  color: var(--espresso-soft);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--forest);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.primary-nav .nav-launch {
  padding: 11px 18px;
  border: 1px solid rgba(40, 91, 67, 0.32);
  border-radius: 13px;
  background: var(--surface);
  color: var(--forest-deep);
}

.primary-nav .nav-launch::after {
  display: none;
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(38px, 1fr));
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(40, 91, 67, 0.22);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.72);
}

.primary-nav .language-switch a,
.language-switch span {
  display: grid;
  min-height: 34px;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--espresso-soft);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  place-items: center;
}

.language-switch span[aria-current="page"] {
  background: var(--forest);
  color: var(--ivory);
  box-shadow: 0 6px 15px rgba(40, 91, 67, 0.2);
}

.menu-toggle {
  display: none;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 780;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--forest);
  color: var(--ivory);
  box-shadow: 0 16px 30px rgba(40, 91, 67, 0.2);
}

.button-primary:hover {
  background: var(--forest-deep);
}

.button-secondary {
  border-color: rgba(40, 91, 67, 0.38);
  background: var(--surface);
  color: var(--forest-deep);
}

.button-light {
  background: var(--ivory);
  color: var(--forest-deep);
  box-shadow: 0 16px 35px rgba(33, 23, 17, 0.14);
}

.status-line {
  margin: 16px 0 0;
  color: var(--espresso-soft);
  font-size: 13px;
  font-weight: 650;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(440px, 0.95fr) minmax(600px, 1.05fr);
  gap: 34px;
  min-height: 810px;
  padding: 72px 0 42px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  padding-bottom: 106px;
}

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

.hero-copy h1 span {
  display: block;
}

.hero-title-accent {
  color: var(--forest);
}

.hero-intro {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--espresso-soft);
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.device-stage {
  position: relative;
  min-height: 680px;
  align-self: center;
}

.device-backdrop {
  position: absolute;
}

.device-backdrop-green {
  top: -72px;
  right: 0;
  width: 78%;
  height: 66%;
  background: var(--forest);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.device-backdrop-apricot {
  right: 0;
  bottom: 26px;
  width: 88%;
  height: 43%;
  background: var(--apricot);
  clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%);
}

.phone {
  position: absolute;
  z-index: 2;
  margin: 0;
  padding: 7px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 46px;
  background: #15110e;
  box-shadow: var(--shadow-phone);
  isolation: isolate;
}

.phone img {
  width: 100%;
  aspect-ratio: 1320 / 2868;
  border-radius: 39px;
  object-fit: contain;
}

.phone::after {
  position: absolute;
  z-index: 4;
  inset: 7px;
  border: 1px solid rgba(30, 24, 19, 0.32);
  border-radius: 39px;
  content: "";
  pointer-events: none;
}

.phone-left,
.phone-right {
  top: 146px;
  width: min(250px, 31%);
}

.phone-left {
  left: -2%;
  transform: rotate(-4deg);
}

.phone-right {
  right: -1%;
  transform: rotate(4deg);
}

.phone-center {
  z-index: 3;
  top: 34px;
  left: 50%;
  width: min(300px, 38%);
  transform: translateX(-50%);
}

.reason-strip {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: 54px;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.reason-strip article {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 4px 20px;
  border-left: 1px solid var(--line);
}

.reason-strip article:first-child {
  border-left: 0;
}

.reason-icon {
  display: grid;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: var(--sage-soft);
  color: var(--forest-deep);
  font-size: 12px;
  font-weight: 800;
  place-items: center;
}

.reason-strip strong,
.reason-strip small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reason-strip strong {
  font-size: 14px;
}

.reason-strip small {
  color: var(--espresso-soft);
  font-size: 12px;
}

.feature-overview {
  padding: 72px 0 92px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -26px;
}

.section-heading h2 {
  max-width: 920px;
  margin-bottom: 0;
}

.section-heading > p:last-child {
  max-width: 520px;
  margin: 0 0 5px;
  color: var(--espresso-soft);
  font-size: 18px;
}

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

.feature-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(210px, 0.66fr);
  min-height: 430px;
  padding: 32px 30px;
  overflow: hidden;
  border: 1px solid rgba(41, 30, 22, 0.09);
  border-radius: var(--radius-card);
}

.feature-card-copy {
  position: relative;
  z-index: 2;
  align-self: start;
}

.feature-card-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 78px;
}

.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 253, 249, 0.78);
  font-size: 12px;
  font-weight: 850;
  place-items: center;
}

.feature-badge {
  padding: 7px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1;
}

.feature-card h3 {
  max-width: 360px;
  font-size: clamp(27px, 2.25vw, 36px);
}

.feature-card p {
  max-width: 360px;
  margin: 0;
  color: rgba(33, 23, 17, 0.74);
  font-size: 15px;
}

.feature-card-media {
  position: relative;
  min-width: 0;
}

.phone-showcase {
  right: 8px;
  bottom: -240px;
  width: min(250px, 100%);
}

.feature-mascot {
  position: absolute;
  right: -34px;
  bottom: -40px;
  width: min(330px, 135%);
  max-width: none;
  aspect-ratio: 1;
  border-radius: 28px;
  object-fit: contain;
  box-shadow: 0 20px 40px rgba(92, 47, 27, 0.13);
}

.feature-sage {
  background: var(--sage-soft);
  color: var(--forest-deep);
}

.feature-honey {
  background: var(--honey-soft);
  color: #7b4a00;
}

.feature-apricot {
  background: var(--apricot-soft);
  color: #883d24;
}

.feature-mint {
  background: var(--mint);
  color: var(--forest-deep);
}

.feature-clay {
  background: var(--clay-soft);
  color: #723526;
}

.feature-forest {
  background: var(--forest);
  color: var(--ivory);
}

.feature-forest p {
  color: rgba(255, 250, 242, 0.8);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.75fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
  min-height: 860px;
  margin-bottom: 34px;
  padding: 82px clamp(46px, 6vw, 96px);
  overflow: hidden;
  border-radius: var(--radius-large);
}

.story-inventory {
  background: #e8f0e3;
}

.story-brew {
  background: #f8e2bd;
}

.story-brew .story-copy {
  grid-column: 2;
}

.story-brew .story-media {
  grid-row: 1;
  grid-column: 1;
}

.story-copy h2 {
  max-width: 800px;
}

.section-intro {
  max-width: 690px;
  margin-bottom: 32px;
  color: var(--espresso-soft);
  font-size: 18px;
}

.detail-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  padding: 18px 0;
  border-top: 1px solid rgba(33, 23, 17, 0.13);
}

.detail-number {
  display: grid;
  width: 36px;
  height: 36px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--forest);
  font-size: 11px;
  font-weight: 850;
  place-items: center;
}

.detail-list strong,
.detail-list li > span:last-child > span {
  display: block;
}

.detail-list strong {
  margin-bottom: 4px;
  font-size: 16px;
}

.detail-list li > span:last-child > span {
  color: var(--espresso-soft);
  font-size: 14px;
  line-height: 1.48;
}

.outcome {
  margin: 26px 0 0;
  padding-left: 17px;
  border-left: 4px solid var(--apricot);
  color: var(--espresso);
  font-weight: 800;
}

.story-media {
  position: relative;
  display: grid;
  min-height: 710px;
  place-items: center;
}

.media-card {
  position: absolute;
  width: min(520px, 96%);
  height: 78%;
  border-radius: 38px;
}

.media-card-sage {
  background: var(--forest);
}

.media-card-honey {
  background: var(--apricot);
}

.phone-feature {
  position: relative;
  width: min(320px, 73%);
}

.beanie-section {
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(45px, 7vw, 110px);
  align-items: center;
  min-height: 720px;
  margin-block: 80px 28px;
  padding: 54px clamp(46px, 6vw, 92px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--surface);
}

.beanie-visual {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  min-height: 0;
  overflow: hidden;
  border-radius: 34px;
  background: #f8f1e7;
  place-items: center;
}

.beanie-visual::before,
.beanie-visual::after {
  display: none;
}

.beanie-visual::before {
  top: -72px;
  right: -30px;
}

.beanie-visual::after {
  bottom: -90px;
  left: -32px;
}

.beanie-visual img {
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: 640px;
  object-fit: contain;
}

.beanie-copy h2 {
  max-width: 780px;
}

.question-list {
  margin: 32px 0 24px;
  padding: 0;
  list-style: none;
}

.question-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid rgba(33, 23, 17, 0.13);
}

.question-list li > span:first-child {
  display: grid;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--ivory);
  color: var(--forest);
  place-items: center;
}

.question-list strong,
.question-list small {
  display: block;
}

.question-list strong {
  margin-bottom: 3px;
  font-size: 16px;
}

.question-list small {
  color: var(--espresso-soft);
  font-size: 13px;
}

.beanie-note {
  margin: 0;
  padding: 17px 19px;
  border-left: 4px solid var(--apricot);
  background: rgba(255, 253, 249, 0.66);
  color: var(--espresso-soft);
  font-size: 13px;
}

.community-section {
  padding: 72px clamp(42px, 6vw, 90px);
  border-radius: var(--radius-large);
  background: var(--mint);
}

.community-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 46px;
}

.community-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -26px;
}

.community-intro h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.community-intro > p:last-child {
  margin: 0 0 8px;
  color: var(--espresso-soft);
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}

.community-grid article {
  min-height: 260px;
  padding: 25px;
  border: 1px solid rgba(33, 23, 17, 0.1);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.72);
}

.community-grid article > span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 50px;
  border-radius: 13px;
  background: var(--forest);
  color: var(--ivory);
  font-size: 12px;
  font-weight: 850;
  place-items: center;
}

.community-grid p {
  margin: 0;
  color: var(--espresso-soft);
  font-size: 14px;
}

.news-section {
  padding-block: 84px;
}

.news-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.5fr);
  gap: 45px;
  align-items: end;
  margin-bottom: 42px;
}

.news-heading h2 {
  max-width: 800px;
  margin-bottom: 0;
}

.news-heading > p {
  margin: 0 0 8px;
  color: var(--espresso-soft);
}

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

.news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: 0 18px 45px rgba(46, 32, 23, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.news-card:hover,
.news-card:focus-within {
  border-color: rgba(61, 105, 79, 0.45);
  box-shadow: 0 24px 58px rgba(46, 32, 23, 0.12);
  transform: translateY(-3px);
}

.news-card-art {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 8.5;
  overflow: hidden;
  background: var(--sage-soft);
}

.news-card-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px 26px 28px;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-card h3 {
  min-height: 2.3em;
  font-size: 25px;
}

.news-card-copy > p:last-child {
  margin: 0;
  color: var(--espresso-soft);
  font-size: 14px;
}

.news-card-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 18px;
  margin-top: 24px;
  color: var(--espresso-soft);
  font-size: 12px;
  font-weight: 700;
}

.news-card-action {
  display: flex;
  width: 100%;
  margin-top: 22px;
  padding: 13px 0 3px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--forest);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  text-align: left;
}

.news-card-action:hover {
  color: var(--espresso);
}

.news-card-action:focus-visible {
  border-radius: 4px;
  outline: 3px solid rgba(214, 139, 56, 0.38);
  outline-offset: 4px;
}

.news-card-action-icon {
  display: grid;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--ivory);
  font-size: 14px;
  place-items: center;
  transition: transform 180ms ease;
}

.news-card-action:hover .news-card-action-icon {
  transform: translate(2px, -2px);
}

.news-language-badge {
  padding: 3px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.news-status {
  min-height: 22px;
  margin: 18px 0 0;
  color: var(--espresso-soft);
  font-size: 12px;
}

html.news-dialog-open {
  overflow: hidden;
}

.news-dialog {
  width: min(920px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 30px;
  background: transparent;
  color: var(--espresso);
}

.news-dialog::backdrop {
  background: rgba(20, 30, 24, 0.72);
  backdrop-filter: blur(8px);
}

.news-dialog[open] {
  animation: news-dialog-enter 220ms ease-out both;
}

.news-dialog-shell {
  position: relative;
  max-height: calc(100dvh - 32px);
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  background: var(--ivory);
  box-shadow: 0 34px 100px rgba(10, 20, 15, 0.32);
  overscroll-behavior: contain;
}

.news-dialog-close {
  position: sticky;
  z-index: 3;
  top: 16px;
  float: right;
  display: grid;
  width: 46px;
  height: 46px;
  margin: 16px 16px -62px 0;
  border: 1px solid rgba(46, 32, 23, 0.14);
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.94);
  box-shadow: 0 8px 24px rgba(46, 32, 23, 0.12);
  color: var(--espresso);
  cursor: pointer;
  font: inherit;
  font-size: 30px;
  line-height: 1;
  place-items: center;
}

.news-dialog-close:hover {
  background: var(--surface);
  transform: rotate(4deg);
}

.news-dialog-close:focus-visible {
  outline: 3px solid var(--honey);
  outline-offset: 3px;
}

.news-dialog-art {
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: var(--sage-soft);
}

.news-dialog-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-dialog-copy {
  padding: clamp(32px, 6vw, 62px) clamp(24px, 7vw, 76px) clamp(44px, 7vw, 72px);
}

.news-dialog-kicker {
  margin: 0 0 12px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-dialog-meta {
  display: flex;
  min-height: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  color: var(--espresso-soft);
  font-size: 12px;
  font-weight: 700;
}

.news-dialog h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(36px, 5.5vw, 62px);
  line-height: 0.98;
  text-wrap: balance;
}

.news-dialog-subtitle {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--espresso-soft);
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.5;
}

.news-dialog-status {
  min-height: 24px;
  margin: 34px 0 0;
  color: var(--espresso-soft);
  font-size: 15px;
}

.news-dialog-retry {
  width: auto;
  margin-top: 20px;
}

.news-article {
  max-width: 72ch;
  margin-top: 38px;
  color: var(--espresso-soft);
  font-size: 17px;
  line-height: 1.72;
}

.news-article > * {
  margin-block: 0 22px;
}

.news-article-heading {
  padding-top: 14px;
  color: var(--espresso);
  font-size: clamp(21px, 3vw, 29px);
  line-height: 1.18;
}

.news-article-paragraph,
.news-article-quote p {
  white-space: pre-line;
}

.news-article-list {
  display: grid;
  padding-left: 24px;
  gap: 10px;
}

.news-article-list li::marker {
  color: var(--forest);
}

.news-article-quote {
  padding: 4px 0 4px 20px;
  border-left: 4px solid var(--honey);
  color: var(--espresso);
  font-size: 18px;
}

.news-article-quote p {
  margin: 0;
}

.news-article strong {
  color: var(--espresso);
}

.news-article code {
  padding: 2px 5px;
  border-radius: 5px;
  background: var(--sage-soft);
  color: var(--forest-deep);
  font-size: 0.9em;
}

.news-article a {
  color: var(--forest);
  font-weight: 750;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

@keyframes news-dialog-enter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.trust-section {
  position: relative;
  margin-bottom: 0;
  padding: 88px clamp(44px, 6vw, 92px);
  overflow: hidden;
  border-radius: var(--radius-large) var(--radius-large) 0 0;
  background: var(--forest-deep);
  color: var(--ivory);
}

.trust-section::after {
  position: absolute;
  right: -90px;
  bottom: -150px;
  width: 300px;
  height: 430px;
  border: 2px solid rgba(239, 182, 61, 0.45);
  border-radius: 50%;
  content: "";
  transform: rotate(42deg);
}

.trust-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 46px;
  align-items: end;
  margin-bottom: 46px;
}

.trust-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -28px;
  color: var(--honey);
}

.trust-intro h2 {
  max-width: 860px;
  margin-bottom: 0;
}

.trust-intro > p:last-child {
  margin: 0 0 8px;
  color: rgba(255, 250, 242, 0.72);
}

.trust-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-block: 1px solid var(--line-light);
}

.trust-grid article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 17px;
  min-height: 155px;
  padding: 30px;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.trust-grid article:nth-child(-n + 2) {
  border-top: 0;
}

.trust-grid article:nth-child(odd) {
  border-left: 0;
}

.trust-grid article > span {
  display: grid;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--ivory);
  color: var(--forest-deep);
  font-size: 12px;
  font-weight: 850;
  place-items: center;
}

.trust-grid h3 {
  margin-top: 3px;
  color: var(--ivory);
  font-size: 20px;
}

.trust-grid p {
  margin: 0;
  color: rgba(255, 250, 242, 0.7);
  font-size: 14px;
}

.trust-link {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 28px;
  color: var(--honey);
  font-size: 14px;
  font-weight: 800;
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr) minmax(180px, 0.35fr);
  gap: 32px;
  align-items: center;
  min-height: 590px;
  margin-bottom: 56px;
  padding: 66px clamp(44px, 6vw, 92px);
  overflow: hidden;
  border: 28px solid var(--forest-deep);
  border-top-width: 24px;
  border-radius: 0 0 var(--radius-large) var(--radius-large);
  background: var(--surface);
}

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

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

.final-copy h2 {
  max-width: 660px;
}

.final-copy > p:not(.eyebrow, .status-line) {
  max-width: 580px;
  margin-bottom: 26px;
  color: rgba(33, 23, 17, 0.74);
  font-size: 18px;
}

.final-phone {
  position: relative;
  align-self: end;
  min-height: 520px;
}

.phone-final {
  bottom: -155px;
  left: 50%;
  width: min(270px, 100%);
  transform: translateX(-50%);
}

.final-brand {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 14px;
  font-size: 23px;
  font-weight: 850;
  letter-spacing: -0.035em;
  text-align: center;
}

.final-brand img {
  width: 92px;
  height: 92px;
  border-radius: 26px;
  box-shadow: 0 18px 38px rgba(77, 44, 14, 0.16);
}

.site-footer {
  padding-bottom: 36px;
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-block: 1px solid var(--line);
}

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

.brand-small img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
}

.footer-main nav a,
.footer-email,
.footer-meta {
  color: var(--espresso-soft);
  font-size: 13px;
}

.footer-email {
  color: var(--forest-deep);
  font-weight: 780;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px 28px;
  padding-top: 20px;
}

.footer-meta a {
  color: var(--forest-deep);
  font-weight: 700;
}

.error-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
}

.error-page main {
  width: min(760px, calc(100% - 42px));
  padding: 70px 35px;
  text-align: center;
}

.error-page img {
  margin: 0 auto 24px;
  border-radius: 25px;
}

.error-page h1 {
  max-width: none;
  font-size: clamp(48px, 8vw, 80px);
}

.error-page p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 auto 26px;
  color: var(--espresso-soft);
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      animation: gentle-rise both linear;
      animation-range: entry 4% cover 24%;
      animation-timeline: view();
    }
  }
}

@keyframes gentle-rise {
  from {
    opacity: 0.3;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  :root {
    --page: min(1040px, calc(100% - 48px));
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 82px;
  }

  .hero-copy {
    max-width: 820px;
    padding-bottom: 0;
  }

  .device-stage {
    width: 100%;
    max-width: 820px;
    min-height: 670px;
    margin-inline: auto;
  }

  .reason-strip {
    position: relative;
    bottom: auto;
    grid-column: 1;
    margin-top: 10px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .story-brew .story-copy,
  .story-brew .story-media {
    grid-row: auto;
    grid-column: auto;
  }

  .story-media {
    min-height: 680px;
  }

  .beanie-section {
    grid-template-columns: minmax(350px, 0.72fr) minmax(0, 1fr);
  }

  .community-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .community-grid article {
    min-height: 220px;
  }

  .final-cta {
    grid-template-columns: 1fr minmax(250px, 0.55fr);
  }

  .final-brand {
    display: none;
  }
}

@media (max-width: 860px) {
  :root {
    --page: min(760px, calc(100% - 34px));
    --radius-large: 32px;
  }

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

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--surface);
    cursor: pointer;
    place-content: center;
  }

  .menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    margin: 3px;
    border-radius: 2px;
    background: var(--espresso);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 101;
    top: 11px;
    right: 11px;
    left: 11px;
    display: grid;
    gap: 2px;
    width: auto;
    margin: 0;
    padding: 76px 18px 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links {
    display: grid;
    gap: 2px;
  }

  .nav-actions {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    width: 100%;
    margin: 12px 0 0;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 11px 10px;
    border-radius: 10px;
    font-size: 16px;
  }

  .nav-links a::after {
    display: none;
  }

  .primary-nav .nav-launch {
    display: grid;
    margin: 0;
    text-align: center;
    place-items: center;
  }

  .language-switch {
    grid-template-columns: repeat(2, minmax(44px, 1fr));
  }

  .section-heading,
  .community-intro,
  .news-heading,
  .trust-intro {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }

  .section-heading .eyebrow,
  .community-intro .eyebrow,
  .trust-intro .eyebrow {
    margin-bottom: 0;
  }

  .beanie-section {
    grid-template-columns: 1fr;
  }

  .beanie-visual {
    max-width: 620px;
    margin-inline: auto;
  }

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

  .news-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.75fr) 1fr;
  }

  .news-card-art {
    height: 100%;
    aspect-ratio: auto;
  }

  .news-card h3 {
    min-height: 0;
  }

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

  .trust-grid article,
  .trust-grid article:nth-child(-n + 2),
  .trust-grid article:nth-child(odd) {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .trust-grid article:first-child {
    border-top: 0;
  }
}

@media (max-width: 640px) {
  :root {
    --page: calc(100% - 28px);
    --radius-large: 26px;
    --radius-card: 21px;
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(48px, 14vw, 66px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(39px, 11vw, 50px);
    line-height: 1.03;
  }

  .site-header {
    width: calc(100% - 22px);
    margin: 8px auto 0;
    padding: 12px 8px 12px 12px;
    border-radius: 18px;
  }

  .brand {
    gap: 9px;
    font-size: 19px;
  }

  .brand img {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }

  .primary-nav {
    top: 7px;
    right: 7px;
    left: 7px;
  }

  .hero {
    padding: 64px 0 44px;
  }

  .hero-intro {
    font-size: 18px;
  }

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

  .button {
    width: 100%;
  }

  .device-stage {
    min-height: 565px;
    margin-top: 20px;
  }

  .device-backdrop-green {
    top: 0;
    right: 2%;
    width: 82%;
    height: 64%;
  }

  .device-backdrop-apricot {
    right: 0;
    bottom: 28px;
    width: 86%;
    height: 36%;
  }

  .phone-left,
  .phone-right {
    display: none;
  }

  .phone-center {
    top: 28px;
    width: min(258px, 69vw);
  }

  .phone {
    padding: 6px;
    border-radius: 41px;
  }

  .phone img,
  .phone::after {
    border-radius: 35px;
  }

  .phone::after {
    inset: 6px;
  }

  .reason-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 10px;
  }

  .reason-strip article {
    padding: 10px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .reason-strip article:nth-child(-n + 2) {
    border-top: 0;
  }

  .reason-strip article:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .reason-icon {
    width: 35px;
    height: 35px;
  }

  .reason-strip small {
    white-space: normal;
  }

  .feature-overview,
  .news-section {
    padding-block: 86px;
  }

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

  .feature-card {
    grid-template-columns: minmax(0, 1fr) minmax(130px, 0.62fr);
    min-height: 390px;
    padding: 23px;
  }

  .feature-card-top {
    margin-bottom: 58px;
  }

  .phone-showcase {
    right: -2px;
    bottom: -210px;
    width: min(205px, 140%);
  }

  .feature-mascot {
    right: -48px;
    bottom: -22px;
    width: 245px;
  }

  .story-section {
    gap: 38px;
    padding: 58px 22px;
  }

  .detail-list li {
    grid-template-columns: 38px 1fr;
    gap: 10px;
  }

  .detail-number {
    width: 33px;
    height: 33px;
  }

  .story-media {
    min-height: 555px;
  }

  .media-card {
    height: 74%;
  }

  .phone-feature {
    width: min(280px, 78vw);
  }

  .beanie-section {
    gap: 38px;
    margin-top: 86px;
    padding: 24px 22px 58px;
  }

  .beanie-visual {
    border-radius: 22px;
  }

  .beanie-visual img {
    padding: 0;
  }

  .community-section,
  .trust-section {
    padding: 58px 22px;
  }

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

  .community-grid article {
    min-height: 210px;
  }

  .community-grid article > span {
    margin-bottom: 36px;
  }

  .news-card {
    display: block;
  }

  .news-card-art {
    aspect-ratio: 16 / 8.5;
  }

  .news-dialog {
    width: calc(100% - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 23px;
  }

  .news-dialog-shell {
    max-height: calc(100dvh - 16px);
    border-radius: 23px;
  }

  .news-dialog-close {
    top: 10px;
    width: 44px;
    height: 44px;
    margin: 10px 10px -54px 0;
  }

  .news-dialog-art {
    aspect-ratio: 16 / 9;
  }

  .news-dialog-copy {
    padding: 28px 20px 38px;
  }

  .news-dialog h2 {
    font-size: clamp(32px, 11vw, 45px);
    line-height: 1.02;
  }

  .news-dialog-subtitle {
    margin-top: 16px;
    font-size: 17px;
  }

  .news-article {
    margin-top: 30px;
    font-size: 16px;
  }

  .news-dialog-retry {
    width: 100%;
  }

  .trust-grid article {
    grid-template-columns: 42px 1fr;
    min-height: 0;
    padding: 24px 0;
  }

  .trust-grid article > span {
    width: 38px;
    height: 38px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    min-height: 760px;
    padding: 50px 22px 0;
    border-width: 16px;
    border-top-width: 14px;
  }

  .final-copy {
    align-self: start;
  }

  .final-phone {
    min-height: 400px;
  }

  .phone-final {
    bottom: -165px;
    width: min(250px, 72vw);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-main nav {
    display: grid;
    justify-content: start;
    gap: 10px;
  }

  .footer-email {
    justify-self: start;
  }

  .footer-meta {
    display: grid;
  }
}

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

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