/* ============================================================
   index.css — Ana Sayfa Özel CSS
   style.css'e bağımlıdır, ortak stilleri tekrar etmez.
   ============================================================ */

/* ── Hero Slider ────────────────────────────── */
.hero { position: relative; height: 100vh; min-height: 640px; overflow: hidden; background: var(--dark); }
.slides { position: absolute; inset: 0; }
.slide { position: absolute; inset: 0; display: flex; opacity: 0; transition: opacity 1.2s var(--e); }
.slide.active { opacity: 1; }
.slide__bg { position: absolute; inset: 0; }
.slide__bg img { width: 100%; height: 100%; object-fit: cover; }
.slide-1 .slide__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(19,14,11,.82) 0%, rgba(19,14,11,.45) 55%, rgba(19,14,11,.15) 100%); }
.slide-2 .slide__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(19,14,11,.78) 0%, rgba(19,14,11,.32) 60%, transparent 100%); }

.slide__content { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: 1300px; margin: 0 auto; padding: 0 44px; height: 100%; gap: 40px; }
.slide__text { max-width: 560px; }

/* Animated text stagger */
.slide__eyebrow, .slide__title, .slide__desc, .slide__actions { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--eo), transform .8s var(--eo); }
.slide.active .slide__eyebrow  { opacity: 1; transform: none; transition-delay: .30s; }
.slide.active .slide__title    { opacity: 1; transform: none; transition-delay: .44s; }
.slide.active .slide__desc     { opacity: 1; transform: none; transition-delay: .58s; }
.slide.active .slide__actions  { opacity: 1; transform: none; transition-delay: .70s; }

.slide__eyebrow { font-size: .6rem; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.slide__eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--gold); flex-shrink: 0; }
.slide__title { font-family: var(--ff-d); font-size: clamp(3rem, 5.5vw, 6.2rem); font-weight: 300; line-height: 1.04; letter-spacing: -.01em; color: #fff; margin-bottom: 20px; }
.slide__title em { font-style: italic; color: var(--gold); font-weight: 300; }
.slide__desc { font-size: .9rem; font-weight: 300; line-height: 1.9; color: rgba(255,255,255,.58); max-width: 380px; margin-bottom: 36px; }
.slide__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.btn-hp { display: inline-flex; align-items: center; gap: 10px; font-size: .65rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; padding: 14px 30px; background: var(--rose); color: #fff; transition: background .3s, transform .3s; }
.btn-hp:hover { background: var(--rose-d); transform: translateY(-2px); }
.btn-hp svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.btn-ho { display: inline-flex; align-items: center; gap: 10px; font-size: .65rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; padding: 13px 28px; border: 1px solid rgba(255,255,255,.28); color: rgba(255,255,255,.8); transition: border-color .3s, color .3s; }
.btn-ho:hover { border-color: var(--gold); color: var(--gold); }

/* Slide 2 right panel */
.slide-2-panel { flex: 0 0 420px; opacity: 0; transform: translateX(28px); transition: opacity .9s var(--eo), transform .9s var(--eo); }
.slide-2.active .slide-2-panel { opacity: 1; transform: none; transition-delay: .5s; }
.s2-cards { display: flex; flex-direction: column; gap: 2px; }
.s2-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); padding: 18px 22px; display: flex; align-items: center; gap: 18px; backdrop-filter: blur(8px); transition: background .3s, border-color .3s; cursor: default; }
.s2-card:hover { background: rgba(255,255,255,.1); border-color: rgba(200,165,108,.3); }
.s2-card__n { font-family: var(--ff-d); font-size: 2.4rem; font-weight: 300; color: rgba(255,255,255,.15); line-height: 1; flex-shrink: 0; width: 52px; text-align: right; }
.s2-card__title { font-family: var(--ff-d); font-size: 1.05rem; font-weight: 500; color: #fff; margin-bottom: 3px; }
.s2-card__sub { font-size: .72rem; font-weight: 300; color: rgba(255,255,255,.42); letter-spacing: .04em; }
.s2-card__arr { margin-left: auto; width: 20px; height: 20px; border: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: border-color .3s, background .3s; }
.s2-card:hover .s2-card__arr { border-color: var(--gold); background: rgba(200,165,108,.15); }
.s2-card__arr svg { width: 10px; height: 10px; stroke: rgba(255,255,255,.5); fill: none; stroke-width: 2; stroke-linecap: round; }
.s2-card:hover .s2-card__arr svg { stroke: var(--gold); }

.s2-card:nth-child(1) { opacity: 0; transform: translateX(20px); transition: opacity .6s .60s var(--eo), transform .6s .60s var(--eo), background .3s, border-color .3s; }
.s2-card:nth-child(2) { opacity: 0; transform: translateX(20px); transition: opacity .6s .72s var(--eo), transform .6s .72s var(--eo), background .3s, border-color .3s; }
.s2-card:nth-child(3) { opacity: 0; transform: translateX(20px); transition: opacity .6s .84s var(--eo), transform .6s .84s var(--eo), background .3s, border-color .3s; }
.s2-card:nth-child(4) { opacity: 0; transform: translateX(20px); transition: opacity .6s .96s var(--eo), transform .6s .96s var(--eo), background .3s, border-color .3s; }
.s2-card:nth-child(5) { opacity: 0; transform: translateX(20px); transition: opacity .6s 1.08s var(--eo), transform .6s 1.08s var(--eo), background .3s, border-color .3s; }
.slide-2.active .s2-card { opacity: 1; transform: none; }

/* Hero bottom UI */
.hero__bottom { position: absolute; bottom: 0; left: 0; right: 0; z-index: 10; display: flex; align-items: flex-end; justify-content: space-between; padding: 0 44px 36px; }
.hero__stats { display: flex; border-left: 1px solid rgba(255,255,255,.1); }
.hero__stat { padding: 0 28px; border-right: 1px solid rgba(255,255,255,.1); }
.hero__stat-n { font-family: var(--ff-d); font-size: 2rem; font-weight: 400; color: #fff; line-height: 1; }
.hero__stat-l { font-size: .58rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.38); margin-top: 5px; }
.hero__dots { display: flex; align-items: center; gap: 10px; }
.hero__dot { width: 24px; height: 2px; background: rgba(255,255,255,.25); cursor: pointer; transition: background .3s, width .4s var(--eo); }
.hero__dot.on { background: var(--gold); width: 40px; }
.hero__counter { position: absolute; right: 44px; top: 50%; transform: translateY(-50%); z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.hero__counter-c { font-family: var(--ff-d); font-size: 2.2rem; font-weight: 300; color: rgba(255,255,255,.7); line-height: 1; }
.hero__counter-l { width: 1px; height: 26px; background: rgba(255,255,255,.18); }
.hero__counter-t { font-size: .62rem; font-weight: 400; letter-spacing: .1em; color: rgba(255,255,255,.3); }
.hero__arrow { position: absolute; top: 50%; z-index: 10; transform: translateY(-50%); width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .3s, border-color .3s; color: rgba(255,255,255,.65); }
.hero__arrow:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.38); }
.hero__arrow svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; }
.hero__arrow--p { left: 44px; }
.hero__arrow--n { right: 44px; }
.hero__scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 10; opacity: .45; transition: opacity .3s; cursor: default; }
.hero__scroll span { font-size: .55rem; letter-spacing: .22em; text-transform: uppercase; color: #fff; writing-mode: vertical-rl; transform: rotate(180deg); }
.hero__scroll-ln { width: 1px; height: 44px; background: linear-gradient(to top, transparent, rgba(255,255,255,.6)); animation: sb 2s ease-in-out infinite; }
@keyframes sb { 0%, 100% { transform: scaleY(1); opacity: .5; } 50% { transform: scaleY(.6); opacity: 1; } }
.hero__progress { position: absolute; bottom: 0; left: 0; height: 2px; background: var(--rose); z-index: 11; transform-origin: left; }

@media (max-width: 820px) {
  .slide-2-panel { display: none; }
  .slide__content { padding: 0 24px; }
  .hero__stats, .hero__counter, .hero__arrow { display: none; }
  .hero__bottom { justify-content: center; padding: 0 24px 28px; }
  .hero__scroll { display: none; }
}

/* ── Services — Magazine Grid ───────────────── */
.srv-magazine { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 320px 320px; gap: 3px; background: var(--brd); }
@media (max-width: 860px) { .srv-magazine { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 280px 280px; } }
@media (max-width: 520px)  { .srv-magazine { grid-template-columns: 1fr; grid-template-rows: auto; } }

.srv-card { position: relative; overflow: hidden; cursor: pointer; background: var(--bg); }
.srv-card--featured { grid-row: 1 / 3; }
@media (max-width: 860px) { .srv-card--featured { grid-row: auto; } }
@media (max-width: 520px)  { .srv-card { min-height: 260px; } }

.srv-card__bg { position: absolute; inset: 0; z-index: 0; }
.srv-card__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform .8s var(--e), opacity .6s var(--e); opacity: 0; }
.srv-card:hover .srv-card__bg img { opacity: 1; transform: scale(1); }
.srv-card__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(19,14,11,.75) 0%, rgba(19,14,11,.55) 100%); opacity: 0; transition: opacity .6s var(--e); }
.srv-card:hover .srv-card__bg::after { opacity: 1; }

.srv-card__inner { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 36px 32px; }
.srv-card__tag { font-size: .56rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--rose); margin-bottom: 10px; transition: color .4s; }
.srv-card:hover .srv-card__tag { color: var(--gold); }
.srv-card__num { position: absolute; top: 28px; right: 28px; font-family: var(--ff-d); font-size: 5rem; font-weight: 300; line-height: 1; color: var(--brd); transition: color .4s; pointer-events: none; }
.srv-card--featured .srv-card__num { font-size: 8rem; }
.srv-card:hover .srv-card__num { color: rgba(255,255,255,.06); }
.srv-card__title { font-family: var(--ff-d); font-size: 1.5rem; font-weight: 400; color: var(--ink); line-height: 1.2; margin-bottom: 10px; transition: color .5s; }
.srv-card--featured .srv-card__title { font-size: 2.2rem; }
.srv-card:hover .srv-card__title { color: #fff; }
.srv-card__desc { font-size: .78rem; font-weight: 300; line-height: 1.75; color: var(--ink2); max-height: 0; overflow: hidden; transition: max-height .5s var(--eo), color .4s, opacity .4s; opacity: 0; }
.srv-card--featured .srv-card__desc { max-height: 120px; opacity: 1; }
.srv-card:hover .srv-card__desc { max-height: 80px; opacity: 1; color: rgba(255,255,255,.55); }
.srv-card__link { display: inline-flex; align-items: center; gap: 8px; font-size: .6rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--rose); margin-top: 16px; opacity: 0; transform: translateY(8px); transition: opacity .4s .1s var(--eo), transform .4s .1s var(--eo), color .3s; }
.srv-card:hover .srv-card__link { opacity: 1; transform: none; color: var(--gold); }
.srv-card__link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; transition: transform .4s var(--eo); }
.srv-card:hover .srv-card__link svg { transform: translateX(4px); }
.srv-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--rose); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--eo); z-index: 2; }
.srv-card:hover::after { transform: scaleX(1); }

/* ── Before / After ─────────────────────────── */
.ba-outer { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: center; }
@media (max-width: 960px) { .ba-outer { grid-template-columns: 1fr; gap: 44px; } }

.ba-tabs { display: flex; margin-bottom: 32px; border-bottom: 1px solid var(--brd); }
.ba-tab { font-size: .65rem; font-weight: 500; letter-spacing: .13em; text-transform: uppercase; color: var(--ink3); padding: 9px 16px 11px; border-bottom: 2px solid transparent; margin-bottom: -1px; cursor: pointer; transition: color .3s, border-color .3s; }
.ba-tab.on { color: var(--rose); border-bottom-color: var(--rose); }

.ba-slider { position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden; cursor: ew-resize; user-select: none; touch-action: pan-y; }
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; }
.ba-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; pointer-events: none; user-select: none; }
.ba-img::after { content: attr(data-label); position: absolute; bottom: 12px; font-size: .54rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: #fff; background: rgba(0,0,0,.38); backdrop-filter: blur(4px); padding: 4px 10px; pointer-events: none; }
.ba-img--b::after { left: 12px; }
.ba-img--a::after { right: 12px; }
.ba-img--a { clip-path: inset(0 50% 0 0); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%); width: 2px; background: #fff; z-index: 10; pointer-events: none; }
.ba-hbtn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; border-radius: 50%; background: #fff; box-shadow: 0 4px 18px rgba(0,0,0,.15); display: flex; align-items: center; justify-content: center; pointer-events: none; }
.ba-hbtn svg { width: 17px; height: 17px; stroke: var(--rose); fill: none; stroke-width: 2.5; stroke-linecap: round; }

.ba-info .eyebrow { margin-bottom: 0; }
.ba-info__t { font-family: var(--ff-d); font-size: 1.65rem; font-weight: 400; color: var(--ink); margin: 10px 0 12px; }
.ba-info__d { font-size: .83rem; font-weight: 300; line-height: 1.85; color: var(--ink2); margin-bottom: 22px; }
.ba-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 26px; }
.ba-pill { font-size: .56rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--rose); border: 1px solid var(--rose-p); background: var(--rose-p); padding: 5px 12px; }
.ba-stats { display: flex; gap: 22px; padding-top: 22px; border-top: 1px solid var(--brd); }
.ba-sv { font-family: var(--ff-d); font-size: 1.7rem; font-weight: 400; color: var(--ink); line-height: 1; }
.ba-sk { font-size: .58rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; color: var(--ink3); margin-top: 4px; }

/* ── Why Us ──────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; gap: 44px; } }
.why-img { position: relative; }
.why-img img { width: 88%; aspect-ratio: 3/4; object-fit: cover; object-position: center top; }
.why-badge { position: absolute; right: 0; bottom: 44px; background: var(--rose); padding: 20px 18px; min-width: 140px; text-align: center; }
.why-badge-n { font-family: var(--ff-d); font-size: 2rem; font-weight: 500; color: #fff; line-height: 1; }
.why-badge-t { font-size: .56rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.72); margin-top: 4px; }
.why-list { display: flex; flex-direction: column; }
.wi { display: flex; gap: 18px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--brd); }
.wi:first-child { border-top: 1px solid var(--brd); }
.wi__n { font-family: var(--ff-d); font-size: .95rem; font-weight: 500; color: var(--rose); flex-shrink: 0; min-width: 22px; margin-top: 2px; }
.wi__t { font-family: var(--ff-d); font-size: .98rem; font-weight: 500; color: var(--ink); margin-bottom: 5px; }
.wi__d { font-size: .78rem; font-weight: 300; line-height: 1.8; color: var(--ink2); }

/* ── Testimonials ────────────────────────────── */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .rev-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px)  { .rev-grid { grid-template-columns: 1fr; } }
.rev { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); padding: 32px 24px; transition: background .4s, border-color .4s; }
.rev:hover { background: rgba(255,255,255,.07); border-color: rgba(190,122,98,.25); }
.rev__stars { display: flex; gap: 3px; margin-bottom: 14px; }
.rev__star { color: var(--gold); font-size: .72rem; font-style: normal; }
.rev__q { font-family: var(--ff-d); font-size: 3rem; color: var(--rose); line-height: .5; margin-bottom: 14px; opacity: .5; }
.rev__text { font-family: var(--ff-d); font-size: .95rem; font-style: italic; line-height: 1.75; color: rgba(255,255,255,.7); margin-bottom: 20px; }
.rev__sep { width: 24px; height: 1px; background: var(--rose); opacity: .4; margin-bottom: 16px; }
.rev__author { display: flex; align-items: center; gap: 10px; }
.rev__av { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(190,122,98,.3); }
.rev__name { font-size: .74rem; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; color: rgba(255,255,255,.85); }
.rev__svc { font-size: .65rem; color: rgba(255,255,255,.3); margin-top: 2px; }

/* ── Blog ────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 860px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px)  { .blog-grid { grid-template-columns: 1fr; } }
.bc { cursor: pointer; }
.bc__img { width: 100%; aspect-ratio: 16/10; overflow: hidden; margin-bottom: 18px; }
.bc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--e); }
.bc:hover .bc__img img { transform: scale(1.05); }
.bc__cat { font-size: .56rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--rose); margin-bottom: 8px; }
.bc__title { font-family: var(--ff-d); font-size: 1.15rem; font-weight: 500; line-height: 1.35; color: var(--ink); margin-bottom: 7px; transition: color .3s; }
.bc:hover .bc__title { color: var(--rose); }
.bc__meta { font-size: .68rem; color: var(--ink3); font-weight: 300; }
.bc__exc { font-size: .79rem; font-weight: 300; line-height: 1.8; color: var(--ink2); margin-top: 8px; }

/* ── Instagram Story Feed ────────────────────── */
.insta-sec { padding: 80px 0; overflow: hidden; }
.insta-hd { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; padding: 0 44px; }
@media (max-width: 640px) { .insta-hd { padding: 0 22px; flex-direction: column; align-items: flex-start; gap: 16px; } }
.insta-handle { font-family: var(--ff-d); font-size: 1.5rem; font-weight: 300; color: var(--ink); }
.insta-handle a { border-bottom: 1px solid var(--rose); color: var(--rose); transition: opacity .3s; }
.insta-handle a:hover { opacity: .7; }
.insta-sub { font-size: .65rem; font-weight: 300; letter-spacing: .14em; text-transform: uppercase; color: var(--ink3); margin-top: 6px; }

.insta-track { display: flex; gap: 12px; padding: 0 44px 16px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; cursor: grab; }
.insta-track:active { cursor: grabbing; }
.insta-track::-webkit-scrollbar { height: 3px; }
.insta-track::-webkit-scrollbar-track { background: var(--brd); }
.insta-track::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 2px; }
@media (max-width: 640px) { .insta-track { padding: 0 22px 14px; } }

.story { flex: 0 0 180px; height: 320px; position: relative; overflow: hidden; border-radius: 12px; scroll-snap-align: start; cursor: pointer; transition: transform .4s var(--eo); }
.story:hover { transform: scale(1.03) translateY(-4px); }
@media (max-width: 640px) { .story { flex: 0 0 148px; height: 264px; } }

.story::before { content: ''; position: absolute; inset: -3px; border-radius: 15px; background: conic-gradient(var(--rose) 0deg, var(--gold) 120deg, var(--rose) 240deg, var(--gold) 360deg); z-index: 0; opacity: 0; transition: opacity .4s; animation: ring-spin 3s linear infinite paused; }
.story:hover::before { opacity: 1; animation-play-state: running; }
@keyframes ring-spin { to { transform: rotate(360deg); } }
.story::after { content: ''; position: absolute; inset: 2px; border-radius: 11px; background: var(--dark); z-index: 1; pointer-events: none; }
.story img { position: absolute; inset: 5px; width: calc(100% - 10px); height: calc(100% - 10px); object-fit: cover; border-radius: 8px; z-index: 2; transition: transform .5s var(--e); }
.story:hover img { transform: scale(1.04); }
.story__ov { position: absolute; bottom: 5px; left: 5px; right: 5px; height: 60%; background: linear-gradient(to top, rgba(19,14,11,.85) 0%, transparent 100%); border-radius: 0 0 8px 8px; z-index: 3; display: flex; flex-direction: column; justify-content: flex-end; padding: 12px; }
.story__avatar { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); z-index: 4; width: 42px; height: 42px; border-radius: 50%; background: var(--rose); display: flex; align-items: center; justify-content: center; font-family: var(--ff-d); font-size: 1rem; font-weight: 500; color: #fff; opacity: 0; transition: opacity .35s; pointer-events: none; }
.story:hover .story__avatar { opacity: 1; }
.story__label { font-size: .6rem; font-weight: 400; letter-spacing: .1em; color: rgba(255,255,255,.65); margin-bottom: 3px; }
.story__title { font-family: var(--ff-d); font-size: .88rem; font-weight: 500; color: #fff; line-height: 1.2; }
.story.api-slot { background: var(--surf); }
.story.api-slot::after { background: linear-gradient(90deg, var(--surf) 0%, var(--brd) 50%, var(--surf) 100%); background-size: 200% 100%; animation: shimmer 1.4s infinite; z-index: 2; border-radius: 12px; }
@keyframes shimmer { to { background-position: -200% 0; } }
.insta-note { font-size: .66rem; color: var(--ink3); text-align: center; margin-top: 20px; padding: 0 44px; }
.insta-note code { background: var(--surf); padding: 2px 7px; font-size: .6rem; color: var(--rose); }
