/* ════════════════════════════════════════════════
   MISYN FIELD – Design System
   Mobile-First | Navy × Gold
   ════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ── */
:root {
  --navy:        #1a1f3c;
  --navy-dk:     #0f1226;
  --navy-md:     #222847;
  --navy-lt:     #2d3460;
  --gold:        #c9a84c;
  --gold-lt:     #dfc070;
  --gold-dk:     #a8873a;
  --gold-dim:    rgba(201,168,76,.12);
  --gold-glow:   rgba(201,168,76,.25);
  --white:       #ffffff;
  --off-white:   #f0eeea;
  --text-pri:    rgba(255,255,255,.95);
  --text-sec:    rgba(255,255,255,.65);
  --text-muted:  rgba(255,255,255,.38);
  --danger:      #e05252;
  --danger-dim:  rgba(224,82,82,.15);
  --success:     #4caf7d;
  --success-dim: rgba(76,175,125,.15);
  --warn:        #e8a735;
  --card-bg:     rgba(255,255,255,.04);
  --card-border: rgba(201,168,76,.18);
  --r-sm:        10px;
  --r-md:        16px;
  --r-lg:        22px;
  --shadow:      0 8px 32px rgba(0,0,0,.35);
  --shadow-sm:   0 2px 12px rgba(0,0,0,.25);
  --t:           .18s ease;
  --nav-h:       72px;
  --topbar-h:    64px;
}

/* ── RESET ── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; -webkit-tap-highlight-color:transparent; }
html { font-size:16px; -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body {
  font-family:'Outfit',sans-serif;
  background:var(--navy-dk);
  color:var(--text-pri);
  min-height:100dvh;
  overflow-x:hidden;
  line-height:1.5;
}
a { color:inherit; text-decoration:none; }
button,input,select,textarea { font-family:inherit; }
img { max-width:100%; display:block; }

/* ── TYPOGRAPHY ── */
.f-display { font-family:'Cormorant Garamond',serif; }
h1,h2,h3 { font-family:'Cormorant Garamond',serif; letter-spacing:.02em; }
h1 { font-size:2rem;   font-weight:700; line-height:1.1; }
h2 { font-size:1.55rem; font-weight:600; line-height:1.15; }
h3 { font-size:1.2rem;  font-weight:600; }
p  { font-size:.95rem; color:var(--text-sec); line-height:1.6; }

/* ── LAYOUT ── */
.page-wrap {
  max-width:480px; margin:0 auto;
  min-height:100dvh; display:flex; flex-direction:column;
  position:relative;
}
.page-content {
  flex:1; padding:0 18px calc(var(--nav-h) + 20px);
  padding-top:calc(var(--topbar-h) + 16px);
}
.page-content.no-topbar { padding-top:24px; }

/* ── TOPBAR ── */
.topbar {
  position:fixed; top:0; left:50%; transform:translateX(-50%);
  width:100%; max-width:480px;
  height:var(--topbar-h);
  background:rgba(15,18,38,.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--card-border);
  display:flex; align-items:center; justify-content:space-between;
  padding:0 18px;
  z-index:200;
}
.topbar-logo img { height:32px; width:auto; }
.topbar-right { display:flex; align-items:center; gap:10px; }
.topbar-avatar {
  width:40px; height:40px; border-radius:50%;
  background:var(--gold-dim); border:1.5px solid var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-family:'Cormorant Garamond',serif; font-size:1rem;
  font-weight:700; color:var(--gold); overflow:hidden; cursor:pointer;
}
.topbar-avatar img { width:100%; height:100%; object-fit:cover; }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  display:flex; align-items:center; gap:14px;
  padding:4px 0 20px;
}
.btn-back {
  width:46px; height:46px; flex-shrink:0;
  background:var(--card-bg); border:1px solid var(--card-border);
  border-radius:var(--r-sm); display:flex; align-items:center; justify-content:center;
  font-size:1.3rem; cursor:pointer; transition:background var(--t);
  color:var(--text-pri);
}
.btn-back:active { background:rgba(255,255,255,.1); }
.page-title { font-family:'Cormorant Garamond',serif; font-size:1.6rem; font-weight:700; }

/* ── BOTTOM NAV ── */
.bottom-nav {
  position:fixed; bottom:0; left:50%; transform:translateX(-50%);
  width:100%; max-width:480px; height:var(--nav-h);
  background:rgba(15,18,38,.96); backdrop-filter:blur(16px);
  border-top:1px solid var(--card-border);
  display:flex; align-items:center; justify-content:space-around;
  padding:0 4px;
  padding-bottom:env(safe-area-inset-bottom);
  z-index:200;
}
.nav-item {
  display:flex; flex-direction:column; align-items:center; gap:3px;
  color:var(--text-muted); cursor:pointer;
  padding:8px 10px; border-radius:var(--r-sm);
  transition:color var(--t); min-width:52px; text-align:center;
  font-size:.68rem; font-weight:500; letter-spacing:.04em;
  text-transform:uppercase;
}
.nav-item svg { width:22px; height:22px; }
.nav-item.active { color:var(--gold); }
.nav-item.active svg path, .nav-item.active svg rect,
.nav-item.active svg circle { stroke:var(--gold); }

/* ── CARDS ── */
.card {
  background:var(--card-bg); border:1px solid var(--card-border);
  border-radius:var(--r-md); padding:20px;
  transition:background var(--t);
}
.card-pressable { cursor:pointer; }
.card-pressable:active { background:rgba(255,255,255,.07); transform:scale(.98); }
.card + .card { margin-top:12px; }

/* ── HOME GRID ── */
.home-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:13px; margin-top:6px;
}
.home-tile {
  background:var(--card-bg); border:1px solid var(--card-border);
  border-radius:var(--r-md); padding:22px 18px 18px;
  display:flex; flex-direction:column; gap:14px;
  cursor:pointer; text-decoration:none; color:var(--text-pri);
  position:relative; overflow:hidden; min-height:128px;
  transition:background var(--t), transform var(--t);
  -webkit-user-select:none; user-select:none;
}
.home-tile:active { background:rgba(255,255,255,.08); transform:scale(.96); }
.home-tile.tile-wide { grid-column:span 2; flex-direction:row; align-items:center; min-height:72px; padding:18px 22px; gap:18px; }
.home-tile.tile-disabled { opacity:.38; cursor:default; pointer-events:none; }
.tile-icon {
  width:46px; height:46px; border-radius:12px;
  background:var(--gold-dim); display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.tile-icon svg { width:24px; height:24px; }
.tile-wide .tile-icon { width:42px; height:42px; }
.tile-info { flex:1; min-width:0; }
.tile-label { font-size:.88rem; font-weight:600; letter-spacing:.02em; line-height:1.2; }
.tile-sub   { font-size:.72rem; color:var(--text-muted); margin-top:3px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.tile-badge {
  position:absolute; top:10px; right:10px;
  background:var(--gold); color:var(--navy-dk);
  font-size:.62rem; font-weight:700; padding:3px 7px;
  border-radius:20px; letter-spacing:.04em; text-transform:uppercase;
}
.tile-badge.soon {
  background:transparent; border:1px solid var(--text-muted); color:var(--text-muted);
}
.tile-badge.count { background:var(--danger); color:#fff; }

/* ── GREETING ── */
.greeting { padding:20px 0 22px; }
.greeting-time { font-size:.72rem; color:var(--text-muted); text-transform:uppercase; letter-spacing:.1em; margin-bottom:4px; }
.greeting-name { font-family:'Cormorant Garamond',serif; font-size:2.1rem; font-weight:700; line-height:1.05; }
.greeting-name em { color:var(--gold); font-style:normal; }

/* ── BUTTONS ── */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:16px 22px; border-radius:var(--r-sm);
  font-family:'Outfit',sans-serif; font-size:.95rem; font-weight:600;
  letter-spacing:.04em; cursor:pointer; border:none;
  min-height:52px; transition:opacity var(--t), transform var(--t);
  text-decoration:none;
}
.btn:active { opacity:.82; transform:scale(.97); }
.btn-primary  { background:linear-gradient(135deg,var(--gold) 0%,var(--gold-lt) 100%); color:var(--navy-dk); }
.btn-outline  { background:transparent; border:1.5px solid var(--gold); color:var(--gold); }
.btn-ghost    { background:var(--card-bg); border:1px solid var(--card-border); color:var(--text-pri); }
.btn-danger   { background:var(--danger-dim); border:1px solid var(--danger); color:var(--danger); }
.btn-full     { width:100%; }
.btn-sm       { padding:12px 16px; font-size:.85rem; min-height:44px; }
.btn svg      { width:18px; height:18px; flex-shrink:0; }
.btn:disabled { opacity:.35; cursor:default; pointer-events:none; }

/* ── FORMS ── */
.field-group { margin-bottom:18px; }
.field-label {
  display:block; font-size:.72rem; font-weight:600;
  color:var(--gold); text-transform:uppercase; letter-spacing:.09em; margin-bottom:8px;
}
.field-input, .field-select, .field-textarea {
  width:100%; background:rgba(255,255,255,.05);
  border:1.5px solid rgba(201,168,76,.22);
  border-radius:var(--r-sm); padding:15px 16px;
  color:var(--text-pri); font-family:'Outfit',sans-serif;
  font-size:1rem; font-weight:400; outline:none;
  transition:border-color var(--t), background var(--t);
  appearance:none; -webkit-appearance:none;
}
.field-input:focus, .field-select:focus, .field-textarea:focus {
  border-color:var(--gold); background:rgba(255,255,255,.07);
}
.field-input::placeholder, .field-textarea::placeholder { color:var(--text-muted); font-weight:300; }
.field-textarea { resize:vertical; min-height:100px; }
.field-select { background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; padding-right:40px; cursor:pointer; }
.field-select option { background:var(--navy); color:var(--text-pri); }

/* ── ALERTS ── */
.alert { padding:14px 16px; border-radius:var(--r-sm); font-size:.88rem; margin-bottom:16px; display:flex; align-items:flex-start; gap:10px; }
.alert svg { width:18px; height:18px; flex-shrink:0; margin-top:1px; }
.alert-error   { background:var(--danger-dim); border:1px solid rgba(224,82,82,.4); color:#ff9a9a; }
.alert-success { background:var(--success-dim); border:1px solid rgba(76,175,125,.4); color:#7ae0aa; }
.alert-info    { background:var(--gold-dim); border:1px solid rgba(201,168,76,.35); color:var(--gold-lt); }

/* ── SECTION LABEL ── */
.section-label {
  font-size:.7rem; font-weight:600; color:var(--text-muted);
  text-transform:uppercase; letter-spacing:.1em;
  margin:24px 0 12px; display:flex; align-items:center; gap:10px;
}
.section-label::after { content:''; flex:1; height:1px; background:var(--card-border); }

/* ── LIST ROWS ── */
.list-row {
  display:flex; align-items:center; gap:14px;
  padding:16px 0; border-bottom:1px solid rgba(201,168,76,.08);
}
.list-row:last-child { border-bottom:none; }
.list-icon {
  width:42px; height:42px; border-radius:10px; flex-shrink:0;
  background:var(--gold-dim); display:flex; align-items:center; justify-content:center;
}
.list-icon svg { width:20px; height:20px; }
.list-body { flex:1; min-width:0; }
.list-title { font-size:.9rem; font-weight:600; line-height:1.25; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.list-meta  { font-size:.75rem; color:var(--text-muted); margin-top:2px; }
.list-end   { font-size:.78rem; color:var(--text-muted); flex-shrink:0; text-align:right; }

/* ── BADGE ── */
.badge {
  display:inline-flex; align-items:center;
  padding:3px 9px; border-radius:20px; font-size:.7rem; font-weight:600;
  letter-spacing:.04em; text-transform:uppercase;
}
.badge-gold    { background:var(--gold-dim); color:var(--gold); border:1px solid rgba(201,168,76,.35); }
.badge-green   { background:var(--success-dim); color:var(--success); }
.badge-red     { background:var(--danger-dim); color:var(--danger); }
.badge-muted   { background:rgba(255,255,255,.06); color:var(--text-muted); border:1px solid rgba(255,255,255,.1); }

/* ── TABS ── */
.tabs { display:flex; gap:4px; background:rgba(255,255,255,.04); border-radius:var(--r-sm); padding:4px; margin-bottom:20px; }
.tab-item {
  flex:1; padding:10px 8px; border-radius:8px; text-align:center;
  font-size:.8rem; font-weight:600; letter-spacing:.04em; cursor:pointer;
  color:var(--text-muted); transition:background var(--t), color var(--t);
  text-transform:uppercase;
}
.tab-item.active { background:var(--gold); color:var(--navy-dk); }

/* ── VISITENKARTE ── */
.vcard {
  background:linear-gradient(145deg,var(--navy-md) 0%,var(--navy) 100%);
  border:1px solid var(--card-border); border-radius:var(--r-lg);
  padding:28px 24px; position:relative; overflow:hidden;
}
.vcard::after {
  content:''; position:absolute; bottom:-60px; right:-60px;
  width:160px; height:160px; border-radius:50%;
  background:radial-gradient(circle,rgba(201,168,76,.1) 0%,transparent 70%);
  pointer-events:none;
}
.vcard-head { display:flex; align-items:center; gap:16px; margin-bottom:22px; }
.vcard-photo {
  width:68px; height:68px; border-radius:50%; flex-shrink:0;
  background:var(--gold-dim); border:2px solid var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-family:'Cormorant Garamond',serif; font-size:1.6rem; color:var(--gold); overflow:hidden;
}
.vcard-photo img { width:100%; height:100%; object-fit:cover; }
.vcard-name { font-family:'Cormorant Garamond',serif; font-size:1.45rem; font-weight:700; }
.vcard-role { font-size:.78rem; color:var(--gold); text-transform:uppercase; letter-spacing:.08em; margin-top:3px; }
.vcard-company { font-size:.72rem; color:var(--text-muted); margin-top:2px; }
.vcard-divider { height:1px; background:var(--card-border); margin:0 0 18px; }
.vcard-contacts { list-style:none; display:flex; flex-direction:column; gap:10px; }
.vcard-contact { display:flex; align-items:center; gap:12px; font-size:.88rem; color:var(--text-sec); }
.vcard-contact-icon {
  width:34px; height:34px; border-radius:9px; flex-shrink:0;
  background:var(--gold-dim); display:flex; align-items:center; justify-content:center;
}
.vcard-contact-icon svg { width:16px; height:16px; }
.vcard-actions { display:flex; gap:10px; margin-top:18px; }
.vcard-action {
  flex:1; background:var(--gold-dim); border:1px solid rgba(201,168,76,.4);
  color:var(--gold); border-radius:var(--r-sm); padding:13px 8px;
  font-family:'Outfit',sans-serif; font-size:.82rem; font-weight:600;
  cursor:pointer; display:flex; align-items:center; justify-content:center; gap:6px;
  transition:background var(--t); text-decoration:none;
}
.vcard-action:active { background:rgba(201,168,76,.22); }
.vcard-action svg { width:16px; height:16px; }

/* ── QR WRAP ── */
.qr-wrap {
  display:flex; justify-content:center; align-items:center;
  padding:20px; background:var(--card-bg); border:1px solid var(--card-border);
  border-radius:var(--r-md); margin-top:16px;
}
.qr-wrap canvas, .qr-wrap img { border-radius:8px; }

/* ── KALENDER ── */
.cal-grid {
  display:grid; grid-template-columns:repeat(7,1fr); gap:4px; margin-bottom:16px;
}
.cal-day-label { font-size:.65rem; color:var(--text-muted); text-align:center; padding:4px 0; text-transform:uppercase; letter-spacing:.06em; font-weight:600; }
.cal-day {
  aspect-ratio:1; display:flex; align-items:center; justify-content:center;
  border-radius:8px; font-size:.85rem; cursor:pointer; position:relative;
  transition:background var(--t);
}
.cal-day:active { background:rgba(255,255,255,.1); }
.cal-day.today { background:var(--gold-dim); color:var(--gold); font-weight:700; }
.cal-day.selected { background:var(--gold); color:var(--navy-dk); font-weight:700; }
.cal-day.other-month { color:var(--text-muted); }
.cal-day .dot {
  position:absolute; bottom:3px; left:50%; transform:translateX(-50%);
  width:4px; height:4px; border-radius:50%; background:var(--gold);
}
.cal-day.selected .dot { background:var(--navy-dk); }
.cal-nav { display:flex; align-items:center; justify-content:space-between; margin-bottom:16px; }
.cal-nav-btn {
  width:40px; height:40px; border-radius:var(--r-sm); border:1px solid var(--card-border);
  background:var(--card-bg); color:var(--text-pri); display:flex; align-items:center;
  justify-content:center; cursor:pointer; font-size:1.2rem;
}
.cal-month { font-family:'Cormorant Garamond',serif; font-size:1.3rem; font-weight:700; }

/* ── WIZARD / STEPPER ── */
.wizard-steps { display:flex; gap:0; margin-bottom:28px; }
.wizard-step { flex:1; display:flex; flex-direction:column; align-items:center; position:relative; }
.wizard-step:not(:last-child)::after {
  content:''; position:absolute; top:15px; left:50%; width:100%; height:2px;
  background:var(--card-border);
}
.wizard-step.done::after  { background:var(--gold); }
.wizard-dot {
  width:30px; height:30px; border-radius:50%; border:2px solid var(--card-border);
  background:var(--navy-dk); display:flex; align-items:center; justify-content:center;
  font-size:.75rem; font-weight:700; color:var(--text-muted); z-index:1; flex-shrink:0;
}
.wizard-step.active .wizard-dot { border-color:var(--gold); color:var(--gold); background:var(--gold-dim); }
.wizard-step.done .wizard-dot   { background:var(--gold); border-color:var(--gold); color:var(--navy-dk); }
.wizard-label { font-size:.62rem; color:var(--text-muted); margin-top:6px; text-align:center; text-transform:uppercase; letter-spacing:.06em; white-space:nowrap; }
.wizard-step.active .wizard-label { color:var(--gold); }

/* ── KALKULATIONS-LEISTE ── */
.calc-bar {
  position:sticky; bottom:calc(var(--nav-h) + 8px);
  background:rgba(34,40,71,.96); backdrop-filter:blur(12px);
  border:1px solid var(--card-border); border-radius:var(--r-md);
  padding:14px 18px; display:flex; align-items:center; justify-content:space-between;
  box-shadow:var(--shadow); margin-top:16px;
}
.calc-label { font-size:.78rem; color:var(--text-muted); text-transform:uppercase; letter-spacing:.08em; }
.calc-value { font-family:'Cormorant Garamond',serif; font-size:1.8rem; font-weight:700; color:var(--gold); }
.calc-unit  { font-size:.75rem; color:var(--text-muted); margin-top:2px; }

/* ── MAIL ── */
.mail-row {
  display:flex; align-items:flex-start; gap:14px;
  padding:16px 0; border-bottom:1px solid rgba(201,168,76,.07); cursor:pointer;
  transition:background var(--t);
}
.mail-row:active { background:rgba(255,255,255,.04); }
.mail-avatar {
  width:42px; height:42px; border-radius:50%; flex-shrink:0;
  background:var(--gold-dim); display:flex; align-items:center; justify-content:center;
  font-family:'Cormorant Garamond',serif; font-size:1rem; color:var(--gold); font-weight:700;
}
.mail-body { flex:1; min-width:0; }
.mail-from { font-size:.88rem; font-weight:600; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.mail-from.unread { color:var(--text-pri); }
.mail-from.read   { color:var(--text-sec); font-weight:400; }
.mail-subject { font-size:.82rem; color:var(--text-sec); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; margin-top:2px; }
.mail-preview { font-size:.75rem; color:var(--text-muted); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; margin-top:2px; }
.mail-meta  { font-size:.7rem; color:var(--text-muted); flex-shrink:0; text-align:right; line-height:1.4; }
.mail-unread-dot { width:8px; height:8px; border-radius:50%; background:var(--gold); margin-top:6px; margin-left:auto; }

/* ── REVIEW STARS ── */
.star-row { display:flex; gap:10px; justify-content:center; margin:20px 0; }
.star-btn {
  font-size:2.2rem; cursor:pointer; transition:transform var(--t), opacity var(--t);
  filter:grayscale(1); opacity:.4; background:none; border:none;
}
.star-btn.active { filter:none; opacity:1; transform:scale(1.15); }

/* ── SPINNER ── */
.spinner {
  width:22px; height:22px; border-radius:50%;
  border:2px solid rgba(255,255,255,.2); border-top-color:var(--gold);
  animation:spin .7s linear infinite; display:inline-block;
}
@keyframes spin { to { transform:rotate(360deg); } }

/* ── TOAST ── */
.toast {
  position:fixed; bottom:calc(var(--nav-h) + 12px); left:50%;
  transform:translateX(-50%) translateY(10px);
  background:var(--navy-lt); border:1px solid var(--gold);
  color:var(--text-pri); padding:12px 20px; border-radius:30px;
  font-size:.85rem; font-weight:500; opacity:0;
  transition:opacity .25s,transform .25s; pointer-events:none;
  z-index:999; white-space:nowrap; max-width:90vw;
}
.toast.show { opacity:1; transform:translateX(-50%) translateY(0); }

/* ── LOGIN ── */
.login-page {
  min-height:100dvh; display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  padding:40px 24px;
  background:radial-gradient(ellipse at 70% 0%,rgba(201,168,76,.07) 0%,transparent 60%),
             linear-gradient(180deg,var(--navy) 0%,var(--navy-dk) 100%);
}
.login-logo { margin-bottom:44px; }
.login-logo img { width:180px; max-width:72vw; }
.login-card {
  width:100%; max-width:380px;
  background:var(--card-bg); border:1px solid var(--card-border);
  border-radius:var(--r-lg); padding:30px 26px;
  backdrop-filter:blur(8px);
}
.login-title    { font-family:'Cormorant Garamond',serif; font-size:1.65rem; color:var(--gold); text-align:center; margin-bottom:4px; }
.login-subtitle { font-size:.75rem; color:var(--text-muted); text-align:center; letter-spacing:.09em; text-transform:uppercase; margin-bottom:28px; }
.login-version  { font-size:.68rem; color:var(--text-muted); text-align:center; margin-top:24px; letter-spacing:.07em; }

/* ── EMPTY STATE ── */
.empty {
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  padding:60px 24px; text-align:center; gap:14px;
}
.empty-icon { font-size:3rem; opacity:.5; }
.empty-title { font-family:'Cormorant Garamond',serif; font-size:1.45rem; color:var(--text-sec); }
.empty-text  { font-size:.88rem; color:var(--text-muted); max-width:280px; line-height:1.65; }

/* ── UTILS ── */
.text-gold   { color:var(--gold); }
.text-muted  { color:var(--text-muted); }
.text-danger { color:var(--danger); }
.text-center { text-align:center; }
.mt-4  { margin-top:4px; }
.mt-8  { margin-top:8px; }
.mt-12 { margin-top:12px; }
.mt-16 { margin-top:16px; }
.mt-20 { margin-top:20px; }
.mt-24 { margin-top:24px; }
.mb-8  { margin-bottom:8px; }
.mb-16 { margin-bottom:16px; }
.mb-20 { margin-bottom:20px; }
.gap-8  { gap:8px; }
.flex   { display:flex; }
.flex-center { display:flex; align-items:center; justify-content:center; }
.flex-between { display:flex; align-items:center; justify-content:space-between; }
.flex-col { display:flex; flex-direction:column; }
.w-full { width:100%; }
.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:12px; }

/* ── RESPONSIVE ── */
@media (max-width:360px) {
  h1 { font-size:1.75rem; }
  .home-grid { gap:10px; }
  .home-tile { padding:18px 14px; min-height:112px; }
  .greeting-name { font-size:1.8rem; }
}
@media (prefers-reduced-motion:reduce) {
  *, *::before, *::after { transition:none !important; animation:none !important; }
}
