@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --black: #030303;
  --black-soft: #080808;
  --surface: #0d0d0f;
  --surface-2: #121214;
  --silver: #e9e9eb;
  --silver-muted: #a9a9af;
  --line: rgba(224,224,228,.17);
  --line-bright: rgba(232,232,236,.34);
  --ember: #ff5a16;
  --ember-deep: #a91b05;
  --gold: #ff9c3a;
  --purple: #9861d7;
  --max: 1480px;
  --shadow: 0 24px 70px rgba(0,0,0,.55);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--silver);
  background:
    radial-gradient(circle at 50% -15%, rgba(112,22,0,.16), transparent 35rem),
    var(--black);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

img { max-width: 100%; }

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

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

.site-shell { overflow: hidden; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 82px;
  padding: 0 clamp(20px, 5vw, 78px);
  border-bottom: 1px solid var(--line);
  background: rgba(3,3,3,.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 270px;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255,75,10,.18));
}

.brand-copy { display: flex; flex-direction: column; line-height: 1.15; }

.brand-copy strong {
  font-family: Cinzel, Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: .08em;
}

.brand-copy small {
  margin-top: 5px;
  color: #8d8d92;
  font-size: .58rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 38px);
}

.site-nav a {
  position: relative;
  padding: 30px 0 27px;
  color: #c5c5c8;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ember-deep), var(--ember));
  transition: .25s ease;
}

.site-nav a:hover, .site-nav a.active { color: white; }
.site-nav a:hover::after, .site-nav a.active::after { left: 0; right: 0; }

.header-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(255,88,17,.75);
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .045em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.header-cta:hover, .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(156,31,0,.28);
}

.header-cta {
  background: linear-gradient(180deg, rgba(70,13,0,.35), rgba(0,0,0,.2));
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #090909;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: #eee;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  min-height: min(760px, calc(100vh - 82px));
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(1,1,1,.99) 0%, rgba(4,4,4,.92) 43%, rgba(4,4,4,.24) 74%),
    radial-gradient(circle at 76% 50%, rgba(109,22,0,.24), transparent 36%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  max-width: 760px;
  padding: 80px 30px 80px max(45px, calc((100vw - var(--max)) / 2 + 20px));
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--ember);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero h1, h2, h3 {
  font-family: Cinzel, Georgia, serif;
  font-weight: 600;
}

.hero h1 {
  margin: 0;
  line-height: .98;
  text-transform: uppercase;
}

.hero h1 span, .hero h1 strong { display: block; }

.hero h1 span {
  color: #ededf0;
  font-size: clamp(2.6rem, 4.8vw, 5.4rem);
  text-shadow: 0 4px 20px rgba(255,255,255,.11);
}

.hero h1 strong {
  margin-top: 15px;
  color: transparent;
  background: linear-gradient(180deg, #ffbd77, #ff631d 54%, #b82005);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(2.2rem, 4vw, 4.65rem);
  letter-spacing: .03em;
}

.ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 510px;
  margin: 30px 0 24px;
  color: var(--ember);
}

.ornament span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--ember));
}
.ornament span:last-child { background: linear-gradient(90deg, var(--ember), transparent); }

.hero-intro {
  max-width: 650px;
  margin: 0;
  color: #c1c1c6;
  font-size: clamp(1rem, 1.35vw, 1.24rem);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }

.button-primary {
  color: white;
  background:
    linear-gradient(180deg, rgba(182,35,4,.82), rgba(88,10,0,.84)),
    #651000;
}

.button-secondary {
  border-color: var(--line-bright);
  background: rgba(12,12,13,.72);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.hero-metrics div { min-width: 0; }
.hero-metrics strong { display: block; color: #f1f1f3; font-family: Cinzel, serif; font-size: 1.45rem; }
.hero-metrics span { display: block; color: #7f7f85; font-size: .72rem; line-height: 1.35; }

.hero-art {
  position: relative;
  min-height: 650px;
}

.hero-art-panel {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-art-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 48%, transparent 0 20%, rgba(0,0,0,.1) 40%, rgba(0,0,0,.9) 88%),
    linear-gradient(90deg, rgba(0,0,0,.65), transparent 35%);
}

.tree-lines {
  position: absolute;
  width: 110%;
  height: 70%;
  opacity: .26;
  background:
    radial-gradient(ellipse at center, rgba(188,188,180,.42), transparent 55%),
    repeating-radial-gradient(ellipse at center, transparent 0 18px, rgba(210,210,205,.04) 19px 20px);
  filter: blur(.3px);
}

.hero-emblem {
  position: relative;
  z-index: 2;
  width: min(73%, 660px);
  max-height: 650px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 15px rgba(255,79,12,.36))
    drop-shadow(0 35px 50px rgba(0,0,0,.85));
  animation: float 5s ease-in-out infinite;
}

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

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  pointer-events: none;
}
.hero-glow-one { width: 340px; height: 340px; right: 16%; top: 18%; background: rgba(155,25,0,.18); }
.hero-glow-two { width: 420px; height: 200px; right: 10%; bottom: 4%; background: rgba(255,79,0,.08); }

.pulse {
  position: absolute;
  z-index: 3;
  top: 48%;
  width: 28%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ember));
}
.pulse::after {
  content: "";
  position: absolute;
  right: 16%;
  top: -18px;
  width: 38px;
  height: 38px;
  border-right: 2px solid var(--ember);
  border-top: 2px solid var(--ember);
  transform: rotate(-45deg) skew(10deg,10deg);
}
.pulse-left { left: 0; }
.pulse-right { right: 0; transform: scaleX(-1); }

.ember-field {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,85,17,.7) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255,145,42,.55) 0 1px, transparent 1.5px);
  background-position: 12% 20%, 80% 55%;
  background-size: 85px 100px, 130px 145px;
  opacity: .18;
  mask-image: linear-gradient(to top, black, transparent 75%);
}

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 78px 0;
}

.section-topline {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 28px;
}

.section h2 {
  margin: 0;
  color: #f0f0f2;
  font-size: clamp(1.7rem, 2.7vw, 3rem);
  line-height: 1.15;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ember);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: 1.32fr .84fr .84fr;
  gap: 18px;
}

.product-card {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  border: 1px solid var(--line-bright);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.045), transparent 45%),
    #0a0a0c;
  box-shadow: var(--shadow);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -70% 10%;
  height: 75%;
  background: radial-gradient(circle, rgba(141,25,0,.19), transparent 65%);
  pointer-events: none;
}

.product-card-health {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  padding: 24px 26px 24px 22px;
}

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

.phone-shell {
  position: relative;
  z-index: 2;
  width: 145px;
  padding: 7px;
  border: 2px solid #56565a;
  border-radius: 24px;
  background: linear-gradient(145deg, #29292d, #030303);
  box-shadow: 0 28px 40px rgba(0,0,0,.7), 0 0 30px rgba(255,62,6,.18);
  transform: rotate(-4deg);
}

.phone-shell img {
  display: block;
  width: 100%;
  max-height: 278px;
  object-fit: cover;
  object-position: top;
  border-radius: 17px;
}

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

.product-logo {
  position: absolute;
  right: -15px;
  bottom: 5px;
  z-index: 3;
  width: 125px;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,.7));
}

.product-content { position: relative; z-index: 4; }

.product-content h3 {
  margin: 14px 0 10px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.product-content p {
  margin: 0;
  color: #b7b7bc;
  font-size: .93rem;
}

.product-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #bcbcc2;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.product-status.live { color: #ffa072; }
.product-status.live i {
  width: 8px; height: 8px; border-radius: 50%; background: var(--ember);
  box-shadow: 0 0 12px var(--ember);
}

.product-status.future { color: #8d8d93; }

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 20px 0;
}

.product-tags span {
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #8e8e94;
  font-size: .66rem;
}

.future-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.future-icon {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin-bottom: 24px;
  border: 1px solid rgba(220,220,225,.28);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(126,32,160,.2), transparent 60%),
    #101012;
  box-shadow: inset 0 0 22px rgba(255,255,255,.04), 0 0 28px rgba(100,37,140,.13);
  color: #be8ef0;
  font-size: 2rem;
}

.future-icon.gear {
  color: #d1d1d4;
  background: radial-gradient(circle, rgba(180,180,190,.14), transparent 60%), #101012;
}

.coming-soon {
  display: inline-block;
  margin-top: 19px;
  color: var(--purple);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.standard-section { padding-top: 28px; }

.standard-panel {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 24px;
  padding: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(84,14,0,.14), transparent 40%),
    #070708;
}

.standard-heading {
  padding: 12px 30px 12px 8px;
  border-right: 1px solid var(--line);
}

.standard-heading p:not(.eyebrow) { color: #9d9da3; }
.standard-heading .button { margin-top: 18px; }

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

.standard-item {
  position: relative;
  padding: 18px 26px;
  border-right: 1px solid var(--line);
}
.standard-item:last-child { border-right: 0; }

.standard-number {
  position: absolute;
  top: 3px;
  right: 14px;
  color: rgba(255,255,255,.06);
  font-family: Cinzel, serif;
  font-size: 2.5rem;
}

.standard-icon {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  border: 1px solid rgba(255,84,14,.55);
  border-radius: 50%;
  color: #ddd;
}

.standard-item h3 { margin: 18px 0 8px; font-size: 1rem; }
.standard-item p { margin: 0; color: #929298; font-size: .8rem; }

.about-news-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 10px;
}

.about-card, .news-card {
  min-height: 390px;
  border: 1px solid var(--line);
  background: #080809;
}

.about-card {
  display: grid;
  grid-template-columns: .55fr 1.1fr;
  align-items: center;
  gap: 28px;
  padding: 38px;
}

.about-emblem {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid rgba(255,74,12,.42);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,72,10,.11), transparent 64%);
}
.about-emblem img { width: 90%; filter: grayscale(.3) drop-shadow(0 14px 25px rgba(0,0,0,.8)); }

.about-card p:not(.eyebrow) { color: #a8a8ae; }

.news-card { padding: 36px; }

.news-heading { margin-bottom: 22px; }

.news-list { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }

.news-list a {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease;
}
.news-list a:last-child { border-bottom: 0; }
.news-list a:hover { background: rgba(255,255,255,.03); }
.news-date { color: var(--ember); font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.news-list strong { display: block; font-family: Cinzel, serif; font-size: .94rem; }
.news-list small { display: block; margin-top: 3px; color: #85858b; line-height: 1.35; }
.news-list b { color: var(--ember); }

.health-detail-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.health-detail-copy p:not(.eyebrow) { color: #aaaab0; }

.feature-list { list-style: none; padding: 0; margin: 28px 0 0; }
.feature-list li { margin: 13px 0; color: #c5c5ca; }
.feature-list span { margin-right: 10px; color: var(--ember); }

.health-detail-visual { position: relative; }

.health-banner {
  display: block;
  width: min(80%, 540px);
  margin: 0 auto -30px;
  position: relative;
  z-index: 2;
}

.dashboard-window {
  overflow: hidden;
  border: 1px solid var(--line-bright);
  border-radius: 14px;
  background: #09090a;
  box-shadow: var(--shadow);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: #111113;
}
.window-bar i { width: 8px; height: 8px; border-radius: 50%; background: #47474c; }
.window-bar i:first-child { background: #a72c12; }
.window-bar span { margin-left: 8px; color: #77777d; font-size: .68rem; }

.dashboard-window img {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: top;
}

.contact-strip {
  width: min(calc(100% - 40px), var(--max));
  margin: 30px auto 80px;
  padding: 34px 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border: 1px solid rgba(255,75,12,.35);
  background:
    linear-gradient(90deg, rgba(92,14,0,.3), transparent 55%),
    #0a0a0b;
}
.contact-strip h2 { margin: 0; }

.site-footer {
  border-top: 1px solid var(--line);
  background: #050505;
  padding: 46px max(30px, calc((100vw - var(--max)) / 2 + 20px)) 18px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.footer-brand img { width: 95px; height: 95px; object-fit: contain; }
.footer-brand strong { font-family: Cinzel, serif; font-size: 1.5rem; }
.footer-brand p { margin: 4px 0 0; color: #85858a; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 30px;
  max-width: 650px;
  margin-left: auto;
  margin-top: -88px;
}
.footer-links div { display: flex; flex-direction: column; gap: 8px; }
.footer-links strong { margin-bottom: 4px; font-family: Cinzel, serif; }
.footer-links a { color: #929298; font-size: .84rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: #67676d;
  font-size: .72rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: auto auto 1fr; }
  .site-nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(5,5,5,.98);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 12px; }
  .menu-toggle { display: block; margin-left: 20px; }
  .header-cta { justify-self: end; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-card-health { grid-column: 1 / -1; }
  .standard-panel { grid-template-columns: 1fr; }
  .standard-heading { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 28px; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 70px 28px 25px; }
  .hero-art { min-height: 520px; }
  .hero-metrics { max-width: 620px; }
  .about-news-section, .health-detail-section { grid-template-columns: 1fr; }
  .footer-links { margin: 30px 0 0; max-width: none; }
}

@media (max-width: 680px) {
  .site-header { min-height: 70px; padding: 0 16px; grid-template-columns: auto 1fr auto; }
  .brand { min-width: 0; }
  .brand img { width: 52px; height: 52px; }
  .brand-copy strong { font-size: .8rem; }
  .brand-copy small { display: none; }
  .header-cta { display: none; }
  .menu-toggle { justify-self: end; }
  .site-nav { top: 70px; }
  .hero { min-height: auto; }
  .hero-copy { padding: 60px 20px 10px; }
  .hero h1 span { font-size: 2.7rem; }
  .hero h1 strong { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-metrics { grid-template-columns: 1fr; gap: 12px; }
  .hero-metrics div { display: flex; gap: 15px; align-items: baseline; }
  .hero-art { min-height: 390px; }
  .hero-emblem { width: 88%; }
  .section { width: min(calc(100% - 28px), var(--max)); padding: 58px 0; }
  .section-topline { align-items: start; flex-direction: column; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card-health { grid-column: auto; grid-template-columns: 1fr; }
  .health-visual { min-height: 310px; }
  .standard-panel { padding: 22px; }
  .standard-grid { grid-template-columns: 1fr; }
  .standard-item { border-right: 0; border-bottom: 1px solid var(--line); padding: 24px 4px; }
  .standard-item:last-child { border-bottom: 0; }
  .about-card { grid-template-columns: 1fr; padding: 26px; }
  .about-emblem { width: 180px; margin: auto; }
  .news-card { padding: 24px; }
  .news-list a { grid-template-columns: 1fr auto; }
  .news-date { grid-column: 1 / -1; }
  .contact-strip { width: calc(100% - 28px); flex-direction: column; align-items: flex-start; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-emblem { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}


/* Version 2.1 — image proportion and Health Tracker spotlight corrections */

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

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

.brand img,
.hero-emblem,
.product-logo,
.about-emblem img,
.footer-brand img,
.health-logo-card img,
.actual-phone-frame img {
  object-fit: contain;
}

.product-logo {
  height: auto;
  max-height: none;
}

.about-emblem {
  min-width: 0;
}

.about-emblem img {
  width: min(88%, 260px);
  height: auto;
  aspect-ratio: auto;
}

.health-detail-section {
  grid-template-columns: minmax(340px, .8fr) minmax(560px, 1.2fr);
  align-items: center;
  gap: clamp(38px, 5vw, 78px);
  min-height: 620px;
  padding-top: 70px;
  padding-bottom: 70px;
}

.health-product-composition {
  position: relative;
  min-height: 470px;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(215px, .72fr);
  align-items: center;
  gap: clamp(18px, 2.5vw, 38px);
  overflow: visible;
}

.health-product-composition::before {
  content: "";
  position: absolute;
  inset: 11% 3% 10%;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 45%, rgba(151, 30, 0, .18), transparent 34%),
    radial-gradient(circle at 72% 58%, rgba(255, 90, 22, .09), transparent 30%);
  filter: blur(16px);
}

.health-logo-card {
  align-self: end;
  transform: translateY(8%);
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 230px;
  padding: 14px;
  border: 1px solid rgba(232, 232, 236, .24);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.008)),
    rgba(7,7,8,.82);
  box-shadow:
    0 24px 48px rgba(0,0,0,.48),
    0 0 24px rgba(255,78,15,.08);
}

.health-logo-card img {
  display: block;
  width: 100%;
  max-width: 430px;
  height: auto;
  max-height: 210px;
}

.actual-phone-frame {
  position: relative;
  align-self: start;
  transform: translateY(-6%);
  width: min(100%, 255px);
  margin-inline: auto;
  padding: 10px 8px 11px;
  border: 2px solid rgba(205,205,210,.52);
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(145deg, #25262a, #030303 54%, #17181b);
  box-shadow:
    0 30px 58px rgba(0,0,0,.62),
    0 0 30px rgba(255,77,12,.12),
    inset 0 1px rgba(255,255,255,.14);
}

.actual-phone-frame::before {
  content: "";
  position: absolute;
  inset: 4px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  pointer-events: none;
}

.actual-phone-speaker {
  position: absolute;
  top: 5px;
  left: 50%;
  z-index: 3;
  width: 46px;
  height: 4px;
  border-radius: 999px;
  background: #020202;
  transform: translateX(-50%);
}

.actual-phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 430px;
  object-position: top center;
  border-radius: 25px;
  background: white;
}

.health-banner,
.dashboard-window,
.health-detail-visual {
  display: none !important;
}

.product-card-health .health-visual {
  overflow: visible;
}

.product-card-health .product-logo {
  position: static;
  width: min(100%, 150px);
  margin: 14px auto 0;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,.65));
}

.product-card-health .phone-shell {
  transform: rotate(-2deg);
}

.product-card-health .phone-shell img {
  object-fit: cover;
  object-position: top center;
}

@media (max-width: 1100px) {
  .health-detail-section {
    grid-template-columns: 1fr;
  }

  .health-product-composition {
    width: min(100%, 760px);
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .health-product-composition {
    min-height: 390px;
    grid-template-columns: minmax(0, 1.08fr) minmax(150px, .72fr);
    gap: 14px;
  }

  .health-logo-card {
    min-height: 180px;
    padding: 10px;
    transform: translateY(10%);
  }

  .health-logo-card img {
    max-height: 160px;
  }

  .actual-phone-frame {
    width: min(100%, 205px);
    transform: translateY(-4%);
  }

  .actual-phone-frame img {
    max-height: 350px;
  }
}

@media (max-width: 500px) {
  .health-product-composition {
    min-height: 330px;
    grid-template-columns: 1.02fr .78fr;
    align-items: center;
  }

  .health-logo-card {
    min-height: 145px;
    border-radius: 14px;
  }

  .health-logo-card img {
    max-height: 125px;
  }

  .actual-phone-frame {
    width: min(100%, 165px);
    border-radius: 26px;
  }

  .actual-phone-frame img {
    max-height: 290px;
    border-radius: 20px;
  }
}


/* Version 2.2 — corrected transparent logos and revised spotlight positioning */

.health-product-composition {
  grid-template-columns: minmax(300px, 1.12fr) minmax(210px, .70fr);
  align-items: start;
  min-height: 500px;
  padding-top: 18px;
}

.health-logo-card {
  align-self: start;
  justify-self: center;
  width: min(100%, 500px);
  min-height: 250px;
  transform: translateY(0);
  margin-top: 0;
  background: transparent;
  border-color: rgba(232, 232, 236, .20);
}

.health-logo-card img {
  width: 100%;
  max-width: 500px;
  max-height: 240px;
  object-fit: contain;
}

.actual-phone-frame {
  align-self: start;
  transform: translateY(10%);
  margin-top: 0;
}

@media (max-width: 1100px) {
  .health-product-composition {
    grid-template-columns: minmax(260px, 1.05fr) minmax(190px, .72fr);
  }
}

@media (max-width: 720px) {
  .health-product-composition {
    grid-template-columns: minmax(0, 1.06fr) minmax(150px, .74fr);
    min-height: 410px;
  }

  .health-logo-card {
    min-height: 190px;
  }

  .health-logo-card img {
    max-height: 180px;
  }

  .actual-phone-frame {
    transform: translateY(10%);
  }
}

@media (max-width: 500px) {
  .health-product-composition {
    min-height: 350px;
  }

  .health-logo-card {
    min-height: 150px;
  }

  .health-logo-card img {
    max-height: 135px;
  }
}


/* Version 2.3 — requested focused corrections */

/* Remove the fixed orange pulse lines from the company hero. */
.hero-art .pulse {
  display: none !important;
}

/* Remove the extra website border/card around the Health Tracker artwork. */
.health-logo-card {
  align-self: center;
  justify-self: center;
  width: min(100%, 500px);
  min-height: 0;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: translateY(10%);
}

/* Keep the logo artwork at its natural proportions. */
.health-logo-card img {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  max-height: 240px;
  object-fit: contain;
}

/* Center the logo and phone on the same vertical midpoint. */
.health-product-composition {
  align-items: center;
}

.actual-phone-frame {
  align-self: center;
  transform: translateY(10%);
}

@media (max-width: 720px) {
  .health-logo-card {
    transform: translateY(10%);
  }

  .actual-phone-frame {
    transform: translateY(10%);
  }
}

@media (max-width: 500px) {
  .health-logo-card {
    transform: translateY(10%);
  }

  .actual-phone-frame {
    transform: translateY(10%);
  }
}
