/* ═══════════════════════════════════════════════
   DESIGN TOKENS — state home page
   (same values as header.css :root block)
═══════════════════════════════════════════════ */
:root {
  --deep:        #0d2d45;
  --mid:         #15476d;
  --main:        #2980b9;
  --light:       #7ec8e3;
  --pale:        #e8f4fb;
  --cream:       #faf8f3;
  --green-main:  #629c51;
  --green-dark:  #22431c;
  --warm-gray:   #6b6b60;
  --text-dark:   #1c1c18;
  --shadow-card: 0 4px 24px rgba(13,45,69,.10);
  --shadow-hover:0 12px 40px rgba(13,45,69,.18);
  --radius:      16px;
  --tr:          .25s cubic-bezier(.4,0,.2,1);
}

body, .page { background: var(--cream); }

/* ─── Mobile helpers ─── */
#content-desktop { display: block; }
#content-mobile  { display: none;  }
.hsc-headline-br { display: none; }
@media screen and (max-width: 668px) {
  #content-desktop { display: none; }
  #content-mobile  { display: block; }
  .content-desktop { display: none !important; }
  .banner_content .btn-white { display: none !important; }

  .hsc-hero { min-height: 480px; }
  .hsc-hero__content {
    padding: 6.0rem 1.5rem 2rem;
    max-width: 100%;
  }
  .hide-desktop { display: none !important; }

  .hsc-hero__badge {
    display: inline-flex;
    padding: 4px 12px;
    margin-bottom: 1rem;
  }
  .hsc-hero__badge-text {
    font-size: 9px;
    letter-spacing: .08em;
  }

  .hsc-hero__headline {
    display: block !important;
    font-size: 2.6rem;
    line-height: 1.1;
    margin-bottom: .75rem;
  }

  .hsc-hero__subtext {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
    color: rgba(255,255,255,.9);
    max-width: 100%;
  }

  .hsc-hero__btns {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
  .hsc-hero-btn {
    justify-content: center;
    padding: 13px 14px;
    font-size: .88rem;
    border-radius: 14px;
    flex: 1;
    white-space: nowrap;
  }
  .hsc-hero-btn i,
  .hsc-hero-btn svg {
    font-size: 13px !important;
    width: 13px !important;
    height: 13px !important;
  }

  .hsc-headline-br { display: block; }

  .hsc-hero__stats   { display: none; }
  .hsc-hero__divider { display: none; }
}

/* ─── Header ─── */
.ttm-btn-bgcolor-skincolor:hover { color: #000 !important; }
.site-main { padding-top: 0 !important; margin-top: 0 !important; }
.banner_slider { margin-top: 0 !important; }
@media (min-width: 1025px) {
  .ttm-header-wrap .site-branding { display: none !important; }
}

/* ─── App strip — canonical definition ─── */
.app-strip { background: var(--deep); padding: .9rem 0; }
.app-strip__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.app-strip__text {
  display: flex; align-items: center; gap: .7rem;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; color: #fff;
}
.app-strip__text i { color: #7ec8e3; font-size: 1.2rem; }
.app-strip__text strong { color: #7ec8e3; }
.app-strip__btns { display: flex; gap: .5rem; }
.app-strip__btns img { height: 34px; opacity: .85; transition: opacity var(--tr); }
.app-strip__btns img:hover { opacity: 1; }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hsc-hero {
  position: relative;
  min-height: 520px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: #0d2d45;
}
.hsc-hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.hsc-hero__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 0;
}
.hsc-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(13,45,69,.55);
}
.hsc-hero__grid {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hsc-hero__content {
  position: relative; z-index: 2;
  text-align: center; padding: 5rem 1rem; max-width: 780px; margin: 0 auto;
  animation: hscHeroReveal 1s cubic-bezier(.22,1,.36,1) both;
}
@keyframes hscHeroReveal {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hsc-hero__badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(13,45,69,.65); border: 1px solid rgba(126,200,227,.7);
  border-radius: 50px; padding: 5px 16px; margin-bottom: 1.5rem;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  animation: hscHeroReveal 1s .1s cubic-bezier(.22,1,.36,1) both;
}
.hsc-hero__badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #7ec8e3; flex-shrink: 0;
  animation: hscPulseDot 2s ease-in-out infinite;
}
@keyframes hscPulseDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(126,200,227,.6); }
  50%      { box-shadow: 0 0 0 5px rgba(126,200,227,0); }
}
.hsc-hero__badge-text {
  font-family: 'DM Sans', sans-serif; font-size: 10.5px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: #b8e4f5;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.hsc-hero__headline {
  font-size: clamp(2rem,4vw,3.2rem); font-weight: 700; color: #fff;
  line-height: 1.2; margin: 0 0 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.7), 0 1px 3px rgba(0,0,0,.9);
  animation: hscHeroReveal 1s .2s cubic-bezier(.22,1,.36,1) both;
}
.hsc-hero__subtext {
  font-family: 'DM Sans', sans-serif; font-size: 1.25rem; font-weight: 400;
  color: rgba(255,255,255,.92); line-height: 1.78; max-width: 600px;
  margin: 0 auto 2.2rem;
  text-shadow: 0 1px 10px rgba(0,0,0,.65);
  animation: hscHeroReveal 1s .3s cubic-bezier(.22,1,.36,1) both;
}
.hsc-hero__subtext strong { color: #fff; font-weight: 500; }
.hsc-hero__btns {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  animation: hscHeroReveal 1s .42s cubic-bezier(.22,1,.36,1) both;
}
.hsc-hero-btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px;
  border-radius: 50px; font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600;
  letter-spacing: .02em; text-decoration: none; cursor: pointer; border: none;
  transition: transform .22s ease, background .22s ease;
}
.hsc-hero-btn:hover { transform: translateY(-3px); text-decoration: none; }
.hsc-hero-btn--give { background: #629c51; color: #fff !important; border: 1px solid #fff; }
.hsc-hero-btn--give:hover { background: #74b561; color: #fff !important; }
.hsc-hero-btn--find { background: #7ec8e3; color: #fff !important; border: 1px solid #fff; }
.hsc-hero-btn--find:hover { background: #9dd5ea; color: #fff !important; }
.hsc-hero__divider {
  display: flex; align-items: center; gap: 14px; margin: 2.5rem auto 0; max-width: 380px;
  animation: hscHeroReveal 1s .58s cubic-bezier(.22,1,.36,1) both;
}
.hsc-hero__divider-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
}
.hsc-hero__stats {
  display: flex; gap: 24px; align-items: center; justify-content: center; margin-top: 1.4rem;
  animation: hscHeroReveal 1s .7s cubic-bezier(.22,1,.36,1) both;
}
.hsc-stat__num {
  display: block; font-family: 'Playfair Display', serif; font-size: 1.55rem; font-weight: 700;
  color: #fff; line-height: 1; text-shadow: 0 2px 10px rgba(0,0,0,.6);
}
.hsc-stat__label {
  display: block; font-family: 'DM Sans', sans-serif; font-size: .7rem; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 5px;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.hsc-stat-sep { width: 1px; height: 30px; background: rgba(255,255,255,.14); }
.hsc-scroll-hint {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 5px; z-index: 3;
  animation: hscHeroReveal 1.2s 1.1s cubic-bezier(.22,1,.36,1) both;
}
.hsc-scroll-hint__mouse {
  width: 20px; height: 32px; border: 1.5px solid rgba(255,255,255,.22);
  border-radius: 10px; display: flex; align-items: flex-start; justify-content: center; padding-top: 5px;
}
.hsc-scroll-hint__wheel {
  width: 3px; height: 7px; background: rgba(255,255,255,.45); border-radius: 2px;
  animation: hscScrollWheel 1.6s ease-in-out infinite;
}
@keyframes hscScrollWheel {
  0%  { opacity:1; transform:translateY(0); }
  80% { opacity:0; transform:translateY(6px); }
  100%{ opacity:0; transform:translateY(0); }
}
@media (max-width:1024px) {
  .banner_slider.hsc-hero { margin-top: -10px !important; }
}
@media (max-width:1919px) {
  .banner_shape img[src="/assets/images/app0072.png"] { display: none !important; }
}

/* ═══════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════ */
.hsc-about-v2 { font-family: 'DM Sans', sans-serif; background: #fff; overflow: hidden; }

.hsc-intro-wrap {
  position: relative; padding: 3rem 2rem 2.5rem; text-align: center;
  overflow: hidden; max-width: 1100px; margin: 0 auto;
}
.hsc-intro-wrap::before {
  content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(41,128,185,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hsc-intro-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(41,128,185,.25); border-radius: 50px; padding: 5px 16px 5px 12px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #15476d; margin-bottom: 1.25rem;
  animation: hscFadeUp .7s both;
}
.hsc-intro-badge-pip {
  width: 6px; height: 6px; border-radius: 50%; background: #629c51;
  animation: hscPipPulse 2s ease-in-out infinite;
}
@keyframes hscPipPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(98,156,81,.5); }
  50%      { box-shadow: 0 0 0 4px rgba(98,156,81,0); }
}
.hsc-intro-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem,4vw,2.8rem); font-weight: 700; color: #0d2d45;
  line-height: 1.15; margin-bottom: 1rem;
  animation: hscFadeUp .7s .1s both;
}
.hsc-intro-title em { font-style: italic; color: #2980b9; }
.hsc-intro-lead {
  font-family: 'DM Sans', sans-serif; font-size: 1.05rem; color: #8a8a7e;
  line-height: 1.8; max-width: 640px; margin: 0 auto 2rem;
  animation: hscFadeUp .7s .2s both;
}
.hsc-intro-lead strong { color: #0d2d45; font-weight: 600; }
.hsc-intro-lead em { color: #2980b9; }

/* ── Two-column: What We Do + Video ── */
.hsc-explainer-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  max-width: 1100px;
  margin: 0 auto 0;
  animation: hscFadeUp .7s .25s both;
}
@media (max-width: 640px) {
  .hsc-explainer-row {
    grid-template-columns: 1fr;
  }
  .hsc-yt-facade   { order: -1; min-height: 210px; }
  .hsc-explainer-left { order: 1; }

  .hsc-card__cta {
    width: 100%;
    padding: 13px 12px;
    font-size: .85rem;
    text-align: center;
    border-radius: 12px;
    white-space: nowrap;
  }
  .hsc-card__cta-row {
    flex-direction: column !important;
    gap: 8px !important;
  }
}
.hsc-explainer-left {
  background: linear-gradient(160deg, #22431c 0%, #0d2d45 100%);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}
.hsc-explainer-left__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin: 0;
}
.hsc-explainer-left__heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}
.hsc-explainer-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.hsc-explainer-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: .97rem;
  color: rgba(255,255,255,.82);
  line-height: 1.5;
}
.hsc-bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.hsc-bullet-dot--green { background: #a8e098; }
.hsc-bullet-dot--blue  { background: #7ec8e3; }

/* ── YouTube click-to-play facade ── */
.hsc-yt-facade {
  position: relative; cursor: pointer;
  background: #22431c;
  display: flex; align-items: center; justify-content: center;
  min-height: 260px;
}
.hsc-yt-facade__thumb {
  width: 100%; height: 100%;
  background: #22431c;
  object-fit: cover; display: block;
  position: absolute; inset: 0;
  transition: opacity .3s;
}
.hsc-yt-facade:hover .hsc-yt-facade__thumb { opacity: .75; }
.hsc-yt-facade__btn {
  position: relative; z-index: 2;
  width: 64px; height: 64px;
  background: rgba(255,0,0,.9); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
  transition: transform .22s ease, background .22s ease;
}
.hsc-yt-facade:hover .hsc-yt-facade__btn { transform: scale(1.1); background: #f00; }
.hsc-yt-facade__btn svg { margin-left: 5px; }

.hsc-mission-statement {
  max-width: 1100px; margin: 0 auto; text-align: left;
  border-left: 3px solid rgba(13,45,69,.18); padding: .25rem 0 .25rem .25rem;
  animation: hscFadeUp .7s .3s both;
}
.hsc-mission-statement p {
  font-family: 'Playfair Display', serif; font-size: clamp(.85rem,2vw,1.05rem);
  font-weight: 600; color: #0d2d45; line-height: 1.8; margin: 0;
}
.hsc-ms-give { color: #1a5c12 !important; }
.hsc-ms-find { color: #0e3d6e !important; }

.hsc-about-divider {
  display: flex; align-items: center; gap: 1rem;
  max-width: 1100px; margin: 2rem auto 0; padding: 0 2rem;
}
.hsc-about-divider-line { flex: 1; height: 1px; background: rgba(13,45,69,.1); }
.hsc-about-divider-star { width: 12px; height: 12px; background: #629c51; border-radius: 50%; }

/* ── Cards ── */
.hsc-cards-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
  padding: 0.75rem 2rem 3.5rem; max-width: 1100px; margin: 0 auto;
}
@media (max-width: 580px) { .hsc-cards-wrap { grid-template-columns: 1fr; } }

.hsc-card {
  border-radius: 18px; padding: 2rem 1.75rem 1.75rem;
  position: relative; overflow: hidden;
  animation: hscFadeUp .7s both; display: flex; flex-direction: column;
}
.hsc-card--give { background: #22431c; animation-delay: .35s; }
.hsc-card--find { background: #0d2d45; animation-delay: .45s; }
.hsc-card::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 220px; height: 220px; border-radius: 50%; pointer-events: none;
}
.hsc-card--give::before { background: radial-gradient(circle, rgba(98,156,81,.18) 0%, transparent 70%); }
.hsc-card--find::before { background: radial-gradient(circle, rgba(41,128,185,.2) 0%, transparent 70%); }

.hsc-card__tag {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  border-radius: 50px; padding: 4px 12px; font-size: 9.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.hsc-card--give .hsc-card__tag { background: rgba(98,156,81,.2); color: #a8e098; }
.hsc-card--find .hsc-card__tag { background: rgba(41,128,185,.2); color: #7ec8e3; }

.hsc-card__header { display: flex; align-items: center; gap: 14px; margin-bottom: 1rem; }
.hsc-card__icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hsc-card--give .hsc-card__icon-wrap { background: rgba(98,156,81,.22); }
.hsc-card--find .hsc-card__icon-wrap { background: rgba(41,128,185,.22); }
.hsc-card__heading {
  font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700;
  line-height: 1.15; margin: 0;
}
.hsc-card--give .hsc-card__heading { color: #a8e098; }
.hsc-card--find .hsc-card__heading { color: #7ec8e3; }
.hsc-card__body {
  font-size: .92rem; color: rgba(255,255,255,.62); line-height: 1.75; margin-bottom: 1.4rem;
}
.hsc-card__list {
  list-style: none !important; padding: 0 !important; margin: 0 0 1.75rem 0 !important;
  display: flex; flex-direction: column; gap: 9px;
}
.hsc-card__item {
  list-style: none !important; display: flex; align-items: flex-start; gap: 10px;
  font-size: .87rem; color: rgba(255,255,255,.72); line-height: 1.5; padding-left: 0 !important;
}
.hsc-card__item::before { display: none !important; content: none !important; }
.hsc-card__dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.hsc-card--give .hsc-card__dot { background: #a8e098; }
.hsc-card--find .hsc-card__dot { background: #7ec8e3; }
.hsc-card__cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  align-self: flex-start; padding: 11px 22px; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-size: .93rem; font-weight: 600;
  letter-spacing: .02em; color: #fff; text-decoration: none; cursor: pointer; border: none;
  transition: transform .2s ease, opacity .2s; position: relative; z-index: 1; margin-top: auto;
}
.hsc-card__cta:hover { transform: translateY(-2px); opacity: .9; text-decoration: none; color: #fff; }
.hsc-card--give .hsc-card__cta { background: #629c51; }
.hsc-card--find .hsc-card__cta { background: #2980b9; }

@keyframes hscFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Quote band ── */
.hsc-quote-band { padding: 0 2rem 1rem; margin-top: -1.75rem; display: flex; justify-content: center; background: #fff; }
.hsc-quote-band__card {
  background: #0d2d45; border-radius: 20px; padding: 2.5rem 3rem;
  max-width: 1045px; width: 100%; position: relative; overflow: hidden;
  border: 1px solid rgba(126,200,227,.15);
}
.hsc-quote-band__card::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hsc-quote-band__card::after {
  content: ''; position: absolute; bottom: -50px; right: -50px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(41,128,185,.12); pointer-events: none;
}
.hsc-quote-band__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center;
}
.hsc-quote-band__quote {
  font-family: 'Playfair Display', serif; font-size: clamp(1rem,2vw,1.35rem);
  font-weight: 700; color: #fff; line-height: 1.6; max-width: 825px; margin: 0;
}
@media (max-width: 520px) {
  .hsc-quote-band__card { padding: 2rem 1.5rem; border-radius: 16px; }
}

/* ── CTA footer band ── */
.hsc-cta-banner { position: relative; background: var(--deep); padding: 3.5rem 2rem; overflow: hidden; }
.hsc-cta-banner__grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── Responsive show/hide ── */
@media (max-width: 668px) {
  .hide-mobile { display: none; }
}
@media (min-width: 669px) {
  .hide-desktop { display: none; }
}
