@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #6cc765;
  --green-strong: #4cae59;
  --green-soft: #edf9e9;
  --ink: #28533a;
  --muted: #6b7d70;
  --paper: #fbfcff;
  --shadow: 0 18px 50px rgba(44, 103, 65, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.shell {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: min(900px, 62.5vw);
  grid-template-rows: auto 1fr;
  overflow: hidden;
  color: #fff;
  background: var(--green-strong);
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.hero::before {
  z-index: 0;
  left: auto;
  width: 62%;
  background: url("assets/identite/garden-hero.jpg") center 18% / cover no-repeat;
  transform: scale(1.1);
  transform-origin: right center;
}

.hero::after {
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(76, 174, 89, 1) 0%,
    rgba(76, 174, 89, 0.97) 36%,
    rgba(91, 187, 97, 0.74) 60%,
    rgba(108, 199, 101, 0.16) 100%
  );
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
}

.brand img {
  width: 126px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 600;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
}

.language-switcher {
  position: relative;
  display: flex;
  align-items: center;
}

.language-switcher-button {
  display: none;
  min-width: 42px;
  min-height: 40px;
  padding: 8px 10px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
}

.language-options {
  position: static;
  display: flex;
  width: auto;
  padding: 4px;
  gap: 3px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: none;
  transform: none;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.language-options a {
  display: flex;
  min-width: 34px;
  min-height: 34px;
  padding: 4px !important;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--ink) !important;
  background: transparent !important;
  text-align: center;
  backdrop-filter: none !important;
}

.language-options a:hover,
.language-options a:focus-visible {
  color: #299c50 !important;
  background: transparent !important;
  transform: none !important;
}

.language-options a[aria-current="page"] {
  color: #299c50 !important;
  background: #e8f6e5 !important;
}

.language-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  line-height: 1;
}

.language-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.language-code {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.mobile-language-options {
  display: grid;
  width: min(100%, 300px);
  margin-top: 30px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.mobile-menu-links .mobile-language-options a {
  display: flex;
  min-height: 50px;
  padding: 9px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
}

.mobile-menu-links .mobile-language-options a:hover,
.mobile-menu-links .mobile-language-options a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  transform: none;
}

.mobile-menu-links .mobile-language-options a[aria-current="page"] {
  color: var(--green-strong);
  background: #fff;
}

.mobile-language-options .language-code {
  display: none;
}

.menu-toggle,
.mobile-menu,
.mobile-menu-close {
  display: none;
}

.menu-toggle,
.mobile-menu-close {
  margin: 0;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.menu-toggle {
  width: 36px;
  height: 36px;
  place-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  z-index: 1000;
  inset: 0;
  min-height: 100dvh;
  color: #fff;
  background: #28533a;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
}

.mobile-menu-top {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-brand img {
  width: 82px;
}

.mobile-menu-close {
  position: relative;
  width: 36px;
  height: 36px;
}

.mobile-menu-close span {
  position: absolute;
  top: 17px;
  left: 7px;
  width: 23px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu-close span:first-child {
  transform: rotate(45deg);
}

.mobile-menu-close span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu-links {
  display: flex;
  min-height: calc(100dvh - 164px);
  padding: 32px 24px 82px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.mobile-menu-links a {
  padding: 8px 12px;
  color: #fff;
  font-size: clamp(36px, 11vw, 54px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.mobile-menu-links a:hover,
.mobile-menu-links a:focus-visible {
  color: #b9efaf;
  transform: translateX(4px);
}

.mobile-menu-links a span {
  display: inline-block;
  margin-left: 4px;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.landing-page .brand img {
  width: 72px;
}

.landing-page .hero {
  background: #4aae59;
}

.landing-page .hero::before {
  width: 74%;
  background-position: 70% 25%;
  transform: scale(1.04);
}

.landing-page .hero::after {
  background:
    linear-gradient(0deg, rgba(30, 100, 53, 0.16) 0%, transparent 48%),
    linear-gradient(
      90deg,
      rgba(74, 174, 89, 1) 0%,
      rgba(74, 174, 89, 0.98) 34%,
      rgba(74, 174, 89, 0.82) 49%,
      rgba(86, 184, 95, 0.28) 76%,
      rgba(108, 199, 101, 0.08) 100%
    );
}

.landing-page .nav {
  min-height: 104px;
}

.landing-page .nav-links,
.press-page .nav-links {
  gap: 2px;
  padding: 8px 20px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(28, 83, 50, 0.14);
}

.landing-page .nav-links a,
.press-page .nav-links a {
  padding: 8px 15px;
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  backdrop-filter: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.landing-page .nav-links a:hover,
.landing-page .nav-links a:focus-visible,
.press-page .nav-links a:hover,
.press-page .nav-links a:focus-visible {
  color: var(--green-strong);
  background: transparent;
  transform: none;
}

.landing-page .language-switcher-button:hover,
.landing-page .language-switcher-button:focus-visible,
.press-page .language-switcher-button:hover,
.press-page .language-switcher-button:focus-visible {
  background: transparent;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(42px, 4vw, 68px) 0 clamp(52px, 5vw, 84px);
}

.landing-page .hero-content {
  min-height: 0;
  padding: clamp(42px, 4vw, 68px) 0 clamp(52px, 5vw, 84px);
}

.landing-page .hero-content h1 {
  width: min(100%, 760px);
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(54px, 5.6vw, 82px);
  text-wrap: balance;
}

.landing-page .hero-hook {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow-green {
  color: #299c50;
}

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

h1 {
  max-width: 690px;
  margin-bottom: 18px;
  font-size: clamp(50px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.hero-hook {
  max-width: 620px;
  margin-bottom: 18px;
  color: #eefdea;
  font-size: clamp(23px, 2.6vw, 33px);
  font-weight: 600;
  line-height: 1.16;
}

.hero-intro {
  max-width: 590px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
}

.landing-page .hero-content > .eyebrow {
  opacity: 0.64;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  max-width: 100%;
  margin-top: 18px;
}

.store-links a {
  display: block;
  line-height: 0;
  transition: transform 160ms ease, filter 160ms ease;
}

.store-links a:hover,
.store-links a:focus-visible {
  filter: drop-shadow(0 12px 18px rgba(29, 80, 38, 0.2));
  transform: translateY(-3px);
}

.store-links img {
  width: clamp(176px, 14vw, 210px);
  height: auto;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.2);
}

.button-green {
  color: #fff;
  background: var(--green-strong);
}

.button-outline {
  color: var(--ink);
  background: var(--green-soft);
}

.section {
  padding-top: 110px;
  padding-bottom: 110px;
}

.section-soft {
  background: var(--green-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading.compact {
  margin-bottom: 42px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.2;
}

.section-note {
  max-width: 700px;
  color: var(--muted);
}

.prose p:last-child {
  margin-bottom: 0;
}

.story-heading {
  margin-bottom: 42px;
}

.story-heading .section-note {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 21px;
}

.story-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  min-height: 650px;
  overflow: visible;
  border-radius: 40px;
  background: linear-gradient(135deg, var(--green-soft) 0%, #fff 100%);
}

.story-copy {
  align-self: center;
  padding: clamp(38px, 6vw, 76px);
  padding-right: 30px;
}

.story-kicker {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.story-copy > p:not(.story-kicker) {
  max-width: 510px;
  color: var(--muted);
  font-size: 19px;
}

.story-points {
  display: grid;
  gap: 15px;
  margin-top: 34px;
}

.story-points p {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: center;
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.25;
}

.story-points span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: var(--green);
  font-size: 20px;
  font-weight: 800;
}

.story-visuals {
  position: relative;
  min-height: 650px;
}

.story-shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  box-shadow:
    0 18px 34px rgba(44, 103, 65, 0.1),
    0 42px 80px rgba(44, 103, 65, 0.14);
}

.story-shot img {
  width: 100%;
  aspect-ratio: 1242 / 2688;
  object-fit: cover;
}

.story-shot-main {
  width: 272px;
  top: 28px;
  left: 96px;
  transform: rotate(-3deg);
}

.story-shot-secondary {
  width: 216px;
  right: 48px;
  bottom: 20px;
  transform: rotate(4deg);
}

.facts-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 48px;
  margin: 58px 0 0;
  padding: 38px 46px;
  border-radius: 32px;
  background: var(--green-soft);
}

.facts-strip dt {
  margin-bottom: 4px;
  color: var(--green-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.facts-strip dd {
  margin: 0;
  font-weight: 600;
  line-height: 1.35;
}

.facts-strip a {
  color: var(--green-strong);
}

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

.feature-grid article {
  min-height: 300px;
  padding: 36px;
  border-radius: 28px;
  background: #fff;
}

.feature-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.number {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 76px;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.bond-story {
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 10vw, 150px) 0;
}

.bond-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(52px, 8vw, 120px);
  align-items: center;
}

.bond-story-copy h2 {
  max-width: 580px;
  margin-bottom: 26px;
  font-size: clamp(46px, 6vw, 76px);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.bond-story-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 0;
  font-size: 20px;
}

.bond-chat-section {
  color: #fff;
  background: var(--green);
}

.bond-dressing-section {
  color: var(--ink);
  background: var(--green-soft);
}

.download-cta-section {
  padding: clamp(92px, 10vw, 138px) 0;
  color: #fff;
  background: var(--green);
  text-align: center;
}

.download-cta-section .eyebrow {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.download-cta-section h2 {
  margin-bottom: 20px;
}

.download-cta-section p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.18;
}

.download-cta-section .store-links {
  justify-content: center;
  margin-top: 42px;
}

.bond-story-layout-reverse {
  grid-template-columns: minmax(460px, 1.1fr) minmax(0, 0.9fr);
}

.bond-tags {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 470px;
  margin-top: 28px;
}

.bond-tags span {
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 13px;
  font-weight: 800;
}

.bond-chat-section .bond-tags span {
  padding-right: 18px;
  padding-left: 18px;
}

.bond-tags-green span {
  color: var(--green-strong);
  background: #fff;
}

.chat-stage {
  position: relative;
  min-height: 540px;
}

.chat-message {
  position: absolute;
  z-index: 3;
  max-width: 360px;
  padding: 20px 24px;
  border-radius: 26px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  box-shadow: 0 20px 50px rgba(31, 104, 57, 0.14);
}

.chat-message-player {
  top: 24px;
  right: 0;
  color: var(--ink);
  background: #fff;
  border-bottom-right-radius: 8px;
}

.chat-message-kitiz {
  top: 160px;
  left: 0;
  color: var(--ink);
  background: #fff;
  border-bottom-left-radius: 8px;
}

.chat-kitiz-visual {
  position: absolute;
  right: 20px;
  bottom: -70px;
  width: min(430px, 78%);
}

.chat-stage-kitiz {
  display: block;
  width: 100%;
  transform: scaleX(-1);
  filter: drop-shadow(0 24px 38px rgba(31, 104, 57, 0.18));
}

.chat-stage-icon {
  position: absolute;
  z-index: 4;
  top: 16%;
  right: -10px;
  width: 18%;
  max-width: 78px;
  filter: drop-shadow(0 14px 24px rgba(31, 104, 57, 0.2));
}

.wardrobe-stage {
  position: relative;
  min-height: 570px;
}

.wardrobe-look {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(460px, 72%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 24px 38px rgba(44, 103, 65, 0.14));
}

.wardrobe-look img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wardrobe-item {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 124px;
  height: 124px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 18px 45px rgba(44, 103, 65, 0.12);
}

.wardrobe-item img {
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.wardrobe-item-one {
  top: 2%;
  left: 2%;
  transform: rotate(-7deg);
}

.wardrobe-item-two {
  top: 12%;
  right: 1%;
  transform: rotate(7deg);
}

.wardrobe-item-three {
  bottom: 16%;
  left: 0;
  transform: rotate(5deg);
}

.wardrobe-item-four {
  right: 0;
  bottom: 4%;
  transform: rotate(-5deg);
}

.gallery-section {
  background: #fff;
}

.gallery-heading-row {
  display: block;
  margin-bottom: 48px;
  text-align: left;
}

.gallery-heading-row .section-heading {
  margin-bottom: 18px;
}

.gallery-intro {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  text-align: left;
}

.landing-page .gallery-heading-row {
  display: block;
}

.landing-page .gallery-heading-row .section-heading {
  margin-bottom: 18px;
}

.landing-page .gallery-intro {
  max-width: 720px;
  margin-left: 0;
}

.gallery-stage {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  border-radius: 48px;
  background:
    radial-gradient(circle at 50% 47%, rgba(255, 255, 255, 0.92) 0 29%, transparent 30%),
    linear-gradient(135deg, var(--green-soft) 0%, #f2f5fb 100%);
}

.gallery-stage::before,
.gallery-stage::after {
  position: absolute;
  border-radius: 50%;
  background: rgba(108, 199, 101, 0.13);
  content: "";
}

.gallery-stage::before {
  width: 330px;
  height: 330px;
  top: -120px;
  left: -80px;
}

.gallery-stage::after {
  width: 240px;
  height: 240px;
  right: -54px;
  bottom: -70px;
}

.gallery-phone {
  position: absolute;
  z-index: 2;
  margin: 0;
  text-align: center;
}

.gallery-phone img {
  width: 100%;
  aspect-ratio: 739 / 1600;
  border-radius: 30px;
  object-fit: contain;
  box-shadow:
    0 22px 42px rgba(44, 103, 65, 0.12),
    0 48px 90px rgba(44, 103, 65, 0.13);
}

.gallery-phone figcaption {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(44, 103, 65, 0.09);
  white-space: nowrap;
}

.gallery-phone-main {
  width: 280px;
  top: 54px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
}

.gallery-phone-left,
.gallery-phone-right {
  width: 230px;
  top: 146px;
}

.gallery-phone-left {
  left: 13%;
  transform: rotate(-7deg);
}

.gallery-phone-right {
  right: 13%;
  transform: rotate(7deg);
}

.gallery-note {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
  text-align: center;
}

.section-characters {
  overflow: hidden;
  color: var(--ink);
  background: var(--green-soft);
}

/* The collection opens as a clean, distinct chapter after the light dressing scene. */
.landing-page .section-characters {
  color: var(--ink);
  background: #fff;
}

.landing-page .section-characters .eyebrow {
  color: var(--green-strong);
}

.landing-page .section-characters .character-set figure {
  border: 0;
  background: #f1f3f2;
  box-shadow: none;
}

.landing-page .section-characters .character-carousel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  -webkit-mask-image: none;
  mask-image: none;
}

.character-carousel {
  width: 100%;
  overflow: hidden;
  padding: 28px 0 44px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.character-track {
  --character-half-gap: 12px;
  display: flex;
  width: max-content;
  gap: 24px;
  animation: character-carousel 48s linear infinite;
  will-change: transform;
}

.character-set {
  display: flex;
  gap: 24px;
}

.character-set figure {
  display: flex;
  width: 278px;
  height: 304px;
  flex: 0 0 278px;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0;
  padding: 18px 22px 16px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  text-align: center;
  box-shadow: 0 18px 42px rgba(44, 103, 65, 0.08);
}

.character-set img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.character-set figcaption {
  margin-top: -20px;
  font-size: 21px;
  font-weight: 800;
}

@keyframes character-carousel {
  to {
    transform: translateX(calc(-50% - var(--character-half-gap)));
  }
}

.character-note {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
}

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

.downloads-section {
  background: #f0f3f9;
}

.download-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 126px;
  padding: 24px;
  border: 0;
  border-radius: 24px;
  background: #fff;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.download-card:hover,
.download-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.download-card.featured {
  color: #fff;
  background: var(--green);
}

.file-type {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  color: var(--ink);
  background: var(--green-soft);
  font-size: 13px;
  font-weight: 800;
}

.download-card.featured .file-type {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.download-card h3,
.download-card p {
  margin: 0;
}

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

.download-card.featured p {
  color: rgba(255, 255, 255, 0.82);
}

.landing-release .release-actions {
  margin-top: 28px;
}

.press-hero {
  background: #4aae59;
}

.press-hero::before {
  display: block;
  width: 74%;
  background-position: 70% 25%;
  transform: scale(1.04);
}

.press-hero::after {
  background:
    linear-gradient(0deg, rgba(30, 100, 53, 0.16) 0%, transparent 48%),
    linear-gradient(
      90deg,
      rgba(74, 174, 89, 1) 0%,
      rgba(74, 174, 89, 0.98) 34%,
      rgba(74, 174, 89, 0.82) 49%,
      rgba(86, 184, 95, 0.28) 76%,
      rgba(108, 199, 101, 0.08) 100%
    );
}

.press-page .nav {
  min-height: 104px;
}

.press-page .brand img {
  width: 86px;
}

.press-hero .hero-content {
  display: flex;
  min-height: 0;
  padding: clamp(42px, 4vw, 68px) 0 clamp(52px, 5vw, 84px);
}

.press-hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(54px, 5.6vw, 82px);
  text-wrap: balance;
}

.press-hero .hero-hook {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.92);
}

.press-hero .hero-content > .eyebrow {
  opacity: 0.64;
}

.press-footer {
  padding: 46px 0;
  background: var(--green);
}

.press-footer .footer-grid {
  align-items: center;
}

.press-summary {
  background: #fff;
}

.press-summary-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.press-summary-layout .section-heading {
  margin-bottom: 0;
}

.press-pitch {
  color: #4f6958;
  font-size: 20px;
}

.press-facts {
  grid-template-columns: repeat(4, 1fr);
}

.press-captures {
  background: var(--green-soft);
}

.press-capture-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  width: min(920px, 100%);
  margin: 0 auto;
}

.press-capture-grid figure {
  margin: 0;
}

.press-capture-grid img {
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(36, 74, 52, 0.14);
}

.press-capture-grid figcaption {
  margin-top: 16px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}

.press-release {
  color: var(--ink);
  background: #f1faee;
}

.press-release .eyebrow {
  color: var(--green-strong);
}

.release-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}

.release-copy {
  color: #4f6958;
  font-size: 20px;
}

footer {
  padding: 58px 0;
  color: #fff;
  background: #234a34;
  font-size: 14px;
}

.landing-page footer {
  padding: 46px 0;
  background: var(--green);
}

.landing-page .footer-grid {
  align-items: center;
}

.footer-brand-block {
  display: grid;
  gap: 13px;
}

.footer-logo {
  display: block;
  width: fit-content;
}

.footer-logo img {
  display: block;
  width: 122px;
}

.footer-tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.footer-actions a {
  padding: 9px 13px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 600;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.footer-actions a:hover,
.footer-actions a:focus-visible {
  color: var(--green-strong);
  background: #fff;
}

.footer-grid {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.footer-wordmark {
  margin-bottom: 10px !important;
  color: #fff;
  font-size: 54px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.footer-grid p {
  margin: 0;
}

.footer-contact {
  display: grid;
  gap: 6px;
  text-align: right;
}

.footer-contact a {
  color: #fff;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-menu,
  .mobile-menu-close {
    display: block;
  }

  .hero {
    min-height: min(660px, 65vw);
  }

  .landing-page .hero,
  .press-hero {
    min-height: min(660px, 65vw);
  }

  .hero::before {
    width: 100%;
    background-position: center 14%;
    transform: scale(1.05);
  }

  .landing-page .hero::before,
  .press-hero::before {
    width: 100%;
    background-position: 78% 24%;
    transform: scale(1.05);
  }

  .hero::after {
    background: linear-gradient(
      90deg,
      rgba(76, 174, 89, 0.98) 0%,
      rgba(76, 174, 89, 0.91) 62%,
      rgba(91, 187, 97, 0.58) 100%
    );
  }

  .landing-page .hero::after,
  .press-hero::after {
    background:
      linear-gradient(0deg, rgba(44, 137, 66, 0.42) 0%, rgba(70, 169, 86, 0.08) 54%),
      linear-gradient(90deg, rgba(70, 169, 86, 0.97) 0%, rgba(70, 169, 86, 0.88) 62%, rgba(91, 187, 97, 0.54) 100%);
  }

  .landing-page .hero-content,
  .press-hero .hero-content {
    padding: clamp(30px, 4vw, 46px) 0 clamp(40px, 5vw, 58px);
  }

  .landing-page .hero-content h1,
  .press-hero h1 {
    width: min(100%, 760px);
    max-width: min(100%, 15ch);
    font-size: clamp(48px, 8vw, 72px);
  }

  .store-links img {
    width: clamp(174px, 24vw, 202px);
  }

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

  .press-summary-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .press-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-showcase {
    grid-template-columns: 1fr;
  }

  .story-copy {
    padding-right: clamp(38px, 6vw, 76px);
  }

  .story-visuals {
    min-height: 600px;
  }

  .story-shot-main {
    left: 20%;
  }

  .facts-strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .feature-grid article {
    min-height: 0;
  }

  .bond-story-layout,
  .bond-story-layout-reverse {
    grid-template-columns: 1fr;
  }

  .bond-story-layout-reverse .bond-story-copy {
    order: -1;
  }

  .bond-story-copy h2,
  .bond-story-copy > p:not(.eyebrow) {
    max-width: 680px;
  }

  .chat-stage,
  .wardrobe-stage {
    width: min(680px, 100%);
    margin: 0 auto;
  }

  .gallery-heading-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gallery-intro {
    margin-left: 0;
  }

  .gallery-stage {
    min-height: 720px;
  }

  .gallery-phone-main {
    width: 260px;
  }

  .gallery-phone-left,
  .gallery-phone-right {
    width: 205px;
  }

  .gallery-phone-left {
    left: 5%;
  }

  .gallery-phone-right {
    right: 5%;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    min-height: 78px;
  }

  .landing-page .nav {
    min-height: 78px;
  }

  .brand img {
    width: 96px;
  }

  .hero-content {
    min-height: 0;
    padding: 42px 0 62px;
  }

  .hero,
  .landing-page .hero,
  .press-hero {
    min-height: min(620px, 80vw);
  }

  .landing-page .hero-content,
  .press-hero .hero-content {
    min-height: 0;
    padding: 26px 0 42px;
  }

  .landing-page .hero-content h1,
  .press-hero h1 {
    max-width: 11.5ch;
    margin-bottom: clamp(18px, 4vw, 24px);
    font-size: clamp(40px, 10.8vw, 56px);
    line-height: 0.98;
  }

  h1 {
    font-size: clamp(42px, 11.5vw, 52px);
  }

  .landing-page .hero-hook,
  .press-hero .hero-hook {
    max-width: 24ch;
    margin-bottom: clamp(16px, 3vw, 22px);
    font-size: clamp(19px, 5.2vw, 25px);
    line-height: 1.18;
  }

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

  .actions,
  .button {
    width: 100%;
  }

  .store-links {
    display: grid;
    width: min(100%, 376px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .store-links img {
    width: 100%;
  }

  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .story-showcase {
    min-height: 0;
    border-radius: 28px;
  }

  .story-copy {
    padding: 32px 26px;
  }

  .story-visuals {
    min-height: 460px;
  }

  .story-shot {
    border-radius: 22px;
  }

  .story-shot-main {
    width: 50%;
    top: 24px;
    left: 12%;
  }

  .story-shot-secondary {
    width: 40%;
    right: 7%;
    bottom: 14px;
  }

  .facts-strip {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 30px 26px;
    border-radius: 26px;
  }

  .bond-story {
    padding: 84px 0 68px;
  }

  .bond-story-layout {
    gap: 32px;
  }

  .bond-story-copy h2 {
    font-size: 43px;
  }

  .bond-story-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .chat-stage {
    min-height: 470px;
  }

  .chat-message {
    max-width: 78%;
    padding: 16px 18px;
    font-size: 15px;
  }

  .chat-message-kitiz {
    top: 140px;
  }

  .chat-kitiz-visual {
    right: 12px;
    bottom: -54px;
    width: min(430px, 82%);
  }

  .chat-stage-icon {
    right: 0;
  }

  .wardrobe-stage {
    min-height: 500px;
  }

  .wardrobe-look {
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    width: 78%;
    transform: translate(-50%, -50%);
  }

  .wardrobe-item {
    width: 88px;
    height: 88px;
  }

  .wardrobe-item-one,
  .wardrobe-item-three {
    left: 0;
  }

  .wardrobe-item-two,
  .wardrobe-item-four {
    right: 0;
  }

  .gallery-heading-row {
    margin-bottom: 32px;
  }

  .gallery-intro {
    font-size: 17px;
  }

  .gallery-stage {
    min-height: 600px;
    border-radius: 30px;
  }

  .gallery-phone img {
    border-radius: 20px;
  }

  .gallery-phone-main {
    width: 48%;
    top: 48px;
  }

  .gallery-phone-left,
  .gallery-phone-right {
    width: 35%;
    top: 150px;
  }

  .gallery-phone-left {
    left: -5%;
  }

  .gallery-phone-right {
    right: -5%;
  }

  .gallery-phone figcaption {
    min-height: 34px;
    margin-top: 12px;
    padding: 0 12px;
    font-size: 11px;
  }

  .character-track,
  .character-set {
    gap: 16px;
  }

  .character-track {
    --character-half-gap: 8px;
    animation-duration: 38s;
  }

  .character-set figure {
    width: 226px;
    height: 264px;
    min-height: 0;
    flex-basis: 226px;
    padding: 14px 18px 12px;
    border-radius: 26px;
  }

  .press-capture-grid {
    grid-template-columns: repeat(3, 72vw);
    gap: 18px;
    width: auto;
    margin-right: -14px;
    padding-right: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .press-capture-grid figure {
    scroll-snap-align: start;
  }

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

  .footer-grid {
    display: grid;
  }

  .footer-contact {
    text-align: left;
  }

  .footer-actions {
    justify-content: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .character-carousel {
    overflow-x: auto;
    mask-image: none;
  }

  .character-track {
    animation: none;
  }
}
