@font-face { font-family: 'Caprasimo'; src: url('/fonts/Caprasimo_400Regular.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Figtree'; src: url('/fonts/Figtree_400Regular.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Figtree'; src: url('/fonts/Figtree_700Bold.ttf') format('truetype'); font-weight: 700; font-display: swap; }
:root {
  --page: #141311; --surface: #242320; --ink: #F9F4ED; --ink2: rgba(249,244,237,.72);
  --ink3: rgba(249,244,237,.45); --accent: #C67139; --accent2: #F6A06B; --sage: #AEBF92;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--page); color: var(--ink); font-family: 'Figtree', system-ui, sans-serif; line-height: 1.6; }
.wrap { max-width: 760px; margin: 0 auto; padding: 48px 24px 80px; }
.mark { position: relative; width: 74px; height: 68px; }
.mark .ring { position: absolute; left: 0; top: 6px; width: 62px; height: 62px; border: 7px solid var(--ink); border-radius: 50%; }
.mark .dot { position: absolute; right: 2px; top: 0; width: 20px; height: 20px; background: var(--accent); border-radius: 50%; }
h1.word { font-family: 'Caprasimo', serif; font-weight: 400; font-size: 64px; margin: 18px 0 6px; }
.tag { font-size: 20px; color: var(--ink2); max-width: 480px; }
h2 { font-family: 'Caprasimo', serif; font-weight: 400; font-size: 26px; margin: 40px 0 10px; }
p, li { color: var(--ink2); font-size: 16.5px; }
ul { padding-left: 22px; margin: 8px 0; }
a { color: var(--accent2); text-decoration: none; }
a:hover { text-decoration: underline; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; margin: 28px 0; }
.card { background: var(--surface); border-radius: 18px; padding: 20px; }
.card b { display: block; font-size: 17px; margin-bottom: 6px; color: var(--ink); }
.card span { font-size: 14.5px; color: var(--ink2); }
.badge { display: inline-block; background: var(--surface); color: var(--sage); border-radius: 999px; padding: 7px 16px; font-size: 13.5px; font-weight: 700; letter-spacing: .4px; margin-top: 26px; }
footer { margin-top: 64px; padding-top: 24px; border-top: 1px solid rgba(249,244,237,.09); font-size: 13.5px; color: var(--ink3); }
footer a { color: var(--ink3); margin-right: 16px; }
.lang { float: right; font-size: 14px; }
h3 { color: var(--ink); font-size: 18px; margin: 26px 0 6px; }
.updated { color: var(--ink3); font-size: 13.5px; font-style: italic; }

/* hero */
.hero { display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px; align-items: center; min-height: 60vh; }
.hero { position: relative; }
.hero::before { content: ''; position: absolute; inset: -60px -12vw; z-index: -1;
  background: url('/img/hero-waves.jpg') center / cover no-repeat; pointer-events: none; }
.hero-copy { padding: 24px 0; }
.hero-stage { position: relative; height: 620px; }
.hero-stage::before { content: ''; position: absolute; inset: 10% 0; background: radial-gradient(closest-side, rgba(198,113,57,.28), transparent 70%); filter: blur(8px); }
.phone { position: absolute; width: 264px; border-radius: 34px; border: 7px solid #2E2B25; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,.55); background: #141311; }
.phone img { display: block; width: 100%; }
.phone.front { right: 4px; top: 40px; z-index: 2; transform: rotate(3deg); }
.phone.back { right: 190px; top: 90px; z-index: 1; transform: rotate(-7deg); opacity: .85; }
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .hero-stage { height: 540px; margin-top: 8px; }
  .phone { width: 220px; }
  .phone.front { right: calc(50% - 225px); top: 30px; }
  .phone.back { right: calc(50% + 5px); top: 70px; }
}
@media (max-width: 560px) {
  .hero-stage { height: 520px; }
  .phone.back { display: none; }
  .phone.front { width: 240px; right: 50%; top: 20px; transform: translateX(50%) rotate(2deg); }
  h1.word { font-size: 52px; }
  .hero-stage::before { inset: 5% 10%; }
}
body { overflow-x: hidden; }
.wrap-wide { max-width: 1020px; margin: 0 auto; padding: 48px 24px 80px; }
