:root {
  --navy: #142832;
  --navy-deep: #0d1d25;
  --navy-soft: #203d49;
  --gold: #a57b4c;
  --gold-light: #c69b68;
  --sand: #e7dac7;
  --cream: #faf7f2;
  --paper: #fffdf9;
  --ink: #182e38;
  --muted: #617078;
  --line: rgba(20, 40, 50, 0.14);
  --white-line: rgba(255, 255, 255, 0.19);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, Avenir, 'Avenir Next', 'Segoe UI', Helvetica, Arial, sans-serif;
  --shell: 1180px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --shadow-soft: 0 28px 65px rgba(12, 30, 39, 0.13);
  --shadow-phone: 0 42px 68px rgba(0, 0, 0, 0.38), 0 10px 24px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 10px 15px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--navy);
  font-weight: 700;
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(13, 29, 37, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(230, 217, 197, 0.85);
  border-radius: 12px;
  background: #fffdf9;
}

.brand-mark img {
  width: 37px;
  height: 30px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.brand-copy span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 29px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 650;
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.lang-switch button {
  min-width: 29px;
  padding: 6px 5px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.63);
  cursor: pointer;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.lang-switch button:hover,
.lang-switch button.is-active {
  background: var(--paper);
  color: var(--navy);
}

.primary-navigation > a:not(.nav-contact) {
  position: relative;
}

.primary-navigation > a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--gold-light);
  content: '';
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.primary-navigation > a:hover:not(.nav-contact)::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
  padding: 11px 14px 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: var(--paper);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nav-contact:hover {
  border-color: var(--gold-light);
  background: var(--gold-light);
  color: var(--navy-deep);
}

.nav-contact svg,
.button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 0.2s ease;
}

.nav-contact:hover svg,
.button:hover svg {
  transform: translateX(3px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: var(--paper);
  transition: transform 0.2s ease;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 30%, rgba(165, 123, 76, 0.35), transparent 24%),
    radial-gradient(circle at 52% -14%, rgba(93, 143, 153, 0.24), transparent 35%),
    linear-gradient(117deg, #0d2029 0%, #142832 55%, #193946 100%);
  color: var(--paper);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  content: '';
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  opacity: 0.45;
}

.hero::after {
  position: absolute;
  right: -4%;
  bottom: -105px;
  left: -4%;
  height: 200px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: var(--cream);
  content: '';
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(225, 201, 168, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  top: 7%;
  right: -13%;
  width: 720px;
  aspect-ratio: 1;
  animation: orbit-turn 34s linear infinite;
}

.hero-orbit-two {
  top: 20%;
  right: -4%;
  width: 490px;
  aspect-ratio: 1;
  border-color: rgba(225, 201, 168, 0.12);
  animation: orbit-turn 26s linear infinite reverse;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.94fr);
  align-items: center;
  min-height: 760px;
  gap: 44px;
  padding-top: 104px;
  padding-bottom: 80px;
}

.hero-copy {
  max-width: 665px;
  padding-top: 12px;
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 11px;
  border: 1px solid rgba(229, 195, 151, 0.36);
  border-radius: 999px;
  background: rgba(214, 177, 128, 0.1);
  color: #e9c28f;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.launch-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9fcaa7;
  box-shadow: 0 0 0 4px rgba(159, 202, 167, 0.12);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #e0bc91;
}

.eyebrow > span:first-child {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.045em;
}

h1 {
  max-width: 740px;
  margin-bottom: 24px;
  font-size: clamp(3.45rem, 6.2vw, 5.65rem);
  font-weight: 680;
  line-height: 0.97;
}

h1 em,
h2 em {
  color: var(--gold-light);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.06em;
}

.hero-lead {
  max-width: 550px;
  margin-bottom: 31px;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1rem, 1.5vw, 1.13rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 51px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

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

.button-gold {
  background: var(--gold-light);
  box-shadow: 0 11px 25px rgba(0, 0, 0, 0.16);
  color: #152832;
}

.button-gold:hover {
  background: #dbb380;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.22);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--paper);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  background: var(--navy);
  color: var(--paper);
}

.button-dark:hover {
  background: #214653;
  box-shadow: 0 15px 25px rgba(20, 40, 50, 0.2);
}

.hero-notes {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

.hero-notes i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-light);
}

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

.hero-halo {
  position: absolute;
  top: 9%;
  width: 450px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 176, 125, 0.37) 0%, rgba(207, 158, 96, 0.1) 39%, transparent 69%);
  filter: blur(2px);
  animation: halo-breathe 8s ease-in-out infinite;
}

.phone-hero {
  position: relative;
  z-index: 2;
  width: min(100%, 220px);
  transform: rotate(4deg) translateY(8px);
  animation: phone-float 6.5s ease-in-out infinite;
  will-change: transform;
}

.phone-hero img {
  width: 100%;
  height: auto;
  border-radius: 18% / 8.6%;
  clip-path: inset(0 round 18% / 8.6%);
  filter: drop-shadow(var(--shadow-phone));
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 191px;
  padding: 11px 13px 11px 11px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 14px;
  background: rgba(255, 253, 249, 0.93);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
  color: var(--navy);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.floating-note strong,
.floating-note small {
  display: block;
}

.floating-note strong {
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.25;
}

.floating-note small {
  margin-top: 3px;
  color: #6d777b;
  font-size: 0.59rem;
  font-weight: 600;
  line-height: 1.2;
}

.note-top {
  top: 16%;
  right: -3%;
  animation: note-float 5.5s ease-in-out infinite;
}

.note-bottom {
  bottom: 17%;
  left: -4%;
  animation: note-float 6.5s ease-in-out -2.3s infinite reverse;
}

.note-icon {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 9px;
}

.note-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.note-icon-gold {
  background: #eedabd;
  color: #835a2b;
}

.note-icon-navy {
  background: #d8e3e2;
  color: var(--navy);
}

.hero-footer {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - var(--shell)) / 2));
  bottom: 88px;
  left: auto;
  display: flex;
  width: max-content;
  align-items: center;
  gap: 13px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.hero-footer > span:last-child {
  margin-left: 0;
}

.hero-footer > span:first-child {
  white-space: nowrap;
}

.scroll-line {
  width: 84px;
  height: 1px;
  background: rgba(255, 255, 255, 0.66);
  animation: scroll-line-breathe 2.6s ease-in-out infinite;
}

.section {
  padding: 132px 0;
}

.intro {
  padding-top: 88px;
}

.intro-layout,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(265px, 0.57fr);
  align-items: end;
  gap: 72px;
}

h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(2.45rem, 4.65vw, 4.35rem);
  font-weight: 680;
  line-height: 1.04;
}

.intro-copy {
  max-width: 390px;
  padding-bottom: 6px;
}

.intro-copy p,
.section-heading > p,
.experience-copy > p,
.mentoring-copy > p,
.awards-content > p,
.closing-copy > p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.intro-copy p {
  margin-bottom: 23px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
}

.text-link span {
  color: var(--gold);
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translate(2px, 2px);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 80px;
}

.value-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: 25px 25px 27px;
  border-radius: var(--radius-md);
  transition: transform 0.38s cubic-bezier(0.2, 0.75, 0.3, 1), box-shadow 0.38s ease;
}

.value-card:hover {
  box-shadow: 0 23px 42px rgba(20, 40, 50, 0.16);
  transform: translateY(-6px);
}

.value-card::after {
  position: absolute;
  right: -46px;
  bottom: -47px;
  width: 150px;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: '';
  opacity: 0.14;
}

.value-card-dark {
  background: var(--navy);
  color: var(--paper);
}

.value-card-sand {
  background: #e8dccb;
  color: var(--navy);
}

.value-card-gold {
  background: var(--gold);
  color: #fff9ef;
}

.value-index {
  position: absolute;
  top: 23px;
  right: 25px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  opacity: 0.7;
}

.value-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.9;
}

.value-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.value-card h3 {
  position: absolute;
  bottom: 77px;
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 1.85rem);
  font-weight: 650;
  line-height: 1.05;
}

.value-card p {
  position: absolute;
  right: 25px;
  bottom: 25px;
  left: 25px;
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.55;
  opacity: 0.74;
}

.product-map {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(198, 155, 104, 0.2), transparent 24%),
    radial-gradient(circle at 8% 88%, rgba(73, 113, 110, 0.28), transparent 29%),
    linear-gradient(145deg, #0b1d26 0%, #142f3a 49%, #102630 100%);
  color: var(--paper);
}

.product-map::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  content: '';
  mask-image: linear-gradient(135deg, black, transparent 70%);
  opacity: 0.45;
}

.product-map::after {
  position: absolute;
  z-index: -1;
  top: -210px;
  right: -240px;
  width: 680px;
  aspect-ratio: 1;
  border: 1px solid rgba(231, 218, 199, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(231, 218, 199, 0.026), 0 0 0 144px rgba(231, 218, 199, 0.018);
  content: '';
  animation: map-ring-drift 16s ease-in-out infinite;
}

.product-map-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.product-map-orb-one {
  top: 32%;
  left: -170px;
  width: 360px;
  aspect-ratio: 1;
  border: 1px solid rgba(222, 185, 143, 0.17);
  box-shadow: inset 0 0 72px rgba(198, 155, 104, 0.06);
  animation: map-orb-drift 17s ease-in-out infinite;
}

.product-map-orb-two {
  right: 8%;
  bottom: 8%;
  width: 126px;
  aspect-ratio: 1;
  background: rgba(198, 155, 104, 0.15);
  filter: blur(42px);
  animation: map-orb-drift 11s ease-in-out -4s infinite reverse;
}

.product-map-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(265px, 0.53fr);
  align-items: end;
  gap: 72px;
}

.product-map-heading h2 {
  margin: 0;
  color: var(--paper);
}

.product-map-intro {
  max-width: 400px;
  padding-bottom: 3px;
}

.product-map-intro > p {
  margin: 0;
  color: rgba(255, 253, 249, 0.71);
  font-size: 0.96rem;
  line-height: 1.75;
}

.product-map-count {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  color: #dfba8e;
}

.product-map-count strong {
  font-size: 1.7rem;
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 1;
}

.product-map-count span {
  max-width: 90px;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.feature-command-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 64px;
}

.product-map .feature-command-card {
  position: relative;
  display: flex;
  min-height: 336px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  color: var(--paper);
  box-shadow: 0 20px 40px rgba(3, 13, 18, 0.14);
  transition: transform 0.42s cubic-bezier(0.2, 0.75, 0.3, 1), border-color 0.3s ease, box-shadow 0.42s ease, background-color 0.3s ease;
  will-change: transform;
}

.feature-command-card::before {
  position: absolute;
  top: -105px;
  right: -85px;
  width: 220px;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(255, 255, 255, 0.025), 0 0 0 68px rgba(255, 255, 255, 0.015);
  content: '';
  opacity: 0.35;
  transition: transform 0.55s cubic-bezier(0.2, 0.75, 0.3, 1), opacity 0.35s ease;
}

.feature-command-card::after {
  position: absolute;
  right: 24px;
  bottom: 21px;
  width: 34px;
  height: 1px;
  background: currentColor;
  content: '';
  opacity: 0.3;
  transform-origin: right center;
  transition: width 0.32s ease, opacity 0.32s ease;
}

.feature-command-card > span {
  position: relative;
  z-index: 1;
}

.feature-command-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  color: currentColor;
  font-size: 0.56rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  line-height: 1.28;
  opacity: 0.68;
}

.feature-command-topline > span:first-child {
  max-width: calc(100% - 32px);
}

.feature-command-topline > span:last-child {
  flex: 0 0 auto;
}

.feature-command-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-top: 29px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 14px;
  color: inherit;
  transition: transform 0.42s cubic-bezier(0.2, 0.75, 0.3, 1), background-color 0.3s ease;
}

.feature-command-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.feature-command-content {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 28px;
}

.feature-command-content strong {
  max-width: 300px;
  color: currentColor;
  font-size: clamp(1.28rem, 1.8vw, 1.62rem);
  font-weight: 680;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.feature-command-content > span {
  max-width: 312px;
  color: currentColor;
  font-size: 0.76rem;
  font-weight: 540;
  line-height: 1.58;
  opacity: 0.74;
}

.feature-command-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 21px;
  color: currentColor;
  font-size: 0.61rem;
  font-weight: 820;
  letter-spacing: 0.025em;
  opacity: 0.9;
}

.feature-command-action svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
  transition: transform 0.3s ease;
}

.product-map .feature-command-card.is-visible:hover,
.product-map .feature-command-card.is-visible:focus-visible {
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.28);
  transform: translateY(-8px);
}

.feature-command-card:hover::before,
.feature-command-card:focus-visible::before {
  opacity: 0.6;
  transform: scale(1.13) translate(-5px, 7px);
}

.feature-command-card:hover::after,
.feature-command-card:focus-visible::after {
  width: 52px;
  opacity: 0.8;
}

.feature-command-card:hover .feature-command-icon,
.feature-command-card:focus-visible .feature-command-icon {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-4px) rotate(-4deg);
}

.feature-command-card:hover .feature-command-action svg,
.feature-command-card:focus-visible .feature-command-action svg {
  transform: translateX(4px);
}

.feature-command-connect {
  background: #1b3c47;
}

.feature-command-community {
  background: #21323a;
}

.feature-command-insights {
  border-color: rgba(255, 255, 255, 0.3) !important;
  background: #c9a77b;
  color: #132b35 !important;
}

.feature-command-insights .feature-command-icon,
.feature-command-events .feature-command-icon {
  background: rgba(255, 253, 249, 0.31);
}

.feature-command-events {
  background: #f1e8dc;
  color: #152f3a !important;
}

.feature-command-awards {
  background: linear-gradient(145deg, #876037, #aa8254);
}

.feature-command-mentoring {
  background: #1a4a54;
}

.section-cream {
  background: #f1ece4;
}

.section-heading {
  align-items: end;
}

.section-heading > p {
  max-width: 395px;
  margin: 0 0 4px;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 360px 340px;
  gap: 16px;
  margin-top: 71px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: transform 0.42s cubic-bezier(0.2, 0.75, 0.3, 1), box-shadow 0.42s ease;
}

.bento-topline {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: currentColor;
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  opacity: 0.65;
}

.bento-copy {
  position: relative;
  z-index: 2;
  max-width: 350px;
  margin-top: 66px;
}

.bento-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 12px;
}

.bento-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.bento-card h3 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 2.25vw, 2rem);
  font-weight: 670;
  line-height: 1.05;
}

.bento-card p {
  max-width: 335px;
  margin-bottom: 0;
  font-size: 0.79rem;
  line-height: 1.62;
  opacity: 0.75;
}

.bento-connect {
  background: var(--navy);
  color: var(--paper);
}

.bento-connect .bento-icon {
  background: rgba(214, 177, 128, 0.18);
  color: #efca99;
}

.connect-rings {
  position: absolute;
  right: 15px;
  bottom: -76px;
  width: 332px;
  aspect-ratio: 1;
  transition: transform 0.55s cubic-bezier(0.2, 0.75, 0.3, 1);
}

.connect-rings i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(228, 201, 163, 0.24);
  border-radius: 50%;
}

.connect-rings i:nth-child(2) {
  inset: 33px;
}

.connect-rings i:nth-child(3) {
  inset: 68px;
  border-color: rgba(228, 201, 163, 0.46);
}

.connect-rings b {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--navy);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  transform: translate(-50%, -50%);
}

.bento-projects {
  background: #d9c3a7;
  color: var(--navy);
}

.bento-projects .bento-copy {
  margin-top: 62px;
}

.bento-projects .bento-icon {
  background: rgba(255, 253, 249, 0.56);
  color: #8c6235;
}

.project-tags {
  position: absolute;
  right: 22px;
  bottom: 24px;
  left: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  max-width: 260px;
}

.project-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(20, 40, 50, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.28);
  font-size: 0.6rem;
  font-weight: 750;
}

.project-tags span:last-child {
  background: var(--navy);
  color: var(--paper);
}

.bento-community {
  background: #fffdf9;
  color: var(--navy);
}

.bento-community .bento-copy {
  margin-top: 58px;
}

.bento-community .bento-icon {
  background: #e9f0ee;
  color: #49716e;
}

.community-pulse {
  position: absolute;
  right: 24px;
  bottom: 28px;
  display: flex;
  align-items: end;
  gap: 6px;
  height: 67px;
}

.community-pulse span {
  display: block;
  width: 11px;
  border-radius: 8px 8px 2px 2px;
  background: var(--gold);
}

.community-pulse span:nth-child(1) { height: 21px; opacity: 0.5; }
.community-pulse span:nth-child(2) { height: 40px; opacity: 0.7; }
.community-pulse span:nth-child(3) { height: 65px; }
.community-pulse span:nth-child(4) { height: 34px; opacity: 0.7; }
.community-pulse span:nth-child(5) { height: 48px; opacity: 0.5; }

.bento-events {
  background: #b98751;
  color: #fffaf3;
}

.bento-events .bento-copy {
  margin-top: 57px;
  max-width: 305px;
}

.bento-events .bento-icon {
  background: rgba(255, 255, 255, 0.18);
}

.event-date {
  position: absolute;
  right: 24px;
  bottom: 23px;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 9px;
  color: #fffaf3;
}

.event-date span {
  grid-column: 1 / -1;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.event-date strong {
  font-size: 2.6rem;
  font-weight: 650;
  line-height: 0.95;
}

.event-date i {
  display: none;
}

.event-date small {
  font-size: 0.55rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  line-height: 1.35;
}

.experience {
  position: relative;
  isolation: isolate;
  padding: 108px 0 84px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 14%, rgba(198, 155, 104, 0.23), transparent 27%),
    radial-gradient(circle at 16% 112%, rgba(70, 117, 126, 0.24), transparent 31%),
    linear-gradient(160deg, #0d1d25 0%, #142832 54%, #1b3b47 100%);
  color: var(--paper);
}

.experience::before {
  position: absolute;
  z-index: -1;
  top: -230px;
  right: -180px;
  width: 620px;
  aspect-ratio: 1;
  border: 1px solid rgba(231, 218, 199, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 88px rgba(231, 218, 199, 0.035), 0 0 0 176px rgba(231, 218, 199, 0.02);
  content: '';
  pointer-events: none;
}

.gallery-heading {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
}

.gallery-heading h2 {
  margin-bottom: 0;
  color: var(--paper);
}

.gallery-heading .eyebrow {
  justify-content: center;
  color: #e0bc91;
}

.gallery-heading > p {
  max-width: 660px;
  margin: 16px auto 0;
  color: rgba(255, 253, 249, 0.72);
  font-size: 0.96rem;
  line-height: 1.75;
}

.feature-gallery-viewport {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 52px;
  padding: 10px 0 28px;
  overflow-x: auto;
  overflow-y: visible;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.feature-gallery-viewport::-webkit-scrollbar {
  display: none;
}

.feature-gallery-viewport:focus-visible {
  outline: 2px solid rgba(224, 188, 145, 0.75);
  outline-offset: -3px;
}

.feature-gallery {
  display: flex;
  width: max-content;
  min-width: 100%;
  gap: 20px;
  margin: 0;
  padding: 0 max(24px, calc((100vw - var(--shell)) / 2));
}

.feature-shot {
  display: flex;
  flex: 0 0 180px;
  width: 180px;
  min-width: 180px;
  flex-direction: column;
  overflow: visible;
  padding: 0;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  transition: transform 0.24s ease;
}

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

.feature-shot-visual {
  position: relative;
  display: block;
  height: auto;
  overflow: visible;
  border-radius: 26px;
  background: transparent;
}

.feature-shot-visual::after {
  display: none;
}

.feature-shot-visual img {
  position: relative;
  z-index: 1;
  width: 180px;
  max-height: 378px;
  margin: 0;
  border-radius: 18% / 8.6%;
  clip-path: inset(0 round 18% / 8.6%);
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.42));
  transition: transform 0.26s ease;
}

.feature-shot:hover .feature-shot-visual img {
  transform: translateY(-3px) scale(1.012);
}

.feature-shot-copy {
  min-height: 132px;
  padding: 17px 3px 0;
}

.feature-shot-copy > span {
  display: block;
  margin-bottom: 7px;
  color: #e0bc91;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.feature-shot h3 {
  margin: 0 0 6px;
  color: var(--paper);
  font-size: 0.96rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.feature-shot p {
  margin: 0;
  color: rgba(255, 253, 249, 0.62);
  font-size: 0.75rem;
  line-height: 1.58;
}

.gallery-hint {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 2px 24px 0;
  color: rgba(255, 253, 249, 0.5);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.025em;
}

.gallery-hint svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(390px, 1.15fr);
  align-items: center;
  gap: 65px;
}

.experience-copy {
  max-width: 400px;
}

.experience-copy h2 {
  margin-bottom: 24px;
}

.experience-copy > p {
  margin-bottom: 31px;
}

.experience-tabs {
  display: grid;
  gap: 1px;
  border-top: 1px solid var(--line);
}

.experience-tab {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 13px;
  padding: 13px 4px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: #647078;
  cursor: pointer;
  font-size: 0.77rem;
  font-weight: 700;
  text-align: left;
  transition: color 0.18s ease, padding-left 0.18s ease;
}

.experience-tab span {
  min-width: 21px;
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 800;
}

.experience-tab::after {
  width: 0;
  height: 1px;
  margin-left: auto;
  background: var(--gold);
  content: '';
  transition: width 0.2s ease;
}

.experience-tab:hover,
.experience-tab.is-active {
  padding-left: 8px;
  color: var(--navy);
}

.experience-tab.is-active::after {
  width: 24px;
}

.screen-caption {
  min-height: 2.8em;
  margin-top: 20px !important;
  margin-bottom: 0 !important;
  color: #8a765c !important;
  font-family: var(--serif);
  font-size: 1rem !important;
  font-style: italic;
  line-height: 1.35 !important;
}

.experience-stage {
  position: relative;
  display: grid;
  min-height: 675px;
  place-items: center;
}

.experience-stage::before {
  position: absolute;
  top: 7%;
  right: 7%;
  bottom: 5%;
  left: 10%;
  border-radius: 38% 62% 62% 38% / 44% 46% 54% 56%;
  background: #dde8e5;
  content: '';
  transform: rotate(-8deg);
}

.stage-bloom {
  position: absolute;
  z-index: 1;
  width: 435px;
  aspect-ratio: 1;
  border: 1px solid rgba(165, 123, 76, 0.3);
  border-radius: 50%;
}

.stage-bloom::after,
.stage-bloom::before {
  position: absolute;
  border: inherit;
  border-radius: inherit;
  content: '';
}

.stage-bloom::before { inset: 28px; }
.stage-bloom::after { inset: 56px; }

.experience-stage > img {
  position: relative;
  z-index: 2;
  width: min(100%, 333px);
  filter: drop-shadow(0 31px 36px rgba(20, 40, 50, 0.27));
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.experience-stage > img.is-switching {
  opacity: 0;
  transform: translateY(9px) rotate(1.5deg);
}

.stage-label {
  position: absolute;
  z-index: 3;
  top: 14%;
  right: 5%;
  display: grid;
  gap: 6px;
  color: #8a6740;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-align: right;
  writing-mode: vertical-rl;
}

.stage-label span:last-child {
  color: #68817e;
}

.stage-dot {
  position: absolute;
  z-index: 3;
  display: block;
  border-radius: 50%;
}

.dot-one {
  top: 21%;
  left: 4%;
  width: 17px;
  height: 17px;
  border: 4px solid var(--gold);
}

.dot-two {
  right: 13%;
  bottom: 14%;
  width: 10px;
  height: 10px;
  background: #49716e;
}

.section-navy {
  overflow: hidden;
  background: var(--navy);
  color: var(--paper);
}

.mentoring-grid {
  display: grid;
  grid-template-columns: minmax(350px, 0.93fr) minmax(340px, 1.07fr);
  align-items: center;
  gap: 96px;
}

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

.mentor-shot-frame {
  position: relative;
  z-index: 3;
  width: min(100%, 240px);
  aspect-ratio: 1224 / 2570;
  overflow: hidden;
  border: 0;
  border-radius: 18% / 8.6%;
  clip-path: inset(0 round 18% / 8.6%);
  background: var(--navy-deep);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.4);
  transform: rotate(-2.2deg);
  animation: mentor-float 7s ease-in-out infinite;
  will-change: transform;
}

.mentor-shot-frame img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mentor-square {
  position: absolute;
  border-radius: 24px;
}

.mentor-square-a {
  top: 8%;
  left: 5%;
  width: 205px;
  height: 310px;
  background: var(--gold);
  opacity: 0.9;
  transform: rotate(12deg);
}

.mentor-square-b {
  right: 1%;
  bottom: 7%;
  width: 210px;
  height: 165px;
  border: 1px solid rgba(255, 255, 255, 0.21);
  transform: rotate(-11deg);
}

.mentor-badge {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 17%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(20, 40, 50, 0.92);
  color: #e8c495;
  font-size: 0.53rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.mentor-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9ec7a6;
  box-shadow: 0 0 0 3px rgba(158, 199, 166, 0.15);
}

.mentoring-copy {
  max-width: 525px;
}

.mentoring-copy h2 {
  margin-bottom: 24px;
  color: var(--paper);
}

.mentoring-copy > p:not(.fine-print) {
  max-width: 505px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
}

.check-list {
  display: grid;
  gap: 0;
  max-width: 495px;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--white-line);
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 54px;
  border-bottom: 1px solid var(--white-line);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.79rem;
  font-weight: 650;
}

.check-list span {
  color: var(--gold-light);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.fine-print {
  max-width: 460px;
  margin: 21px 0 0;
  color: rgba(255, 255, 255, 0.48) !important;
  font-size: 0.67rem !important;
  line-height: 1.55 !important;
}

.awards {
  position: relative;
  display: flex;
  min-height: 700px;
  overflow: hidden;
  align-items: center;
  color: var(--paper);
}

.awards-photo,
.awards-overlay {
  position: absolute;
  inset: 0;
}

.awards-photo {
  background: url('assets/images/awards-gala.png') center / cover no-repeat;
  transform: scale(1.02);
  animation: awards-photo-drift 18s ease-in-out infinite alternate;
}

.awards-overlay {
  background: linear-gradient(90deg, rgba(9, 24, 32, 0.93) 0%, rgba(10, 27, 34, 0.77) 43%, rgba(10, 27, 34, 0.27) 100%);
}

.awards-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
}

.awards-content h2 {
  margin-bottom: 25px;
  color: var(--paper);
}

.awards-content > p:not(.eyebrow) {
  max-width: 510px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
}

.awards-wordmark {
  position: absolute;
  z-index: 1;
  right: -6px;
  bottom: 33px;
  color: rgba(255, 255, 255, 0.28);
  font-size: clamp(1.7rem, 4.8vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  white-space: nowrap;
  transform: rotate(-90deg) translateY(100%);
  transform-origin: right bottom;
}

.awards-wordmark span {
  color: var(--gold-light);
}

.closing {
  padding: 112px 0;
}

.closing-card {
  position: relative;
  min-height: 445px;
  overflow: hidden;
  padding: 72px clamp(31px, 7vw, 90px);
  border-radius: var(--radius-lg);
  background: #e2d4c1;
}

.closing-copy {
  position: relative;
  z-index: 2;
  max-width: 625px;
}

.closing-copy h2 {
  margin-bottom: 19px;
}

.closing-copy > p {
  max-width: 450px;
  margin-bottom: 28px;
}

.launch-form {
  display: flex;
  align-items: stretch;
  gap: 10px;
  max-width: 590px;
}

.launch-form input {
  min-width: 0;
  flex: 1;
  min-height: 51px;
  padding: 0 17px;
  border: 1px solid rgba(20, 40, 50, 0.2);
  border-radius: 999px;
  outline: 0;
  background: rgba(255, 253, 249, 0.76);
  color: var(--navy);
  font: inherit;
  font-size: 0.79rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.launch-form input::placeholder {
  color: #6c797e;
}

.launch-form input:focus {
  border-color: var(--gold);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(165, 123, 76, 0.13);
}

.launch-form .button {
  flex: 0 0 auto;
  cursor: pointer;
}

.launch-help,
.launch-status {
  max-width: 510px;
  margin-top: 13px !important;
  margin-bottom: 0 !important;
  color: rgba(20, 40, 50, 0.65) !important;
  font-size: 0.67rem !important;
  line-height: 1.55 !important;
}

.launch-help a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

.launch-status {
  min-height: 1.2em;
  color: #6f522f !important;
  font-weight: 750;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.closing-shape {
  position: absolute;
  border-radius: 50%;
}

.shape-a {
  top: -104px;
  right: -30px;
  width: 475px;
  height: 475px;
  border: 1px solid rgba(20, 40, 50, 0.18);
}

.shape-a::before,
.shape-a::after {
  position: absolute;
  border: inherit;
  border-radius: inherit;
  content: '';
}

.shape-a::before { inset: 38px; }
.shape-a::after { inset: 76px; }

.shape-b {
  right: 99px;
  bottom: -64px;
  width: 238px;
  height: 238px;
  background: var(--gold);
  opacity: 0.86;
}

.closing-signature {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 27px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  color: rgba(20, 40, 50, 0.52);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.closing-signature i {
  color: var(--gold);
  font-style: normal;
}

.site-footer {
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--paper);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(570px, 1.28fr);
  gap: 46px;
  padding: 72px 0 51px;
}

.brand-footer {
  color: var(--paper);
}

.footer-brand > p {
  margin: 21px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
}

.footer-launch {
  display: inline-flex;
  margin-top: 16px;
  padding: 6px 9px;
  border: 1px solid rgba(231, 189, 136, 0.25);
  border-radius: 999px;
  color: #dcb27c;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 0.95fr;
  gap: 32px;
}

.footer-links h2 {
  margin: 0 0 19px;
  color: #e7bd88;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links address {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
  font-style: normal;
  line-height: 1.85;
}

.footer-links a:not([href^='mailto']):hover,
.footer-links a[href^='mailto']:hover {
  color: #f1cd9f;
}

.footer-links address {
  margin-top: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.63rem;
}

.footer-bottom a:hover {
  color: #f1cd9f;
}

.footer-delete-link {
  display: inline-flex !important;
  width: fit-content;
  margin-top: 11px;
  padding: 6px 9px;
  border: 1px solid rgba(231, 189, 136, 0.48);
  border-radius: 999px;
  color: #f1cd9f !important;
  font-size: 0.62rem !important;
  font-weight: 800;
  line-height: 1.35 !important;
  text-decoration: none;
}

.footer-delete-link:hover {
  border-color: #f1cd9f;
  background: rgba(231, 189, 136, 0.12);
}

.legal-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f1ece4;
}

.legal-header {
  background: var(--navy-deep);
  color: var(--paper);
}

.legal-back {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.73rem;
  font-weight: 750;
}

.legal-actions {
  display: flex;
  align-items: center;
  gap: 17px;
}

.legal-language {
  border-color: rgba(255, 255, 255, 0.24);
}

.legal-back:hover {
  color: #f1cd9f;
}

.legal-main {
  flex: 1;
  padding: 160px 0 100px;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(350px, 1.15fr);
  align-items: start;
  gap: 70px;
}

.legal-intro h1 {
  margin-bottom: 21px;
  color: var(--navy);
  font-size: clamp(3.3rem, 5.3vw, 5rem);
}

html[lang='de'] .legal-intro h1 {
  font-size: clamp(3rem, 4.6vw, 4.25rem);
  letter-spacing: -0.06em;
}

.legal-intro > p:not(.eyebrow):not(.legal-updated) {
  max-width: 340px;
  color: var(--muted);
  line-height: 1.7;
}

.legal-updated {
  margin-top: 18px;
  color: var(--gold) !important;
  font-size: 0.67rem !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-card {
  padding: 43px;
  border: 1px solid rgba(20, 40, 50, 0.1);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.legal-card section + section {
  margin-top: 35px;
  padding-top: 31px;
  border-top: 1px solid var(--line);
}

.legal-kicker {
  margin-bottom: 11px;
  color: var(--gold);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.legal-card h2 {
  margin-bottom: 13px;
  font-size: 1.6rem;
}

.legal-document h2 {
  font-size: 1.25rem;
}

.legal-card address,
.legal-card p {
  color: var(--muted);
  font-size: 0.86rem;
  font-style: normal;
  line-height: 1.75;
}

.legal-email {
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: var(--gold-light);
  text-underline-offset: 5px;
}

.legal-note p {
  margin: 0;
}

.legal-document p + p {
  margin-top: 13px;
}

.legal-document ul {
  display: grid;
  gap: 9px;
  margin: 17px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.legal-document li::marker {
  color: var(--gold);
}

.legal-document a:not(.legal-request-button) {
  color: var(--navy);
  font-weight: 700;
  text-decoration-color: var(--gold-light);
  text-underline-offset: 4px;
}

.legal-action {
  margin-top: 19px !important;
}

.legal-request-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-align: center;
  text-decoration: none;
}

.legal-request-button:hover {
  background: var(--gold);
  color: var(--navy);
}

.legal-footer {
  margin-top: auto;
}

.legal-page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 17px;
  padding: 22px 0 16px;
}

.legal-page-links a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.65rem;
  font-weight: 700;
  text-decoration: none;
}

.legal-page-links a:hover,
.legal-page-links a[aria-current='page'] {
  color: #f1cd9f;
}

.legal-footer-bottom .footer-bottom {
  padding-top: 17px;
}

@keyframes orbit-turn {
  to { transform: rotate(1turn); }
}

@keyframes halo-breathe {
  0%,
  100% { opacity: 0.78; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes phone-float {
  0%,
  100% { transform: rotate(4deg) translateY(8px); }
  50% { transform: rotate(3.1deg) translateY(-3px); }
}

@keyframes note-float {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes scroll-line-breathe {
  0%,
  100% { opacity: 0.48; transform: scaleX(0.72); transform-origin: left center; }
  50% { opacity: 1; transform: scaleX(1); transform-origin: left center; }
}

@keyframes map-ring-drift {
  0%,
  100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-15px, 18px, 0) scale(1.035); }
}

@keyframes map-orb-drift {
  0%,
  100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(22px, -14px, 0); }
}

@keyframes mentor-float {
  0%,
  100% { transform: rotate(-2.2deg) translateY(0); }
  50% { transform: rotate(-1.2deg) translateY(-9px); }
}

@keyframes awards-photo-drift {
  0% { transform: scale(1.02) translate3d(0, 0, 0); }
  100% { transform: scale(1.075) translate3d(-1.2%, -0.8%, 0); }
}

[data-reveal] {
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.2, 0.75, 0.3, 1);
}

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
}

[data-reveal][data-reveal-delay='1'] {
  transition-delay: 0.11s;
}

[data-reveal][data-reveal-delay='2'] {
  transition-delay: 0.2s;
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.bento-grid .bento-card.is-visible:hover {
  box-shadow: 0 25px 46px rgba(20, 40, 50, 0.17);
  transform: translateY(-6px);
}

.bento-grid .bento-card.is-visible:hover .connect-rings {
  transform: scale(1.035) rotate(5deg);
}

@media (max-width: 1050px) {
  .primary-navigation {
    gap: 20px;
  }

  .nav-tools {
    gap: 8px;
  }

  .lang-switch button {
    min-width: 26px;
  }

  .nav-contact {
    padding-right: 11px;
    padding-left: 13px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
    gap: 18px;
  }

  .phone-hero {
    width: min(100%, 208px);
  }

  .note-top { right: -8%; }
  .note-bottom { left: -7%; }

  .product-map-heading {
    gap: 44px;
  }

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

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

  .bento-card {
    padding: 23px;
  }

  .connect-rings {
    right: -29px;
  }

  .mentoring-grid {
    gap: 50px;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(calc(100% - 36px), var(--shell));
  }

  .nav-shell {
    min-height: 76px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

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

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

  .primary-navigation {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    padding: 90px 36px;
    background: rgba(13, 29, 37, 0.98);
    color: var(--paper);
    font-size: 1.1rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .primary-navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-navigation .nav-tools {
    flex-direction: column;
    gap: 20px;
    margin-top: 8px;
  }

  .primary-navigation .lang-switch {
    padding: 5px;
  }

  .primary-navigation .lang-switch button {
    min-width: 48px;
    padding: 10px 12px;
    font-size: 0.7rem;
  }

  .nav-contact {
    margin: 10px 0 0;
    padding: 14px 22px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 2px;
    padding-top: 132px;
    padding-bottom: 120px;
  }

  .hero-copy {
    max-width: 650px;
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-notes {
    justify-content: center;
  }

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

  .hero-visual {
    min-height: 450px;
    margin-top: 14px;
  }

  .phone-hero {
    width: 190px;
  }

  .note-top { top: 13%; right: 8%; }
  .note-bottom { bottom: 12%; left: 8%; }
  .hero-footer { bottom: 64px; }

  .intro-layout,
  .section-heading,
  .gallery-heading,
  .experience-grid,
  .mentoring-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-map-heading {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .intro-copy,
  .section-heading > p,
  .gallery-heading > p,
  .experience-copy,
  .product-map-intro {
    max-width: 570px;
  }

  .feature-command-grid {
    gap: 14px;
    margin-top: 48px;
  }

  .product-map .feature-command-card {
    min-height: 314px;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 50px;
  }

  .value-card {
    min-height: 256px;
  }

  .value-card h3 { bottom: 70px; }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, minmax(295px, auto));
    margin-top: 47px;
  }

  .bento-card {
    min-height: 310px;
  }

  .feature-gallery-viewport {
    margin-top: 42px;
    padding-bottom: 24px;
  }

  .feature-gallery {
    gap: 18px;
    padding-inline: max(18px, calc((100vw - var(--shell)) / 2));
  }

  .feature-shot {
    flex-basis: 170px;
    width: 170px;
    min-width: 170px;
  }

  .feature-shot-visual {
    height: auto;
  }

  .feature-shot-visual img {
    width: 170px;
    max-height: 357px;
  }

  .connect-rings {
    right: 4%;
    bottom: -86px;
  }

  .experience-stage {
    min-height: 605px;
    order: -1;
  }

  .experience-stage::before {
    right: 17%;
    left: 17%;
  }

  .mentoring-grid {
    gap: 31px;
  }

  .mentor-visual {
    min-height: 500px;
  }

  .mentor-shot-frame { width: 210px; }

  .mentor-square-a { left: 18%; }
  .mentor-square-b { right: 13%; }
  .mentor-badge { right: 12%; }

  .mentoring-copy {
    max-width: 600px;
  }

  .awards {
    min-height: 645px;
  }

  .awards-overlay {
    background: linear-gradient(90deg, rgba(9, 24, 32, 0.92) 0%, rgba(10, 27, 34, 0.7) 100%);
  }

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

  .legal-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .legal-actions {
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .feature-command-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-legal {
    grid-column: 1 / -1;
  }
}

@media (max-width: 540px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

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

  .brand-copy strong { font-size: 0.76rem; }

  .hero::after {
    bottom: -70px;
    height: 125px;
  }

  .hero-grid {
    padding-top: 112px;
    padding-bottom: 95px;
  }

  h1 {
    font-size: clamp(3rem, 13.2vw, 4.2rem);
    line-height: 0.98;
  }

  h1 br,
  h2 br {
    display: block;
  }

  .hero-lead {
    font-size: 0.94rem;
    line-height: 1.64;
  }

  .button {
    min-height: 49px;
    padding: 0 18px;
  }

  .hero-notes {
    gap: 7px;
    margin-top: 31px;
    font-size: 0.51rem;
  }

  .hero-visual {
    min-height: 390px;
    margin-top: 12px;
  }

  .hero-halo { width: 350px; }
  .phone-hero { width: 185px; }

  .floating-note {
    min-width: 162px;
    padding: 9px 10px 9px 9px;
    border-radius: 12px;
  }

  .floating-note strong { font-size: 0.58rem; }
  .floating-note small { font-size: 0.5rem; }
  .note-icon { width: 26px; height: 26px; flex-basis: 26px; }
  .note-icon svg { width: 14px; height: 14px; }
  .note-top { top: 13%; right: -2%; }
  .note-bottom { bottom: 9%; left: -2%; }
  .hero-footer {
    right: 16px;
    bottom: 65px;
    left: 16px;
    width: auto;
    justify-content: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.58rem;
    font-weight: 800;
  }
  .hero-footer > span:last-child { display: none; }
  .hero-footer > span:first-child {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: rgba(8, 28, 38, 0.34);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    letter-spacing: 0.08em;
  }
  .scroll-line { display: none; }

  .section { padding: 84px 0; }
  .intro { padding-top: 54px; }
  h2 { font-size: clamp(2.25rem, 10.6vw, 3.3rem); }
  .eyebrow { margin-bottom: 17px; font-size: 0.58rem; }
  .intro-copy p, .section-heading > p, .experience-copy > p, .mentoring-copy > p, .awards-content > p, .closing-copy > p { font-size: 0.9rem; }

  .value-card { min-height: 238px; padding: 20px; }
  .value-index { top: 20px; right: 20px; }
  .value-card h3 { right: 20px; bottom: 65px; left: 20px; font-size: 1.45rem; }
  .value-card p { right: 20px; bottom: 20px; left: 20px; font-size: 0.69rem; }

  .product-map-intro > p { font-size: 0.9rem; }
  .product-map-count { margin-top: 21px; }
  .product-map .feature-command-card { min-height: 282px; padding: 21px; border-radius: 21px; }
  .feature-command-grid { gap: 12px; margin-top: 39px; }
  .feature-command-icon { width: 42px; height: 42px; margin-top: 24px; border-radius: 13px; }
  .feature-command-icon svg { width: 20px; height: 20px; }
  .feature-command-content { gap: 8px; padding-top: 24px; }
  .feature-command-content strong { font-size: 1.36rem; }
  .feature-command-content > span { font-size: 0.72rem; }
  .feature-command-action { margin-top: 17px; font-size: 0.58rem; }

  .bento-grid { gap: 12px; }
  .bento-card { min-height: 298px; padding: 21px; border-radius: 22px; }
  .bento-copy { margin-top: 48px; }
  .bento-card h3 { font-size: 1.56rem; }
  .bento-card p { max-width: 310px; font-size: 0.73rem; }
  .bento-projects .bento-copy, .bento-community .bento-copy, .bento-events .bento-copy { margin-top: 48px; }
  .connect-rings { width: 270px; right: -10px; bottom: -68px; }
  .project-tags { right: 16px; bottom: 18px; left: 20px; }
  .event-date { right: 20px; bottom: 19px; }

  .experience-stage { min-height: 505px; }
  .experience-stage > img { width: 251px; }
  .stage-bloom { width: 326px; }
  .stage-label { top: 12%; right: 2%; }
  .dot-one { top: 20%; left: 4%; }
  .dot-two { right: 9%; bottom: 12%; }
  .experience-copy h2 { margin-bottom: 19px; }
  .experience-copy > p { margin-bottom: 25px; }
  .screen-caption { font-size: 0.92rem !important; }

  .hero-visual { display: none; }
  .hero-grid { padding-bottom: 135px; }

  .experience { padding: 76px 0 68px; }
  .gallery-heading > p { margin-top: 13px; font-size: 0.86rem; }
  .feature-gallery-viewport { margin-top: 33px; padding-bottom: 21px; }
  .feature-gallery { gap: 16px; padding-inline: 22px; }
  .feature-shot { flex-basis: 166px; width: 166px; min-width: 166px; }
  .feature-shot-visual { height: auto; border-radius: 18% / 8.6%; }
  .feature-shot-visual img { width: 166px; max-height: 349px; border-radius: 18% / 8.6%; }
  .feature-shot-copy { min-height: 128px; padding: 15px 2px 0; }
  .feature-shot-copy > span { margin-bottom: 6px; font-size: 0.54rem; }
  .feature-shot h3 { margin-bottom: 5px; font-size: 0.9rem; line-height: 1.18; }
  .feature-shot p { font-size: 0.71rem; line-height: 1.52; }
  .gallery-hint { margin-top: 0; font-size: 0.64rem; }

  .mentor-visual { min-height: 430px; }
  .mentor-shot-frame { width: 190px; border-radius: 18% / 8.6%; clip-path: inset(0 round 18% / 8.6%); }
  .mentor-square-a { top: 5%; left: 13%; width: 160px; height: 243px; }
  .mentor-square-b { right: 6%; bottom: 5%; width: 168px; height: 132px; }
  .mentor-badge { right: 2%; bottom: 10%; font-size: 0.45rem; }
  .check-list li { min-height: 51px; font-size: 0.7rem; }
  .fine-print { font-size: 0.63rem !important; }

  .awards { min-height: 600px; }
  .awards-photo { background-position: 61% center; }
  .awards-wordmark { right: -3px; bottom: 20px; font-size: 2rem; }

  .closing { padding: 72px 0; }
  .closing-card { min-height: 464px; padding: 57px 25px; border-radius: 22px; }
  .launch-form { flex-direction: column; max-width: 370px; }
  .launch-form input { flex: none; width: 100%; }
  .launch-form .button { width: 100%; }
  .shape-a { top: -55px; right: -185px; width: 370px; height: 370px; }
  .shape-b { right: 36px; bottom: -51px; width: 180px; height: 180px; }
  .closing-signature { bottom: 18px; gap: 7px; font-size: 0.45rem; }

  .footer-main { padding: 57px 0 40px; }
  .footer-links { grid-template-columns: 1fr; gap: 31px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding-bottom: 21px; }

  .legal-main { padding: 126px 0 70px; }
  .legal-card { padding: 29px 23px; border-radius: 22px; }
  .legal-intro h1 br { display: block; }
  .legal-actions { flex-direction: column-reverse; align-items: flex-end; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
