/* неЖри landing — modern UI, 2026 */

:root {
  --bg: #070a0f;
  --bg-2: #0d1219;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.08);
  --text: #f0f3f7;
  --text-muted: #94a3b8;
  --accent: #34e8b8;
  --accent-2: #7c9eff;
  --accent-glow: rgba(52, 232, 184, 0.35);
  --border: rgba(255, 255, 255, 0.09);
  --radius: 20px;
  --radius-lg: 28px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

/* One cohesive "film grade" across mixed stock sources */
main .hero-photo img,
main .gallery-item img,
main .story-card__img img,
main .why-split__img {
  filter: saturate(0.9) contrast(1.04) brightness(0.97);
}

.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 90% 70% at 5% 15%, rgba(34, 197, 94, 0.1), transparent 55%),
    radial-gradient(ellipse 100% 80% at 10% -20%, rgba(52, 232, 184, 0.14), transparent 50%),
    radial-gradient(ellipse 80% 60% at 95% 20%, rgba(124, 158, 255, 0.12), transparent 45%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(52, 232, 184, 0.08), transparent 40%),
    var(--bg);
}

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

.wrap {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

/* Glass */
.glass {
  background: rgba(13, 18, 25, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
}

.glass-strong {
  background: rgba(13, 18, 25, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 10, 15, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
}

.logo span {
  color: var(--accent);
}

.logo--footer {
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem 1rem;
  flex-wrap: wrap;
}

.nav-links a:not(.btn) {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links a:not(.btn):hover {
  color: var(--accent);
}

.nav-links .btn {
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #2bc49a);
  color: #031510;
  box-shadow: 0 4px 24px var(--accent-glow);
}

.btn-primary:hover {
  box-shadow: 0 6px 32px var(--accent-glow);
}

.btn-glass {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-glass:hover {
  border-color: rgba(52, 232, 184, 0.4);
  color: var(--accent);
}

/* Hero */
.hero {
  padding: clamp(2.5rem, 8vw, 5rem) 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-grid > * {
  min-width: 0;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
    max-width: min(420px, 100%);
    margin-inline: auto;
    width: 100%;
  }
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pill {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(52, 232, 184, 0.12);
  color: var(--accent);
  border: 1px solid rgba(52, 232, 184, 0.25);
}

.hero-kicker {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 5.5vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 0 1.25rem;
  max-width: 14ch;
}

@media (max-width: 960px) {
  .hero h1 {
    max-width: none;
  }
}

.hero-lead {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 46ch;
  margin: 0 0 1.75rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
}

/* Hero collage */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.hero-photo-stack {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  max-height: min(560px, 70vh);
  /* overflow visible: float tile extends past stack edge by design */
  border-radius: var(--radius-lg);
}

/* In-flow sizer: absolute-only figures do not contribute height; padding trick works without images */
.hero-photo-stack__sizer {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 125%;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
}

.hero-photo {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
  pointer-events: none;
  z-index: 1;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-photo--main {
  position: absolute;
  inset: 0;
  width: 78%;
  height: 88%;
  top: 6%;
  left: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-photo--float {
  position: absolute;
  width: 48%;
  height: 38%;
  bottom: 4%;
  right: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 2;
  animation: floaty 7s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo--float {
    animation: none;
  }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-float-card {
  position: absolute;
  bottom: 12%;
  left: 4%;
  right: auto;
  max-width: min(220px, calc(100% - 1.5rem));
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  z-index: 3;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

@media (max-width: 960px) {
  .hero-float-card {
    left: 6%;
    bottom: 10%;
  }
}

.hero-float-card__label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.35rem;
}

.hero-float-card__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text);
  overflow-wrap: break-word;
}

/* Gallery */
.gallery-section {
  --gallery-parallax-y: 0;
  --gallery-parallax-x: 0;
  position: relative;
  isolation: isolate;
  padding: clamp(1.75rem, 4.5vw, 3.25rem) 0 clamp(2.25rem, 5vw, 3.5rem);
  overflow: hidden;
}

.gallery-section__aurora {
  position: absolute;
  inset: -15% -8%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 75% 55% at 25% 45%, rgba(52, 232, 184, 0.14), transparent 58%),
    radial-gradient(ellipse 65% 50% at 78% 55%, rgba(124, 158, 255, 0.11), transparent 52%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(52, 232, 184, 0.06), transparent 45%);
  transform: translate(
      calc(var(--gallery-parallax-x, 0) * 1px),
      calc(var(--gallery-parallax-y, 0) * 1px)
    )
    rotate(-1.25deg);
  will-change: transform;
  opacity: 0.95;
}

@media (prefers-reduced-motion: reduce) {
  .gallery-section__aurora {
    transform: none;
    will-change: auto;
  }
}

.gallery-head {
  text-align: center;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
  padding-inline: 1rem;
}

.gallery-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.45rem, 4.2vw, 2.15rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.gallery-sub {
  margin: 0 auto;
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2.4vw, 1.08rem);
  line-height: 1.55;
  max-width: 36rem;
}

/* Masonry-style columns: page scroll, not horizontal strip */
.gallery-grid {
  padding: 0.5rem 0 0.85rem;
  column-width: clamp(10.5rem, 30vw, 17rem);
  column-gap: clamp(0.65rem, 2vw, 1.05rem);
  column-fill: balance;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 clamp(0.65rem, 2vw, 1rem);
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 5;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  background:
    linear-gradient(145deg, rgba(52, 232, 184, 0.12), rgba(13, 18, 25, 0.95)),
    var(--bg-2);
}

/* Organic mix of tile proportions */
.gallery-item:nth-child(6n + 1) {
  aspect-ratio: 4 / 5;
}

.gallery-item:nth-child(6n + 2) {
  aspect-ratio: 1 / 1;
}

.gallery-item:nth-child(6n + 3) {
  aspect-ratio: 3 / 4;
}

.gallery-item:nth-child(6n + 4) {
  aspect-ratio: 5 / 6;
}

.gallery-item:nth-child(6n + 5) {
  aspect-ratio: 4 / 5;
}

.gallery-item:nth-child(6n) {
  aspect-ratio: 16 / 11;
}

@media (max-width: 520px) {
  .gallery-grid {
    column-count: 1;
    column-width: 100%;
  }

  .gallery-item {
    aspect-ratio: 4 / 5;
  }

  .gallery-item:nth-child(n) {
    aspect-ratio: 4 / 5;
  }
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: clamp(1.25rem, 4vw, 1.85rem) clamp(0.55rem, 2vw, 0.85rem) 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(0.62rem, 1.85vw, 0.76rem);
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: 0.02em;
  color: rgba(240, 243, 247, 0.94);
  text-align: left;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
  background: linear-gradient(180deg, transparent 0%, rgba(7, 10, 15, 0.45) 40%, rgba(7, 10, 15, 0.92) 100%);
  pointer-events: none;
  z-index: 2;
}

.gallery-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.38);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: var(--bg-2);
}

.photo-credit {
  text-align: center;
  font-size: 0.65rem;
  line-height: 1.4;
  color: var(--text-muted);
  margin: 0.35rem 0 0;
  padding: 0 1rem;
  opacity: 0.38;
  letter-spacing: 0.02em;
}

.photo-credit a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(148, 163, 184, 0.35);
  text-underline-offset: 2px;
}

.photo-credit a:hover {
  opacity: 1;
  color: var(--accent-2);
  text-decoration-color: rgba(124, 158, 255, 0.5);
}

/* Wellness pillars (ЗОЖ) */
.wellness-section {
  padding: 2.5rem 0 3.25rem;
}

.wellness-head {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-inline: auto;
  padding: 0 1rem;
}

.wellness-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.45rem, 3.2vw, 1.95rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.wellness-sub {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.wellness-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 720px) {
  .wellness-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 400px) {
  .wellness-grid {
    grid-template-columns: 1fr;
  }
}

.wellness-card {
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(52, 232, 184, 0.1), rgba(255, 255, 255, 0.03));
  transition: border-color 0.2s, transform 0.2s ease, box-shadow 0.2s;
}

.wellness-card:hover {
  border-color: rgba(52, 232, 184, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.wellness-card__icon {
  font-size: 1.65rem;
  line-height: 1;
  margin-bottom: 0.45rem;
  display: block;
}

.wellness-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 0.35rem;
}

.wellness-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Sections */
.section-tight {
  padding: 3.5rem 0;
}

.section-head {
  margin-bottom: 2rem;
}

.section-tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}

section h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  letter-spacing: -0.025em;
  margin: 0 0 0.65rem;
  line-height: 1.15;
}

.section-intro {
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0;
  font-size: 1.05rem;
}

.section-intro--flush {
  margin-bottom: 1.5rem;
}

/* Stories */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 720px) {
  .stories-grid {
    grid-template-columns: 1fr;
  }
}

.story-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-2);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.story-card:hover {
  border-color: rgba(52, 232, 184, 0.25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.story-card__img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(52, 232, 184, 0.1), var(--bg-2));
}

.story-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.story-card:hover .story-card__img img {
  transform: scale(1.04);
}

.story-card blockquote {
  margin: 0;
  padding: 1.35rem 1.5rem 1.5rem;
}

.story-card blockquote p {
  margin: 0 0 1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
}

.story-card blockquote footer {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  font-style: normal;
  color: var(--text-muted);
}

/* Why split */
.why-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  padding: 4rem 0;
}

.why-split > * {
  min-width: 0;
}

@media (max-width: 880px) {
  .why-split {
    grid-template-columns: 1fr;
  }
}

.why-split__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 5;
  max-height: 560px;
  background:
    linear-gradient(160deg, rgba(52, 232, 184, 0.15), var(--bg-2));
}

.why-split__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-split__badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  color: var(--text);
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1rem;
}

.why-list__icon {
  font-size: 1.35rem;
  line-height: 1;
}

/* Bento */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .bento {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .bento {
    grid-template-columns: 1fr;
  }
}

.bento__item {
  border-radius: var(--radius-lg);
  min-height: 160px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-2);
  isolation: isolate;
}

.bento__item--wide {
  grid-column: span 2;
}

@media (max-width: 900px) {
  .bento__item--wide {
    grid-column: span 2;
  }
}

@media (max-width: 520px) {
  .bento__item--wide {
    grid-column: span 1;
  }
}

/* Photo + tint on separate layers — avoids seam artifacts from stacked backgrounds */
.bento__item--food::before,
.bento__item--stat::before,
.bento__item--run::before,
.bento__item--hydration::before,
.bento__item--mind::before,
.bento__item--team::before {
  content: "";
  position: absolute;
  /* Slight bleed past edges — avoids hairline gaps vs border-radius without transform (transform + blur causes color fringes) */
  inset: -4px;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bento__item--food::before {
  background-image: url("https://images.unsplash.com/photo-1512621776951-a57141f2eefd?ixlib=rb-4.1.0&auto=format&fit=crop&w=1200&q=75");
}

.bento__item--stat::before {
  background-image: url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.1.0&auto=format&fit=crop&w=800&q=75");
}

.bento__item--run::before {
  background-image: url("https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.1.0&auto=format&fit=crop&w=800&q=75");
}

.bento__item--hydration::before {
  background-image: url("https://images.unsplash.com/photo-1559827260-dc66d52bef19?ixlib=rb-4.1.0&auto=format&fit=crop&w=800&q=75");
}

.bento__item--mind::before {
  background-image: url("https://images.unsplash.com/photo-1506126613408-eca07ce68773?ixlib=rb-4.1.0&auto=format&fit=crop&w=800&q=75");
}

.bento__item--team {
  grid-column: 1 / -1;
}

.bento__item--team::before {
  background-image: url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.1.0&auto=format&fit=crop&w=800&q=75");
}

.bento__item--food::after,
.bento__item--stat::after,
.bento__item--run::after,
.bento__item--hydration::after,
.bento__item--mind::after,
.bento__item--team::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.bento__item--food::after {
  background: linear-gradient(
    180deg,
    rgba(7, 10, 15, 0.28) 0%,
    rgba(7, 10, 15, 0.48) 32%,
    rgba(7, 10, 15, 0.78) 70%,
    rgba(7, 10, 15, 0.9) 100%
  );
}

.bento__item--stat::after {
  background: linear-gradient(135deg, rgba(7, 10, 15, 0.76) 0%, rgba(7, 10, 15, 0.9) 55%, rgba(7, 10, 15, 0.97) 100%);
}

.bento__item--run::after {
  background: linear-gradient(135deg, rgba(7, 10, 15, 0.72) 0%, rgba(7, 10, 15, 0.88) 52%, rgba(7, 10, 15, 0.95) 100%);
}

.bento__item--hydration::after {
  background: linear-gradient(135deg, rgba(7, 10, 15, 0.74) 0%, rgba(7, 10, 15, 0.9) 52%, rgba(7, 10, 15, 0.96) 100%);
}

.bento__item--mind::after {
  background: linear-gradient(135deg, rgba(7, 10, 15, 0.74) 0%, rgba(7, 10, 15, 0.9) 52%, rgba(7, 10, 15, 0.96) 100%);
}

.bento__item--team::after {
  background: linear-gradient(135deg, rgba(7, 10, 15, 0.8) 0%, rgba(7, 10, 15, 0.92) 50%, rgba(7, 10, 15, 0.98) 100%);
}

.bento__inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/*
 * Full-bleed vignette (smooth multi-stop gradient only). A fixed-height bottom panel
 * + backdrop-filter produced a hard horizontal seam mid-tile; blur stays off here.
 */
.bento .bento__inner.glass-strong {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
}

.bento .bento__inner.glass-strong::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(7, 10, 15, 0) 0%,
    rgba(7, 10, 15, 0.03) 14%,
    rgba(7, 10, 15, 0.08) 28%,
    rgba(7, 10, 15, 0.2) 44%,
    rgba(7, 10, 15, 0.45) 58%,
    rgba(7, 10, 15, 0.72) 74%,
    rgba(7, 10, 15, 0.84) 86%,
    rgba(7, 10, 15, 0.9) 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.bento__inner h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.bento__inner p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 36ch;
  position: relative;
  z-index: 1;
}

/* CTA */
.cta-block {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  margin: 2rem 0 3rem;
  border: 1px solid var(--border);
}

.cta-block--visual .cta-block__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(7, 10, 15, 0.88), rgba(22, 60, 40, 0.55)),
    url("https://images.unsplash.com/photo-1517836357463-d25dfeac3438?ixlib=rb-4.1.0&auto=format&fit=crop&w=1400&q=75") center / cover;
}

.cta-block__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 2.25rem;
  border-radius: var(--radius-lg);
  max-width: 32rem;
}

.cta-block__content h2 {
  margin: 0 0 0.75rem;
}

.cta-block__content p {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

/* Partner */
.partner-section {
  padding: 2.5rem 0 1rem;
  margin-top: 0.5rem;
}

.partner-card {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: var(--radius-lg);
  max-width: 52rem;
  margin-inline: auto;
  border: 1px solid rgba(52, 232, 184, 0.15);
  background: linear-gradient(155deg, rgba(52, 232, 184, 0.08), rgba(124, 158, 255, 0.05));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.partner-eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.partner-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.partner-lead {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 58ch;
}

.partner-lead a {
  color: var(--accent-2);
}

.partner-bridge {
  margin: 0 0 1.35rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 56ch;
  opacity: 0.92;
}

.partner-cta {
  align-self: flex-start;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--border);
}

.footer-brand p {
  margin: 0.35rem 0 0.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-tg {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.footer-tg:hover {
  text-decoration: underline;
}

.disclaimer {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 1.5rem 0 0;
  max-width: 60ch;
  line-height: 1.55;
}

.disclaimer a {
  color: var(--accent-2);
}
</think>


<｜tool▁calls▁begin｜><｜tool▁call▁begin｜>
StrReplace