:root {
  --p-blue:#0ea5e9;
  --p-blue-2:#0284c7;
  --p-blue-3:#0369a1;
  --p-deep:#075985;
  --p-ink:#0f172a;
  --p-muted:#64748b;
  --p-line:#e2e8f0;
  --p-bg:#f7fcff;
  --p-card:rgba(255,255,255,.88);
  --ease:cubic-bezier(.16,1,.3,1);
}

html { scroll-behavior:smooth; background:var(--p-bg); }
body { margin:0; overflow-x:hidden; background:var(--p-bg); color:var(--p-ink); }

.profile-page {
  min-height:100vh;
  padding-top:118px;
  padding-bottom:90px;
  background:
    radial-gradient(circle at 12% 6%, rgba(56,189,248,.12), transparent 25%),
    radial-gradient(circle at 88% 16%, rgba(125,211,252,.10), transparent 22%),
    linear-gradient(180deg,#f8fdff 0%,#ffffff 42%,#f8fcff 100%);
}

.profile-shell {
  width:min(1180px, calc(100% - 36px));
  margin:0 auto;
}

.profile-breadcrumb {
  display:flex; flex-wrap:wrap; align-items:center; gap:8px;
  color:#94a3b8; font-size:11px; font-weight:650;
}
.profile-breadcrumb a { color:#64748b; text-decoration:none; transition:.25s; }
.profile-breadcrumb a:hover { color:var(--p-blue-2); }

.profile-topline {
  margin-top:24px;
  display:flex; align-items:flex-end; justify-content:space-between; gap:22px;
}
.profile-kicker-row { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:13px; }
.profile-chip {
  display:inline-flex; align-items:center; gap:6px;
  min-height:30px; padding:0 11px;
  border-radius:999px; font-size:9px; font-weight:800;
  border:1px solid #bae6fd; color:#0369a1; background:#f0f9ff;
}
.profile-chip.featured {
  color:#92400e; background:#fff7ed; border-color:#fed7aa;
}
.profile-chip.verified {
  color:#065f46; background:#ecfdf5; border-color:#a7f3d0;
}
.profile-title {
  margin:0;
  max-width:760px;
  font-size:clamp(44px,6.2vw,78px);
  line-height:.98; letter-spacing:-.065em; font-weight:800;
}
.profile-title span { color:var(--p-blue); }
.profile-tagline {
  max-width:690px; margin-top:18px;
  color:var(--p-muted); font-size:14px; line-height:1.85;
}
.profile-top-actions {
  display:flex; gap:8px; flex-wrap:wrap; justify-content:flex-end;
}
.profile-ghost-btn {
  min-height:42px; padding:0 14px; border:1px solid var(--p-line);
  border-radius:999px; background:rgba(255,255,255,.86);
  color:#475569; display:inline-flex; align-items:center; gap:7px;
  font-size:10px; font-weight:750; text-decoration:none; cursor:pointer;
  box-shadow:0 8px 22px rgba(15,23,42,.045);
  transition:transform .3s var(--ease),border-color .3s,color .3s,box-shadow .3s;
}
.profile-ghost-btn:hover {
  transform:translateY(-2px); border-color:#7dd3fc; color:#0284c7;
  box-shadow:0 14px 30px rgba(14,165,233,.09);
}

.profile-bento {
  margin-top:28px;
  display:grid; grid-template-columns:minmax(0,1.7fr) minmax(300px,.8fr); gap:14px;
}
.profile-photo {
  position:relative; min-height:520px; overflow:hidden;
  border-radius:34px; border:1px solid rgba(255,255,255,.95);
  background:#e0f2fe; box-shadow:0 28px 70px rgba(15,23,42,.12);
}
.profile-photo img {
  width:100%; height:100%; object-fit:cover; display:block;
  transition:transform 1.1s var(--ease),filter .7s ease;
}
.profile-photo:hover img { transform:scale(1.035); filter:saturate(1.04); }
.profile-photo::after {
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg,transparent 48%,rgba(7,24,39,.72) 100%);
  pointer-events:none;
}
.profile-photo-copy {
  position:absolute; left:26px; right:26px; bottom:24px; z-index:2; color:#fff;
}
.profile-photo-copy small {
  display:block; margin-bottom:7px; color:#bae6fd; font-size:9px; font-weight:800;
  letter-spacing:.11em; text-transform:uppercase;
}
.profile-photo-copy strong {
  display:block; max-width:680px; font-size:25px; line-height:1.2; letter-spacing:-.03em;
}
.profile-photo-copy p {
  max-width:650px; margin-top:8px; color:#e2e8f0; font-size:11px; line-height:1.7;
}

.profile-side-stack { display:grid; gap:14px; }
.profile-fact-card {
  position:relative; overflow:hidden;
  min-height:0; padding:22px;
  border-radius:28px; border:1px solid rgba(226,232,240,.95);
  background:rgba(255,255,255,.91);
  box-shadow:0 15px 40px rgba(15,23,42,.055);
}
.profile-fact-card::after {
  content:""; position:absolute; width:150px; height:150px; right:-70px; top:-78px;
  border-radius:50%; background:radial-gradient(circle,rgba(125,211,252,.20),transparent 70%);
}
.profile-fact-icon {
  width:42px; height:42px; display:flex; align-items:center; justify-content:center;
  border-radius:14px; color:#0284c7; background:#f0f9ff; border:1px solid #bae6fd;
}
.profile-fact-card small {
  display:block; margin-top:16px; color:#94a3b8; font-size:8px; font-weight:800;
  letter-spacing:.1em; text-transform:uppercase;
}
.profile-fact-card strong {
  display:block; margin-top:6px; color:var(--p-ink); font-size:22px; line-height:1.15;
  letter-spacing:-.035em;
}
.profile-fact-card p {
  margin-top:7px; color:var(--p-muted); font-size:10.5px; line-height:1.7;
}

.profile-layout {
  margin-top:34px;
  display:grid; grid-template-columns:minmax(0,1fr) 330px; gap:28px; align-items:start;
}
.profile-main { min-width:0; }
.profile-sidebar { position:sticky; top:108px; }

.profile-section {
  padding:31px 0;
  border-bottom:1px solid #edf2f7;
}
.profile-section:first-child { padding-top:0; }
.profile-section:last-child { border-bottom:0; }
.profile-section-kicker {
  display:inline-flex; align-items:center; gap:6px;
  color:#0284c7; font-size:8.5px; font-weight:800; letter-spacing:.1em; text-transform:uppercase;
}
.profile-section h2 {
  margin:10px 0 0; font-size:30px; line-height:1.15; letter-spacing:-.04em;
}
.profile-section > p {
  margin-top:13px; color:var(--p-muted); font-size:12px; line-height:1.95;
}

.flavor-grid {
  margin-top:20px; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:11px;
}
.flavor-card {
  padding:19px; border:1px solid var(--p-line); border-radius:22px; background:#fff;
  transition:transform .38s var(--ease),box-shadow .38s,border-color .3s;
}
.flavor-card:hover {
  transform:translateY(-5px); border-color:#bae6fd;
  box-shadow:0 18px 38px rgba(14,165,233,.08);
}
.flavor-card .icon {
  width:38px; height:38px; display:flex; align-items:center; justify-content:center;
  border-radius:13px; color:#0284c7; background:#f0f9ff;
}
.flavor-card strong { display:block; margin-top:14px; font-size:13px; }
.flavor-card p { margin-top:6px; color:#64748b; font-size:9.5px; line-height:1.65; }

.buy-grid {
  margin-top:20px; display:grid; gap:10px;
}
.buy-card {
  display:grid; grid-template-columns:46px minmax(0,1fr) auto; align-items:center; gap:13px;
  padding:16px; border:1px solid var(--p-line); border-radius:22px; background:#fff;
  transition:.35s var(--ease);
}
.buy-card:hover { border-color:#7dd3fc; transform:translateX(4px); }
.buy-icon {
  width:46px; height:46px; display:flex; align-items:center; justify-content:center;
  border-radius:15px; color:#0284c7; background:#f0f9ff; border:1px solid #bae6fd;
}
.buy-card strong { display:block; font-size:12px; }
.buy-card p { margin-top:4px; color:#64748b; font-size:9.5px; line-height:1.6; }
.buy-price { text-align:right; color:#075985; font-size:13px; font-weight:800; }
.buy-price small { display:block; margin-top:2px; color:#94a3b8; font-size:8px; font-weight:650; }

.storage-grid {
  margin-top:20px; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:10px;
}
.storage-step {
  padding:18px; border-radius:22px; background:linear-gradient(145deg,#fff,#f8fcff);
  border:1px solid #e2e8f0;
}
.storage-step span {
  width:28px; height:28px; display:flex; align-items:center; justify-content:center;
  border-radius:999px; background:#0ea5e9; color:white; font-size:9px; font-weight:800;
}
.storage-step strong { display:block; margin-top:13px; font-size:12px; }
.storage-step p { margin-top:5px; color:#64748b; font-size:9.5px; line-height:1.65; }

.market-chips { margin-top:18px; display:flex; flex-wrap:wrap; gap:8px; }
.market-chips span {
  padding:8px 11px; border-radius:999px; color:#0369a1; background:#f0f9ff;
  border:1px solid #bae6fd; font-size:9px; font-weight:750;
}

.location-grid {
  margin-top:20px; display:grid; grid-template-columns:1.25fr .75fr; gap:11px;
}
.location-card {
  padding:19px; border:1px solid #e2e8f0; border-radius:22px; background:#fff;
}
.location-card strong { display:block; font-size:12px; }
.location-card p { margin-top:6px; color:#64748b; font-size:9.7px; line-height:1.7; }
.location-card a {
  margin-top:13px; display:inline-flex; align-items:center; gap:6px;
  color:#0284c7; font-size:9px; font-weight:800; text-decoration:none;
}

.order-card {
  overflow:hidden; border-radius:28px; background:#fff;
  border:1px solid #dbeafe; box-shadow:0 22px 58px rgba(15,23,42,.10);
}
.order-card-top {
  padding:23px; background:
    radial-gradient(circle at 95% 0%, rgba(56,189,248,.18), transparent 35%),
    linear-gradient(145deg,#f0f9ff,#ffffff);
}
.order-card-label { color:#64748b; font-size:8.5px; font-weight:750; }
.order-price {
  margin-top:6px; color:#075985; font-size:32px; line-height:1; font-weight:800; letter-spacing:-.045em;
}
.order-price small { font-size:11px; color:#94a3b8; font-weight:650; }
.order-note {
  margin-top:14px; padding:12px; border-radius:16px; color:#065f46; background:#ecfdf5;
  border:1px solid #a7f3d0; font-size:9.5px; line-height:1.6;
}
.order-note strong { display:block; margin-bottom:3px; font-size:10px; }
.wa-button {
  width:100%; min-height:50px; margin-top:14px;
  display:flex; align-items:center; justify-content:center; gap:8px;
  border:0; border-radius:17px; color:#fff; background:linear-gradient(135deg,#10b981,#059669);
  text-decoration:none; font-size:11px; font-weight:800;
  box-shadow:0 14px 30px rgba(5,150,105,.22);
  transition:transform .35s var(--ease),box-shadow .35s;
}
.wa-button:hover { transform:translateY(-3px); box-shadow:0 18px 36px rgba(5,150,105,.28); }
.order-card-bottom { padding:16px 23px 20px; border-top:1px solid #eef2f7; }
.order-mini-row {
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  color:#64748b; font-size:9px;
}
.order-mini-row + .order-mini-row { margin-top:10px; }
.order-mini-row strong { color:#334155; font-size:9.5px; }
.share-button {
  border:0; border-radius:10px; padding:7px 9px; background:#075985; color:#fff;
  display:inline-flex; align-items:center; gap:5px; font-size:8.5px; font-weight:800; cursor:pointer;
}

.profile-bottom-cta {
  margin-top:28px; padding:34px; border-radius:30px; color:white;
  background:
    radial-gradient(circle at 12% 15%,rgba(56,189,248,.24),transparent 28%),
    linear-gradient(135deg,#075985,#0369a1 55%,#0c4a6e);
  display:flex; align-items:center; justify-content:space-between; gap:22px;
  box-shadow:0 25px 65px rgba(3,105,161,.20);
}
.profile-bottom-cta h3 { margin:0; font-size:27px; letter-spacing:-.04em; }
.profile-bottom-cta p { margin-top:7px; max-width:650px; color:#cbd5e1; font-size:10px; line-height:1.7; }
.profile-bottom-cta a {
  flex:none; min-height:46px; padding:0 17px; border-radius:999px;
  display:inline-flex; align-items:center; gap:7px; color:#075985; background:#fff;
  text-decoration:none; font-size:10px; font-weight:800;
}

.reveal-detail {
  opacity:0; transform:translateY(26px); filter:blur(4px);
  transition:opacity .75s var(--ease),transform .85s var(--ease),filter .65s ease;
}
.reveal-detail.visible { opacity:1; transform:none; filter:none; }

@media(max-width:960px) {
  .profile-bento { grid-template-columns:1fr; }
  .profile-side-stack { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .profile-layout { grid-template-columns:1fr; }
  .profile-sidebar { position:static; }
}

@media(max-width:767px) {
  .profile-page {
    padding-top:calc(92px + var(--mobile-visual-top));
    padding-bottom:110px;
  }
  .profile-shell { width:min(100% - 24px, 1180px); }
  .profile-topline { display:block; }
  .profile-top-actions { margin-top:18px; justify-content:flex-start; }
  .profile-title { font-size:46px; }
  .profile-tagline { font-size:12px; }
  .profile-bento { margin-top:22px; }
  .profile-photo { min-height:410px; border-radius:27px; }
  .profile-photo-copy { left:19px; right:19px; bottom:18px; }
  .profile-photo-copy strong { font-size:20px; }
  .profile-side-stack { grid-template-columns:1fr; }
  .profile-fact-card { border-radius:23px; }
  .profile-layout { margin-top:27px; gap:18px; }
  .profile-section { padding:26px 0; }
  .profile-section h2 { font-size:27px; }
  .flavor-grid,.storage-grid,.location-grid { grid-template-columns:1fr; }
  .buy-card { grid-template-columns:42px minmax(0,1fr); }
  .buy-price { grid-column:2; text-align:left; }
  .profile-bottom-cta { padding:27px 22px; flex-direction:column; align-items:flex-start; }
  .profile-bottom-cta h3 { font-size:24px; }
}

@media(prefers-reduced-motion:reduce) {
  .reveal-detail { opacity:1!important; transform:none!important; filter:none!important; transition:none!important; }
}
