/* EKCOW production homepage — extracted from patterns + apple inline */
/* EKCOW homepage pattern shared styles (Tailwind 보완) */

@font-face {
  font-family: 'Pretendard';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/packages/pretendard/dist/web/static/woff2/Pretendard-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Pretendard';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/packages/pretendard/dist/web/static/woff2/Pretendard-SemiBold.woff2') format('woff2');
}
@font-face {
  font-family: 'Pretendard';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/packages/pretendard/dist/web/static/woff2/Pretendard-Bold.woff2') format('woff2');
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* iPhone mockup */
.phone-shell {
  position: relative;
  width: min(280px, 78vw);
  aspect-ratio: 9 / 19.5;
  border-radius: 2.5rem;
  padding: 0.55rem;
  background: linear-gradient(145deg, #2a2a2e 0%, #0f0f12 55%, #1c1c22 100%);
  box-shadow:
    0 32px 64px rgba(16, 26, 34, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.phone-shell::before {
  content: '';
  position: absolute;
  top: 0.65rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 1.1rem;
  border-radius: 999px;
  background: #0a0a0c;
  z-index: 3;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  overflow: hidden;
  background: #101a22;
}

.phone-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.phone-shot.is-active {
  opacity: 1;
  pointer-events: auto;
}

.phone-shot video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Travel photo + pin overlay */
.travel-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
}

.travel-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(16, 26, 34, 0.15);
  font-size: 0.72rem;
  font-weight: 600;
  color: #101a22;
}

.location-pin svg {
  width: 0.9rem;
  height: 0.9rem;
  color: #5a9fd8;
  flex-shrink: 0;
}

/* Travel info mock cards */
.info-card-mock {
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid rgba(224, 224, 224, 0.9);
  box-shadow: 0 8px 24px rgba(16, 26, 34, 0.06);
}

.info-card-mock .label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(16, 26, 34, 0.5);
  margin-bottom: 0.35rem;
}

.info-card-mock .value {
  font-size: 1.35rem;
  font-weight: 700;
  color: #101a22;
  line-height: 1.2;
}

.info-card-mock .sub {
  font-size: 0.78rem;
  color: rgba(16, 26, 34, 0.55);
  margin-top: 0.25rem;
}

.info-card-mock .delta-up {
  color: #e53935;
  font-weight: 600;
}

.info-card-mock .delta-down {
  color: #2e7d32;
  font-weight: 600;
}

/* Pronunciation card mock */
.pronunciation-card {
  border-radius: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, #e8f4fd 0%, #f5f7f8 100%);
  border: 1px solid rgba(134, 197, 249, 0.35);
}

/* Glass morphism */
.glass-panel {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.25rem;
}

/* Pattern hub card */
.pattern-hub-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pattern-hub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(16, 26, 34, 0.1);
}

.pattern-badge-recommended {
  background: linear-gradient(135deg, #5a9fd8, #86c5f9);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

/* Material ripple-ish */
.m3-card {
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.m3-card:hover {
  box-shadow: 0 12px 28px rgba(16, 26, 34, 0.12);
}

/* Store badges */
.store-badge img {
  height: 44px;
  width: auto;
  display: block;
}

@media (max-width: 640px) {
  .store-badge img {
    height: 40px;
  }
}

/* Section eyebrow (icon chip + index) */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.section-eyebrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, rgba(134, 197, 249, 0.28), rgba(90, 159, 216, 0.16));
  color: #5a9fd8;
  flex-shrink: 0;
}

.section-eyebrow-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.section-eyebrow-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5a9fd8;
}

.section-eyebrow-index {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(16, 26, 34, 0.25);
  font-variant-numeric: tabular-nums;
}

/* App chip (arrival apps) */
.app-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 0.4rem;
  border-radius: 0.9rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.app-chip:hover {
  background: rgba(134, 197, 249, 0.12);
  transform: translateY(-2px);
}

.app-chip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  background: rgba(134, 197, 249, 0.18);
  color: #5a9fd8;
}

.app-chip-icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.app-chip-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(16, 26, 34, 0.75);
}

/* 7-day weather mini bars */
.weather-week {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
  height: 3rem;
}

.weather-bar {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #86c5f9, #5a9fd8);
  min-height: 0.5rem;
  transition: height 0.6s ease;
}

/* Info card micro visuals (Travel Info benchmark) */
.info-card-mock {
  position: relative;
}

.card-mock-icon {
  position: absolute;
  top: 1rem;
  right: 1.05rem;
  font-size: 0.82rem;
  line-height: 1;
  opacity: 0.55;
}

.card-visual {
  margin-top: auto;
  padding-top: 0.75rem;
}

.mini-progress {
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(16, 26, 34, 0.08);
  overflow: hidden;
}

.mini-progress__fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #5a9fd8, #86c5f9);
}

.mini-progress__fill--success {
  background: linear-gradient(90deg, #43a047, #66bb6a);
}

.mini-mask-dots {
  display: flex;
  gap: 0.3rem;
}

.mini-mask-dots span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: rgba(16, 26, 34, 0.18);
}

.mini-dots {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.mini-dots span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #86c5f9, #5a9fd8);
}

.mini-dots--apps span:nth-child(1) { background: #4285f4; }
.mini-dots--apps span:nth-child(2) { background: #34a853; }
.mini-dots--apps span:nth-child(3) { background: #00b900; }
.mini-dots--apps span:nth-child(4) { background: #ff6b35; }

.mini-stars {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.mini-stars__icons {
  font-size: 0.68rem;
  letter-spacing: -0.04em;
  color: #f5a623;
}

.mini-stars__score {
  font-size: 0.78rem;
  font-weight: 700;
  color: #101a22;
}

.mini-arrows {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.mini-arrows__from,
.mini-arrows__to {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(16, 26, 34, 0.45);
}

.mini-arrows__line {
  flex: 1;
  height: 0.12rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(90, 159, 216, 0.25), #5a9fd8, rgba(90, 159, 216, 0.25));
  position: relative;
}

.mini-arrows__line::after {
  content: '→';
  position: absolute;
  right: -0.15rem;
  top: 50%;
  transform: translateY(-58%);
  font-size: 0.55rem;
  color: #5a9fd8;
}

.mini-wave {
  display: flex;
  align-items: flex-end;
  gap: 0.22rem;
  height: 1.35rem;
}

.mini-wave span {
  flex: 1;
  max-width: 0.32rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #86c5f9, #5a9fd8);
  min-height: 0.25rem;
}

.mini-pins {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.mini-pins__dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: rgba(16, 26, 34, 0.12);
}

.mini-pins__dot.is-active {
  background: linear-gradient(135deg, #86c5f9, #5a9fd8);
  box-shadow: 0 0 0 2px rgba(90, 159, 216, 0.25);
}

.mini-pins__dist {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(16, 26, 34, 0.45);
}

.mini-pins--map .mini-pins__dot:nth-child(1) { margin-top: 0.15rem; }
.mini-pins--map .mini-pins__dot:nth-child(2) { margin-top: -0.1rem; }
.mini-pins--map .mini-pins__dot:nth-child(3) { margin-top: 0.2rem; }

.mini-play {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mini-play__btn {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #86c5f9, #5a9fd8);
  position: relative;
}

.mini-play__btn::after {
  content: '';
  position: absolute;
  left: 0.52rem;
  top: 50%;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 0.28rem 0 0.28rem 0.42rem;
  border-color: transparent transparent transparent #fff;
}

.mini-play__time {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(16, 26, 34, 0.5);
  font-variant-numeric: tabular-nums;
}

.mini-calendar {
  display: inline-flex;
  align-items: baseline;
  gap: 0.1rem;
  padding: 0.25rem 0.55rem;
  border-radius: 0.5rem;
  background: rgba(90, 159, 216, 0.1);
  border: 1px solid rgba(90, 159, 216, 0.2);
}

.mini-calendar__day {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(16, 26, 34, 0.45);
}

.mini-calendar__plus {
  font-size: 0.88rem;
  font-weight: 700;
  color: #5a9fd8;
}

.mini-wifi {
  display: flex;
  align-items: flex-end;
  gap: 0.15rem;
  height: 1.1rem;
}

.mini-wifi__arc {
  width: 0.35rem;
  height: 0.35rem;
  border: 2px solid rgba(16, 26, 34, 0.15);
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 0 0 100% 0;
  transform: rotate(45deg);
}

.mini-wifi__arc:nth-child(2) {
  width: 0.55rem;
  height: 0.55rem;
  margin-bottom: -0.05rem;
}

.mini-wifi__arc:nth-child(3) {
  width: 0.75rem;
  height: 0.75rem;
  margin-bottom: -0.1rem;
}

.mini-wifi__arc.is-active {
  border-color: #5a9fd8;
  border-top-color: transparent;
  border-left-color: transparent;
}

.mini-chat-dots {
  display: flex;
  align-items: flex-end;
  gap: 0.3rem;
}

.mini-chat-dots__bubble {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(16, 26, 34, 0.12);
}

.mini-chat-dots__bubble:nth-child(1) {
  background: linear-gradient(135deg, #86c5f9, #5a9fd8);
  opacity: 0.55;
}

.mini-chat-dots__bubble:nth-child(2) {
  background: linear-gradient(135deg, #86c5f9, #5a9fd8);
  opacity: 0.8;
}

.mini-chat-dots__bubble.is-typing {
  width: 0.38rem;
  height: 0.38rem;
  margin-bottom: 0.08rem;
  animation: mini-typing 1.2s ease-in-out infinite;
}

@keyframes mini-typing {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}

@media (prefers-reduced-motion: reduce) {
  .mini-chat-dots__bubble.is-typing { animation: none; }
}

/* Chat bubble mock (translate) */
.chat-bubble {
  max-width: 85%;
  padding: 0.6rem 0.85rem;
  border-radius: 1rem;
  font-size: 0.85rem;
  line-height: 1.45;
}

.chat-bubble--them {
  background: #fff;
  border: 1px solid rgba(224, 224, 224, 0.9);
  border-bottom-left-radius: 0.35rem;
  align-self: flex-start;
}

.chat-bubble--me {
  background: linear-gradient(135deg, #86c5f9, #5a9fd8);
  color: #fff;
  border-bottom-right-radius: 0.35rem;
  align-self: flex-end;
}

/* Scroll cue */
.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(16, 26, 34, 0.45);
}

.scroll-cue svg {
  width: 1rem;
  height: 1rem;
  animation: scroll-bounce 1.8s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue svg { animation: none; }
}

/* Trust chips */
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(224, 224, 224, 0.8);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(16, 26, 34, 0.75);
}

.trust-chip svg {
  width: 0.95rem;
  height: 0.95rem;
  color: #5a9fd8;
}

/* Small phone frame for grids */
.mini-phone {
  border-radius: 1.25rem;
  padding: 0.3rem;
  background: linear-gradient(145deg, #2a2a2e, #0f0f12);
  box-shadow: 0 16px 32px rgba(16, 26, 34, 0.14);
}

.mini-phone img {
  border-radius: 1rem;
  display: block;
  width: 100%;
}

/* ── Framer page: theme comparison switcher ── */

.framer-page {
  background: linear-gradient(160deg, #0f172a 0%, #1e3a5f 40%, #5a9fd8 100%);
  min-height: 100vh;
  transition: background 0.45s ease, color 0.35s ease;
}

.framer-page[data-framer-theme="homepage"] {
  background:
    radial-gradient(circle at top left, #e8f4fd 0, transparent 55%),
    radial-gradient(circle at bottom right, #f0f8ff 0, transparent 55%),
    #f5f7f8;
  color: #101a22;
}

.framer-theme-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  padding: 0.55rem 1rem;
  background: rgba(16, 26, 34, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.framer-theme-bar-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.framer-theme-bar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.framer-theme-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.framer-theme-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.framer-theme-btn.is-active {
  background: rgba(134, 197, 249, 0.22);
  border-color: rgba(134, 197, 249, 0.55);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(134, 197, 249, 0.25);
}

.framer-theme-swatch {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.framer-theme-swatch--framer {
  background: linear-gradient(135deg, #0f172a 0%, #5a9fd8 100%);
}

.framer-theme-swatch--homepage {
  background:
    radial-gradient(circle at 30% 30%, #e8f4fd 0, transparent 70%),
    #f5f7f8;
}

/* Homepage (/) theme overrides on Framer layout */
.framer-page[data-framer-theme="homepage"] .text-white {
  color: #101a22;
}

.framer-page[data-framer-theme="homepage"] .text-white\/75 {
  color: rgba(16, 26, 34, 0.75);
}

.framer-page[data-framer-theme="homepage"] .text-white\/50 {
  color: rgba(16, 26, 34, 0.5);
}

.framer-page[data-framer-theme="homepage"] .text-primary-light {
  color: #5a9fd8;
}

.framer-page[data-framer-theme="homepage"] .framer-site-header {
  background: rgba(245, 247, 248, 0.92);
  border-color: rgba(0, 0, 0, 0.05);
}

.framer-page[data-framer-theme="homepage"] .framer-nav-select {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.1);
  color: #101a22;
}

.framer-page[data-framer-theme="homepage"] .border-white\/10 {
  border-color: rgba(0, 0, 0, 0.08);
}

.framer-page[data-framer-theme="homepage"] .glass-panel {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(224, 224, 224, 0.95);
  box-shadow: 0 12px 40px rgba(16, 26, 34, 0.08);
}

.framer-page[data-framer-theme="homepage"] .location-pin svg {
  color: #5a9fd8;
}

@media (prefers-reduced-motion: reduce) {
  .framer-page {
    transition: none;
  }
}

/* ── Framer (text variant): hero CTA + text cards + support modal ── */

/* Hero: 좌(타이틀·신뢰) / 우(배지·CTA) 2열 */
.framer-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.framer-hero-main {
  min-width: 0;
}

.framer-hero-aside {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .framer-hero-grid {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.5rem 3rem;
  }

  .framer-hero-main {
    grid-column: 1;
    grid-row: 1;
  }

  .framer-hero-aside {
    grid-column: 2;
    grid-row: 1;
    align-items: flex-end;
    padding-top: 0.15rem;
    flex-shrink: 0;
  }

  .framer-hero-trust {
    grid-column: 1;
    grid-row: 2;
    margin-top: 1.25rem;
  }

  .framer-hero-badges {
    justify-content: flex-end;
  }

  .framer-hero-actions {
    justify-content: flex-end;
  }
}

@media (max-width: 1023px) {
  .framer-hero-aside {
    order: 2;
  }

  .framer-hero-trust {
    order: 3;
    margin-top: 0.25rem;
  }
}

.framer-hero-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.framer-hero-logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.85rem;
  box-shadow: 0 8px 20px rgba(90, 159, 216, 0.35);
  flex-shrink: 0;
}

.framer-hero-eyebrow {
  margin: 0;
}

.framer-hero-actions {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  min-width: 11.5rem;
}

.framer-action-emoji {
  font-size: 1.05rem;
  line-height: 1;
  flex-shrink: 0;
}

.framer-hero-badges {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.framer-hero-badges .store-badge img {
  height: 44px;
}

@media (min-width: 1024px) {
  .framer-hero-badges .store-badge img {
    height: 42px;
  }
}

.framer-action {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.framer-action svg {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
}

.framer-action:hover {
  transform: translateY(-2px);
}

.framer-action--primary {
  background: linear-gradient(135deg, #86c5f9, #5a9fd8);
  color: #0f172a;
  box-shadow: 0 12px 28px rgba(90, 159, 216, 0.35);
}

.framer-action--primary:hover {
  box-shadow: 0 16px 34px rgba(90, 159, 216, 0.45);
}

.framer-action--outline {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.framer-action--outline:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.55);
}

/* 네모 CTA 버튼 (배지와 구분, 클릭 유도) */
.framer-action--rect {
  width: 100%;
  justify-content: center;
  border-radius: 0.7rem;
  padding: 0.72rem 1.1rem;
  font-size: 0.84rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.42);
  color: #fff;
  box-shadow:
    0 4px 16px rgba(8, 15, 26, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.framer-action--rect:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(134, 197, 249, 0.38) 0%, rgba(90, 159, 216, 0.24) 100%);
  border-color: rgba(134, 197, 249, 0.72);
  box-shadow:
    0 10px 26px rgba(90, 159, 216, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.framer-action--rect:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(8, 15, 26, 0.2);
}

.framer-action--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
}

.framer-action--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* Homepage theme overrides for hero actions */
.framer-page[data-framer-theme="homepage"] .framer-action--primary {
  color: #fff;
}

.framer-page[data-framer-theme="homepage"] .framer-action--outline {
  background: #fff;
  border-color: rgba(16, 26, 34, 0.15);
  color: #101a22;
}

.framer-page[data-framer-theme="homepage"] .framer-action--outline:hover {
  background: #f5f7f8;
  border-color: rgba(16, 26, 34, 0.28);
}

.framer-page[data-framer-theme="homepage"] .framer-action--rect {
  background: linear-gradient(180deg, #fff 0%, #f5f7f8 100%);
  border: 1.5px solid rgba(16, 26, 34, 0.16);
  color: #101a22;
  box-shadow:
    0 4px 14px rgba(16, 26, 34, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.framer-page[data-framer-theme="homepage"] .framer-action--rect:hover {
  background: linear-gradient(180deg, #e8f4fd 0%, #d4ebfc 100%);
  border-color: rgba(90, 159, 216, 0.55);
  color: #0f172a;
  box-shadow:
    0 10px 24px rgba(90, 159, 216, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.framer-page[data-framer-theme="homepage"] .framer-action--ghost {
  border-color: rgba(16, 26, 34, 0.18);
  color: rgba(16, 26, 34, 0.75);
}

.framer-page[data-framer-theme="homepage"] .framer-action--ghost:hover {
  background: rgba(16, 26, 34, 0.05);
  color: #101a22;
}

/* Full-width text card */
.framer-content-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .framer-content-stack {
    gap: 1.5rem;
    padding-right: 0.5rem;
  }
}

.framer-text-card {
  padding: 1.65rem 1.75rem;
  scroll-margin-top: 10rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

@media (min-width: 640px) {
  .framer-text-card {
    padding: 2rem 2.25rem;
  }
}

.framer-card-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b8ddfa;
}

.framer-page[data-framer-theme="homepage"] .framer-card-label {
  color: #5a9fd8;
}

.framer-text-card-title {
  margin-top: 0.85rem;
  font-size: 1.45rem;
  line-height: 1.38;
  font-weight: 700;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .framer-text-card-title {
    font-size: 1.7rem;
    line-height: 1.36;
  }
}

.framer-text-card-body {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.9rem;
  line-height: 1.68;
  max-width: 36rem;
}

.framer-text-card-body p {
  margin: 0;
}

.framer-page[data-framer-theme="homepage"] .framer-text-card-body {
  color: rgba(16, 26, 34, 0.72);
}

.framer-text-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.framer-text-card-index {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.3);
  font-variant-numeric: tabular-nums;
}

.framer-page[data-framer-theme="homepage"] .framer-text-card-index {
  color: rgba(16, 26, 34, 0.28);
}

/* Support modal */
.framer-support-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.framer-support-modal.is-open {
  display: flex;
}

.framer-support-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 26, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.framer-support-dialog {
  position: relative;
  width: 100%;
  max-width: 27rem;
  max-height: calc(100vh - 2.5rem);
  overflow-y: auto;
  border-radius: 1.4rem;
  padding: 1.75rem;
  background: #101a22;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.framer-support-close {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.framer-support-close:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.framer-support-title {
  font-size: 1.25rem;
  font-weight: 800;
}

.framer-support-desc {
  margin-top: 0.4rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

.framer-support-form {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.framer-support-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.framer-support-field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.framer-support-field label span {
  color: #86c5f9;
}

.framer-support-field input,
.framer-support-field select,
.framer-support-field textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
}

.framer-support-field textarea {
  resize: vertical;
  min-height: 5rem;
}

.framer-support-field input:focus,
.framer-support-field select:focus,
.framer-support-field textarea:focus {
  outline: none;
  border-color: rgba(134, 197, 249, 0.65);
  box-shadow: 0 0 0 3px rgba(134, 197, 249, 0.18);
}

.framer-support-field select option {
  color: #101a22;
}

.framer-support-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.framer-support-submit {
  margin-top: 0.35rem;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #86c5f9, #5a9fd8);
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: box-shadow 0.2s ease, opacity 0.2s ease;
}

.framer-support-submit:hover {
  box-shadow: 0 12px 26px rgba(90, 159, 216, 0.4);
}

.framer-support-submit:disabled {
  opacity: 0.6;
  cursor: default;
}

.framer-support-msg {
  font-size: 0.82rem;
  min-height: 1.1rem;
}

.framer-support-msg.is-error {
  color: #ff8f8f;
}

.framer-support-msg.is-success {
  color: #8be0a8;
}

/* ── Framer (text variant): commercial-grade design points ── */

/* Gradient headline text */
.framer-grad-text {
  background: linear-gradient(135deg, #b8ddfa 0%, #86c5f9 45%, #5a9fd8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Trust strip — 가로 1열(줄바꿈 허용) */
.ekcow-trust-strip {
  margin-top: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.55rem;
  list-style: none;
  padding: 0;
  max-width: 42rem;
}

.ekcow-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.82);
  width: auto;
  max-width: 100%;
}

.ekcow-trust-item strong {
  font-weight: 700;
  color: #fff;
}

.framer-trust-emoji {
  font-size: 1rem;
  line-height: 1;
}

.framer-page[data-framer-theme="homepage"] .ekcow-trust-item {
  background: #fff;
  border-color: rgba(16, 26, 34, 0.1);
  color: rgba(16, 26, 34, 0.75);
  box-shadow: 0 6px 18px rgba(16, 26, 34, 0.06);
}

.framer-page[data-framer-theme="homepage"] .ekcow-trust-item strong {
  color: #101a22;
}

/* Section card: icon chip + hierarchy + hover */
.framer-card-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.framer-card-icon {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.75rem;
  font-size: 1.1rem;
  line-height: 1;
  background: linear-gradient(135deg, rgba(134, 197, 249, 0.28), rgba(90, 159, 216, 0.14));
  border: 1px solid rgba(134, 197, 249, 0.25);
  flex-shrink: 0;
}

.framer-text-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #86c5f9, #5a9fd8);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.framer-text-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(16, 26, 34, 0.28);
  border-color: rgba(134, 197, 249, 0.4);
}

.framer-text-card:hover::before {
  opacity: 1;
}

/* 데스크톱: 좌측 텍스트 카드 = 폰 목업 + 하단 인덱스 높이, 상단 정렬 */
@media (min-width: 1024px) {
  .framer-text-page {
    --framer-phone-w: 280px;
    --framer-phone-h: calc(var(--framer-phone-w) * 19.5 / 9);
    --framer-phone-index-h: 3.25rem;
    --framer-phone-total-h: calc(var(--framer-phone-h) + var(--framer-phone-index-h));
  }

  .framer-text-page .framer-text-card {
    min-height: var(--framer-phone-total-h);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
}

/* Phone column: 그리드 열 전체 높이 확보 → sticky 동작 */
@media (min-width: 1024px) {
  .ekcow-phone-column {
    align-self: stretch;
    position: relative;
  }

  .ekcow-phone-column .sticky {
    position: sticky;
    top: 9rem; /* top-36 = 헤더+테마바 */
  }
}

/* framer-text: 실제 스크린샷(1290×2796) 전용 — 베젤·노치 최소화, 크롭 방지 */
.framer-text-page .ekcow-phone-shell--screenshot {
  padding: 0.38rem;
  border-radius: 2.35rem;
  background: linear-gradient(145deg, #3a3a3e 0%, #1a1a1e 55%, #2c2c32 100%);
}

.framer-text-page .ekcow-phone-shell--screenshot::before {
  display: none;
}

.framer-text-page .ekcow-phone-shell--screenshot .phone-screen {
  border-radius: 1.95rem;
  background: #f5f7f8;
}

.framer-text-page .ekcow-phone-shell--screenshot .phone-shot {
  object-fit: contain;
  object-position: top center;
  image-rendering: -webkit-optimize-contrast;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Travel Info 디테일 이미지 샘플 (A~D) */
.framer-detail-samples-page .framer-detail-sample {
  scroll-margin-top: 8rem;
}

.framer-detail-sample-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.framer-page[data-framer-theme="homepage"] .framer-detail-sample-meta {
  border-bottom-color: rgba(16, 26, 34, 0.1);
}

.framer-detail-sample-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f2744;
  background: linear-gradient(135deg, #b8ddfa 0%, #86c5f9 100%);
}

.framer-detail-sample-badge--b {
  background: linear-gradient(135deg, #c8f0d8 0%, #7fd4a8 100%);
}

.framer-detail-sample-badge--c {
  background: linear-gradient(135deg, #ffe4b8 0%, #ffc86c 100%);
}

.framer-detail-sample-badge--d {
  background: linear-gradient(135deg, #e4d4ff 0%, #b99aff 100%);
}

.framer-detail-sample-desc {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

.framer-page[data-framer-theme="homepage"] .framer-detail-sample-desc {
  color: rgba(16, 26, 34, 0.62);
}

.framer-detail-sample-desc code {
  font-size: 0.72rem;
  padding: 0.1rem 0.35rem;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.08);
}

.framer-page[data-framer-theme="homepage"] .framer-detail-sample-desc code {
  background: rgba(16, 26, 34, 0.06);
}

/* A: max-height + cover */
.framer-detail-a {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.framer-detail-a img {
  width: 100%;
  max-height: 14rem;
  object-fit: cover;
  object-position: top center;
  border-radius: 0.75rem;
  box-shadow: 0 10px 24px rgba(16, 26, 34, 0.22);
}

@media (min-width: 1024px) {
  .framer-detail-a img {
    max-height: 16rem;
  }
}

/* B: mini thumbnail */
.framer-detail-b {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.framer-detail-b img {
  width: min(38%, 10rem);
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 10px 24px rgba(16, 26, 34, 0.22);
}

/* C: cropped UI assets */
.framer-detail-c {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.framer-detail-c img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 10px 24px rgba(16, 26, 34, 0.22);
}

/* D: fixed aspect-ratio box */
.framer-detail-d {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.framer-detail-d__cell {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 0.75rem;
  background: #f5f7f8;
  box-shadow: 0 10px 24px rgba(16, 26, 34, 0.22);
}

.framer-detail-d__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.framer-detail-samples-nav {
  position: sticky;
  bottom: 1rem;
  z-index: 20;
}

.framer-detail-samples-link {
  display: inline-flex;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.framer-detail-samples-link:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
}

.framer-page[data-framer-theme="homepage"] .framer-detail-samples-link {
  color: #101a22;
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(16, 26, 34, 0.1);
}

/* Phone progress dots + label (목업 하단) */
.ekcow-phone-label {
  margin: 1rem 0 0.35rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.7);
}

.ekcow-phone-progress {
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}

.ekcow-phone-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  transition: width 0.3s ease, background 0.3s ease;
}

.ekcow-phone-dot.is-active {
  width: 1.6rem;
  background: linear-gradient(90deg, #86c5f9, #5a9fd8);
}

.framer-page[data-framer-theme="homepage"] .ekcow-phone-label {
  color: rgba(16, 26, 34, 0.65);
}

.framer-page[data-framer-theme="homepage"] .ekcow-phone-dot {
  background: rgba(16, 26, 34, 0.18);
}

.ekcow-home-page .ekcow-phone-dot {
  background: rgba(16, 26, 34, 0.18);
}

/* Apple pattern: framer-text hero + sticky phone (light theme) */
.ekcow-home-page .ekcow-grad-text {
  background: linear-gradient(135deg, #5a9fd8 0%, #86c5f9 50%, #5a9fd8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ekcow-home-page .ekcow-hero-trust .ekcow-trust-item {
  background: #fff;
  border-color: rgba(16, 26, 34, 0.1);
  color: rgba(16, 26, 34, 0.75);
  box-shadow: 0 6px 18px rgba(16, 26, 34, 0.06);
}

.ekcow-home-page .ekcow-phone-label {
  color: rgba(16, 26, 34, 0.65);
}

.ekcow-home-page .ekcow-phone-shell {
  width: min(var(--ekcow-phone-w, 260px), 100%);
}

.ekcow-home-page .ekcow-phone-shell--screenshot .phone-shot,
.ekcow-home-page .ekcow-phone-shell--screenshot video.phone-shot {
  object-fit: cover;
  object-position: top center;
}

.ekcow-home-page .hero-right.ekcow-phone-column {
  align-self: stretch;
}

.ekcow-home-page .ekcow-info-cards .info-card-mock {
  border-radius: 1.15rem;
  padding: 1.15rem 1.2rem;
  min-height: 9.5rem;
  display: flex;
  flex-direction: column;
}

.ekcow-home-page .ekcow-hero-trust {
  max-width: 100%;
}

.ekcow-home-page .ekcow-info-cards .info-card-mock .value {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
}

.ekcow-home-page .ekcow-info-cards.ekcow-info-cards--media .info-card-mock .value,
.ekcow-home-page .ekcow-info-cards.ekcow-info-cards--life .info-card-mock .value {
  font-size: clamp(0.82rem, 1.35vw, 1rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ekcow-home-page .ekcow-info-cards.ekcow-info-cards--media .info-card-mock {
  min-height: 8.5rem;
}

.ekcow-home-page .ekcow-info-cards .info-card-mock .weather-week,
.ekcow-home-page .ekcow-info-cards .info-card-mock .card-visual {
  margin-top: auto;
  padding-top: 0.75rem;
}

.ekcow-home-page .ekcow-info-cards .info-card-mock .value--fit {
  font-size: clamp(0.88rem, 1.45vw, 1.1rem);
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.ekcow-home-page .ekcow-info-cards .info-card-mock .card-mock-icon {
  opacity: 0.45;
}

/* Final CTA glass card */
.framer-final-cta {
  position: relative;
  padding: 3rem 1.75rem;
  border-radius: 1.75rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(134, 197, 249, 0.3);
  box-shadow: 0 24px 60px rgba(8, 15, 26, 0.4), 0 0 0 1px rgba(134, 197, 249, 0.12) inset;
  overflow: hidden;
}

.framer-final-cta::before {
  content: '';
  position: absolute;
  inset: -40% 30% auto 30%;
  height: 60%;
  background: radial-gradient(closest-side, rgba(134, 197, 249, 0.35), transparent);
  pointer-events: none;
}

.framer-final-badge {
  position: relative;
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #cfe8ff;
  background: rgba(134, 197, 249, 0.16);
  border: 1px solid rgba(134, 197, 249, 0.35);
}

.framer-final-chips {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.framer-page[data-framer-theme="homepage"] .framer-final-cta {
  background: #fff;
  border-color: rgba(16, 26, 34, 0.08);
  box-shadow: 0 24px 60px rgba(16, 26, 34, 0.1);
}

.framer-page[data-framer-theme="homepage"] .framer-final-badge {
  color: #2f6ea3;
}

.framer-page[data-framer-theme="homepage"] .framer-final-chips {
  color: rgba(16, 26, 34, 0.6);
}

/* Focus-visible ring (accessibility polish) */
.framer-text-page a:focus-visible,
.framer-text-page button:focus-visible,
.framer-text-page select:focus-visible,
.framer-text-page input:focus-visible,
.framer-text-page textarea:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(134, 197, 249, 0.55);
  border-radius: 0.6rem;
}

@media (prefers-reduced-motion: reduce) {
  .framer-text-card,
  .framer-text-card::before,
  .ekcow-phone-dot {
    transition: none;
  }
}


/* ---- page-specific (from apple.html inline) ---- */

    /* 프로덕션 홈페이지와 동일한 팔레트의 그라데이션을 화면 전체에 고정 */
    body::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: -1;
        pointer-events: none;
        background:
            radial-gradient(circle at top left, #E8F4FD 0, transparent 55%),
            radial-gradient(circle at bottom right, #F0F8FF 0, transparent 55%),
            #F5F7F8;
    }

    /* 폰 목업 사이즈 */
    #hero-rot-phone {
        width: var(--phone-mockup-width, 240px);
        max-width: 100%;
    }
    #hero-rot-phone .phone-frame {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        border-radius: 1.92rem;
        padding: var(--phone-mockup-bezel);
        background: #101a22;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
        border: 1px solid rgba(16, 26, 34, 0.15);
    }
    #hero-rot-phone .phone-inner {
        border-radius: 1.7rem;
        overflow: hidden;
        position: relative;
    }
    #hero-rot-phone .phone-inner--shots {
        border-radius: 1.6rem;
        background: #000;
        border: none;
    }
    #hero-rot-phone .phone-shots-viewport {
        position: relative;
        width: 100%;
        aspect-ratio: var(--phone-mockup-ratio);
        overflow: hidden;
        background: #000;
    }
    #hero-rot-phone .phone-shot {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        opacity: 0;
        transition: opacity 1.1s ease-in-out;
        will-change: opacity;
    }
    #hero-rot-phone .phone-shot.is-active {
        opacity: 1;
        z-index: 1;
    }

    /* ===== 원본 홈페이지 이식: 변수 · 헤더 · 문의 모달 · 약관 · 푸터 ===== */
    :root {
        --primary: #86C5F9;
        --primary-light: #B8DDFA;
        --primary-dark: #5A9FD8;
        --surface: #FFFFFF;
        --text-main: #101A22;
        --text-muted: rgba(16, 26, 34, 0.6);
        --text-soft: rgba(16, 26, 34, 0.4);
        --phone-mockup-width: min(240px, 67.2vw);
        --phone-mockup-bezel: 0.32rem;
        --phone-mockup-ratio: 9 / 19.5;
        /* 애플 시안 전용: 우측(헤더·폰)이 원본보다 바깥으로 나가지 않도록 본문 폭 조정 */
        --ekcow-content-max: 1040px;
    }

    /* 원본 홈페이지와 동일한 가로 폭 */
    * {
        box-sizing: border-box;
    }
    .page {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        width: 100%;
        /* overflow-x를 주면 sticky 폰이 깨지므로 넣지 않음 */
    }

    /* 헤더 */
    header {
        position: sticky;
        top: 0;
        z-index: 20;
        backdrop-filter: blur(18px);
        background: rgba(245, 247, 248, 0.9);
        border-bottom: 1px solid rgba(224, 224, 224, 0.8);
        width: 100%;
    }
    /* index.html .nav-inner — 애플 시안은 우측을 원본에 맞춰 안쪽으로 */
    .nav-inner {
        max-width: var(--ekcow-content-max);
        margin: 0 auto;
        padding: 0.775rem 1.25rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }
    .brand {
        display: flex;
        align-items: center;
        gap: 0.6rem;
    }
    .brand-icon {
        width: 32px;
        height: 32px;
        border-radius: 0.9rem;
        object-fit: cover;
        box-shadow: 0 8px 20px rgba(90, 159, 216, 0.35);
    }
    .brand-text {
        display: flex;
        flex-direction: column;
        gap: 0.1rem;
    }
    .brand-lockup {
        display: flex;
        flex-direction: column;
        gap: 0.15rem;
        line-height: 1.25;
    }
    .brand-lockup__name {
        font-size: 0.92rem;
        font-weight: 700;
        letter-spacing: 0.02em;
        color: var(--text-main);
    }
    .brand-lockup__tagline {
        font-size: 0.68rem;
        font-weight: 500;
        letter-spacing: 0.11em;
        text-transform: uppercase;
        color: rgba(16, 26, 34, 0.48);
    }
    @media (max-width: 640px) {
        .brand-lockup__name { font-size: 0.85rem; }
        .brand-lockup__tagline {
            font-size: 0.58rem;
            letter-spacing: 0.08em;
        }
    }
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 0.35rem;
        flex-shrink: 0;
        min-width: 0;
    }
    .ekcow-nav-btn {
        appearance: none;
        border: none;
        font: inherit;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.48rem 0.95rem;
        min-height: 44px;
        border-radius: 999px;
        font-size: 0.78rem;
        font-weight: 600;
        letter-spacing: 0.01em;
        background: var(--text-main);
        color: #fff;
        transition: background 0.15s ease, box-shadow 0.15s ease;
    }
    .ekcow-nav-btn:hover {
        background: #1a2832;
        box-shadow: 0 6px 16px rgba(16, 26, 34, 0.14);
    }
    .ekcow-home-page .ekcow-nav-btn:focus-visible {
        outline: none;
        box-shadow: 0 0 0 3px rgba(134, 197, 249, 0.55);
    }
    @media (max-width: 520px) {
        .ekcow-nav-btn {
            padding: 0.48rem 0.8rem;
            font-size: 0.75rem;
        }
    }
    .ekcow-home-page .store-badge--guide {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        height: 44px;
        padding: 0 1.25rem;
        border-radius: 0.65rem;
        border: 1.5px solid #111;
        background: #fff;
        color: #111;
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: -0.01em;
        text-decoration: none;
        white-space: nowrap;
        box-sizing: border-box;
        box-shadow: none;
        transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
    }
    .ekcow-home-page .store-badge--guide:hover {
        background: #111;
        color: #fff;
        transform: translateY(-1px);
    }
    .ekcow-home-page .store-badge--guide:focus-visible {
        outline: none;
        box-shadow: 0 0 0 3px rgba(16, 26, 34, 0.22);
    }
    @media (max-width: 640px) {
        .ekcow-home-page .store-badge--guide {
            height: 40px;
            padding: 0 1.05rem;
            font-size: 0.76rem;
        }
    }

    /* 모바일 섹션별 목업 */
    .ekcow-section-phone {
        display: none;
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    .ekcow-info-card__bullets {
        margin: 0.5rem 0 0;
        padding: 0;
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
    }
    .ekcow-info-card__bullets li {
        font-size: 0.78rem;
        color: var(--text-muted);
        line-height: 1.45;
        padding-left: 0.85rem;
        position: relative;
        overflow-wrap: anywhere;
    }
    .ekcow-info-card__bullets li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.55em;
        width: 0.28rem;
        height: 0.28rem;
        border-radius: 50%;
        background: var(--primary-dark);
    }
    .card-visual--combo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
    }

    /* 공통 섹션 · CTA */
    .section {
        max-width: var(--ekcow-content-max);
        margin: 0 auto;
        padding: 3.5rem 1.25rem;
    }
    .content-shell {
        max-width: var(--ekcow-content-max);
        margin: 0 auto;
        padding: 2.5rem 1.25rem 2.375rem;
    }
    /* 원본 홈페이지 .hero 와 동일 비율 — 우측(헤더 끝·폰)이 과도하게 바깥으로 나가지 않도록 */
    .hero {
        display: grid;
        grid-template-columns: minmax(0, 3fr) minmax(0, 2.6fr);
        gap: 2.75rem;
        align-items: start;
    }
    @media (min-width: 1024px) {
        .ekcow-home-page {
            --ekcow-phone-w: 260px;
            --ekcow-phone-h: calc(var(--ekcow-phone-w) * 19.5 / 9);
            --ekcow-phone-index-h: 3.25rem;
            --ekcow-phone-total-h: calc(var(--ekcow-phone-h) + var(--ekcow-phone-index-h));
        }
        .ekcow-hero-panel {
            min-height: var(--ekcow-phone-total-h);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-top: 0.25rem;
            padding-bottom: 1.5rem;
        }
        .hero-right-sticky {
            min-height: var(--ekcow-phone-total-h);
            justify-content: center;
            padding-top: 0;
        }
    }
    .hero-right {
        position: relative;
        width: 100%;
        max-width: none;
        justify-self: stretch;
    }
    .hero-right-sticky {
        position: sticky;
        top: 6rem;
        display: flex;
        flex-direction: column;
        align-items: center; /* 원본처럼 우측 컬럼 안 가운데 → 전체 우측이 한 칸 안쪽으로 */
        padding-top: 0.5rem;
        width: 100%;
        z-index: 5;
    }
    @media (max-width: 1023px) {
        .hero {
            grid-template-columns: minmax(0, 1fr);
        }
        .hero-right {
            display: none;
        }
        .content-shell {
            padding: 1.75rem 1rem 2.5rem;
        }
        .ekcow-hero-panel {
            text-align: center;
        }
        .ekcow-hero-panel .ekcow-hero-actions {
            justify-content: center;
        }
        .ekcow-section-phone {
            display: flex;
        }
        .ekcow-section-phone .phone-shell {
            width: min(220px, 58vw);
        }
        .ekcow-home-page #ekcow-scroll-root > section {
            padding-top: 3.75rem;
            padding-bottom: 3.75rem;
        }
        .ekcow-home-page .ekcow-info-cards {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
        .ekcow-home-page .ekcow-info-cards.ekcow-info-cards--media .info-card-mock .value,
        .ekcow-home-page .ekcow-info-cards.ekcow-info-cards--life .info-card-mock .value {
            white-space: normal;
            overflow: visible;
            text-overflow: clip;
        }
    }
    @media (max-width: 479px) {
        .nav-inner {
            padding: 0.7rem 1rem;
            gap: 0.5rem;
        }
        .brand-lockup__tagline {
            display: none;
        }
        .ekcow-home-page .ekcow-info-cards {
            grid-template-columns: minmax(0, 1fr);
        }
        .ekcow-home-page #ekcow-scroll-root > section {
            padding-top: 3rem;
            padding-bottom: 3rem;
        }
    }
    .cta-section {
        text-align: center;
        padding-top: 2.2rem;
        padding-bottom: 3.5rem;
    }
    .cta-heading {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 0.9rem;
        color: var(--text-main);
    }
    .btn-primary {
        padding: 0.45rem 0.95rem;
        border-radius: 999px;
        border: none;
        cursor: pointer;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: white;
        box-shadow: 0 8px 20px rgba(90, 159, 216, 0.35);
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
    }
    .btn-primary span {
        font-size: 0.8rem;
    }
    .btn-primary::after {
        content: "↗";
        font-size: 0.8rem;
    }

    /* 약관 · 정책 */
    .terms-links-section {
        padding: 0 1.25rem 2.75rem;
    }
    .terms-links-inner {
        max-width: 720px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid rgba(224, 224, 224, 0.95);
    }
    .terms-links-kicker {
        font-size: 0.68rem;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        color: var(--text-soft);
        margin-bottom: 0.4rem;
    }
    .terms-links-title {
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-main);
        margin-bottom: 1.35rem;
        letter-spacing: -0.02em;
    }
    .terms-links-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        column-gap: 1.5rem;
    }
    .terms-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        padding: 0.72rem 0;
        font-size: 0.84rem;
        font-weight: 500;
        color: var(--text-muted);
        text-decoration: none;
        border-bottom: 1px solid rgba(224, 224, 224, 0.75);
        transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
    }
    .terms-link:hover {
        color: var(--primary-dark);
        border-color: rgba(90, 159, 216, 0.45);
    }
    .terms-link:focus-visible {
        outline: 2px solid var(--primary-light);
        outline-offset: 2px;
        border-radius: 4px;
    }
    .terms-link-label {
        text-align: left;
        line-height: 1.45;
    }
    .terms-link-arrow {
        flex-shrink: 0;
        width: 0.4rem;
        height: 0.4rem;
        border-right: 1.5px solid currentColor;
        border-bottom: 1.5px solid currentColor;
        transform: rotate(-45deg);
        opacity: 0.45;
        transition: opacity 0.18s ease, transform 0.18s ease;
    }
    .terms-link:hover .terms-link-arrow {
        opacity: 0.85;
        transform: rotate(-45deg) translate(1px, -1px);
    }
    @media (max-width: 560px) {
        .terms-links-grid { grid-template-columns: minmax(0, 1fr); }
    }

    /* 푸터 */
    footer {
        border-top: 1px solid rgba(224, 224, 224, 0.9);
        padding: 1rem 1.25rem 1.5rem;
        font-size: 0.75rem;
        color: var(--text-soft);
        text-align: center;
    }

    /* 문의하기 모달 */
    .support-modal {
        position: fixed;
        inset: 0;
        z-index: 2000;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 1.25rem;
    }
    .support-modal.is-open { display: flex; }
    .support-modal-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(16, 26, 34, 0.48);
    }
    .support-modal-dialog {
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: 580px;
        max-height: 96vh;
        overflow-x: hidden;
        overflow-y: auto;
        padding: 1.2rem 1.35rem 1.35rem;
        border-radius: 16px;
        border: 1px solid rgba(224, 224, 224, 0.95);
        background: #fff;
        box-shadow: 0 20px 50px rgba(16, 26, 34, 0.18);
        scrollbar-width: thin;
        scrollbar-color: rgba(16, 26, 34, 0.2) transparent;
    }
    .support-modal-close {
        position: absolute;
        top: 0.65rem;
        right: 0.75rem;
        width: 2rem;
        height: 2rem;
        border: none;
        border-radius: 8px;
        background: transparent;
        color: var(--text-muted);
        font-size: 1.35rem;
        line-height: 1;
        cursor: pointer;
    }
    .support-modal-close:hover {
        background: rgba(16, 26, 34, 0.06);
        color: var(--text-main);
    }
    .support-modal-title {
        font-size: 1.15rem;
        font-weight: 600;
        margin: 0 2rem 0.35rem 0;
        letter-spacing: -0.02em;
    }
    .support-modal.is-submitting .support-modal-close,
    .support-modal.is-submitting [data-support-close] {
        pointer-events: none;
        opacity: 0.45;
    }
    .support-form {
        max-width: 560px;
        margin: 0 auto;
    }
    .support-modal-dialog .support-form {
        max-width: none;
        margin: 0;
        padding: 0;
        border: none;
        box-shadow: none;
        background: transparent;
    }
    .support-field { margin-bottom: 0.65rem; }
    .support-field label {
        display: block;
        font-size: 0.78rem;
        font-weight: 600;
        margin-bottom: 0.35rem;
        color: var(--text-main);
    }
    .support-field input,
    .support-field select,
    .support-field textarea {
        width: 100%;
        padding: 0.55rem 0.7rem;
        border: 1px solid rgba(224, 224, 224, 0.95);
        border-radius: 10px;
        font-size: 0.85rem;
        font-family: inherit;
        background: #fff;
        box-sizing: border-box;
    }
    .support-field textarea {
        resize: vertical;
        min-height: 88px;
        max-height: 160px;
    }
    .support-hp {
        position: absolute;
        left: -9999px;
        opacity: 0;
        height: 0;
        width: 0;
        pointer-events: none;
    }
    .support-form .btn-submit {
        width: 100%;
        padding: 0.75rem 1rem;
        margin-top: 0.25rem;
        border: none;
        border-radius: 999px;
        cursor: pointer;
        font-size: 0.85rem;
        font-weight: 600;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: white;
        box-shadow: 0 8px 20px rgba(90, 159, 216, 0.35);
    }
    .support-form .btn-submit:disabled {
        opacity: 0.65;
        cursor: not-allowed;
    }
    .support-form-msg {
        min-height: 1.2em;
        font-size: 0.82rem;
        margin-top: 0.5rem;
        text-align: center;
    }
    .support-form-msg.is-error { color: #c0392b; }
    .support-form-msg.is-success { color: #1e7e34; }
    .support-hint {
        font-size: 0.72rem;
        color: var(--text-soft);
        text-align: center;
        margin: 0.35rem 0 0.5rem;
        line-height: 1.45;
    }
    .support-attach-row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5rem;
    }
    .support-attach-row input[type="file"] {
        font-size: 0.8rem;
        max-width: 100%;
    }
    .support-attach-status {
        font-size: 0.75rem;
        color: var(--text-muted);
    }
    .support-attach-preview {
        display: flex;
        flex-wrap: wrap;
        gap: 0.65rem;
        margin-top: 0.75rem;
        min-height: 0;
    }
    .support-preview-item {
        position: relative;
        width: 88px;
        flex-shrink: 0;
    }
    .support-preview-item img {
        width: 88px;
        height: 88px;
        object-fit: cover;
        border-radius: 10px;
        border: 1px solid rgba(224, 224, 224, 0.95);
        display: block;
    }
    .support-preview-doc {
        width: 88px;
        height: 88px;
        border-radius: 10px;
        border: 1px solid rgba(224, 224, 224, 0.95);
        background: rgba(16, 26, 34, 0.04);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
    }
    .support-preview-name {
        display: block;
        font-size: 0.62rem;
        color: var(--text-muted);
        margin-top: 0.25rem;
        line-height: 1.25;
        word-break: break-all;
        max-height: 2.5em;
        overflow: hidden;
    }
    .support-preview-size {
        display: block;
        font-size: 0.62rem;
        color: var(--text-soft);
        margin-top: 0.1rem;
    }
    .support-preview-remove {
        position: absolute;
        top: 4px;
        right: 4px;
        width: 22px;
        height: 22px;
        border: none;
        border-radius: 50%;
        background: rgba(16, 26, 34, 0.55);
        color: #fff;
        font-size: 1rem;
        line-height: 1;
        cursor: pointer;
        padding: 0;
    }
    .support-success-modal {
        position: fixed;
        inset: 0;
        z-index: 2100;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 1.25rem;
    }
    .support-success-modal.is-open { display: flex; }
    .support-success-dialog {
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: 520px;
        border-radius: 16px;
        border: 1px solid rgba(224, 224, 224, 0.95);
        background: #fff;
        box-shadow: 0 20px 50px rgba(16, 26, 34, 0.18);
        padding: 1.2rem 1.35rem 1.35rem;
    }
    .support-success-title {
        font-size: 1.05rem;
        font-weight: 650;
        margin: 0 0 0.4rem;
        letter-spacing: -0.02em;
    }
    .support-success-body {
        font-size: 0.9rem;
        margin: 0 0 0.95rem;
        line-height: 1.5;
        color: var(--text-main);
    }
    .support-success-actions {
        display: flex;
        justify-content: flex-end;
        gap: 0.5rem;
    }
    .support-success-actions .btn-ok {
        appearance: none;
        border: none;
        border-radius: 12px;
        padding: 0.75rem 1.05rem;
        font-weight: 650;
        cursor: pointer;
        background: var(--primary);
        color: #fff;
    }
    .support-success-actions .btn-ok:hover {
        background: var(--primary-dark);
    }
