/* PriceHunter Home — clean landing inspired by modern SaaS layouts */

:root {
  --ph-bg: #050508;
  --ph-bg-elevated: #0c0c12;
  --ph-bg-card: #12121a;
  --ph-bg-card-hover: #181824;
  --ph-border: rgba(255, 255, 255, 0.08);
  --ph-border-strong: rgba(255, 255, 255, 0.14);
  --ph-text: #f4f4f5;
  --ph-text-muted: #a1a1aa;
  --ph-accent: #3b82f6;
  --ph-accent-hover: #2563eb;
  --ph-emerald: #10b981;
  --ph-emerald-hover: #059669;
  --ph-radius: 12px;
  --ph-radius-lg: 16px;
  --ph-radius-xl: 20px;
  --ph-max: 1200px;
  --ph-header-h: 64px;
}

html[lang="ko"] body {
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

html[lang="ko"] input,
html[lang="ko"] textarea,
html[lang="ko"] .break-all {
  word-break: break-all;
}

body.ph-home {
  background: var(--ph-bg);
  color: var(--ph-text);
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ── Header ── */
.ph-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--ph-header-h);
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
  border-bottom: 1px solid transparent;
}

.ph-site-header.is-scrolled {
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--ph-border);
}

.ph-site-header .ph-header-inner {
  max-width: var(--ph-max);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.ph-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: var(--ph-text);
  flex-shrink: 0;
}

.ph-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--ph-accent) 0%, #6366f1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ph-logo-mark svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.ph-logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ph-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .ph-nav { display: flex; }
}

.ph-nav a {
  color: var(--ph-text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.ph-nav a:hover {
  color: var(--ph-text);
}

.ph-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ph-header-auth-btn {
  display: inline-flex !important;
  align-items: center;
}

.ph-header-auth-btn.ph-header-auth-hidden {
  display: none !important;
}

.ph-btn-ghost {
  display: none;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ph-text-muted);
  background: transparent;
  border: 1px solid var(--ph-border);
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  text-decoration: none;
}

@media (min-width: 640px) {
  .ph-btn-ghost { display: inline-flex; align-items: center; }
}

.ph-btn-ghost:hover {
  color: var(--ph-text);
  border-color: var(--ph-border-strong);
  background: rgba(255, 255, 255, 0.04);
}

.ph-btn-primary {
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: var(--ph-accent);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.ph-btn-primary:hover {
  background: var(--ph-accent-hover);
}

/* ── Hero ── */
#hero-section {
  background: var(--ph-bg) !important;
  min-height: auto !important;
  padding-top: calc(var(--ph-header-h) + 3rem) !important;
  padding-bottom: 4rem !important;
}

#hero-section .ph-hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

#hero-section .ph-hero-glow::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 120vw);
  height: 500px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
}

#hero-section .ph-hero-glow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 80vw);
  height: 300px;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
}

.ph-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  margin-bottom: 1.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ph-emerald);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 999px;
  letter-spacing: 0.01em;
}

.ph-hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ph-emerald);
  animation: ph-pulse-dot 2s ease-in-out infinite;
}

@keyframes ph-pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

#hero-title h1 {
  font-size: clamp(2rem, 5.5vw, 3.5rem) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.03em !important;
  text-shadow: none !important;
  color: var(--ph-text) !important;
}

#hero-title h1 .ph-hero-gradient {
  background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#hero-title h1 .ph-hero-brand {
  background: linear-gradient(135deg, #34d399 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#hero-title p {
  color: var(--ph-text-muted) !important;
  text-shadow: none !important;
  font-weight: 400 !important;
  max-width: 36rem;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.ph-trust-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.ph-trust-pill {
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ph-text-muted);
  background: var(--ph-bg-card);
  border: 1px solid var(--ph-border);
  border-radius: 999px;
}

/* Stats card */
.hero-gap-card {
  background: var(--ph-bg-card) !important;
  border: 1px solid var(--ph-border) !important;
  border-radius: var(--ph-radius-xl) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.hero-gap-savings-hero {
  background: rgba(16, 185, 129, 0.08) !important;
  border: 1px solid rgba(16, 185, 129, 0.2) !important;
  box-shadow: none !important;
}

.hero-gap-sparkles {
  display: none !important;
}

.hero-gap-savings-shimmer {
  display: none !important;
}

.hero-gap-card:hover {
  border-color: var(--ph-border-strong) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
  transform: translateY(-2px) !important;
}

.hero-gap-live-badge {
  background: rgba(16, 185, 129, 0.12) !important;
  border: 1px solid rgba(16, 185, 129, 0.25) !important;
}

/* Savings cards */
.hero-savings-card {
  background: var(--ph-bg-card) !important;
  border: 1px solid var(--ph-border) !important;
  border-radius: var(--ph-radius-lg) !important;
  box-shadow: none !important;
}

.hero-savings-card:hover {
  border-color: var(--ph-border-strong) !important;
  background: var(--ph-bg-card-hover) !important;
}

/* CTA buttons */
.hero-cta-primary {
  background: var(--ph-emerald) !important;
  border: none !important;
  border-radius: var(--ph-radius) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

.hero-cta-primary:hover {
  background: var(--ph-emerald-hover) !important;
}

.hero-cta-secondary {
  background: transparent !important;
  border: 1px solid var(--ph-border-strong) !important;
  color: var(--ph-text) !important;
  border-radius: var(--ph-radius) !important;
}

.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.guest-trial-bar {
  background: var(--ph-bg-card);
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius-lg);
  padding: 1.25rem;
}

.guest-trial-bar .ph-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius);
  padding: 0.625rem 0.875rem;
}

.guest-trial-bar .ph-input-wrap svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--ph-text-muted);
}

.guest-trial-bar input {
  color: var(--ph-text) !important;
}

.guest-trial-bar input::placeholder {
  color: var(--ph-text-muted);
}

/* ── Features section ── */
.ph-section {
  padding: 5rem 1.25rem;
}

.ph-section-inner {
  max-width: var(--ph-max);
  margin: 0 auto;
}

.ph-section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ph-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.ph-section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ph-text);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.ph-section-desc {
  font-size: 1.0625rem;
  color: var(--ph-text-muted);
  max-width: 36rem;
  margin: 0 auto 3rem;
  line-height: 1.6;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.ph-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .ph-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .ph-features-grid { grid-template-columns: repeat(3, 1fr); }
}

.ph-feature-card {
  background: var(--ph-bg-card);
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius-lg);
  padding: 1.5rem;
  transition: border-color 0.2s, background 0.2s;
}

.ph-feature-card:hover {
  border-color: var(--ph-border-strong);
  background: var(--ph-bg-card-hover);
}

.ph-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.ph-feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--ph-accent);
}

.ph-feature-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ph-text);
  margin: 0 0 0.5rem;
}

.ph-feature-card p {
  font-size: 0.9375rem;
  color: var(--ph-text-muted);
  margin: 0;
  line-height: 1.55;
}

/* ── How it works (3 steps) ── */
.ph-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .ph-steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .ph-steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.ph-step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--ph-bg-card);
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius-lg);
}

.ph-step-num {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--ph-accent);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ph-step-card:nth-child(2) .ph-step-num { background: var(--ph-emerald); }
.ph-step-card:nth-child(3) .ph-step-num { background: #6366f1; }

.ph-step-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ph-text);
  margin: 0 0 0.5rem;
}

.ph-step-card p {
  font-size: 0.9375rem;
  color: var(--ph-text-muted);
  margin: 0;
  line-height: 1.55;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

/* ── Extension quickstart (hero next) ── */
.ph-ext-quickstart {
  background: linear-gradient(180deg, var(--ph-bg) 0%, var(--ph-bg-elevated) 100%);
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

.ph-ext-quickstart-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .ph-ext-quickstart-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.ph-ext-quickstart-step {
  text-align: center;
  padding: 1.5rem 1.25rem;
  background: var(--ph-bg-card);
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius-lg);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.ph-ext-quickstart-step:nth-child(1) { animation: phExtStepActive1 var(--ph-ext-cycle) ease-in-out infinite; }
.ph-ext-quickstart-step:nth-child(2) { animation: phExtStepActive2 var(--ph-ext-cycle) ease-in-out infinite; }
.ph-ext-quickstart-step:nth-child(3) { animation: phExtStepActive3 var(--ph-ext-cycle) ease-in-out infinite; }

@keyframes phExtStepActive1 {
  0%, 1.5%, 5%, 50%, 51.5%, 55%, 100% { border-color: var(--ph-border); box-shadow: none; transform: none; }
  2.5%, 4% { border-color: #10b981; box-shadow: 0 8px 28px rgba(16, 185, 129, 0.18); transform: translateY(-3px); }
  52.5%, 54% { border-color: #10b981; box-shadow: 0 8px 28px rgba(16, 185, 129, 0.18); transform: translateY(-3px); }
}

@keyframes phExtStepActive2 {
  0%, 9%, 12%, 17%, 50%, 59%, 62%, 67%, 100% { border-color: var(--ph-border); box-shadow: none; transform: none; }
  13%, 16% { border-color: #03c75a; box-shadow: 0 8px 28px rgba(3, 199, 90, 0.18); transform: translateY(-3px); }
  63%, 66% { border-color: #e5322d; box-shadow: 0 8px 28px rgba(229, 50, 45, 0.18); transform: translateY(-3px); }
}

@keyframes phExtStepActive3 {
  0%, 19%, 22%, 27%, 50%, 69%, 72%, 77%, 100% { border-color: var(--ph-border); box-shadow: none; transform: none; }
  20%, 24% { border-color: #6366f1; box-shadow: 0 8px 28px rgba(99, 102, 241, 0.18); transform: translateY(-3px); }
  70%, 74% { border-color: #6366f1; box-shadow: 0 8px 28px rgba(99, 102, 241, 0.18); transform: translateY(-3px); }
}

.ph-ext-quickstart-num {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--ph-emerald);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ph-ext-quickstart-step:nth-child(2) .ph-ext-quickstart-num { background: var(--ph-accent); }
.ph-ext-quickstart-step:nth-child(3) .ph-ext-quickstart-num { background: #6366f1; }

.ph-ext-quickstart-step h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ph-text);
  margin: 0 0 0.5rem;
}

.ph-ext-quickstart-step p {
  font-size: 0.9375rem;
  color: var(--ph-text-muted);
  margin: 0;
  line-height: 1.55;
  word-break: keep-all;
}

.ph-ext-quickstart-visual {
  --ph-ext-cycle: 22s;
  max-width: 920px;
  margin: 0 auto 2rem;
  text-align: center;
  overflow-x: clip;
}

.ph-ext-demo-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
  min-height: 470px;
}

@media (min-width: 640px) {
  .ph-ext-demo-stage {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.25rem;
  }
}

/* ── Browser stack (Naver ↔ Coupang) ── */
.ph-ext-browser-stack {
  position: relative;
  min-height: 260px;
}

.ph-ext-browser-stack .ph-ext-browser {
  width: 100%;
}

.ph-ext-browser--naver {
  animation: phExtBrowserIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both,
    phExtBrowserDim var(--ph-ext-cycle) ease-in-out infinite,
    phExtBrowserSwapA var(--ph-ext-cycle) ease-in-out infinite;
}

.ph-ext-browser--coupang {
  position: absolute;
  inset: 0;
  animation: phExtBrowserDim var(--ph-ext-cycle) ease-in-out infinite,
    phExtBrowserSwapB var(--ph-ext-cycle) ease-in-out infinite;
}

@keyframes phExtBrowserSwapA {
  0%, 47% { opacity: 1; visibility: visible; z-index: 1; }
  50%, 97% { opacity: 0; visibility: hidden; z-index: 0; }
  100% { opacity: 1; visibility: visible; z-index: 1; }
}

@keyframes phExtBrowserSwapB {
  0%, 47% { opacity: 0; visibility: hidden; z-index: 0; }
  50%, 97% { opacity: 1; visibility: visible; z-index: 1; }
  100% { opacity: 0; visibility: hidden; z-index: 0; }
}

/* ── Browser + mall mock ── */
.ph-ext-browser {
  background: #fff;
  border: 1px solid var(--ph-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
}

@keyframes phExtBrowserIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

.ph-ext-browser-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.55rem 0.75rem;
  background: linear-gradient(180deg, #f1f5f9, #e2e8f0);
  border-bottom: 1px solid #cbd5e1;
}

.ph-ext-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ph-ext-dot--red { background: #f87171; }
.ph-ext-dot--yellow { background: #fbbf24; }
.ph-ext-dot--green { background: #4ade80; }

.ph-ext-browser-url {
  flex: 1;
  margin-left: 0.35rem;
  padding: 0.3rem 0.65rem;
  background: #fff;
  border-radius: 6px;
  font-size: 0.625rem;
  color: #64748b;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ph-ext-naver-storebar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  background: #fff;
  border-bottom: 1px solid #eee;
  font-size: 0.6875rem;
}

.ph-ext-naver-badge {
  padding: 0.12rem 0.35rem;
  background: #03c75a;
  color: #fff;
  font-size: 0.5625rem;
  font-weight: 800;
  border-radius: 3px;
  letter-spacing: 0.02em;
}

.ph-ext-naver-storename {
  color: #333;
  font-weight: 600;
}

.ph-ext-naver-body {
  position: relative;
  padding: 0.75rem 0.75rem 3.25rem;
  min-height: 260px;
  background: #fff;
}

.ph-ext-naver-layout {
  display: flex;
  gap: 0.65rem;
  text-align: left;
}

.ph-ext-naver-gallery {
  flex-shrink: 0;
  width: 88px;
}

.ph-ext-naver-main-img {
  width: 88px;
  height: 88px;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  background: #f8f8f8;
  overflow: hidden;
  animation: phExtImgPulse var(--ph-ext-cycle) ease-in-out infinite;
}

.ph-ext-naver-main-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes phExtImgPulse {
  0%, 100% { box-shadow: none; }
  9%, 14% { box-shadow: 0 0 0 2px rgba(3, 199, 90, 0.25); }
  59%, 64% { box-shadow: 0 0 0 2px rgba(229, 50, 45, 0.25); }
}

.ph-ext-naver-thumbs {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}

.ph-ext-naver-thumb {
  width: 26px;
  height: 26px;
  border-radius: 3px;
  border: 1px solid #ddd;
  background: #f5f5f5;
  overflow: hidden;
  flex-shrink: 0;
}

.ph-ext-naver-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ph-ext-naver-thumb--on {
  border-color: #03c75a;
  box-shadow: 0 0 0 1px #03c75a;
}

.ph-ext-naver-detail {
  flex: 1;
  min-width: 0;
}

.ph-ext-naver-title {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #111;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ph-ext-naver-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.2rem 0.35rem;
  margin-bottom: 0.25rem;
}

.ph-ext-naver-discount {
  font-size: 0.75rem;
  font-weight: 800;
  color: #fa622f;
}

.ph-ext-naver-price {
  font-size: 1rem;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.02em;
}

.ph-ext-naver-won {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #111;
}

.ph-ext-naver-origin {
  font-size: 0.5625rem;
  color: #999;
  text-decoration: line-through;
}

.ph-ext-naver-ship {
  margin: 0 0 0.5rem;
  font-size: 0.5625rem;
  color: #666;
}

.ph-ext-naver-select {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  margin-bottom: 0.4rem;
  animation: phExtNaverSelect var(--ph-ext-cycle) ease-in-out infinite;
}

@keyframes phExtNaverSelect {
  0%, 8%, 50%, 58%, 100% { border-color: #ddd; box-shadow: none; }
  10%, 15% { border-color: #03c75a; box-shadow: 0 0 0 2px rgba(3, 199, 90, 0.2); }
  60%, 65% { border-color: #03c75a; box-shadow: 0 0 0 2px rgba(3, 199, 90, 0.2); }
}

.ph-ext-naver-select-label {
  font-size: 0.625rem;
  color: #888;
}

.ph-ext-naver-select-caret {
  font-size: 0.625rem;
  color: #666;
}

.ph-ext-naver-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 2px);
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  z-index: 4;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  animation: phExtNaverDropdown var(--ph-ext-cycle) ease-in-out infinite;
}

.ph-ext-naver-dropdown span {
  display: block;
  padding: 0.35rem 0.5rem;
  font-size: 0.5625rem;
  color: #444;
  border-bottom: 1px solid #f0f0f0;
}

.ph-ext-naver-dropdown-pick {
  background: #f0fdf4 !important;
  color: #059669 !important;
  font-weight: 700;
}

@keyframes phExtNaverDropdown {
  0%, 9%, 50%, 59%, 100% { opacity: 0; transform: translateY(-4px); }
  10%, 14% { opacity: 1; transform: none; }
  60%, 64% { opacity: 1; transform: none; }
}

.ph-ext-naver-cartline {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.4rem 0.45rem;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 4px;
  margin-bottom: 0.4rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  animation: phExtNaverCartline var(--ph-ext-cycle) ease-in-out infinite;
}

@keyframes phExtNaverCartline {
  0%, 13%, 50%, 63%, 100% { opacity: 0; max-height: 0; padding-top: 0; padding-bottom: 0; margin-bottom: 0; border-width: 0; }
  15%, 26% { opacity: 1; max-height: 72px; padding: 0.4rem 0.45rem; margin-bottom: 0.4rem; border-width: 1px; }
  65%, 76% { opacity: 1; max-height: 72px; padding: 0.4rem 0.45rem; margin-bottom: 0.4rem; border-width: 1px; }
}

.ph-ext-naver-cartline-name {
  font-size: 0.5625rem;
  font-weight: 600;
  color: #333;
}

.ph-ext-naver-cartline-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ph-ext-naver-qty {
  font-size: 0.5625rem;
  color: #666;
}

.ph-ext-naver-qty em {
  font-style: normal;
  display: inline-block;
  width: 14px;
  text-align: center;
  color: #999;
}

.ph-ext-naver-cartline-price {
  font-size: 0.625rem;
  font-weight: 700;
  color: #111;
}

.ph-ext-naver-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
  border-top: 1px solid #eee;
  font-size: 0.5625rem;
  color: #666;
  margin-bottom: 0.45rem;
}

.ph-ext-naver-total strong {
  font-size: 0.75rem;
  color: #111;
  animation: phExtNaverTotalPop var(--ph-ext-cycle) ease-in-out infinite;
}

@keyframes phExtNaverTotalPop {
  0%, 14%, 50%, 64%, 100% { color: #111; transform: none; }
  16%, 18% { color: #03c75a; transform: scale(1.06); }
  66%, 68% { color: #03c75a; transform: scale(1.06); }
}

.ph-ext-naver-btns {
  display: flex;
  gap: 0.35rem;
}

.ph-ext-naver-btn {
  flex: 1;
  text-align: center;
  padding: 0.4rem 0;
  font-size: 0.5625rem;
  font-weight: 700;
  border-radius: 4px;
}

.ph-ext-naver-btn--cart {
  background: #fff;
  border: 1px solid #ddd;
  color: #333;
}

.ph-ext-naver-btn--buy {
  background: #03c75a;
  color: #fff;
}

/* ── Coupang mock overrides ── */
.ph-ext-coupang-badge {
  padding: 0.12rem 0.35rem;
  background: #0074e9;
  color: #fff;
  font-size: 0.5625rem;
  font-weight: 800;
  border-radius: 3px;
  letter-spacing: 0.02em;
}

.ph-ext-coupang-discount { color: #e5322d; }

.ph-ext-coupang-select {
  animation: phExtCoupangSelect var(--ph-ext-cycle) ease-in-out infinite;
}

@keyframes phExtCoupangSelect {
  0%, 8%, 50%, 58%, 100% { border-color: #ddd; box-shadow: none; }
  10%, 15% { border-color: #e5322d; box-shadow: 0 0 0 2px rgba(229, 50, 45, 0.2); }
  60%, 65% { border-color: #e5322d; box-shadow: 0 0 0 2px rgba(229, 50, 45, 0.2); }
}

.ph-ext-coupang-dropdown-pick {
  background: #fff5f5 !important;
  color: #e5322d !important;
}

.ph-ext-coupang-total {
  animation: phExtCoupangTotalPop var(--ph-ext-cycle) ease-in-out infinite;
}

@keyframes phExtCoupangTotalPop {
  0%, 14%, 50%, 64%, 100% { color: #111; transform: none; }
  16%, 18% { color: #e5322d; transform: scale(1.06); }
  66%, 68% { color: #e5322d; transform: scale(1.06); }
}

.ph-ext-coupang-btn--buy {
  background: #e5322d;
  color: #fff;
}

.ph-ext-browser--coupang .ph-ext-naver-main-img,
.ph-ext-browser--coupang .ph-ext-naver-dropdown,
.ph-ext-browser--coupang .ph-ext-naver-cartline,
.ph-ext-browser--coupang .ph-ext-fab-ring,
.ph-ext-browser--coupang .ph-ext-mock-fab,
.ph-ext-browser--coupang .ph-ext-cursor,
.ph-ext-browser--coupang .ph-ext-pointer-label {
  animation-delay: calc(var(--ph-ext-cycle) / -2);
}

.ph-ext-browser--coupang .ph-ext-coupang-select,
.ph-ext-browser--coupang .ph-ext-coupang-total {
  animation-delay: calc(var(--ph-ext-cycle) / -2);
}

.ph-ext-browser--coupang .ph-ext-fab-ring--2 {
  animation-delay: calc(var(--ph-ext-cycle) / -2 + 0.35s);
}

/* ── FAB zone ── */
.ph-ext-fab-zone {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 148px;
  height: 54px;
}

.ph-ext-fab-ring {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 138px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid rgba(16, 185, 129, 0.55);
  opacity: 0;
  pointer-events: none;
  animation: phExtFabRing var(--ph-ext-cycle) ease-out infinite;
}

.ph-ext-fab-ring--2 { animation-delay: 0.35s; }

@keyframes phExtFabRing {
  0%, 17%, 50%, 67%, 100% { opacity: 0; transform: scale(0.85); }
  19% { opacity: 0.85; transform: scale(1); }
  23% { opacity: 0; transform: scale(1.35); }
  69% { opacity: 0.85; transform: scale(1); }
  73% { opacity: 0; transform: scale(1.35); }
}

.ph-ext-mock-fab {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
  white-space: nowrap;
  animation: phExtFabEnter var(--ph-ext-cycle) ease-in-out infinite;
  z-index: 2;
}

@keyframes phExtFabEnter {
  0%, 16%, 50%, 66%, 100% {
    opacity: 0;
    transform: translateY(24px) scale(0.88);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
  }
  18% {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
  }
  21%, 23% {
    opacity: 1;
    transform: translateY(0) scale(0.94);
    box-shadow: 0 3px 12px rgba(16, 185, 129, 0.45);
  }
  25%, 27% {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
  }
  29%, 49% {
    opacity: 0;
    transform: translateY(12px) scale(0.9);
  }
  68% {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
  }
  71%, 73% {
    opacity: 1;
    transform: translateY(0) scale(0.94);
    box-shadow: 0 3px 12px rgba(16, 185, 129, 0.45);
  }
  75%, 77% {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
  }
  79%, 99% {
    opacity: 0;
    transform: translateY(12px) scale(0.9);
  }
}

.ph-ext-mock-fab-icon { font-size: 0.8125rem; }

.ph-ext-fab-text-short { display: none; }

.ph-ext-cursor {
  position: absolute;
  right: 52px;
  bottom: -6px;
  z-index: 3;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
  opacity: 0;
  animation: phExtCursorMove var(--ph-ext-cycle) ease-in-out infinite;
  pointer-events: none;
}

@keyframes phExtCursorMove {
  0%, 6%, 50%, 56%, 100% { opacity: 0; transform: translate(20px, 30px); }
  7%, 9% { opacity: 1; transform: translate(20px, 30px); }
  10% { opacity: 1; transform: translate(-40px, -80px); }
  12%, 14% { opacity: 1; transform: translate(-40px, -80px); }
  15% { opacity: 0; transform: translate(-40px, -80px); }
  19% { opacity: 0; transform: translate(30px, 20px); }
  20% { opacity: 1; transform: translate(30px, 20px); }
  22% { opacity: 1; transform: translate(0, 0); }
  23% { opacity: 1; transform: translate(0, 2px) scale(0.92); }
  25%, 49% { opacity: 0; transform: translate(0, 2px); }
  57%, 59% { opacity: 1; transform: translate(20px, 30px); }
  60% { opacity: 1; transform: translate(-40px, -80px); }
  62%, 64% { opacity: 1; transform: translate(-40px, -80px); }
  65% { opacity: 0; transform: translate(-40px, -80px); }
  69% { opacity: 0; transform: translate(30px, 20px); }
  70% { opacity: 1; transform: translate(30px, 20px); }
  72% { opacity: 1; transform: translate(0, 0); }
  73% { opacity: 1; transform: translate(0, 2px) scale(0.92); }
  75%, 99% { opacity: 0; transform: translate(0, 2px); }
}

.ph-ext-pointer-label {
  position: absolute;
  right: 0;
  bottom: 48px;
  font-size: 0.5625rem;
  font-weight: 800;
  color: #059669;
  background: rgba(255, 255, 255, 0.97);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  border: 1px solid rgba(16, 185, 129, 0.35);
  opacity: 0;
  animation: phExtPointerLabel var(--ph-ext-cycle) ease-in-out infinite;
  white-space: nowrap;
}

@keyframes phExtPointerLabel {
  0%, 17%, 50%, 67%, 100% { opacity: 0; transform: translateY(6px); }
  19%, 25% { opacity: 1; transform: none; }
  69%, 75% { opacity: 1; transform: none; }
}

/* ── PriceHunter panel ── */
.ph-ext-ph-panel {
  background: #fff;
  border: 1px solid var(--ph-border);
  border-radius: 14px;
  padding: 0.85rem;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  text-align: left;
  opacity: 0.4;
  transform: translateX(12px) scale(0.97);
  animation: phExtPanelReveal var(--ph-ext-cycle) ease-in-out infinite;
}

@keyframes phExtPanelReveal {
  0%, 20%, 50%, 70%, 100% { opacity: 0.35; transform: translateX(12px) scale(0.97); box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08); }
  22%, 27% { opacity: 1; transform: none; box-shadow: 0 16px 48px rgba(16, 185, 129, 0.15); }
  29%, 49% { opacity: 0.2; transform: scale(0.96); filter: blur(1px); }
  72%, 77% { opacity: 1; transform: none; box-shadow: 0 16px 48px rgba(16, 185, 129, 0.15); }
  79%, 99% { opacity: 0.2; transform: scale(0.96); filter: blur(1px); }
}

.ph-ext-ph-brand {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #f1f5f9;
}

.ph-ext-ph-logo { font-size: 1rem; line-height: 1; }

.ph-ext-ph-name {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--ph-text);
  letter-spacing: -0.02em;
}

.ph-ext-form-header {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--ph-text);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.ph-ext-form-badge {
  font-size: 0.5625rem;
  font-weight: 700;
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  animation: phExtBadgePop var(--ph-ext-cycle) ease-in-out infinite;
}

@keyframes phExtBadgePop {
  0%, 22%, 50%, 72%, 100% { transform: scale(1); }
  23.5% { transform: scale(1.08); }
  25% { transform: scale(1); }
  73.5% { transform: scale(1.08); }
  75% { transform: scale(1); }
}

.ph-ext-form-malls {
  margin: -0.35rem 0 0.65rem;
  padding: 0.5rem 0.55rem;
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border: 1px solid rgba(16, 185, 129, 0.28);
  border-radius: 10px;
  animation: phExtFormMallsReveal var(--ph-ext-cycle) ease-in-out infinite;
}

@keyframes phExtFormMallsReveal {
  0%, 21%, 50%, 71%, 100% { opacity: 0.45; transform: scale(0.98); }
  22%, 27% { opacity: 1; transform: none; box-shadow: 0 4px 16px rgba(16, 185, 129, 0.12); }
  29%, 49% { opacity: 0.2; transform: scale(0.96); }
  72%, 77% { opacity: 1; transform: none; box-shadow: 0 4px 16px rgba(16, 185, 129, 0.12); }
  79%, 99% { opacity: 0.2; transform: scale(0.96); }
}

.ph-ext-form-malls-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.5625rem;
  font-weight: 800;
  color: #047857;
  letter-spacing: -0.01em;
}

.ph-ext-form-mall-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.ph-ext-form-mall-chip {
  padding: 0.12rem 0.38rem;
  font-size: 0.5rem;
  font-weight: 700;
  color: #64748b;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  animation: phExtMallChipPulse var(--ph-ext-cycle) ease-in-out infinite;
}

.ph-ext-form-mall-chip:nth-child(1) { animation-delay: 0s; }
.ph-ext-form-mall-chip:nth-child(2) { animation-delay: 0.05s; }
.ph-ext-form-mall-chip:nth-child(3) { animation-delay: 0.1s; }
.ph-ext-form-mall-chip:nth-child(4) { animation-delay: 0.15s; }
.ph-ext-form-mall-chip:nth-child(5) { animation-delay: 0.2s; }

@keyframes phExtMallChipPulse {
  0%, 21.5%, 50%, 71.5%, 100% { color: #64748b; background: rgba(255, 255, 255, 0.75); border-color: #e2e8f0; }
  23%, 26.5% { color: #047857; background: #fff; border-color: rgba(16, 185, 129, 0.45); box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15); }
  73%, 76.5% { color: #047857; background: #fff; border-color: rgba(16, 185, 129, 0.45); box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15); }
}

.ph-ext-form-fields {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.ph-ext-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.ph-ext-form-key {
  font-size: 0.5625rem;
  font-weight: 600;
  color: #94a3b8;
}

.ph-ext-form-val {
  min-height: 26px;
  padding: 0.35rem 0.45rem;
  border-radius: 6px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.ph-ext-form-text {
  display: block;
  font-size: 0.5625rem;
  font-weight: 600;
  color: #334155;
  white-space: nowrap;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
}

.ph-ext-form-link--coupang {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 0.45rem;
  animation: phExtTextReveal1 var(--ph-ext-cycle) ease-in-out infinite,
    phExtFormLinkSwapB var(--ph-ext-cycle) ease-in-out infinite;
}

.ph-ext-form-link--naver {
  animation: phExtTextReveal1 var(--ph-ext-cycle) ease-in-out infinite,
    phExtFormLinkSwapA var(--ph-ext-cycle) ease-in-out infinite;
}

@keyframes phExtFormLinkSwapA {
  0%, 47% { opacity: 1; }
  50%, 97% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes phExtFormLinkSwapB {
  0%, 47% { opacity: 0; }
  50%, 97% { opacity: 1; }
  100% { opacity: 0; }
}

.ph-ext-form-text--1 { animation: phExtTextReveal1 var(--ph-ext-cycle) ease-in-out infinite; }
.ph-ext-form-text--2 { animation: phExtTextReveal2 var(--ph-ext-cycle) ease-in-out infinite; }
.ph-ext-form-text--3 { animation: phExtTextReveal3 var(--ph-ext-cycle) ease-in-out infinite; }

@keyframes phExtTextReveal1 {
  0%, 22%, 50%, 72%, 100% { clip-path: inset(0 100% 0 0); color: #94a3b8; }
  24%, 27% { clip-path: inset(0 0 0 0); color: #334155; }
  74%, 77% { clip-path: inset(0 0 0 0); color: #334155; }
}

@keyframes phExtTextReveal2 {
  0%, 23.5%, 50%, 73.5%, 100% { clip-path: inset(0 100% 0 0); color: #94a3b8; }
  25%, 27% { clip-path: inset(0 0 0 0); color: #334155; }
  75%, 77% { clip-path: inset(0 0 0 0); color: #334155; }
}

@keyframes phExtTextReveal3 {
  0%, 24.5%, 50%, 74.5%, 100% { clip-path: inset(0 100% 0 0); color: #94a3b8; }
  26%, 27% { clip-path: inset(0 0 0 0); color: #059669; font-weight: 800; }
  76%, 77% { clip-path: inset(0 0 0 0); color: #059669; font-weight: 800; }
}

.ph-ext-form-submit {
  margin-top: 0.65rem;
  padding: 0.45rem;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 8px;
  opacity: 0.35;
  animation: phExtSubmitShow var(--ph-ext-cycle) ease-in-out infinite;
}

@keyframes phExtSubmitShow {
  0%, 25%, 50%, 75%, 100% { opacity: 0.35; transform: scale(0.98); }
  26%, 28% { opacity: 1; transform: scale(1); box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35); }
  76%, 78% { opacity: 1; transform: scale(1); box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35); }
}

/* ── Loading → full report screen ── */
.ph-ext-report-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.65rem;
  padding: 0.45rem;
  font-size: 0.625rem;
  font-weight: 700;
  color: #059669;
  background: #f0fdf4;
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 8px;
  opacity: 0;
  animation: phExtReportLoading var(--ph-ext-cycle) ease-in-out infinite;
}

.ph-ext-report-loading-spinner {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(16, 185, 129, 0.25);
  border-top-color: #10b981;
  border-radius: 50%;
  animation: phExtReportSpinner 0.7s linear infinite;
}

@keyframes phExtReportSpinner {
  to { transform: rotate(360deg); }
}

@keyframes phExtReportLoading {
  0%, 26%, 50%, 76%, 100% { opacity: 0; transform: translateY(6px); }
  27%, 29% { opacity: 1; transform: none; }
  77%, 79% { opacity: 1; transform: none; }
}

.ph-ext-report-screen {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 14px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  animation: phExtReportScreen var(--ph-ext-cycle) ease-in-out infinite;
}

@keyframes phExtReportScreen {
  0%, 28%, 50%, 78%, 100% { opacity: 0; visibility: hidden; }
  29%, 49% { opacity: 1; visibility: visible; }
  79%, 99% { opacity: 1; visibility: visible; }
}

.ph-ext-report-screen-card {
  width: 100%;
  max-width: 420px;
  max-height: 100%;
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  padding: 0.9rem 1rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  text-align: left;
  transform: scale(0.88) translateY(24px);
  animation: phExtReportCard var(--ph-ext-cycle) cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes phExtReportCard {
  0%, 28.5%, 50%, 78.5%, 100% { opacity: 0; transform: scale(0.88) translateY(24px); }
  30%, 48% { opacity: 1; transform: none; }
  80%, 98% { opacity: 1; transform: none; }
}

.ph-ext-report-screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.ph-ext-report-screen-badge {
  font-size: 0.625rem;
  font-weight: 800;
  color: #059669;
  background: #ecfdf5;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.ph-ext-report-screen-time {
  font-size: 0.5625rem;
  font-weight: 600;
  color: #64748b;
}

.ph-ext-report-screen-title {
  margin: 0 0 0.4rem;
  font-size: 0.9375rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.03em;
}

.ph-ext-report-screen-product {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.45rem;
  margin-bottom: 0.45rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}

.ph-ext-report-screen-product img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  flex-shrink: 0;
}

.ph-ext-report-screen-product p {
  margin: 0 0 0.15rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.35;
}

.ph-ext-report-screen-product span {
  font-size: 0.625rem;
  color: #64748b;
  font-weight: 600;
}

.ph-ext-report-best-seller {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #065f46;
}

/* 최저가 한 곳 추천 카드 */
.ph-ext-report-best {
  padding: 0.75rem 0.8rem;
  margin-bottom: 0.55rem;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1.5px solid rgba(16, 185, 129, 0.5);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.18);
}

.ph-ext-report-best-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.ph-ext-report-best-tag {
  font-size: 0.5625rem;
  font-weight: 800;
  color: #fff;
  background: #059669;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  animation: phExtBestTagPulse 1.6s ease-in-out infinite;
}

@keyframes phExtBestTagPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.45); }
  50% { box-shadow: 0 0 0 5px rgba(16, 185, 129, 0); }
}

.ph-ext-report-best-price {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.ph-ext-report-best-price strong {
  font-size: 1.75rem;
  font-weight: 900;
  color: #047857;
  letter-spacing: -0.04em;
  line-height: 1;
  animation: phExtReportSavingsPop var(--ph-ext-cycle) ease-in-out infinite;
}

.ph-ext-report-best-price strong em {
  font-style: normal;
  font-size: 0.875rem;
  font-weight: 800;
  margin-left: 0.1rem;
}

@keyframes phExtReportSavingsPop {
  0%, 30%, 50%, 80%, 100% { transform: scale(0.9); opacity: 0.4; }
  32%, 48% { transform: scale(1); opacity: 1; }
  82%, 98% { transform: scale(1); opacity: 1; }
}

.ph-ext-report-best-was {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #94a3b8;
  text-decoration: line-through;
}

.ph-ext-report-best-save {
  display: inline-block;
  margin-top: 0.45rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.6875rem;
  font-weight: 800;
  color: #b45309;
  background: #fef3c7;
  border-radius: 999px;
}

.ph-ext-report-screen-verdict {
  padding: 0.45rem 0.55rem;
  margin-bottom: 0.5rem;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 10px;
}

.ph-ext-report-screen-verdict span {
  display: block;
  font-size: 0.5625rem;
  font-weight: 700;
  color: #b45309;
  margin-bottom: 0.2rem;
}

.ph-ext-report-screen-verdict strong {
  font-size: 0.75rem;
  font-weight: 800;
  color: #92400e;
  line-height: 1.45;
}

.ph-ext-report-actions {
  display: flex;
  gap: 0.4rem;
}

.ph-ext-report-screen-cta {
  flex: 1;
  padding: 0.55rem 0.4rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 10px;
}

.ph-ext-report-screen-cta--primary {
  color: #fff;
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.35);
}

.ph-ext-report-screen-cta--ghost {
  color: #047857;
  background: #fff;
  border: 1.5px solid rgba(16, 185, 129, 0.45);
}

.ph-ext-rpt-row--1 { animation: phExtReportRow1 var(--ph-ext-cycle) ease-out infinite; }
.ph-ext-rpt-row--2 { animation: phExtReportRow2 var(--ph-ext-cycle) ease-out infinite; }
.ph-ext-rpt-row--3 { animation: phExtReportRow3 var(--ph-ext-cycle) ease-out infinite; }
.ph-ext-rpt-row--4 { animation: phExtReportRow4 var(--ph-ext-cycle) ease-out infinite; }
.ph-ext-rpt-row--5 { animation: phExtReportRow5 var(--ph-ext-cycle) ease-out infinite; }

@keyframes phExtReportRow1 {
  0%, 30.5%, 50%, 80.5%, 100% { opacity: 0; transform: translateY(8px); }
  31.5%, 48% { opacity: 1; transform: none; }
  81.5%, 98% { opacity: 1; transform: none; }
}

@keyframes phExtReportRow2 {
  0%, 31.5%, 50%, 81.5%, 100% { opacity: 0; transform: translateY(8px); }
  32.5%, 48% { opacity: 1; transform: none; }
  82.5%, 98% { opacity: 1; transform: none; }
}

@keyframes phExtReportRow3 {
  0%, 32.5%, 50%, 82.5%, 100% { opacity: 0; transform: translateY(8px); }
  33.5%, 48% { opacity: 1; transform: none; }
  83.5%, 98% { opacity: 1; transform: none; }
}

@keyframes phExtReportRow4 {
  0%, 33.5%, 50%, 83.5%, 100% { opacity: 0; transform: translateY(8px); }
  34.5%, 48% { opacity: 1; transform: none; }
  84.5%, 98% { opacity: 1; transform: none; }
}

@keyframes phExtReportRow5 {
  0%, 34.5%, 50%, 84.5%, 100% { opacity: 0; transform: translateY(8px); }
  35.5%, 48% { opacity: 1; transform: none; }
  85.5%, 98% { opacity: 1; transform: none; }
}

@keyframes phExtBrowserDim {
  0%, 28%, 50%, 78%, 100% { filter: none; opacity: 1; }
  29%, 49% { filter: blur(1px); opacity: 0.45; }
  79%, 99% { filter: blur(1px); opacity: 0.45; }
}

.ph-ext-quickstart-caption {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--ph-text-muted);
  line-height: 1.55;
  word-break: keep-all;
  padding: 0 0.25rem;
}

/* ── Extension demo: mobile ── */
@media (max-width: 639px) {
  .ph-ext-quickstart {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }

  .ph-ext-quickstart-grid {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .ph-ext-quickstart-step {
    padding: 1.25rem 1rem;
  }

  .ph-ext-quickstart-step h3 {
    font-size: 1rem;
  }

  .ph-ext-quickstart-step p {
    font-size: 0.875rem;
  }

  .ph-ext-quickstart-visual {
    margin-bottom: 1.5rem;
  }

  .ph-ext-demo-stage {
    gap: 0.75rem;
    min-height: 480px;
  }

  .ph-ext-browser {
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.12);
  }

  .ph-ext-browser-chrome {
    padding: 0.45rem 0.55rem;
  }

  .ph-ext-browser-url {
    font-size: 0.5625rem;
    padding: 0.28rem 0.45rem;
  }

  .ph-ext-naver-storebar {
    padding: 0.4rem 0.55rem;
    font-size: 0.625rem;
  }

  .ph-ext-naver-body {
    padding: 0.65rem 0.65rem 3rem;
    min-height: 0;
  }

  /* 모바일 네이버: 상단 히어로 이미지 + 하단 정보 */
  .ph-ext-naver-layout {
    flex-direction: column;
    gap: 0.55rem;
  }

  .ph-ext-naver-gallery {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  .ph-ext-naver-main-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    max-height: 148px;
  }

  .ph-ext-naver-thumbs {
    margin-top: 0;
    gap: 5px;
  }

  .ph-ext-naver-thumb {
    width: 34px;
    height: 34px;
  }

  .ph-ext-naver-title {
    font-size: 0.75rem;
    -webkit-line-clamp: 3;
  }

  .ph-ext-naver-price {
    font-size: 1.0625rem;
  }

  .ph-ext-naver-discount {
    font-size: 0.8125rem;
  }

  .ph-ext-naver-ship {
    font-size: 0.625rem;
    margin-bottom: 0.45rem;
  }

  .ph-ext-naver-select-label,
  .ph-ext-naver-select-caret {
    font-size: 0.6875rem;
  }

  .ph-ext-naver-dropdown span {
    font-size: 0.625rem;
    padding: 0.4rem 0.5rem;
  }

  .ph-ext-naver-cartline-name,
  .ph-ext-naver-qty,
  .ph-ext-naver-cartline-price {
    font-size: 0.625rem;
  }

  .ph-ext-naver-total {
    font-size: 0.625rem;
  }

  .ph-ext-naver-total strong {
    font-size: 0.8125rem;
  }

  .ph-ext-naver-btn {
    font-size: 0.625rem;
    padding: 0.45rem 0;
  }

  .ph-ext-fab-zone {
    right: 6px;
    bottom: 6px;
    width: 118px;
    height: 48px;
  }

  .ph-ext-fab-ring {
    width: 112px;
    height: 38px;
  }

  .ph-ext-mock-fab {
    padding: 0.5rem 0.7rem;
    font-size: 0.625rem;
  }

  .ph-ext-pointer-label {
    font-size: 0.5rem;
    bottom: 44px;
    padding: 0.12rem 0.35rem;
  }

  .ph-ext-cursor {
    display: none;
  }

  .ph-ext-ph-panel {
    padding: 0.75rem;
    border-radius: 12px;
  }

  .ph-ext-form-header {
    font-size: 0.8125rem;
  }

  .ph-ext-form-malls {
    padding: 0.45rem 0.5rem;
  }

  .ph-ext-form-mall-chip {
    font-size: 0.6875rem;
    padding: 0.2rem 0.5rem;
  }

  .ph-ext-form-val {
    min-height: 28px;
    padding: 0.4rem 0.45rem;
  }

  .ph-ext-form-text {
    font-size: 0.625rem;
  }

  .ph-ext-form-submit {
    font-size: 0.75rem;
    padding: 0.55rem;
  }

  .ph-ext-report-screen {
    padding: 0.5rem;
    border-radius: 12px;
  }

  .ph-ext-report-screen-card {
    padding: 1rem;
    max-width: none;
  }

  .ph-ext-report-screen-title {
    font-size: 1rem;
  }

  .ph-ext-report-best-price strong {
    font-size: 1.625rem;
  }

  .ph-ext-quickstart-caption {
    font-size: 0.8125rem;
  }
}

@media (max-width: 399px) {
  .ph-ext-dot {
    display: none;
  }

  .ph-ext-browser-url {
    margin-left: 0;
  }

  .ph-ext-naver-storename {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 11rem;
  }

  .ph-ext-naver-main-img {
    max-height: 128px;
  }

  .ph-ext-fab-text-full { display: none; }
  .ph-ext-fab-text-short { display: inline; }

  .ph-ext-fab-zone {
    width: 72px;
  }

  .ph-ext-fab-ring {
    width: 68px;
  }

  .ph-ext-mock-fab {
    padding: 0.5rem 0.55rem;
    gap: 0.2rem;
  }

  .ph-ext-pointer-label {
    display: none;
  }

  .ph-ext-naver-btns {
    gap: 0.25rem;
  }

  .ph-ext-chrome-btn {
    width: 100%;
    max-width: 20rem;
    padding: 0.8rem 1.25rem;
    font-size: 0.9375rem;
  }

  .ph-ext-form-malls-label {
    font-size: 0.625rem;
  }

  .ph-ext-form-mall-chip {
    font-size: 0.625rem;
    padding: 0.18rem 0.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ph-ext-quickstart-step,
  .ph-ext-browser,
  .ph-ext-naver-main-img,
  .ph-ext-naver-select,
  .ph-ext-naver-dropdown,
  .ph-ext-naver-cartline,
  .ph-ext-naver-total strong,
  .ph-ext-fab-ring,
  .ph-ext-mock-fab,
  .ph-ext-cursor,
  .ph-ext-pointer-label,
  .ph-ext-ph-panel,
  .ph-ext-form-badge,
  .ph-ext-form-malls,
  .ph-ext-form-mall-chip,
  .ph-ext-form-text,
  .ph-ext-form-submit,
  .ph-ext-report-loading,
  .ph-ext-report-screen,
  .ph-ext-report-screen-card,
  .ph-ext-report-best-tag,
  .ph-ext-report-best-price strong,
  .ph-ext-rpt-row--1,
  .ph-ext-rpt-row--2,
  .ph-ext-rpt-row--3,
  .ph-ext-rpt-row--4,
  .ph-ext-rpt-row--5 {
    animation: none !important;
  }
  .ph-ext-mock-fab { opacity: 1; transform: none; }
  .ph-ext-ph-panel { opacity: 1; transform: none; filter: none; }
  .ph-ext-naver-dropdown { opacity: 1; transform: none; }
  .ph-ext-naver-cartline { opacity: 1; max-height: none; }
  .ph-ext-form-text { clip-path: none; }
  .ph-ext-form-malls { opacity: 1; transform: none; }
  .ph-ext-form-mall-chip { color: #047857; background: #fff; border-color: rgba(16, 185, 129, 0.45); }
  .ph-ext-form-submit { opacity: 1; }
  .ph-ext-report-loading { opacity: 0; }
  .ph-ext-report-screen { opacity: 1; visibility: visible; }
  .ph-ext-report-screen-card { opacity: 1; transform: none; }
  .ph-ext-report-best-price strong { opacity: 1; transform: none; }
  .ph-ext-rpt-row--1,
  .ph-ext-rpt-row--2,
  .ph-ext-rpt-row--3,
  .ph-ext-rpt-row--4,
  .ph-ext-rpt-row--5 { opacity: 1; transform: none; }
  .ph-ext-browser--coupang { opacity: 0 !important; visibility: hidden !important; }
  .ph-ext-browser--naver { opacity: 1 !important; visibility: visible !important; }
  .ph-ext-form-link--coupang { opacity: 0 !important; clip-path: none; }
  .ph-ext-form-link--naver { opacity: 1 !important; clip-path: none; }
}

.ph-ext-quickstart-cta {
  text-align: center;
}

.ph-ext-chrome-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: #1a73e8;
  color: #fff !important;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(26, 115, 232, 0.35);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.ph-ext-chrome-btn:hover {
  background: #1557b0;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 115, 232, 0.4);
}

.ph-ext-quickstart-malls {
  margin-top: 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ph-text-muted);
}

/* ── FAQ ── */
#faq-section {
  background: var(--ph-bg) !important;
  padding: 5rem 1.25rem !important;
}

#faq-section .ph-section-title {
  text-align: center;
  color: var(--ph-text);
}

.ph-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ph-faq-item {
  background: var(--ph-bg-card);
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius);
  overflow: hidden;
}

.ph-faq-item button {
  width: 100%;
  padding: 1.125rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--ph-text);
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  transition: background 0.2s;
}

.ph-faq-item button:hover {
  background: rgba(255, 255, 255, 0.03);
}

.ph-faq-item button svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--ph-text-muted);
  transition: transform 0.2s;
}

.ph-faq-item.is-open button svg {
  transform: rotate(180deg);
}

.ph-faq-item .ph-faq-answer {
  padding: 0 1.25rem 1.125rem;
  color: var(--ph-text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.ph-faq-item .ph-faq-answer.hidden {
  display: none;
}

/* ── Bottom CTA ── */
#bottom-cta-section {
  background: linear-gradient(180deg, var(--ph-bg-elevated) 0%, var(--ph-bg) 100%) !important;
  border-top: 1px solid var(--ph-border);
}

#bottom-cta-section .btn-cta-primary {
  background: var(--ph-emerald) !important;
  border-radius: var(--ph-radius) !important;
}

#bottom-cta-section .btn-cta-secondary {
  background: transparent !important;
  border: 1px solid var(--ph-border-strong) !important;
  color: var(--ph-text) !important;
  border-radius: var(--ph-radius) !important;
}

/* ── Footer ── */
.ph-site-footer {
  background: var(--ph-bg) !important;
  border-top: 1px solid var(--ph-border);
}

/* ── Splash (premium dark) ── */
.splash-screen.splash-premium {
  background: var(--ph-bg) !important;
  animation: splashPremiumIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.splash-screen.splash-premium::before,
.splash-screen.splash-premium::after {
  display: none !important;
}

.splash-screen.splash-premium.phase-2,
.splash-screen.splash-premium.phase-3,
.splash-screen.splash-premium.splash-ad-emerald {
  animation: none !important;
}

@keyframes splashPremiumIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.splash-screen.splash-premium .splash-ad-bg {
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(59, 130, 246, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
    var(--ph-bg) !important;
}

.splash-screen.splash-premium .splash-ad-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
  z-index: 1;
}

.splash-screen.splash-premium .splash-ad-sweep {
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.04) 50%, transparent 58%) !important;
}

.splash-screen.splash-premium .splash-ad-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 20;
}

.splash-screen.splash-premium .splash-ad-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--ph-accent), var(--ph-emerald));
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.splash-screen.splash-premium .splash-skip-btn {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: var(--ph-border) !important;
  color: var(--ph-text-muted) !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em;
}

.splash-screen.splash-premium .splash-skip-btn:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: var(--ph-border-strong) !important;
  color: var(--ph-text) !important;
}

.splash-screen.splash-premium .splash-ad-scene {
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.65s !important;
}

.splash-screen.splash-premium .splash-ad-eyebrow,
.splash-screen.splash-premium .splash-ad-step {
  display: inline-block;
  padding: 0.4rem 0.875rem;
  margin-bottom: 1.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ph-accent);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.22);
  font-family: 'Noto Sans KR', sans-serif;
}

.splash-screen.splash-premium .splash-ad-hook-line {
  font-size: clamp(2rem, 7vw, 3.25rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em !important;
  text-shadow: none !important;
  line-height: 1.22 !important;
}

.splash-screen.splash-premium .splash-ad-accent-text {
  background: linear-gradient(135deg, #34d399 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.splash-screen.splash-premium .splash-ad-hook-sub,
.splash-screen.splash-premium .splash-ad-transition-sub {
  color: var(--ph-text-muted) !important;
  font-weight: 500 !important;
  max-width: 22rem;
}

.splash-screen.splash-premium .splash-ad-transition-line {
  font-size: clamp(1.75rem, 5.5vw, 2.75rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;
  text-shadow: none !important;
}

.splash-screen.splash-premium .splash-ad-steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ph-text-muted);
  font-family: 'Noto Sans KR', sans-serif;
  margin-bottom: 0.25rem;
}

.splash-screen.splash-premium .splash-ad-steps-row .is-active {
  color: var(--ph-emerald);
}

.splash-screen.splash-premium .splash-ad-steps-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ph-border-strong);
}

.splash-screen.splash-premium .splash-ad-url-bar {
  background: var(--ph-bg-card) !important;
  border: 1px solid var(--ph-border) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35) !important;
}

.splash-screen.splash-premium .splash-ad-url-icon {
  color: var(--ph-text-muted) !important;
}

.splash-screen.splash-premium .splash-ad-url-text {
  color: var(--ph-text) !important;
}

.splash-screen.splash-premium .splash-ad-cursor {
  color: var(--ph-accent) !important;
}

.splash-screen.splash-premium .splash-ad-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--ph-text-muted) !important;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
}

.splash-screen.splash-premium .splash-ad-loader-ring {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--ph-emerald);
  border-radius: 50%;
  animation: splashLoaderSpin 0.8s linear infinite;
  flex-shrink: 0;
}

@keyframes splashLoaderSpin {
  to { transform: rotate(360deg); }
}

.splash-screen.splash-premium .splash-ad-report {
  background: var(--ph-bg-card) !important;
  border: 1px solid var(--ph-border) !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45) !important;
  border-radius: var(--ph-radius-xl) !important;
  padding: 1.35rem !important;
}

.splash-screen.splash-premium .splash-ad-report-thumb {
  width: 72px !important;
  height: 72px !important;
  border-radius: var(--ph-radius) !important;
  overflow: hidden !important;
  flex-shrink: 0;
  background: var(--ph-bg-elevated) !important;
  border: 1px solid var(--ph-border) !important;
}

.splash-screen.splash-premium .splash-ad-report-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.splash-screen.splash-premium .splash-ad-report-badge {
  background: rgba(16, 185, 129, 0.12) !important;
  color: var(--ph-emerald) !important;
  border: 1px solid rgba(16, 185, 129, 0.25);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.splash-screen.splash-premium .splash-ad-report-title {
  color: var(--ph-text) !important;
  font-weight: 700 !important;
}

.splash-screen.splash-premium .splash-ad-report-user {
  margin: 0.2rem 0 0;
  font-size: 0.8125rem;
  color: var(--ph-text-muted);
  font-family: 'Noto Sans KR', sans-serif;
}

.splash-screen.splash-premium .splash-ad-price-box {
  background: var(--ph-bg-elevated) !important;
  border: 1px solid var(--ph-border) !important;
}

.splash-screen.splash-premium .splash-ad-price-box .label {
  color: var(--ph-text-muted) !important;
}

.splash-screen.splash-premium .splash-ad-price-box .value {
  color: var(--ph-text) !important;
}

.splash-screen.splash-premium .splash-ad-price-box--after .value {
  color: var(--ph-emerald) !important;
}

.splash-screen.splash-premium .splash-ad-price-arrow {
  font-size: unset !important;
  display: flex;
  align-items: center;
  color: var(--ph-text-muted);
}

.splash-screen.splash-premium .splash-ad-price-arrow svg {
  width: 1.25rem;
  height: 1.25rem;
}

.splash-screen.splash-premium .splash-ad-report-subline {
  color: var(--ph-text-muted) !important;
}

.splash-screen.splash-premium .splash-ad-report-savings {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.15)) !important;
  color: var(--ph-emerald) !important;
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-weight: 700 !important;
}

.splash-screen.splash-premium .splash-ad-report-checks li {
  color: var(--ph-text-muted) !important;
  font-weight: 500 !important;
}

.splash-screen.splash-premium .splash-ad-report-checks li::before {
  content: '';
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2310b981' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/contain no-repeat;
}

.splash-screen.splash-premium .splash-ad-brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.splash-screen.splash-premium .splash-ad-brand-lockup .ph-logo-mark {
  width: 64px;
  height: 64px;
  border-radius: 16px;
}

.splash-screen.splash-premium .splash-ad-brand-lockup .ph-logo-mark svg {
  width: 32px;
  height: 32px;
}

.splash-screen.splash-premium .splash-ad-brand-name {
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 800;
  color: var(--ph-text);
  letter-spacing: -0.03em;
  font-family: 'Noto Sans KR', sans-serif;
}

.splash-screen.splash-premium .splash-ad-brand-sub {
  color: var(--ph-text-muted) !important;
  font-weight: 500 !important;
}

.splash-screen.splash-premium .splash-ad-trial-btn {
  background: linear-gradient(135deg, var(--ph-emerald) 0%, var(--ph-emerald-hover) 100%) !important;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35) !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em;
}

.splash-screen.splash-premium .splash-ad-trial-btn:hover {
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.45) !important;
}

/* Popup cleanup */
#savings-popup .popup-card {
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%) !important;
  border: 1px solid var(--ph-border-strong);
}

#reviews-section .hero-element {
  opacity: 1 !important;
}

#savings-popup h2 {
  animation: none !important;
}
