/* TicketFae website — shared styles. 2026-07-10 */
:root {
  --bg: #0b1220;
  --bg-2: #101a2e;
  --card: #16233c;
  --card-2: #1b2b49;
  --line: #26395e;
  --text: #e8eef8;
  --muted: #9fb0c9;
  --accent: #55c1f2;
  --accent-2: #1f8fd0;
  --gold: #f2c94c;
  --ok: #6fdc8c;
  --warn: #f2994a;
  --radius: 16px;
  --maxw: 1100px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 18, 32, .85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 14px; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.15rem; color: var(--text); }
.brand:hover { text-decoration: none; }
.brand img { width: 36px; height: 36px; border-radius: 9px; }
.nav { margin-left: auto; display: flex; gap: 22px; align-items: center; }
.nav a { color: var(--muted); font-size: .95rem; }
.nav a:hover { color: var(--text); text-decoration: none; }
.nav .btn { color: #04121f; }
@media (max-width: 640px) { .nav a:not(.btn):not(.lang-switch) { display: none; } }
.lang-switch {
  font-weight: 700; font-size: .85rem !important;
  border: 1.5px solid var(--line); border-radius: 999px;
  padding: 4px 12px;
}
.lang-switch:hover { color: var(--text) !important; border-color: var(--accent); text-decoration: none; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  color: #04121f; font-weight: 700; font-size: 1rem;
  padding: 12px 22px; border-radius: 999px;
  box-shadow: 0 6px 24px rgba(85, 193, 242, .35);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(85, 193, 242, .5); text-decoration: none; }
.btn.big { font-size: 1.15rem; padding: 16px 30px; }
.btn.ghost {
  background: transparent; color: var(--accent);
  border: 1.5px solid var(--accent); box-shadow: none;
}
.badge-note { font-size: .85rem; color: var(--muted); margin-top: 10px; }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  padding: 84px 0 60px;
  background:
    radial-gradient(900px 420px at 75% -10%, rgba(85, 193, 242, .18), transparent 65%),
    radial-gradient(700px 380px at 10% 110%, rgba(242, 201, 76, .10), transparent 60%),
    var(--bg);
}
.hero .wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
@media (max-width: 880px) { .hero .wrap { grid-template-columns: 1fr; } }
.hero h1 { font-size: clamp(2rem, 4.6vw, 3.3rem); line-height: 1.12; letter-spacing: -.02em; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero .sub { margin: 20px 0 30px; font-size: 1.2rem; color: var(--muted); max-width: 34em; }
.hero-icon { width: 84px; height: 84px; border-radius: 20px; margin-bottom: 26px; box-shadow: 0 12px 40px rgba(0,0,0,.5); }
.hero-shot { position: relative; display: flex; justify-content: center; }
.hero-shot img.phone { width: min(320px, 80%); border-radius: 32px; border: 1px solid var(--line); box-shadow: 0 30px 80px rgba(0, 0, 0, .55); }
.hero-shot img.sprite { position: absolute; width: 110px; right: 4%; bottom: -8px; filter: drop-shadow(0 10px 18px rgba(0,0,0,.45)); }
.trust { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 28px; font-size: .92rem; color: var(--muted); }
.trust span { display: inline-flex; align-items: center; gap: 7px; }
.trust b { color: var(--text); }

/* Sections */
section { padding: 72px 0; }
section.alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.kicker { text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; font-weight: 700; color: var(--accent); margin-bottom: 10px; }
h2.section-title { font-size: clamp(1.5rem, 3vw, 2.2rem); letter-spacing: -.01em; margin-bottom: 12px; }
.section-lead { color: var(--muted); max-width: 44em; margin-bottom: 40px; font-size: 1.05rem; }

/* Screenshots strip */
.shots {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(240px, 62vw);
  gap: 20px; overflow-x: auto; padding: 10px 4px 24px;
  scroll-snap-type: x mandatory;
}
.shots figure { scroll-snap-align: start; }
.shots img { border-radius: 22px; border: 1px solid var(--line); box-shadow: 0 14px 40px rgba(0,0,0,.45); }
.shots figcaption { font-size: .85rem; color: var(--muted); margin-top: 10px; text-align: center; }

/* Memories */
.memories { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 880px) { .memories { grid-template-columns: 1fr; gap: 34px; } }
.memories-copy .section-lead { margin-bottom: 26px; }
.memory-points { list-style: none; display: grid; gap: 16px; margin-bottom: 30px; }
.memory-points li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); font-size: 1rem; }
.memory-points strong { color: var(--text); }
.mp-emoji { font-size: 1.3rem; line-height: 1.3; flex: none; }
.memories-gallery {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start;
}
.memories-gallery figure { margin: 0; }
.memories-gallery img {
  border-radius: 20px; border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0,0,0,.5);
}
.memories-gallery figcaption { font-size: .82rem; color: var(--muted); margin-top: 10px; text-align: center; }
.memories-gallery .mem-lead img { box-shadow: 0 24px 60px rgba(0,0,0,.6); }
@media (max-width: 520px) { .memories-gallery { grid-template-columns: 1fr; } }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; counter-reset: step; }
.step {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; position: relative;
}
.step::before {
  counter-increment: step; content: counter(step);
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent); color: #04121f; font-weight: 800; margin-bottom: 14px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .95rem; }

/* Feature / guide cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 10px;
  transition: transform .15s ease, border-color .15s ease;
}
.card:hover { transform: translateY(-3px); border-color: var(--accent-2); }
.card .emoji { font-size: 1.7rem; }
.card h3 { font-size: 1.1rem; }
.card h3 a { color: var(--text); }
.card p { color: var(--muted); font-size: .95rem; flex: 1; }
.card .more { font-weight: 600; font-size: .92rem; }

/* FAQ */
.faq details {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 4px 22px; margin-bottom: 12px;
}
.faq summary {
  cursor: pointer; font-weight: 650; font-size: 1.02rem;
  padding: 16px 0; list-style: none; position: relative; padding-right: 36px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  color: var(--accent); font-size: 1.5rem; font-weight: 400; transition: transform .2s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .a { color: var(--muted); padding: 0 0 18px; font-size: .97rem; }
.faq .a a { font-weight: 600; }

/* Big CTA */
.cta-band {
  text-align: center; padding: 84px 0;
  background:
    radial-gradient(700px 300px at 50% 0%, rgba(85, 193, 242, .16), transparent 70%),
    var(--bg-2);
  border-top: 1px solid var(--line);
}
.cta-band h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin-bottom: 14px; }
.cta-band p { color: var(--muted); margin-bottom: 30px; }
.cta-band img.bee-note { width: 92px; margin: 0 auto 18px; }

/* Footer */
.site-footer { padding: 48px 0 60px; border-top: 1px solid var(--line); color: var(--muted); font-size: .92rem; }
.site-footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; margin-bottom: 30px; }
@media (max-width: 700px) { .site-footer .cols { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--text); margin-bottom: 12px; font-size: .95rem; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--accent); }
.fineprint { border-top: 1px solid var(--line); padding-top: 20px; font-size: .82rem; }

/* Guide (article) pages */
.article { padding: 60px 0; }
.article .wrap { max-width: 780px; }
.article h1 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); line-height: 1.18; letter-spacing: -.015em; margin-bottom: 16px; }
.article .lead { font-size: 1.15rem; color: var(--muted); margin-bottom: 34px; }
.article h2 { font-size: 1.45rem; margin: 44px 0 14px; }
.article h3 { font-size: 1.15rem; margin: 30px 0 10px; }
.article p, .article li { color: #c6d2e6; }
.article p { margin-bottom: 16px; }
.article ul, .article ol { margin: 0 0 18px 24px; }
.article li { margin-bottom: 8px; }
.article strong { color: var(--text); }
.article .shot {
  margin: 28px auto; max-width: 320px;
}
.article .shot img { border-radius: 22px; border: 1px solid var(--line); box-shadow: 0 14px 40px rgba(0,0,0,.45); }
.article .shot figcaption { font-size: .85rem; color: var(--muted); text-align: center; margin-top: 10px; }
.callout {
  background: var(--card); border: 1px solid var(--line); border-left: 4px solid var(--accent);
  border-radius: 12px; padding: 18px 20px; margin: 24px 0;
}
.callout.gold { border-left-color: var(--gold); }
.article .cta-inline {
  text-align: center; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 26px; margin: 48px 0 10px;
}
.article .cta-inline h2 { margin: 0 0 10px; }
.article .cta-inline p { color: var(--muted); }
.breadcrumbs { font-size: .88rem; color: var(--muted); margin-bottom: 22px; }
.related { margin-top: 54px; }
.related h2 { font-size: 1.25rem; margin-bottom: 18px; }
