/* =========================================================================
   MY FAVORITE SOCCER ACADEMY — 마이페이보릿 축구아카데미
   Visual identity: deep navy pitch + champion gold + grass green,
   warm ivory canvas, jersey/condensed display type, hand-drawn pitch lines.
   Editorial / matchday-program feel — intentionally not a stock template.
   ========================================================================= */

@font-face {
  font-family: "Pretendard";
  font-weight: 45 920;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/npm/pretendard@1.3.9/dist/web/variable/woff2/PretendardVariable.woff2") format("woff2-variations");
}

:root {
  --navy:    #0c2a54;   /* primary field            */
  --navy-2:  #08203f;   /* deeper                   */
  --navy-3:  #13386e;   /* royal accent             */
  --green:   #1b7a45;   /* pitch grass              */
  --green-d: #12592f;
  --gold:    #d7a93a;   /* champion gold            */
  --gold-hi: #f0cd6c;
  --gold-d:  #a87c1f;
  --ivory:   #f5f2ea;   /* warm canvas              */
  --ivory-2: #ece7da;
  --ink:     #14130f;   /* warm near-black text     */
  --ink-soft:#4a4740;
  --line:    #d9d3c4;   /* hairline on ivory        */
  --line-dk: rgba(245,242,234,.16);

  --maxw: 1220px;
  --gut: clamp(20px, 5vw, 64px);
  --r: 6px;                /* 구조 요소 곡률 결정값 (카드·사진·영상) */

  --serif: "Pretendard", system-ui, sans-serif;
  --disp:  "Anton", "Pretendard", system-ui, sans-serif;
  --body:  "Pretendard", system-ui, -apple-system, sans-serif;

  --shadow: 0 22px 50px -28px rgba(8,32,63,.55);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 17px;
  letter-spacing: -.01em;
  overflow-x: hidden;
  /* 한글은 어절(띄어쓰기) 단위로만 줄바꿈 — 글자 중간에서 깨지지 않게 */
  word-break: keep-all;
  overflow-wrap: break-word;
}
img { max-width: 100%; display: block; }

/* 줄바꿈 자연스럽게: 헤딩은 줄 길이 균형, 본문은 외톨이 단어 방지 (지원 안 하는 브라우저는 무시) */
h1, h2, h3, .lead, #creed-title, .creed-lead, .sec-head h2 { text-wrap: balance; }
p, li, figcaption, .price-note, .faq-a { text-wrap: pretty; }

/* PC 전용 줄바꿈: 좁은 화면에서는 강제 줄바꿈을 풀어 자연 줄바꿈에 맡김 */
@media (max-width: 700px) { br.brk { display: none; } }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: var(--navy); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }

/* offset anchor jumps for the sticky header */
section[id] { scroll-margin-top: 86px; }
@media (max-width: 760px) { section[id] { scroll-margin-top: 70px; } }

/* ---- display helpers ---------------------------------------------------- */
.disp {
  font-family: var(--disp);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: .92;
  text-transform: uppercase;
}
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 800; font-size: 13px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold-d);
}
.kicker::before {
  content: ""; width: 34px; height: 2px; background: var(--gold);
}
.kicker.on-dark { color: var(--gold-hi); }
.kicker .no { font-family: var(--disp); font-size: 15px; color: var(--green); letter-spacing: 0; }

.eyebrow-num {
  font-family: var(--disp); font-size: clamp(13px,1vw,15px);
  color: var(--gold-d); letter-spacing: .04em;
}

/* ============================ HEADER ==================================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(12,42,84,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dk);
  transition: background .3s, padding .3s;
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 76px;
}
.brand img { height: 42px; width: auto; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  color: rgba(245,242,234,.82); font-weight: 600; font-size: 15px;
  position: relative; padding: 6px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); transition: width .28s ease;
}
.nav a:hover { color: #fff; }
.nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 14px; }
.ig-link {
  display: grid; place-items: center; width: 40px; height: 40px;
  border: 1px solid var(--line-dk); border-radius: 50%; color: #fff;
  transition: border-color .25s, background .25s;
}
.ig-link:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.ig-link svg { width: 19px; height: 19px; }

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 800; font-size: 15px; letter-spacing: .01em;
  padding: 13px 24px; border-radius: 2px; cursor: pointer; border: 0;
  transition: transform .18s ease, box-shadow .25s, background .25s, color .25s;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-hi); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(245,242,234,.4); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-hi); }
.btn-navy { background: var(--navy); color: var(--ivory); }
.btn-navy:hover { background: var(--navy-3); transform: translateY(-2px); }
.btn-lg { padding: 17px 32px; font-size: 16px; }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 26px; height: 2px; background: #fff; margin: 5px 0; transition: .3s; }

/* ============================ HERO ===================================== */
.hero {
  position: relative; color: var(--ivory); overflow: hidden;
  min-height: clamp(560px, 92vh, 880px);
  display: flex; align-items: center;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 70%);
}
/* full-bleed muted training-video background (desktop) / poster (mobile) */
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--navy-2); }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 28%; }
.hero-bg iframe {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 100vw; height: 56.25vw;            /* 16:9 from width  */
  min-width: 177.78vh; min-height: 100%;    /* 16:9 from height -> cover */
  border: 0; pointer-events: none;
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(8,32,63,.95) 0%, rgba(8,32,63,.82) 36%, rgba(8,32,63,.52) 72%, rgba(8,32,63,.34) 100%),
    linear-gradient(0deg, rgba(8,32,63,.9) 0%, transparent 46%),
    radial-gradient(120% 80% at 82% 0%, rgba(27,122,69,.3), transparent 55%);
}
.hero .wrap {
  position: relative; z-index: 2; width: 100%;
  padding-block: clamp(96px, 13vh, 160px);
}
.hero-text { max-width: 720px; }
.hero-scroll {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 3;
  width: 26px; height: 42px; border: 2px solid rgba(245,242,234,.45); border-radius: 16px;
  display: grid; justify-items: center; padding-top: 7px;
}
.hero-scroll span { width: 4px; height: 9px; border-radius: 4px; background: var(--gold-hi); animation: scrolldot 1.6s ease-in-out infinite; }
@keyframes scrolldot { 0%,100%{ transform: translateY(0); opacity: 1; } 50%{ transform: translateY(8px); opacity: .25; } }
.hero h1 {
  position: relative;
  font-family: var(--disp); font-weight: 400; text-transform: none;
  font-size: clamp(40px, 6.4vw, 92px); line-height: .98; margin: 22px 0 0;
  letter-spacing: -.02em;
}
.hero h1 .grass { color: var(--gold-hi); }
.hero h1 .out {
  color: transparent; -webkit-text-stroke: 1.6px rgba(245,242,234,.6);
}
/* 큰 헤드라인 뒤에 음각으로 겹치는 아웃라인 워드 (에디토리얼 깊이감) */
.hero h1 .h1-back {
  position: absolute; top: -.42em; left: -.05em; z-index: -1;
  font-size: 1.4em; line-height: .8; letter-spacing: -.03em;
  -webkit-text-stroke: 1.5px rgba(245,242,234,.13);
  pointer-events: none; user-select: none; white-space: nowrap;
}
@media (max-width: 760px) { .hero h1 .h1-back { font-size: 1.15em; top: -.34em; opacity: .8; } }
.hero-sub {
  margin: 26px 0 0; max-width: 30em; font-size: clamp(16px,1.3vw,19px);
  color: rgba(245,242,234,.82); line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.hero-figs {
  display: flex; gap: clamp(20px,3vw,46px); margin-top: 48px;
  border-top: 1px solid var(--line-dk); padding-top: 26px;
}
.fig .n { font-family: var(--disp); font-size: clamp(34px,4vw,52px); color: var(--gold-hi); line-height: 1; }
.fig .n small { font-size: .5em; color: var(--ivory); margin-left: 2px; }
.fig .l { font-size: 13px; color: rgba(245,242,234,.7); margin-top: 8px; letter-spacing: .02em; }

/* scrolling marquee strip */
.marquee {
  background: var(--gold); color: var(--navy); overflow: hidden;
  border-block: 2px solid var(--navy);
}
.marquee .track {
  display: flex; gap: 0; white-space: nowrap; width: max-content;
  animation: slide 28s linear infinite;
}
.marquee span {
  font-family: var(--disp); font-size: 18px; letter-spacing: .04em;
  padding: 11px 26px; display: inline-flex; align-items: center;
}
.marquee span::after { content: "●"; color: var(--green); margin-left: 26px; font-size: 9px; vertical-align: middle; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ============================ SECTION SHELL ============================ */
.section { padding-block: clamp(64px, 9vw, 128px); position: relative; }
.section.dark { background: var(--navy); color: var(--ivory); }
.section.green { background: linear-gradient(160deg,var(--green) 0%, var(--green-d) 100%); color: var(--ivory); }
.section-head { max-width: 760px; margin-bottom: clamp(36px,5vw,64px); }
.section-head h2 {
  font-family: var(--disp); font-weight: 400; text-transform: none;
  font-size: clamp(30px,4.4vw,58px); line-height: 1.02; margin: 16px 0 0;
  letter-spacing: -.01em;
}
.section.dark .section-head h2, .section.green .section-head h2 { color: #fff; }
.section-head p { margin: 20px 0 0; color: var(--ink-soft); font-size: clamp(16px,1.2vw,18px); max-width: 60ch; }
.section.dark .section-head p, .section.green .section-head p { color: rgba(245,242,234,.82); }

/* ============================ ABOUT ==================================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,72px); align-items: center; }
.about-copy p + p { margin-top: 18px; }
.about-copy .lead { font-size: clamp(20px,2vw,27px); font-weight: 700; line-height: 1.5; color: var(--navy); letter-spacing: -.02em; }
.about-copy .lead em { font-style: normal; color: var(--green); position: relative; }
.about-copy .lead em::after { content:""; position:absolute; left:0; right:0; bottom:2px; height:8px; background:var(--gold); opacity:.35; z-index:-1; }
.about-points { margin-top: 30px; display: grid; gap: 2px; border-top: 1px solid var(--line); }
.about-points .row {
  display: grid; grid-template-columns: 46px 1fr; gap: 18px; align-items: baseline;
  padding: 20px 4px; border-bottom: 1px solid var(--line);
}
.about-points .row .k { font-family: var(--disp); font-size: 22px; color: var(--green); }
.about-points .row .t b { display: block; font-size: 18px; color: var(--navy); margin-bottom: 4px; }
.about-points .row .t span { color: var(--ink-soft); font-size: 15.5px; }

.about-art {
  position: relative; aspect-ratio: 4/5; border-radius: 3px; overflow: hidden;
  background: var(--navy); box-shadow: var(--shadow);
  display: grid; place-items: center;
}
.about-art .crest { width: 58%; filter: drop-shadow(0 18px 30px rgba(0,0,0,.4)); position: relative; z-index: 2; }
.about-art .pl { position: absolute; inset: 0; opacity: .28; }
.about-art .tag { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px; z-index: 2;
  background: linear-gradient(transparent, rgba(8,32,63,.85)); color: var(--ivory); }
.about-art .tag b { font-family: var(--disp); font-size: 20px; color: var(--gold-hi); display:block; }

/* ============================ CREED · 교육 이념 ======================= */
.creed {
  position: relative; overflow: hidden; text-align: center;
  padding-block: clamp(78px, 11vw, 152px);
  color: var(--ivory);
  background:
    radial-gradient(128% 86% at 50% -12%, rgba(27,122,69,.55), transparent 60%),
    linear-gradient(168deg, var(--green-d) 0%, #0e3d22 52%, var(--navy-2) 128%);
}
.creed .pl { position: absolute; inset: 0; opacity: .12; pointer-events: none; }
.creed .crest-wm {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: min(560px, 80%); opacity: .07; pointer-events: none; z-index: 0;
}
.creed .wrap { position: relative; z-index: 2; }
.creed-inner { max-width: 880px; margin: 0 auto; }
.creed-kicker { justify-content: center; }

.creed-quote { margin: 0; position: relative; }
.creed-quote .mark {
  display: block; font-family: var(--disp); color: var(--gold-hi);
  font-size: clamp(78px, 12vw, 168px); line-height: .42; height: .4em;
  opacity: .92; margin-top: 30px;
}
.creed-quote p {
  margin: 6px 0 0; font-weight: 800; color: #fff;
  font-size: clamp(34px, 6.6vw, 86px); line-height: 1.06; letter-spacing: -.035em;
}
.creed-quote em {
  font-style: normal; color: var(--gold-hi); position: relative; white-space: nowrap;
}
.creed-quote em::after {
  content: ""; position: absolute; left: -3px; right: -3px; bottom: .08em; height: .15em;
  background: var(--gold); opacity: .42; z-index: -1;
}
.creed-rule { display: flex; justify-content: center; margin-top: 34px; }
.creed-rule span { position: relative; width: 72px; height: 3px; background: var(--gold); }
.creed-rule span::before, .creed-rule span::after {
  content: ""; position: absolute; top: 50%; width: 6px; height: 6px;
  background: var(--gold-hi); transform: translateY(-50%) rotate(45deg);
}
.creed-rule span::before { left: -17px; }
.creed-rule span::after  { right: -17px; }

.creed-lead {
  margin: 26px auto 0; max-width: 42ch;
  font-size: clamp(16px, 1.5vw, 20px); line-height: 1.72; color: rgba(245,242,234,.86);
}

.creed-pledges {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 3vw, 44px);
  margin-top: clamp(42px, 5vw, 64px); text-align: left;
}
.pledge { padding-top: 20px; border-top: 1px solid rgba(245,242,234,.22); }
.pledge .pn { font-family: var(--disp); font-size: 21px; color: var(--gold-hi); letter-spacing: .04em; }
.pledge b { display: block; margin: 12px 0 7px; font-size: 18px; font-weight: 800; color: #fff; }
.pledge span { display: block; font-size: 14.5px; line-height: 1.6; color: rgba(245,242,234,.74); }

/* ============================ COACH (이희준) =========================== */
.coach { background: var(--navy); color: var(--ivory); position: relative; overflow: hidden; }
.coach .pl { position: absolute; inset: 0; opacity: .08; pointer-events: none; }
.coach .wrap { position: relative; z-index: 2; }
.coach-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(28px,5vw,70px); align-items: start; }
.coach-photo { position: relative; }
.coach-photo .pic {
  border-radius: 4px; overflow: hidden; position: relative;
  border: 1px solid var(--line-dk); box-shadow: var(--shadow);
  background: linear-gradient(180deg,#d3d0d4,#e9e6e2);
}
.coach-photo .pic img { width: 100%; display: block; }
.coach-photo .nameplate {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  background: rgba(8,32,63,.82); backdrop-filter: blur(6px);
  border-left: 3px solid var(--gold); padding: 14px 18px;
}
.coach-photo .nameplate .nm { font-family: var(--disp); font-size: 30px; color: #fff; line-height: 1; }
.coach-photo .nameplate .nm small { font-family: var(--body); font-size: 14px; color: var(--gold-hi); margin-left: 10px; font-weight: 700; }
.coach-photo .nameplate .en { font-size: 11px; letter-spacing: .14em; color: rgba(245,242,234,.6); margin-top: 7px; text-transform: uppercase; }

.coach-now { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 8px 0 30px; }
.coach-now li {
  list-style: none; display: flex; gap: 10px; align-items: baseline;
  background: rgba(245,242,234,.05); border: 1px solid var(--line-dk);
  padding: 14px 16px; border-radius: 3px; font-size: 15px;
}
.coach-now li b { color: var(--gold-hi); font-weight: 800; }

.honors { border-top: 1px solid var(--line-dk); padding-top: 26px; }
.honors h3 { font-family: var(--disp); font-size: 22px; color: #fff; margin: 0 0 18px; letter-spacing: .02em; }
.honors h3 .gold { color: var(--gold-hi); }
.honors-list { columns: 2; column-gap: 40px; margin: 0; padding: 0; }
.honors-list li {
  list-style: none; break-inside: avoid; position: relative;
  padding: 9px 0 9px 24px; font-size: 15.5px; color: rgba(245,242,234,.9);
  border-bottom: 1px dashed var(--line-dk); line-height: 1.5;
}
.honors-list li::before {
  content: ""; position: absolute; left: 0; top: 16px; width: 9px; height: 9px;
  background: var(--gold); transform: rotate(45deg);
}
.honors-list li .hl { color: #fff; font-weight: 700; }
.honors-foot { margin-top: 18px; font-size: 14px; color: rgba(245,242,234,.6); }
.honors-foot b { color: var(--gold-hi); }

/* ============================ LESSONS ================================== */
.lessons-list { border-top: 2px solid var(--ink); }
.lesson {
  display: grid; grid-template-columns: 64px 1fr auto; gap: clamp(16px,3vw,40px);
  align-items: center; padding: clamp(22px,3vw,34px) 6px;
  border-bottom: 1px solid var(--line); position: relative;
  transition: background .25s, padding-left .25s;
}
.lesson:hover { background: #fff; padding-left: 18px; }
.lesson .no { font-family: var(--disp); font-size: clamp(26px,3vw,40px); color: var(--ivory-2); transition: color .25s; -webkit-text-stroke: 1px var(--line); }
.lesson:hover .no { color: var(--green); -webkit-text-stroke: 0; }
.lesson .main h3 { margin: 0; font-size: clamp(20px,2vw,26px); color: var(--navy); letter-spacing: -.02em; }
.lesson .main p { margin: 7px 0 0; color: var(--ink-soft); font-size: 15.5px; max-width: 52ch; }
.lesson .tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.lesson .tags span { font-size: 12px; font-weight: 700; color: var(--green-d); background: rgba(27,122,69,.1); padding: 4px 10px; border-radius: 100px; }
.lesson .price { text-align: right; white-space: nowrap; }
.lesson .price .from { display:block; font-size: 12px; color: var(--ink-soft); letter-spacing: .08em; }
.lesson .price .amt { font-family: var(--disp); font-size: clamp(24px,2.6vw,34px); color: var(--navy); }
.lesson .price .amt small { font-size: .42em; font-family: var(--body); font-weight: 700; color: var(--ink-soft); }

/* ============================ PRICING ================================== */
.price-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px,3vw,32px); }
.price-card {
  background: var(--ivory); color: var(--ink); border-radius: 4px; overflow: hidden;
  border: 1px solid var(--line); display: flex; flex-direction: column;
}
.price-card.elite { background: var(--navy); color: var(--ivory); border-color: var(--navy-3); position: relative; }
.price-card .ph { padding: 26px clamp(22px,3vw,34px); border-bottom: 1px solid var(--line); }
.price-card.elite .ph { border-color: var(--line-dk); }
.price-card .ph .tier { font-family: var(--disp); font-size: 27px; color: var(--navy); letter-spacing: .01em; }
.price-card.elite .ph .tier { color: #fff; }
.price-card .ph .desc { font-size: 14px; color: var(--ink-soft); margin-top: 6px; }
.price-card.elite .ph .desc { color: rgba(245,242,234,.7); }
.price-card.elite .flag {
  position: absolute; top: 18px; right: -34px; transform: rotate(45deg);
  background: var(--gold); color: var(--navy); font-weight: 900; font-size: 12px;
  padding: 5px 40px; letter-spacing: .08em;
}
.price-rows { list-style: none; margin: 0; padding: 8px clamp(22px,3vw,34px) 14px; flex: 1; }
.price-rows li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.price-card.elite .price-rows li { border-color: var(--line-dk); }
.price-rows li:last-child { border-bottom: 0; }
.price-rows .lbl { font-weight: 600; font-size: 15.5px; }
.price-rows .lbl small { display: block; font-weight: 500; font-size: 12.5px; color: var(--ink-soft); margin-top: 2px; }
.price-card.elite .price-rows .lbl small { color: rgba(245,242,234,.6); }
.price-rows .val { font-family: var(--disp); font-size: 23px; color: var(--green); white-space: nowrap; }
.price-card.elite .price-rows .val { color: var(--gold-hi); }
.price-rows .val small { font-family: var(--body); font-size: 13px; font-weight: 700; color: inherit; opacity: .8; }
.price-note {
  margin-top: 26px; font-size: 14px; color: var(--ink-soft);
  display: flex; gap: 10px; align-items: center; justify-content: center; flex-wrap: wrap;
}
.price-note b { color: var(--navy); }

/* ============================ FILMS (youtube) ========================= */
.films { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px,3vw,28px); }
.film {
  position: relative; aspect-ratio: 16/9; border-radius: 4px; overflow: hidden;
  cursor: pointer; background: #000; box-shadow: var(--shadow);
}
.film img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s, filter .4s; filter: saturate(.92); }
.film:hover img { transform: scale(1.05); filter: saturate(1.05); }
.film::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(transparent 40%, rgba(8,32,63,.7));
}
.film .play {
  position: absolute; inset: 0; display: grid; place-items: center; z-index: 2;
}
.film .play span {
  width: 74px; height: 74px; border-radius: 50%; background: rgba(215,169,58,.95);
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(0,0,0,.4);
  transition: transform .25s, background .25s;
}
.film:hover .play span { transform: scale(1.08); background: var(--gold-hi); }
.film .play svg { width: 26px; height: 26px; fill: var(--navy); margin-left: 4px; }
.film .cap { position: absolute; left: 18px; bottom: 16px; z-index: 2; color: #fff; font-weight: 800; font-size: 17px; }
.film .cap small { display: block; font-weight: 600; font-size: 12px; color: var(--gold-hi); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 4px; }
.film iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ============================ INSTAGRAM ============================== */
.ig-band { text-align: center; }
.ig-band .glyph {
  width: 74px; height: 74px; margin: 0 auto 22px; border-radius: 22px;
  background: linear-gradient(135deg, var(--gold), var(--green));
  display: grid; place-items: center; box-shadow: var(--shadow);
}
.ig-band .glyph svg { width: 38px; height: 38px; fill: #fff; }
.ig-band h2 { font-family: var(--disp); font-size: clamp(28px,3.4vw,46px); color: #fff; margin: 0 0 8px; }
.ig-band .handle { font-size: 19px; color: var(--gold-hi); font-weight: 700; }
.ig-band p { color: rgba(245,242,234,.78); max-width: 44ch; margin: 16px auto 30px; }

/* ============================ CONTACT / CTA ========================== */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px,5vw,64px); align-items: center; }
.contact-copy h2 { font-family: var(--disp); font-size: clamp(32px,4.6vw,62px); color: var(--navy); line-height: 1; margin: 14px 0 0; }
.contact-copy p { color: var(--ink-soft); margin-top: 18px; font-size: 17px; max-width: 44ch; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.contact-card {
  background: var(--navy); color: var(--ivory); border-radius: 4px; padding: clamp(26px,3vw,40px);
  position: relative; overflow: hidden; box-shadow: var(--shadow);
}
.contact-card .pl { position: absolute; inset: 0; opacity: .14; }
.contact-card .inner { position: relative; z-index: 2; }
.contact-card dl { margin: 0; display: grid; gap: 4px; }
.contact-card .item { padding: 16px 0; border-bottom: 1px solid var(--line-dk); }
.contact-card .item:last-child { border-bottom: 0; }
.contact-card dt { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-hi); }
.contact-card dd { margin: 5px 0 0; font-size: 18px; font-weight: 700; color: #fff; }
.contact-card dd a:hover { color: var(--gold-hi); }
.contact-card dd small { display:block; font-weight:500; font-size:13px; color:rgba(245,242,234,.6); margin-top:3px; }

/* ============================ FOOTER ================================= */
.site-footer { background: var(--navy-2); color: rgba(245,242,234,.7); padding-block: 54px 36px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; }
.footer-top img { height: 50px; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a { font-size: 14px; color: rgba(245,242,234,.75); }
.footer-nav a:hover { color: var(--gold-hi); }
.footer-bot { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line-dk); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(245,242,234,.5); }

/* ============================ HERO bg video ========================= */
.hero-bg video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ============================ STAFF (코칭 스태프) ===================== */
.staff { margin-top: clamp(36px,5vw,60px); border-top: 1px solid var(--line-dk); padding-top: clamp(28px,4vw,44px); }
.staff-label { margin-bottom: 22px; }
.staff-card {
  display: grid; grid-template-columns: 172px 1fr; gap: clamp(20px,3vw,40px); align-items: center;
  background: rgba(245,242,234,.04); border: 1px solid var(--line-dk); border-left: 3px solid var(--gold);
  padding: clamp(18px,2.4vw,28px);
}
.staff-photo { aspect-ratio: 1/1.16; overflow: hidden; border: 1px solid var(--line-dk); background: linear-gradient(180deg,#d3d0d4,#e9e6e2); }
.staff-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.staff-name { font-family: var(--disp); font-size: clamp(24px,2.6vw,32px); color: #fff; line-height: 1; }
.staff-name small { font-family: var(--body); font-size: 14px; font-weight: 700; color: var(--gold-hi); margin-left: 10px; }
.staff-role { margin: 10px 0 16px; color: rgba(245,242,234,.78); font-size: 15px; max-width: 60ch; line-height: 1.6; }
.staff-honors { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 2px 30px; }
.staff-honors li { position: relative; padding: 8px 0 8px 22px; font-size: 14.5px; color: rgba(245,242,234,.9); border-bottom: 1px dashed var(--line-dk); }
.staff-honors li::before { content: ""; position: absolute; left: 0; top: 14px; width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); }
.staff-honors .hl { color: #fff; font-weight: 700; }
.dim { opacity: .62; }

/* ============================ PRICING extra ========================= */
.price-extra { margin-top: 28px; }
.px-note {
  display: flex; gap: 14px; align-items: center;
  background: rgba(8,32,63,.30); border: 1px solid rgba(245,242,234,.22); border-left: 3px solid var(--gold-hi);
  padding: 16px 20px; color: var(--ivory); font-size: 15px;
}
.px-note .px-tag { font-family: var(--disp); font-size: 13px; letter-spacing: .06em; color: var(--navy); background: var(--gold-hi); padding: 5px 11px; white-space: nowrap; }
.px-note b { color: #fff; }
.price-note { margin: 18px 0 0; text-align: center; font-size: 14px; color: rgba(245,242,234,.82); }
.price-note b { color: #fff; }
.price-note a { color: var(--gold-hi); text-decoration: underline; text-underline-offset: 3px; }

/* ============================ FILMS 3-up =========================== */
.films-3 { grid-template-columns: repeat(3, 1fr); }
.film.playing .play, .film.playing .cap, .film.playing img { display: none; }
.film video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #000; z-index: 3; }

/* ============================ GALLERY ============================== */
.gallery-sec { background: var(--ivory-2); }
.gallery-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.gallery-grid .gi {
  position: relative; aspect-ratio: 1/1; overflow: hidden; cursor: pointer; padding: 0;
  border: 1px solid var(--line); background: var(--ivory);
}
.gallery-grid .gi img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .4s; filter: saturate(.96); }
.gallery-grid .gi:hover img { transform: scale(1.07); filter: saturate(1.06); }
.gallery-grid .gi::after { content: ""; position: absolute; inset: 0; background: rgba(8,32,63,0); transition: background .3s; }
.gallery-grid .gi:hover::after { background: rgba(8,32,63,.12); }
.gallery-grid .gi:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; background: rgba(6,16,33,.95); }
.lightbox.open { display: grid; grid-template-columns: 64px 1fr 64px; align-items: center; }
.lb-stage { margin: 0; grid-column: 2; display: grid; place-items: center; padding: 20px; }
.lb-stage img { max-width: 100%; max-height: 86vh; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lb-btn { background: none; border: 0; color: #fff; cursor: pointer; opacity: .82; transition: opacity .2s, transform .2s; }
.lb-btn:hover { opacity: 1; }
.lb-prev, .lb-next { font-size: 46px; line-height: 1; }
.lb-prev:hover { transform: translateX(-3px); }
.lb-next:hover { transform: translateX(3px); }
.lb-close { position: absolute; top: 16px; right: 24px; font-size: 40px; line-height: 1; }
.lb-count { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: var(--gold-hi); font-weight: 700; letter-spacing: .12em; font-size: 13px; }

/* ============================ CONTACT meta + form ================== */
.contact-meta { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 11px; }
.contact-meta li { display: flex; align-items: center; gap: 14px; font-size: 15.5px; color: var(--ink); }
.contact-meta .ico { font-family: var(--disp); font-size: 11px; letter-spacing: .06em; color: var(--green-d); background: rgba(27,122,69,.12); padding: 6px 8px; min-width: 50px; text-align: center; }
.contact-meta a:hover { color: var(--green-d); }
.contact-meta small { color: var(--ink-soft); font-weight: 500; font-size: 12px; }

.form-card { color: var(--ivory); }
.lead-form { display: grid; gap: 14px; }
.lf-title { margin: 0 0 2px; font-size: 20px; color: #fff; font-weight: 800; }
.lf-types { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.lf-chip { position: relative; cursor: pointer; }
.lf-chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.lf-chip span { display: block; text-align: center; padding: 12px; border: 1px solid var(--line-dk); color: rgba(245,242,234,.8); font-weight: 700; font-size: 15px; transition: .2s; }
.lf-chip input:checked + span { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.lf-chip input:focus-visible + span { outline: 2px solid var(--gold-hi); outline-offset: 2px; }
.lf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lf-field { display: grid; gap: 6px; min-width: 0; }
.lf-field > span { font-size: 13px; color: rgba(245,242,234,.72); letter-spacing: .02em; }
.lf-field i { color: var(--gold-hi); font-style: normal; }
.lf-field input, .lf-field select, .lf-field textarea {
  background: rgba(245,242,234,.06); border: 1px solid var(--line-dk); color: #fff;
  padding: 12px 14px; font: inherit; font-size: 15px; border-radius: 2px; width: 100%;
}
.lf-field textarea { resize: vertical; }
.lf-field input::placeholder, .lf-field textarea::placeholder { color: rgba(245,242,234,.4); }
.lf-field input:focus, .lf-field select:focus, .lf-field textarea:focus { outline: none; border-color: var(--gold); background: rgba(245,242,234,.1); }
.lf-field select option { color: #14130f; }
.lf-submit { width: 100%; justify-content: center; margin-top: 4px; }
.lf-hint { margin: 0; font-size: 12px; color: rgba(245,242,234,.55); text-align: center; }
.lf-turnstile { display: flex; justify-content: center; }
.lf-turnstile:not([hidden]) { margin: 2px 0; }
.lead-form.sent .lf-title, .lead-form.sent .lf-types, .lead-form.sent .lf-row, .lead-form.sent .lf-field, .lead-form.sent .lf-submit, .lead-form.sent .lf-hint { display: none; }
.lf-done { text-align: center; display: none; gap: 8px; padding: 30px 0; }
.lead-form.sent .lf-done { display: grid; }
.lf-check { width: 60px; height: 60px; margin: 0 auto; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-size: 30px; }
.lf-done b { color: #fff; font-size: 19px; }
.lf-done span { color: rgba(245,242,234,.78); font-size: 14.5px; max-width: 34ch; margin: 0 auto; }

/* ============================ 모바일 하단 액션바 =================== */
.mbar { display: none; }
@media (max-width: 760px) {
  .mbar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; display: flex;
    background: var(--navy); border-top: 1px solid var(--gold);
    box-shadow: 0 -8px 24px -16px rgba(0,0,0,.6);
  }
  .mbar a {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px;
    padding: 15px 10px; font-weight: 800; font-size: 15px; letter-spacing: -.01em;
  }
  .mbar a svg { width: 17px; height: 17px; }
  .mbar-call { color: var(--ivory); border-right: 1px solid var(--line-dk); }
  .mbar-cta { color: var(--navy); background: var(--gold); }
  body { padding-bottom: 56px; }
  /* 하단바와 겹치지 않게 스크롤 마진 보정 */
  .hero-scroll { display: none; }
}

/* ============================ 안전 & FAQ ========================== */
.faq-sec { background: var(--ivory-2); }
.safety { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px,2.5vw,28px); margin-bottom: clamp(40px,5vw,60px); }
.safety-item { padding-top: 20px; border-top: 2px solid var(--green); }
.safety-item .sn { font-family: var(--disp); font-size: 14px; color: var(--green-d); letter-spacing: .04em; }
.safety-item b { display: block; margin: 10px 0 7px; font-size: 18px; color: var(--navy); }
.safety-item span:last-child { display: block; font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }

.faq-list { border-top: 1px solid var(--line); max-width: 880px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 44px 20px 4px; position: relative;
  font-size: clamp(16px,1.5vw,18px); font-weight: 700; color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 12px; height: 12px;
  margin-top: -6px; border-right: 2px solid var(--gold-d); border-bottom: 2px solid var(--gold-d);
  transform: rotate(45deg); transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item summary:hover { color: var(--green-d); }
.faq-a { padding: 0 44px 22px 4px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.7; max-width: 70ch; }

.policy {
  margin-top: clamp(28px,4vw,40px); max-width: 880px;
  background: var(--navy); color: var(--ivory); padding: clamp(22px,3vw,30px) clamp(24px,3vw,34px);
  border-radius: var(--r); position: relative; overflow: hidden;
}
.policy-tag { font-family: var(--disp); font-size: 13px; letter-spacing: .06em; color: var(--navy); background: var(--gold-hi); padding: 5px 12px; display: inline-block; }
.policy ul { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; }
.policy li { padding-left: 18px; position: relative; font-size: 15px; color: rgba(245,242,234,.9); }
.policy li::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }
.policy li b { color: #fff; }
.policy p { margin: 16px 0 0; font-size: 13px; color: rgba(245,242,234,.6); }

/* ============================ 곡률 결정값 통일 ====================== */
.price-card, .coach-photo .pic, .film, .about-art, .contact-card,
.staff-photo, .gallery-grid .gi, .form-card { border-radius: var(--r); }
/* 칩·버튼·입력은 의도적 샤프 엣지 (절제 = 프리미엄) */
.btn, .lf-chip span, .lf-field input, .lf-field select, .lf-field textarea,
.lesson .tags span { border-radius: 0; }

/* ============================ REVEAL ================================= */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].in { opacity: 1; transform: none; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 960px) {
  .about-grid, .coach-grid, .price-wrap, .films, .contact-grid { grid-template-columns: 1fr; }
  .honors-list { columns: 1; }
  .coach-now { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .creed-pledges { grid-template-columns: 1fr; gap: 0; }
  .pledge { padding-block: 18px; border-top: 1px solid rgba(245,242,234,.18); }
}
@media (max-width: 760px) {
  .nav, .header-cta .btn { display: none; }
  .burger { display: block; }
  .site-header .bar { height: 64px; }
  .brand img { height: 36px; }
  body { font-size: 16px; }
  .lesson { grid-template-columns: 44px 1fr; }
  .lesson .price { grid-column: 2; text-align: left; margin-top: 6px; }
  .lesson:hover { padding-left: 6px; }
  .hero { min-height: 82vh; }
  .hero .wrap { padding-block: 88px 64px; }
  .hero-figs { flex-wrap: wrap; gap: 22px 30px; }

  /* mobile drawer */
  .nav.open {
    display: flex; position: fixed; inset: 64px 0 auto 0; flex-direction: column;
    background: var(--navy); padding: 18px var(--gut) 28px; gap: 4px; z-index: 70;
    border-bottom: 1px solid var(--line-dk);
  }
  .nav.open a { padding: 14px 0; border-bottom: 1px solid var(--line-dk); font-size: 17px; }
  .nav.open .m-cta { display: flex; margin-top: 14px; }
}
@media (min-width: 761px) { .nav .m-cta { display: none; } }

/* ---- new components responsive (declared last to win) ---- */
@media (max-width: 960px) {
  .films-3 { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .staff-card { grid-template-columns: 140px 1fr; }
  .safety { grid-template-columns: 1fr; gap: 0; }
  .safety-item { padding: 18px 0; border-top: 1px solid var(--line); }
  .safety-item:first-child { border-top: 2px solid var(--green); }
}
@media (max-width: 760px) {
  .films-3 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .staff-card { grid-template-columns: 1fr; justify-items: start; }
  .staff-photo { width: 100%; max-width: 220px; aspect-ratio: 1/1.05; }
  .staff-honors { grid-template-columns: 1fr; }
  .lf-row, .lf-types { grid-template-columns: 1fr; }
  .lightbox.open { grid-template-columns: 38px 1fr 38px; }
  .lb-prev, .lb-next { font-size: 34px; }
}
@media (max-width: 460px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* =========================================================================
   MF LABS 패밀리 신호 (연결고리는 맞추고, 온기는 지킨다)
   — 에디토리얼 코너 라벨 · 모집중 상태칩 · 파트너십 밴드 · 푸터 크레딧.
   색은 우리 네이비·골드·그린 유지(회색 클리닉 톤 X). 그라데이션/blob/배지 없음.
   ========================================================================= */

/* 히어로 우상단 코너 라벨 (MF Labs 'YONGSAN OPERATING · 2026' 문법) — 데스크톱 한정 */
.hero-corner {
  position: absolute; top: 104px; right: var(--gut); z-index: 2;
  text-align: right; font-size: 11px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase; line-height: 1.95;
  color: rgba(245,242,234,.52);
}
@media (max-width: 900px) { .hero-corner { display: none; } }

/* 모집중 상태칩 (MF Labs '● 운영중' 문법, 우리 그린 점) */
.hero-status { margin: 22px 0 0; }
.status-chip {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .02em; color: var(--ivory);
}
.status-chip i {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ad07f; box-shadow: 0 0 0 4px rgba(74,208,127,.16);
}

/* 파트너십 밴드 — 우리 네이비 단색, 골드 헤어라인 강조 */
.partner {
  position: relative; overflow: hidden; color: var(--ivory);
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-2) 100%);
  padding-block: clamp(58px, 8vw, 100px);
}
.partner > .pl { position: absolute; right: -8%; bottom: -20%; width: 56%; opacity: .05; pointer-events: none; }
.partner-inner { position: relative; z-index: 1; }
.partner-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(26px, 5vw, 76px); align-items: end; margin-top: 26px;
}
.partner h2 {
  margin: 0; font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.08; letter-spacing: -.02em;
}
.partner-body p { margin: 0 0 22px; color: rgba(245,242,234,.82); font-size: 16px; }
.partner-body a { color: inherit; }
.partner-body a b { color: var(--gold-hi); border-bottom: 1px solid rgba(240,205,108,.45); }
.partner-marks {
  list-style: none; display: flex; flex-wrap: wrap; gap: 7px 16px;
  padding: 0; margin: 0 0 26px;
}
.partner-marks li {
  font-family: var(--disp); font-size: 12px; letter-spacing: .12em;
  color: rgba(245,242,234,.5);
}
.partner-marks li:not(:last-child)::after { content: "·"; margin-left: 16px; color: rgba(245,242,234,.28); }
.partner-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; letter-spacing: .02em; color: var(--ivory);
  border-bottom: 2px solid var(--gold); padding-bottom: 3px;
}
.partner-link:hover { color: var(--gold-hi); }
@media (max-width: 760px) {
  .partner-grid { grid-template-columns: 1fr; align-items: start; gap: 16px; }
}

/* 푸터 파트너 크레딧 + 크로스링크 */
.footer-partner {
  margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line-dk);
  display: flex; justify-content: space-between; gap: 14px 22px; flex-wrap: wrap;
  font-size: 13px; color: rgba(245,242,234,.62);
}
.footer-partner a { color: var(--gold-hi); border-bottom: 1px solid rgba(240,205,108,.4); }
.fp-marks { font-family: var(--disp); letter-spacing: .1em; font-size: 11px; color: rgba(245,242,234,.4); }

/* 헤더 공동 브랜드 락업 (MF Labs가 서브브랜드 페이지에 쓰는 방식 — 맨 위 상시 노출) */
.brand-lockup { display: flex; align-items: center; gap: 13px; min-width: 0; }
.cobrand {
  display: inline-flex; align-items: center; gap: 7px;
  padding-left: 13px; border-left: 1px solid rgba(245,242,234,.22);
  font-size: 13px; font-weight: 700; letter-spacing: .01em;
  color: rgba(245,242,234,.66); white-space: nowrap;
}
.cobrand:hover { color: var(--gold-hi); }
.cobrand-x { font-size: 12px; opacity: .55; }
@media (max-width: 600px) {
  .brand-lockup { gap: 9px; }
  .cobrand { padding-left: 9px; gap: 5px; font-size: 11px; }
}

/* 섹션 우상단 코너 라벨 (MF Labs 에디토리얼 문법 — 좌측 한글 kicker와 짝) · 데스크톱 한정 */
.section > .wrap { position: relative; }
.sec-tag {
  position: absolute; top: 3px; right: var(--gut); z-index: 3;
  font-size: 11px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase;
  color: rgba(20,19,15,.40); pointer-events: none;
}
.sec-tag.on-dark { color: rgba(245,242,234,.5); }
@media (max-width: 760px) { .sec-tag { display: none; } }

/* 푸터 테크 스트립 (MF Labs 'V2026 · BUILD · ● OPERATING · KST 시계' 문법) */
.footer-tech {
  display: flex; align-items: center; justify-content: space-between; gap: 12px 22px; flex-wrap: wrap;
  padding-bottom: 24px; margin-bottom: 30px; border-bottom: 1px solid var(--line-dk);
  font-size: 11.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(245,242,234,.46);
}
.ft-status { display: inline-flex; align-items: center; gap: 8px; letter-spacing: .1em; color: rgba(245,242,234,.66); }
.ft-status i {
  width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: #4ad07f; box-shadow: 0 0 0 4px rgba(74,208,127,.16);
}
.ft-clock { font-variant-numeric: tabular-nums; letter-spacing: .14em; color: rgba(245,242,234,.6); }
@media (max-width: 640px) { .footer-tech { justify-content: flex-start; gap: 9px 16px; font-size: 10.5px; } }
