@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;600;700;800&family=Manrope:wght@500;600;700&display=swap");

:root {
  --paper: #f3eee4;
  --paper-light: #faf7f0;
  --paper-dark: #e8dfd0;
  --ink: #171411;
  --brown: #603a29;
  --brown-dark: #3b241a;
  --brown-soft: #8f6242;
  --red: #bc4030;
  --red-dark: #9f3327;
  --gold: #c8a66b;
  --muted: #8e8980;
  --line: rgba(96, 58, 41, 0.15);
  --shadow: 0 32px 80px rgba(59, 36, 26, 0.14);
  --radius-lg: 42px;
  --radius-md: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans SC", -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 80% 4%, rgba(200, 166, 107, 0.17), transparent 24rem),
    radial-gradient(circle at 5% 45%, rgba(188, 64, 48, 0.06), transparent 28rem),
    var(--paper);
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.032;
  z-index: 20;
  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='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

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

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  width: min(1240px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 12px 14px 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 14px;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(250, 247, 240, 0.77);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(59, 36, 26, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--brown);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}

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

.site-header nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-header nav a {
  padding: 9px 16px;
  text-decoration: none;
  color: #6f675f;
  font-size: 14px;
  border-radius: 999px;
  transition: 180ms ease;
}

.site-header nav a:hover {
  color: var(--brown);
  background: rgba(96, 58, 41, 0.07);
}

.site-header nav .nav-download {
  color: #fff;
  background: var(--brown);
}

.site-header nav .nav-download:hover {
  color: #fff;
  background: var(--brown-dark);
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 70px;
  padding-top: 70px;
  padding-bottom: 80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--brown-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(188, 64, 48, 0.1);
}

.hero h1 {
  margin: 0;
  color: var(--brown-dark);
  font-size: clamp(54px, 6.2vw, 92px);
  line-height: 1.07;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.hero h1 em {
  color: var(--red);
  font-style: normal;
}

.hero-description {
  max-width: 560px;
  margin: 28px 0 0;
  color: #746b62;
  font-size: 18px;
  line-height: 1.9;
}

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

.primary-button {
  min-height: 56px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 16px;
  background: var(--red);
  box-shadow: 0 16px 34px rgba(188, 64, 48, 0.24);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.primary-button:hover {
  transform: translateY(-3px);
  background: var(--red-dark);
  box-shadow: 0 20px 42px rgba(188, 64, 48, 0.3);
}

.primary-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brown);
  text-decoration: none;
  font-weight: 600;
}

.text-button span {
  transition: transform 180ms ease;
}

.text-button:hover span {
  transform: translate(4px, 4px);
}

.download-counter {
  width: fit-content;
  margin-top: 28px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(250, 247, 240, 0.58);
}

.download-counter strong,
.download-counter small {
  display: block;
}

.download-counter strong {
  color: var(--brown);
  font-size: 14px;
}

.download-counter small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.live-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #5d9b67;
  box-shadow: 0 0 0 6px rgba(93, 155, 103, 0.12);
  animation: pulse 2.1s ease-in-out infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 10px rgba(93, 155, 103, 0); }
}

.hero-visual {
  min-height: 650px;
  position: relative;
  display: grid;
  place-items: center;
}

.halo {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200, 166, 107, 0.65);
}

.halo-one {
  width: 570px;
  height: 570px;
}

.halo-two {
  width: 430px;
  height: 430px;
  border-style: dashed;
  opacity: 0.45;
  animation: orbit 40s linear infinite;
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

.phone {
  position: relative;
  padding: 10px;
  border-radius: 42px;
  background: #181512;
  box-shadow: var(--shadow);
}

.phone::before {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: inherit;
  pointer-events: none;
}

.phone-main {
  width: 316px;
  transform: rotate(3deg);
  z-index: 2;
}

.phone-speaker {
  width: 78px;
  height: 22px;
  position: absolute;
  top: 17px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #181512;
}

.phone-screen {
  overflow: hidden;
  aspect-ratio: 1264 / 2247;
  border-radius: 33px;
  background: var(--paper);
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  z-index: 4;
  min-width: 142px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(250, 247, 240, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px rgba(59, 36, 26, 0.13);
}

.floating-card span,
.floating-card strong {
  display: block;
}

.floating-card span {
  color: var(--muted);
  font: 600 10px/1 "Manrope", sans-serif;
  letter-spacing: 0.18em;
}

.floating-card strong {
  margin-top: 7px;
  color: var(--brown);
  font-size: 17px;
}

.floating-card-top {
  top: 105px;
  right: 2px;
  transform: rotate(5deg);
}

.floating-card-bottom {
  left: 2px;
  bottom: 110px;
  transform: rotate(-5deg);
}

.features {
  padding-top: 110px;
  padding-bottom: 130px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  align-items: start;
  gap: 40px;
  margin-bottom: 58px;
}

.section-heading > span,
.download-copy > span {
  color: var(--brown-soft);
  font: 600 12px/1.4 "Manrope", sans-serif;
  letter-spacing: 0.14em;
}

.section-heading h2,
.download-copy h2 {
  margin: 0;
  color: var(--brown-dark);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

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

.feature-card {
  min-height: 290px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(96, 58, 41, 0.12);
  border-radius: var(--radius-md);
  background: rgba(250, 247, 240, 0.52);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 54px rgba(59, 36, 26, 0.09);
}

.feature-card.featured {
  color: #fff;
  background: var(--brown);
  border-color: transparent;
  transform: translateY(22px);
}

.feature-card.featured:hover {
  transform: translateY(16px);
}

.feature-number {
  color: var(--gold);
  font: 600 11px/1 "Manrope", sans-serif;
  letter-spacing: 0.15em;
}

.feature-card h3 {
  margin: auto 0 16px;
  color: var(--brown-dark);
  font-size: 27px;
}

.feature-card.featured h3 {
  color: #fff;
}

.feature-card p {
  margin: 0;
  color: #756c63;
  line-height: 1.85;
}

.feature-card.featured p {
  color: rgba(255, 255, 255, 0.7);
}

.preview-section {
  padding: 120px 0 140px;
  overflow: hidden;
  background: var(--brown-dark);
  color: #fff;
}

.preview-heading {
  grid-template-columns: 0.42fr 1fr;
}

.preview-heading > span {
  color: var(--gold);
}

.preview-heading h2 {
  color: #fff;
}

.preview-heading p {
  grid-column: 2;
  max-width: 560px;
  margin: -28px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 16px;
  line-height: 1.8;
}

.phone-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 22px;
  margin-top: 84px;
}

.gallery-item {
  margin: 0;
  text-align: center;
}

.gallery-item:nth-child(odd) {
  transform: translateY(30px);
}

.phone-gallery-frame {
  width: 100%;
  padding: 8px;
  border-radius: 33px;
  background: #12100e;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.phone-gallery-frame .phone-screen {
  border-radius: 26px;
}

.phone-gallery-frame .phone-speaker {
  top: 14px;
  width: 64px;
  height: 18px;
}

.gallery-item figcaption {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.ritual {
  padding-top: 140px;
  padding-bottom: 140px;
  text-align: center;
}

.ritual-mark {
  color: var(--gold);
  font: 800 94px/0.7 Georgia, serif;
}

.ritual blockquote {
  margin: 24px auto 0;
  color: var(--brown-dark);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.035em;
}

.ritual p {
  max-width: 720px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.download-section {
  padding: 0 20px 70px;
}

.download-card {
  min-height: 470px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 390px;
  align-items: center;
  gap: 70px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 16%, rgba(200, 166, 107, 0.22), transparent 17rem),
    var(--paper-light);
  box-shadow: var(--shadow);
}

.download-copy h2 {
  margin-top: 24px;
}

.download-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: #766e66;
  line-height: 1.85;
}

.download-action {
  padding: 28px;
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.48);
}

.download-action img {
  width: 68px;
  height: 68px;
  border-radius: 18px;
}

.download-action strong,
.download-action small {
  display: block;
}

.download-action strong {
  color: var(--brown);
  font: 700 20px/1.2 "Manrope", sans-serif;
  letter-spacing: 0.04em;
}

.download-action small {
  margin-top: 5px;
  color: var(--muted);
  font: 500 10px/1.4 "Manrope", sans-serif;
  letter-spacing: 0.12em;
}

.download-action .primary-button {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 10px;
}

.download-action > p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

.site-footer {
  padding-top: 24px;
  padding-bottom: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
}

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

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

.footer-brand strong,
.footer-brand small {
  display: block;
}

.footer-brand strong {
  color: var(--brown);
  font: 700 13px/1.2 "Manrope", sans-serif;
  letter-spacing: 0.08em;
}

.footer-brand small {
  margin-top: 4px;
  font: 500 8px/1 "Manrope", sans-serif;
  letter-spacing: 0.14em;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 90px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-description {
    margin-inline: auto;
  }

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

  .download-counter {
    margin-inline: auto;
  }

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

  .section-heading,
  .preview-heading {
    grid-template-columns: 1fr;
  }

  .preview-heading p {
    grid-column: 1;
    margin: -22px 0 0;
  }

  .phone-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 650px;
    margin-inline: auto;
  }

  .gallery-item:nth-child(odd) {
    transform: none;
  }

  .download-card {
    grid-template-columns: 1fr;
  }

  .download-action {
    max-width: 430px;
  }
}

@media (max-width: 720px) {
  .section-shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    width: calc(100% - 20px);
    top: 8px;
  }

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

  .site-header nav .nav-download {
    padding-inline: 15px;
  }

  .hero {
    padding-top: 66px;
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 70px);
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-button {
    width: 100%;
  }

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

  .phone-main {
    width: 270px;
  }

  .halo-one {
    width: 430px;
    height: 430px;
  }

  .halo-two {
    width: 340px;
    height: 340px;
  }

  .floating-card {
    min-width: 122px;
    padding: 13px 14px;
  }

  .floating-card-top {
    right: -4px;
  }

  .floating-card-bottom {
    left: -4px;
  }

  .features {
    padding-top: 80px;
    padding-bottom: 90px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .download-copy h2 {
    font-size: 42px;
  }

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

  .feature-card,
  .feature-card.featured {
    min-height: 240px;
    transform: none;
  }

  .feature-card.featured:hover {
    transform: translateY(-6px);
  }

  .preview-section {
    padding: 90px 0 110px;
  }

  .phone-gallery {
    gap: 14px;
    margin-top: 55px;
  }

  .gallery-item figcaption {
    margin-top: 14px;
    font-size: 12px;
  }

  .phone-gallery-frame {
    padding: 6px;
    border-radius: 26px;
  }

  .phone-gallery-frame .phone-screen {
    border-radius: 21px;
  }

  .phone-gallery-frame .phone-speaker {
    top: 11px;
    width: 52px;
    height: 15px;
  }

  .ritual {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .ritual blockquote {
    font-size: 31px;
  }

  .download-section {
    padding-inline: 10px;
  }

  .download-card {
    width: 100%;
    padding: 38px 24px;
    border-radius: 32px;
  }

  .download-action {
    width: 100%;
    padding: 20px;
  }

  .site-footer {
    align-items: flex-end;
  }
}

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

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


/* ---------- v1.0.2 release additions ---------- */
.version-chip {
  margin-left: 8px;
  padding: 7px 11px;
  color: var(--red);
  text-decoration: none;
  letter-spacing: 0.04em;
  border: 1px solid rgba(188, 64, 48, 0.2);
  border-radius: 999px;
  background: rgba(188, 64, 48, 0.07);
  transition: 180ms ease;
}
.version-chip:hover { background: rgba(188, 64, 48, 0.13); transform: translateY(-1px); }
.site-header nav .nav-active { color: var(--brown); background: rgba(96, 58, 41, 0.08); }

.release-strip {
  min-height: 600px;
  margin-top: 48px;
  margin-bottom: 40px;
  padding: 68px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr);
  align-items: center;
  gap: 56px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 12%, rgba(200,166,107,.22), transparent 20rem),
    var(--brown-dark);
  box-shadow: var(--shadow);
}
.release-strip::after {
  content: "1.0.2";
  position: absolute;
  right: -30px;
  bottom: -65px;
  color: rgba(255,255,255,.035);
  font: 800 210px/1 "Manrope", sans-serif;
  letter-spacing: -.09em;
}
.release-strip-copy { position: relative; z-index: 2; }
.release-kicker { color: var(--gold); font: 600 11px/1.4 "Manrope",sans-serif; letter-spacing: .18em; }
.release-strip h2 { margin: 24px 0 0; color: #fff; font-size: clamp(42px,5vw,66px); line-height: 1.15; letter-spacing: -.045em; }
.release-strip p { max-width: 600px; margin: 24px 0 0; color: rgba(255,255,255,.63); font-size: 16px; line-height: 1.9; }
.release-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.release-points span { padding: 9px 13px; color: rgba(255,255,255,.82); font-size: 12px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; background: rgba(255,255,255,.06); }
.release-strip .release-link { margin-top: 28px; color: var(--gold); }
.release-strip-visual { display: block; position: relative; z-index: 1; transform: rotate(3deg); transition: 220ms ease; }
.release-strip-visual:hover { transform: rotate(0) translateY(-7px); }
.release-strip-visual img { width: 100%; border-radius: 26px; box-shadow: 0 34px 70px rgba(0,0,0,.28); }

/* ---------- Dedicated update page ---------- */
.update-page::before {
  background:
    radial-gradient(circle at 75% 5%, rgba(200,166,107,.18), transparent 27rem),
    radial-gradient(circle at 3% 34%, rgba(188,64,48,.06), transparent 30rem),
    var(--paper);
}
.update-hero {
  min-height: 850px;
  padding-top: 90px;
  padding-bottom: 110px;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 70px;
}
.release-badge { display: inline-flex; align-items: center; gap: 10px; color: var(--brown-soft); font: 600 12px/1.4 "Manrope",sans-serif; letter-spacing: .14em; }
.release-badge span { width: 9px; height: 9px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 7px rgba(188,64,48,.1); }
.update-hero h1 { margin: 28px 0 0; color: var(--brown-dark); font-size: clamp(55px,6.3vw,92px); line-height: 1.08; letter-spacing: -.06em; }
.update-hero h1 em { color: var(--red); font-style: normal; }
.update-hero-copy > p { max-width: 610px; margin: 28px 0 0; color: #736a61; font-size: 18px; line-height: 1.95; }
.update-hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 38px; }
.release-meta-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 36px; color: var(--muted); font-size: 12px; }
.release-meta-row span { padding-right: 22px; border-right: 1px solid var(--line); }
.release-meta-row span:last-child { border-right: 0; }
.release-meta-row b { margin-right: 5px; color: var(--brown); font: 700 22px/1 "Manrope",sans-serif; }
.update-hero-collage { min-height: 690px; position: relative; }
.update-hero-collage figure { margin: 0; position: absolute; }
.update-hero-collage img { width: 100%; border-radius: 26px; box-shadow: 0 35px 80px rgba(59,36,26,.18); }
.collage-main { width: 68%; right: 6%; top: 0; z-index: 2; }
.collage-main img { transform: rotate(2deg); }
.collage-card { width: 37%; z-index: 3; }
.collage-card-one { left: 0; bottom: 32px; }
.collage-card-one img { transform: rotate(-7deg); }
.collage-card-two { right: -2%; bottom: -10px; }
.collage-card-two img { transform: rotate(7deg); }

.update-features { padding-top: 130px; padding-bottom: 150px; }
.update-heading { grid-template-columns: .32fr .88fr .72fr; }
.update-heading p { margin: 4px 0 0; color: var(--muted); line-height: 1.9; }
.update-feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.update-feature-card { min-height: 355px; padding: 28px; display: flex; flex-direction: column; position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: rgba(250,247,240,.62); transition: 200ms ease; }
.update-feature-card:hover { transform: translateY(-7px); box-shadow: 0 25px 60px rgba(59,36,26,.1); }
.update-feature-primary { color: #fff; background: var(--red); border-color: transparent; }
.update-feature-index { color: var(--gold); font: 600 10px/1 "Manrope",sans-serif; letter-spacing: .16em; }
.feature-icon { width: 52px; height: 52px; margin-top: 30px; display: grid; place-items: center; color: var(--brown); font-size: 19px; font-weight: 800; border-radius: 16px; background: rgba(200,166,107,.14); }
.update-feature-primary .feature-icon { color: #fff; background: rgba(255,255,255,.14); }
.update-feature-card h3 { margin: auto 0 14px; color: var(--brown-dark); font-size: 27px; }
.update-feature-primary h3 { color: #fff; }
.update-feature-card p { margin: 0; color: #756d64; line-height: 1.85; }
.update-feature-primary p { color: rgba(255,255,255,.75); }
.update-feature-card small { margin-top: 20px; color: rgba(255,255,255,.62); font-size: 11px; letter-spacing: .1em; }

.journey-section { padding: 135px 0; overflow: hidden; background: var(--brown-dark); }
.journey-heading { grid-template-columns: .32fr 1fr .65fr; }
.journey-heading > span { color: var(--gold); }
.journey-heading h2 { color: #fff; }
.journey-heading p { margin: 5px 0 0; color: rgba(255,255,255,.54); line-height: 1.9; }
.journey-grid { display: grid; gap: 28px; margin-top: 80px; }
.journey-item { min-height: 560px; padding: 54px; display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: 60px; overflow: hidden; border-radius: 36px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.08); }
.journey-item.journey-reverse { grid-template-columns: 1.28fr .72fr; }
.journey-reverse .journey-copy { order: 2; }
.journey-reverse img { order: 1; }
.journey-copy span { color: var(--gold); font: 600 11px/1 "Manrope",sans-serif; letter-spacing: .16em; }
.journey-copy h3 { margin: 20px 0 0; color: #fff; font-size: clamp(36px,4vw,56px); }
.journey-copy p { margin: 20px 0 0; color: rgba(255,255,255,.58); font-size: 16px; line-height: 1.9; }
.journey-item img { width: 100%; max-height: 650px; object-fit: contain; border-radius: 24px; filter: drop-shadow(0 28px 40px rgba(0,0,0,.27)); }

.insight-showcase { padding-top: 150px; padding-bottom: 150px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }
.insight-image-wrap { padding: 34px; border-radius: 40px; background: var(--paper-dark); }
.insight-image-wrap img { width: 100%; border-radius: 28px; box-shadow: 0 34px 75px rgba(59,36,26,.15); }
.insight-copy > span, .release-notes-header > span { color: var(--brown-soft); font: 600 11px/1.4 "Manrope",sans-serif; letter-spacing: .16em; }
.insight-copy h2 { margin: 24px 0 0; color: var(--brown-dark); font-size: clamp(42px,5vw,68px); line-height: 1.18; letter-spacing: -.045em; }
.insight-copy > p { margin: 25px 0 0; color: #756d64; font-size: 17px; line-height: 1.95; }
.insight-copy ul { margin: 30px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.insight-copy li { padding: 13px 16px 13px 44px; position: relative; color: var(--brown); border-radius: 14px; background: rgba(250,247,240,.65); border: 1px solid var(--line); }
.insight-copy li::before { content: "✓"; position: absolute; left: 17px; color: var(--red); font-weight: 800; }

.release-notes { padding-bottom: 150px; }
.release-notes-header { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.release-notes-header h2 { margin: 0; color: var(--brown-dark); font-size: clamp(36px,4.4vw,60px); }
.release-notes-list { display: grid; }
.release-notes-list > div { padding: 24px 6px; display: grid; grid-template-columns: 90px 1fr; align-items: center; border-bottom: 1px solid var(--line); }
.release-notes-list time { width: fit-content; padding: 6px 9px; color: var(--red); font: 700 10px/1 "Manrope",sans-serif; letter-spacing: .12em; border-radius: 999px; background: rgba(188,64,48,.08); }
.release-notes-list p { margin: 0; color: #665e56; font-size: 16px; }

.update-download-section { padding: 0 20px 70px; }
.update-download-card { min-height: 470px; padding: 65px; display: grid; grid-template-columns: 1fr 400px; align-items: center; gap: 70px; border-radius: var(--radius-lg); background: var(--brown-dark); box-shadow: var(--shadow); }
.update-download-card > div:first-child > span { color: var(--gold); font: 600 11px/1.4 "Manrope",sans-serif; letter-spacing: .17em; }
.update-download-card h2 { margin: 24px 0 0; color: #fff; font-size: clamp(43px,5vw,68px); line-height: 1.15; letter-spacing: -.045em; }
.update-download-card > div:first-child > p { margin: 24px 0 0; color: rgba(255,255,255,.56); font-size: 16px; line-height: 1.8; }
.update-download-action { padding: 28px; display: grid; grid-template-columns: 68px 1fr; align-items: center; gap: 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 28px; background: rgba(255,255,255,.07); }
.update-download-action > img { width: 68px; height: 68px; border-radius: 18px; }
.update-download-action strong, .update-download-action small { display: block; }
.update-download-action > div strong { color: #fff; font: 700 20px/1.2 "Manrope",sans-serif; letter-spacing: .04em; }
.update-download-action > div small { margin-top: 5px; color: rgba(255,255,255,.46); font: 500 10px/1.4 "Manrope",sans-serif; letter-spacing: .14em; }
.update-download-action .primary-button { grid-column: 1/-1; width: 100%; margin-top: 10px; }
.update-download-action > p { grid-column: 1/-1; margin: 0; text-align: center; }
.update-download-action > p strong { color: rgba(255,255,255,.75); font-size: 12px; }
.update-download-action > p small { margin-top: 3px; color: rgba(255,255,255,.38); font-size: 10px; }

@media (max-width: 1080px) {
  .release-strip { grid-template-columns: 1fr .65fr; padding: 52px; }
  .update-hero { grid-template-columns: 1fr; text-align: center; }
  .update-hero-copy > p { margin-inline: auto; }
  .update-hero-actions, .release-meta-row { justify-content: center; }
  .update-hero-collage { width: min(760px,100%); margin-inline: auto; }
  .update-heading, .journey-heading { grid-template-columns: 1fr 1fr; }
  .update-heading p, .journey-heading p { grid-column: 2; }
  .update-feature-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 820px) {
  .release-strip { grid-template-columns: 1fr; padding: 42px 30px; text-align: center; }
  .release-strip p { margin-inline: auto; }
  .release-points { justify-content: center; }
  .release-strip-visual { width: min(420px,100%); margin-inline: auto; }
  .update-hero { padding-top: 70px; }
  .update-hero-collage { min-height: 590px; }
  .collage-main { width: 74%; right: 13%; }
  .collage-card { width: 34%; }
  .update-heading, .journey-heading { grid-template-columns: 1fr; }
  .update-heading p, .journey-heading p { grid-column: 1; }
  .journey-item, .journey-item.journey-reverse { grid-template-columns: 1fr; padding: 38px 28px; text-align: center; }
  .journey-reverse .journey-copy, .journey-reverse img { order: initial; }
  .journey-item img { max-height: 580px; }
  .insight-showcase { grid-template-columns: 1fr; gap: 55px; }
  .insight-image-wrap { width: min(560px,100%); margin-inline: auto; }
  .update-download-card { grid-template-columns: 1fr; padding: 48px 30px; text-align: center; }
  .update-download-action { max-width: 430px; margin-inline: auto; text-align: left; }
}

@media (max-width: 620px) {
  .version-chip { margin-left: 0; }
  .eyebrow { flex-wrap: wrap; justify-content: center; }
  .release-strip { width: calc(100% - 20px); border-radius: 30px; }
  .release-strip::after { font-size: 120px; bottom: -30px; }
  .release-strip h2 { font-size: 40px; }
  .update-hero { min-height: auto; padding-top: 62px; padding-bottom: 70px; }
  .update-hero h1 { font-size: clamp(46px,14vw,64px); }
  .update-hero-copy > p { font-size: 16px; }
  .update-hero-actions { flex-direction: column; }
  .update-hero-actions .primary-button { width: 100%; }
  .release-meta-row { gap: 10px; }
  .release-meta-row span { padding: 10px 12px; border: 1px solid var(--line); border-radius: 14px; }
  .update-hero-collage { min-height: 455px; }
  .collage-main { width: 80%; right: 10%; }
  .collage-card { width: 34%; }
  .update-features { padding-top: 90px; padding-bottom: 100px; }
  .update-feature-grid { grid-template-columns: 1fr; }
  .update-feature-card { min-height: 310px; }
  .journey-section { padding: 95px 0; }
  .journey-grid { margin-top: 55px; }
  .journey-item { min-height: 0; }
  .insight-showcase { padding-top: 100px; padding-bottom: 100px; }
  .insight-image-wrap { padding: 16px; border-radius: 28px; }
  .release-notes { padding-bottom: 100px; }
  .release-notes-header { align-items: flex-start; flex-direction: column; }
  .release-notes-list > div { grid-template-columns: 70px 1fr; gap: 10px; }
  .release-notes-list p { font-size: 14px; line-height: 1.75; }
  .update-download-section { padding-inline: 10px; }
  .update-download-card { width: 100%; border-radius: 32px; }
}


/* ---------- Latest homepage brand and hero replacement ---------- */
.brand-wordmark-link {
  line-height: 0;
}

.brand .brand-wordmark {
  width: 205px;
  height: 48px;
  object-fit: contain;
  border-radius: 13px;
}

.hero-visual-latest {
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-latest-image {
  width: min(690px, 100%);
  height: auto;
  border-radius: 34px;
  box-shadow: 0 34px 80px rgba(59, 36, 26, 0.16);
}

@media (max-width: 980px) {
  .hero-visual-latest {
    min-height: auto;
    padding: 24px 0 50px;
  }

  .hero-latest-image {
    width: min(760px, 100%);
  }
}

@media (max-width: 720px) {
  .brand .brand-wordmark {
    width: 150px;
    height: 40px;
    border-radius: 11px;
  }

  .site-header {
    padding-left: 10px;
  }

  .hero-visual-latest {
    padding-bottom: 24px;
  }

  .hero-latest-image {
    border-radius: 24px;
    box-shadow: 0 24px 55px rgba(59, 36, 26, 0.14);
  }
}
