/* ============================================================
   apple.css — Apple-inspired design system for cherp.id
   Loaded AFTER bootstrap + style.css. Scoped under .apple-skin.
   ============================================================ */

.apple-skin {
  --bg: #ffffff;
  --bg-soft: #fbfbfd;
  --bg-tile: #f5f5f7;
  --bg-dark: #1d1d1f;
  --text: #1d1d1f;
  --text-muted: #6e6e73;
  --text-on-dark: #f5f5f7;
  --border: #d2d2d7;
  --accent: #0071e3;
  --accent-hover: #0077ed;
  --radius-tile: 18px;
  --radius-card: 22px;
  --radius-pill: 980px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.04);
  --shadow-nav: 0 1px 0 rgba(0, 0, 0, 0.06);
  --section-py: 72px;
  --container-text: 980px;
  --container-media: 1200px;
  --container-tile: 1440px;

  font-family: 'Inter', system-ui, -apple-system, "SF Pro Display",
               "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.47059;
  font-weight: 400;
  letter-spacing: -0.022em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 768px) {
  .apple-skin { --section-py: 48px; }
}

/* Reset selected legacy bits without nuking everything */
.apple-skin a { color: var(--accent); text-decoration: none; transition: color .2s ease; }
.apple-skin a:hover { color: var(--accent-hover); }
.apple-skin p { margin: 0 0 1em; }
.apple-skin img { max-width: 100%; height: auto; display: block; }

/* ---------- Typography ---------- */
.apple-skin h1, .apple-skin h2, .apple-skin h3,
.apple-skin h4, .apple-skin h5, .apple-skin h6 {
  font-family: inherit;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.08;
  margin: 0 0 .4em;
}

.apple-skin .ap-eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: .01em;
  margin-bottom: 12px;
  text-transform: none;
}

.apple-skin .ap-headline {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 .25em;
}

.apple-skin .ap-section-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.07;
  margin: 0 0 .5em;
}

.apple-skin .ap-tile-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.018em;
}

.apple-skin .ap-subhead {
  font-size: clamp(19px, 1.6vw, 24px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.4;
  letter-spacing: 0;
  margin: 0 0 1.4em;
}

.apple-skin .ap-muted { color: var(--text-muted); }
.apple-skin .ap-center { text-align: center; }

/* ---------- Layout ---------- */
.apple-skin .ap-container { max-width: var(--container-tile); margin: 0 auto; padding: 0 22px; }
.apple-skin .ap-container--text  { max-width: var(--container-text); margin: 0 auto; padding: 0 22px; }
.apple-skin .ap-container--media { max-width: var(--container-media); margin: 0 auto; padding: 0 22px; }

.apple-skin .ap-section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  background: var(--bg);
}
.apple-skin .ap-section--soft { background: var(--bg-soft); }
.apple-skin .ap-section--tile-bg { background: var(--bg-tile); }
.apple-skin .ap-section--dark   { background: var(--bg-dark); color: var(--text-on-dark); }
.apple-skin .ap-section--dark h1,
.apple-skin .ap-section--dark h2,
.apple-skin .ap-section--dark h3 { color: #fff; }
.apple-skin .ap-section--dark .ap-subhead { color: var(--text-on-dark); }

/* ---------- Tile (full-width rounded section box) ---------- */
.apple-skin .ap-tile {
  border-radius: var(--radius-tile);
  padding: clamp(48px, 8vw, 96px) clamp(24px, 5vw, 64px);
  background: var(--bg-tile);
  overflow: hidden;
  position: relative;
}
.apple-skin .ap-tile--dark { background: var(--bg-dark); color: var(--text-on-dark); }
.apple-skin .ap-tile--dark h1,
.apple-skin .ap-tile--dark h2,
.apple-skin .ap-tile--dark h3 { color: #fff; }
.apple-skin .ap-tile--gradient {
  background: linear-gradient(180deg, #fafafa 0%, #e8e8ed 100%);
}

/* ---------- Card ---------- */
.apple-skin .ap-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.apple-skin .ap-card:hover {
  transform: translateY(-2px) scale(1.005);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.apple-skin .ap-card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e8f1ff 0%, #d6e7ff 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 20px;
}
.apple-skin .ap-card__title { font-size: 22px; font-weight: 600; margin: 0 0 8px; }
.apple-skin .ap-card__desc  { color: var(--text-muted); margin: 0 0 16px; flex: 1; }

/* ---------- Buttons & Links ---------- */
.apple-skin .ap-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--accent);
  color: #fff !important;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
  letter-spacing: -0.01em;
}
.apple-skin .ap-btn:hover { background: var(--accent-hover); color: #fff; }
.apple-skin .ap-btn:active { transform: scale(0.98); }

.apple-skin .ap-btn--ghost {
  background: transparent;
  color: var(--accent) !important;
  border: 1px solid var(--accent);
}
.apple-skin .ap-btn--ghost:hover { background: rgba(0,113,227,.06); color: var(--accent) !important; }

.apple-skin .ap-btn--white {
  background: #fff;
  color: var(--text) !important;
}
.apple-skin .ap-btn--white:hover { background: #f5f5f7; color: var(--text) !important; }

.apple-skin .ap-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  font-size: 17px;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.apple-skin .ap-link::after {
  content: "›";
  font-size: 1.2em;
  line-height: 1;
  transition: transform .2s ease;
}
.apple-skin .ap-link:hover { text-decoration: underline; }
.apple-skin .ap-link:hover::after { transform: translateX(2px); }

.apple-skin .ap-cta-row {
  display: flex; flex-wrap: wrap; gap: 24px;
  align-items: center;
  margin-top: 8px;
}

/* ---------- Grid helpers ---------- */
.apple-skin .ap-grid { display: grid; gap: 20px; }
.apple-skin .ap-grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.apple-skin .ap-grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.apple-skin .ap-grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 1024px) {
  .apple-skin .ap-grid--3, .apple-skin .ap-grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .apple-skin .ap-grid--2,
  .apple-skin .ap-grid--3,
  .apple-skin .ap-grid--4 { grid-template-columns: 1fr; }
}

/* ---------- Frosted Sticky Nav ---------- */
.apple-skin .ap-nav {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(251, 251, 253, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.apple-skin .ap-nav__inner {
  max-width: 1024px;
  margin: 0 auto;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
}
.apple-skin .ap-nav__logo {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.apple-skin .ap-nav__logo:hover { color: var(--text); }

.apple-skin .ap-nav__menu {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.apple-skin .ap-nav__menu a {
  color: var(--text);
  opacity: .8;
  text-decoration: none;
  transition: opacity .2s ease;
  padding: 4px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.apple-skin .ap-nav__menu a:hover { opacity: 1; color: var(--text); }

/* Dropdown trigger */
.apple-skin .ap-nav__menu .has-dropdown {
  position: relative;
}
.apple-skin .ap-nav__menu .has-dropdown > a .caret {
  font-size: 9px;
  line-height: 1;
  margin-left: 2px;
  display: inline-block;
  transition: transform 0.2s ease;
}
.apple-skin .ap-nav__menu .has-dropdown:hover > a .caret,
.apple-skin .ap-nav__menu .has-dropdown:focus-within > a .caret {
  transform: rotate(180deg);
}

/* Dropdown panel (Apple-style frosted) */
.apple-skin .ap-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 240px;
  background: rgba(251, 251, 253, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
  margin-top: 0;
}
.apple-skin .ap-nav__menu .has-dropdown:hover > .ap-nav__dropdown,
.apple-skin .ap-nav__menu .has-dropdown:focus-within > .ap-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.apple-skin .ap-nav__dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.apple-skin .ap-nav__dropdown li {
  border: 0;
  margin: 0;
}
.apple-skin .ap-nav__dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
  color: var(--text);
  opacity: 0.85;
  border-radius: 10px;
  transition: opacity 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.apple-skin .ap-nav__dropdown a:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.04);
  color: var(--text);
}

/* Mobile drawer: collapsible sections */
.apple-skin .ap-nav__drawer details {
  width: 100%;
}
.apple-skin .ap-nav__drawer details > summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 0;
  font-size: 17px;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.apple-skin .ap-nav__drawer details > summary::-webkit-details-marker { display: none; }
.apple-skin .ap-nav__drawer details > summary::after {
  content: "+";
  font-size: 20px;
  color: var(--text-muted);
  font-weight: 300;
  transition: transform 0.2s ease;
}
.apple-skin .ap-nav__drawer details[open] > summary::after {
  content: "−";
}
.apple-skin .ap-nav__drawer details > ul {
  padding: 0 0 12px 14px;
  margin: 0;
  list-style: none;
}
.apple-skin .ap-nav__drawer details > ul li {
  border: 0;
}
.apple-skin .ap-nav__drawer details > ul li a {
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-muted);
}

.apple-skin .ap-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  background: #714B67;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}
.apple-skin .ap-nav__cta:hover {
  background: #875A7B;
  color: #ffffff;
}
.apple-skin .ap-nav__cta:active {
  transform: scale(0.97);
}

.apple-skin .ap-nav__hamburger {
  display: none;
  background: transparent;
  border: 0;
  font-size: 20px;
  color: var(--text);
  cursor: pointer;
}

@media (max-width: 833px) {
  .apple-skin .ap-nav__menu { display: none; }
  .apple-skin .ap-nav__cta { display: none; }
  .apple-skin .ap-nav__hamburger { display: inline-flex; }
}

/* mobile drawer */
.apple-skin .ap-nav__drawer {
  position: fixed;
  inset: 48px 0 0 0;
  background: rgba(251,251,253,0.98);
  backdrop-filter: saturate(180%) blur(20px);
  z-index: 9998;
  padding: 24px 22px;
  display: none;
  overflow-y: auto;
}
.apple-skin .ap-nav__drawer.is-open { display: block; }
.apple-skin .ap-nav__drawer ul {
  list-style: none; margin: 0; padding: 0;
}
.apple-skin .ap-nav__drawer li { border-bottom: 1px solid rgba(0,0,0,.08); }
.apple-skin .ap-nav__drawer a {
  display: block;
  padding: 14px 0;
  font-size: 17px;
  color: var(--text);
}

/* ---------- Hero ---------- */
.apple-skin .ap-hero {
  min-height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, #fbfbfd 0%, #ececef 100%);
  padding: 24px 22px 48px;
}
.apple-skin .ap-hero__inner { max-width: 980px; }
.apple-skin .ap-hero__media {
  margin-top: 56px;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: rgba(0,0,0,.04);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
}

/* ---------- Step timeline (implementation) ---------- */
.apple-skin .ap-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.apple-skin .ap-steps::before {
  content: "";
  position: absolute;
  top: 16px; left: 10%; right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.apple-skin .ap-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}
.apple-skin .ap-step__dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600;
  margin-bottom: 16px;
  box-shadow: 0 0 0 6px var(--bg);
}
.apple-skin .ap-step__title { font-size: 15px; font-weight: 600; margin: 0 0 4px; }
.apple-skin .ap-step__desc  { font-size: 13px; color: var(--text-muted); margin: 0; }
@media (max-width: 768px) {
  .apple-skin .ap-steps { grid-template-columns: 1fr; gap: 24px; }
  .apple-skin .ap-steps::before { display: none; }
}

/* ---------- Feature tile (gradient backgrounds for module cards) ---------- */
.apple-skin .ap-feature {
  border-radius: var(--radius-tile);
  padding: clamp(40px, 6vw, 64px);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.apple-skin .ap-feature__icon {
  font-size: 56px;
  color: var(--accent);
  margin-bottom: 20px;
  line-height: 1;
}
.apple-skin .ap-feature__title { font-size: clamp(24px, 2.4vw, 32px); font-weight: 600; margin: 0 0 12px; }
.apple-skin .ap-feature__desc  { color: var(--text-muted); font-size: 17px; margin: 0 0 20px; max-width: 36em; }

.apple-skin .ap-feature--blue   { background: linear-gradient(160deg, #e3f0ff 0%, #c9defb 100%); }
.apple-skin .ap-feature--peach  { background: linear-gradient(160deg, #ffe9dc 0%, #ffd5bf 100%); }
.apple-skin .ap-feature--mint   { background: linear-gradient(160deg, #d8f3e3 0%, #b6e6c8 100%); }
.apple-skin .ap-feature--lilac  { background: linear-gradient(160deg, #ede1ff 0%, #d3bef9 100%); }
.apple-skin .ap-feature--sand   { background: linear-gradient(160deg, #fbf3d9 0%, #f3e3a7 100%); }
.apple-skin .ap-feature--rose   { background: linear-gradient(160deg, #ffdfe7 0%, #ffc1cf 100%); }
.apple-skin .ap-feature--sky    { background: linear-gradient(160deg, #def3fb 0%, #b6e3f5 100%); }
.apple-skin .ap-feature--slate  { background: linear-gradient(160deg, #e8eaef 0%, #c8ccd6 100%); }

/* ---------- Pricing card ---------- */
.apple-skin .ap-pricing {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  background: #fff;
}
.apple-skin .ap-pricing--featured { border-color: var(--accent); box-shadow: 0 8px 32px rgba(0,113,227,.12); }
.apple-skin .ap-pricing__name  { font-size: 22px; font-weight: 600; margin: 0 0 8px; }
.apple-skin .ap-pricing__price { font-size: 48px; font-weight: 600; margin: 0 0 8px; letter-spacing: -0.02em; }
.apple-skin .ap-pricing__price small { font-size: 17px; color: var(--text-muted); font-weight: 400; }
.apple-skin .ap-pricing ul { list-style: none; padding: 0; margin: 24px 0; }
.apple-skin .ap-pricing li { padding: 8px 0; font-size: 15px; color: var(--text); border-bottom: 1px solid #f0f0f3; }
.apple-skin .ap-pricing li::before { content: "✓"; color: var(--accent); margin-right: 8px; font-weight: 600; }

/* ---------- Footer ---------- */
.apple-skin .ap-footer {
  background: var(--bg-tile);
  color: var(--text-muted);
  padding: 40px 22px 24px;
  font-size: 12px;
  line-height: 1.5;
}
.apple-skin .ap-footer__inner {
  max-width: 1024px;
  margin: 0 auto;
}
.apple-skin .ap-footer__cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid rgba(0,0,0,.1);
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.apple-skin .ap-footer__col h6 {
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 12px;
}
.apple-skin .ap-footer__col ul { list-style: none; margin: 0; padding: 0; }
.apple-skin .ap-footer__col li { margin: 0 0 8px; }
.apple-skin .ap-footer__col a {
  color: var(--text-muted);
  font-size: 12px;
  text-decoration: none;
}
.apple-skin .ap-footer__col a:hover { text-decoration: underline; color: var(--text-muted); }
.apple-skin .ap-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
}
@media (max-width: 833px) {
  .apple-skin .ap-footer__cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 480px) {
  .apple-skin .ap-footer__cols { grid-template-columns: 1fr; }
}

/* ---------- Scroll Reveal Animation ---------- */
.apple-skin [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease-out, transform .6s ease-out;
  will-change: opacity, transform;
}
.apple-skin [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .apple-skin [data-reveal] { opacity: 1; transform: none; transition: none; }
  .apple-skin .ap-card,
  .apple-skin .ap-btn { transition: none; }
}

/* ---------- Misc utilities ---------- */
.apple-skin .ap-divider { border: 0; border-top: 1px solid var(--border); margin: 0; }
.apple-skin .ap-mt-1 { margin-top: 8px; }
.apple-skin .ap-mt-2 { margin-top: 16px; }
.apple-skin .ap-mt-3 { margin-top: 24px; }
.apple-skin .ap-mt-4 { margin-top: 40px; }
.apple-skin .ap-mt-5 { margin-top: 64px; }

/* Odoo-style eyebrow: uppercase purple with leading dash */
.apple-skin .ap-eyebrow-odoo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  color: #714B67;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 18px;
  font-family: 'Inter', system-ui, sans-serif;
}
.apple-skin .ap-eyebrow-odoo::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #714B67;
  border-radius: 2px;
}

/* Celebration block with sparkle decorations */
.apple-skin .ap-celebration-block {
  position: relative;
  max-width: 760px;
  margin: 0 auto 56px;
  padding: 50px 20px;
}
.apple-skin .ap-celebration-sparkles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.apple-skin .ap-celebration-title {
  position: relative;
  z-index: 1;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.18;
  color: #1d1d1f;
  margin: 0;
  letter-spacing: 0;
}
.apple-skin .ap-celebration-title .hl {
  color: #1B7A6E;
}

/* Handwritten tagline with scribble circle + underline accents */
.apple-skin .ap-tagline-hand {
  display: inline-block;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  color: #1d1d1f;
  line-height: 1.18;
  letter-spacing: 0;
  margin-bottom: 28px;
  text-transform: none;
}
.apple-skin .ap-circle-wrap,
.apple-skin .ap-underline-wrap {
  position: relative;
  display: inline-block;
  isolation: isolate;
}
.apple-skin .ap-scribble-circle {
  position: absolute;
  top: -18%;
  left: -16%;
  width: 132%;
  height: 136%;
  z-index: -1;
  overflow: visible;
  pointer-events: none;
}
.apple-skin .ap-scribble-line {
  position: absolute;
  bottom: -16%;
  left: -2%;
  width: 104%;
  height: 0.4em;
  overflow: visible;
  pointer-events: none;
}

/* Handwritten text with brush-stroke highlight (yellow/orange) */
.apple-skin .ap-brush {
  display: inline-block;
  position: relative;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  color: #1d1d1f;
  line-height: 1.2;
  padding: 0.08em 0.45em 0.12em;
  transform: rotate(-1.5deg);
  z-index: 0;
  letter-spacing: 0.01em;
}
.apple-skin .ap-brush::before {
  content: "";
  position: absolute;
  inset: 8% -3% 16% -3%;
  background:
    radial-gradient(ellipse at 20% 50%, #FFC857 0%, #FFB834 70%, transparent 100%),
    radial-gradient(ellipse at 80% 60%, #FFB834 0%, #F5A623 75%, transparent 100%);
  border-radius: 16px 28px 12px 24px / 60% 40% 70% 30%;
  z-index: -1;
  transform: rotate(1deg) skewX(-2deg);
}
.apple-skin .ap-brush::after {
  content: "";
  position: absolute;
  inset: 20% 2% 24% 2%;
  background: #FFB834;
  border-radius: 50% 30% 60% 20% / 50% 70% 30% 50%;
  z-index: -1;
  opacity: 0.7;
  transform: rotate(-0.5deg);
}

.apple-skin .ap-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #e8e8ed 0%, #d2d2d7 100%);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0;
}
