/* VerseUp marketing site — shared styles.
 *
 * Brand: green (primary, Duolingo-style), gold (accent), cream
 * backgrounds. No violet/purple — kept in-app only. No gradients
 * (deliberately, to avoid AI-template aesthetic). Hairline borders,
 * generous whitespace, Baloo 2 + Nunito (already on Google Fonts).
 */

:root {
  --primary: #58CC02;
  --primary-dark: #46A302;
  --primary-light: #89E219;
  --primary-surface: #E8F5E1;

  --secondary: #1CB0F6;
  --secondary-dark: #1899D6;
  --secondary-surface: #E0F4FE;

  --gold: #FFC800;
  --gold-dark: #E5B400;
  --gold-surface: #FFF8E0;

  --error: #FF4B4B;
  --error-dark: #E53935;
  --error-surface: #FFE5E5;

  --warn-amber: #B45309;
  --warn-amber-surface: #FEF3C7;

  --bg: #FAFAF7;          /* warm cream, not pure white */
  --surface: #FFFFFF;
  --surface-cream: #FDFAF3;
  --surface-deep: #F2EFE8;

  --text: #1A1A2E;
  --text-secondary: #4A4A5E;
  --text-muted: #8A8A9E;

  --border: #E8E5DD;
  --border-strong: #D9D5C9;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(26, 26, 46, 0.04);
  --shadow-md: 0 2px 8px rgba(26, 26, 46, 0.04);
  --shadow-lg: 0 8px 24px rgba(26, 26, 46, 0.06);
  --shadow-card: 0 4px 0 0 var(--border-strong);

  --font-display: 'Baloo 2', system-ui, -apple-system, sans-serif;
  --font-body: 'Nunito', system-ui, -apple-system, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ──── Layout ──── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

section { padding: 80px 0; }
section.section-tight { padding: 48px 0; }
@media (max-width: 768px) {
  section { padding: 56px 0; }
}

/* ──── Header ──── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 720px) {
  .site-header { position: relative; }
}
.header-row {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px; gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text); font-weight: 800;
  font-family: var(--font-display); font-size: 20px; letter-spacing: -0.01em;
  line-height: 1;
}
.brand img { width: 32px; height: 32px; display: block; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  display: inline-flex; align-items: center;
  height: 38px;
  padding: 0 14px;
  text-decoration: none; color: var(--text-secondary);
  font-weight: 600; font-size: 15px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: color 120ms ease, background 120ms ease, border-color 120ms ease;
  line-height: 1;
}
.nav a:hover { color: var(--text); }
.nav a.nav-cta {
  color: var(--primary-dark);
  background: var(--primary-surface);
}
.nav a.nav-cta:hover { border-color: var(--primary); color: var(--primary-dark); }

/* Mobile menu button (hamburger) */
.mobile-menu-btn {
  display: none;
  align-items: center; justify-content: center;
  flex-direction: column;
  width: 40px; height: 40px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  padding: 0; gap: 4px;
}
.mobile-menu-btn span {
  display: block;
  width: 16px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}
.mobile-menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 720px) {
  .mobile-menu-btn { display: inline-flex; }
  .nav {
    position: absolute;
    top: calc(100% - 1px); left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 12px 16px 16px;
    box-shadow: 0 12px 24px rgba(26, 26, 46, 0.06);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 200ms ease, opacity 200ms ease, visibility 200ms ease;
  }
  .nav[aria-expanded="true"] {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav a { height: 44px; padding: 0 14px; }
  .nav a.nav-cta { justify-content: center; }
}

/* ──── Typography ──── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
h1 { font-size: clamp(36px, 6vw, 58px); line-height: 1.05; }
h2 { font-size: clamp(28px, 4vw, 40px); line-height: 1.1; margin-top: 0; }
h3 { font-size: 22px; line-height: 1.25; }
h4 { font-size: 18px; line-height: 1.3; }

p { margin: 0 0 16px; color: var(--text-secondary); }
p.lede { font-size: 19px; color: var(--text-secondary); max-width: 640px; }
a { color: var(--primary-dark); text-decoration-color: rgba(70, 163, 2, 0.3); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--primary-dark); }

/* ──── Eyebrow tag ──── */
.eyebrow {
  display: inline-block;
  padding: 5px 12px;
  background: var(--primary-surface);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.eyebrow.amber { background: var(--gold-surface); color: var(--warn-amber); }
.eyebrow.blue { background: var(--secondary-surface); color: var(--secondary-dark); }

/* ──── Buttons ──── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-body); font-weight: 800; font-size: 15px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease;
  border: none; cursor: pointer;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 3px 0 0 var(--primary-dark);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 0 0 var(--primary-dark); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 1px 0 0 var(--primary-dark); }

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1.5px solid var(--border-strong);
  box-shadow: 0 3px 0 0 var(--border-strong);
}
.btn-secondary:hover { transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 10px 16px;
}
.btn-ghost:hover { color: var(--text); background: var(--surface-cream); }

.btn-lg { padding: 14px 28px; font-size: 16px; }

/* ──── Cards ──── */
.card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 200ms ease;
}
.card:hover { border-color: var(--border-strong); }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--primary-surface);
  margin-bottom: 16px;
}
.card-icon svg, .card-icon img { width: 22px; height: 22px; color: var(--primary-dark); }
.card-icon.gold { background: var(--gold-surface); }
.card-icon.gold svg, .card-icon.gold img { color: var(--gold-dark); }
.card-icon.blue { background: var(--secondary-surface); }
.card-icon.blue svg, .card-icon.blue img { color: var(--secondary-dark); }
.card-icon.red { background: var(--error-surface); }
.card-icon.red svg, .card-icon.red img { color: var(--error-dark); }

/* Recolour mingcute SVG icons using CSS filters — they ship black, we tint. */
.card-icon img { filter: brightness(0) saturate(100%) invert(38%) sepia(74%) saturate(2354%) hue-rotate(76deg) brightness(94%) contrast(92%); }
.card-icon.gold img { filter: brightness(0) saturate(100%) invert(72%) sepia(54%) saturate(2068%) hue-rotate(8deg) brightness(95%) contrast(101%); }
.card-icon.blue img { filter: brightness(0) saturate(100%) invert(45%) sepia(98%) saturate(1352%) hue-rotate(176deg) brightness(98%) contrast(94%); }
.card-icon.red img { filter: brightness(0) saturate(100%) invert(34%) sepia(80%) saturate(2891%) hue-rotate(338deg) brightness(101%) contrast(94%); }

/* ──── Tilt (cursor-tracking 3D hover) ──── */
.tilt-group { perspective: 1200px; }
.tilt {
  will-change: transform;
  transform-style: preserve-3d;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease, border-color 220ms ease;
}
.tilt:hover {
  box-shadow: 0 18px 36px -12px rgba(26, 26, 46, 0.18), 0 6px 12px -6px rgba(26, 26, 46, 0.08);
  border-color: var(--border-strong);
}
@media (prefers-reduced-motion: reduce) {
  .tilt { transition: none !important; transform: none !important; }
}
@media (hover: none) {
  /* Touch devices — no tilt */
  .tilt:hover { transform: none !important; }
}

/* ──── Sword grid (10-tier progression) ──── */
.sword-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .sword-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .sword-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 380px) { .sword-grid { grid-template-columns: 1fr; } }

.sword-card {
  position: relative;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;
  transition: transform 200ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease, border-color 200ms ease;
  overflow: hidden;
}
.sword-card::before {
  content: '';
  position: absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--sword-color, var(--primary));
}
.sword-card:hover { border-color: var(--border-strong); box-shadow: 0 18px 36px -12px rgba(26, 26, 46, 0.18); }
.sword-card .sword-icon {
  display: block;
  width: 44px; height: 44px;
  margin: 4px auto 12px;
  filter: brightness(0) saturate(100%);
}
.sword-card[style*="9E9E9E"] .sword-icon { filter: brightness(0) saturate(100%) invert(62%) sepia(0%) saturate(0%) hue-rotate(178deg) brightness(98%) contrast(86%); }
.sword-card[style*="FFC800"] .sword-icon { filter: brightness(0) saturate(100%) invert(76%) sepia(76%) saturate(2068%) hue-rotate(2deg) brightness(101%) contrast(102%); }
.sword-card[style*="FF9500"] .sword-icon { filter: brightness(0) saturate(100%) invert(66%) sepia(72%) saturate(3032%) hue-rotate(360deg) brightness(101%) contrast(105%); }
.sword-card[style*="58CC02"] .sword-icon { filter: brightness(0) saturate(100%) invert(63%) sepia(74%) saturate(1080%) hue-rotate(50deg) brightness(99%) contrast(99%); }
.sword-card[style*="1CB0F6"] .sword-icon { filter: brightness(0) saturate(100%) invert(60%) sepia(63%) saturate(1452%) hue-rotate(170deg) brightness(99%) contrast(94%); }
.sword-card[style*="4355DB"] .sword-icon { filter: brightness(0) saturate(100%) invert(36%) sepia(72%) saturate(2480%) hue-rotate(220deg) brightness(86%) contrast(87%); }
.sword-card[style*="CE82FF"] .sword-icon { filter: brightness(0) saturate(100%) invert(64%) sepia(35%) saturate(2528%) hue-rotate(232deg) brightness(102%) contrast(101%); }
.sword-card[style*="FF4B4B"] .sword-icon { filter: brightness(0) saturate(100%) invert(38%) sepia(72%) saturate(4980%) hue-rotate(341deg) brightness(99%) contrast(108%); }
.sword-card[style*="3D3D3D"] .sword-icon { filter: brightness(0) saturate(100%) invert(20%) sepia(0%) saturate(0%) hue-rotate(178deg) brightness(95%) contrast(94%); }
.sword-card[style*="B8A000"] .sword-icon { filter: brightness(0) saturate(100%) invert(58%) sepia(80%) saturate(794%) hue-rotate(20deg) brightness(98%) contrast(95%); }

.sword-card h4 { margin: 0 0 6px; font-size: 17px; color: var(--sword-color, var(--text)); }
.sword-card .sword-count { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); margin: 0 0 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.sword-card .sword-blurb { margin: 0; font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* ──── Grid ──── */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* ──── Hero ──── */
.hero {
  padding: 72px 0 56px;
  background:
    radial-gradient(circle at 88% 14%, var(--gold-surface), transparent 36%),
    radial-gradient(circle at 12% 88%, var(--primary-surface), transparent 38%),
    var(--bg);
}
.hero-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center;
}
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 48px 0 32px; }
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 28px; margin-top: 36px;
  padding-top: 28px;
  border-top: 1.5px solid var(--border);
}
@media (max-width: 480px) {
  .hero-meta { gap: 20px 24px; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
}
.meta-stat { display: flex; flex-direction: column; }
.meta-stat-value { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--text); }
.meta-stat-label { font-size: 13px; color: var(--text-muted); font-weight: 600; }
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.phone-frame {
  width: min(280px, 70vw);
  aspect-ratio: 9 / 19.5;
  background: var(--surface-cream);
  border: 4px solid var(--text);
  border-radius: 36px;
  box-shadow: 0 12px 0 0 var(--text), 0 24px 40px rgba(26, 26, 46, 0.12);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: var(--text-muted);
  position: relative;
  overflow: hidden;
}
.phone-frame::before {
  content: '';
  position: absolute; top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 18px;
  background: var(--text);
  border-radius: 0 0 12px 12px;
}
.phone-placeholder-text {
  font-size: 13px; padding: 16px; text-align: center;
}
.hero-carousel {
  position: relative;
  width: min(320px, 80vw);
  overflow: hidden;
  border-radius: 36px;
  filter: drop-shadow(0 24px 40px rgba(26, 26, 46, 0.18));
}
.hero-track {
  display: flex;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateX(calc(-100% * var(--idx, 0)));
  width: 100%;
}
.hero-track img {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  display: block;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text, #1a1a2e);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(26, 26, 46, 0.25);
  padding: 0;
  z-index: 2;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 200ms, transform 200ms;
}
.hero-arrow:hover { background: #fff; }
.hero-arrow:active { transform: translateY(-50%) scale(0.92); }
.hero-arrow-prev { left: 12px; }
.hero-arrow-next { right: 12px; }

/* ──── Section header ──── */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-head p.lede { margin-left: auto; margin-right: auto; }

/* ──── Feature row (Path of Mastery, etc) ──── */
.feature-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 880px) {
  .feature-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .feature-row { grid-template-columns: 1fr; }
}

/* ──── Content card (legal pages) ──── */
.content-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.content-card h2 { margin-top: 36px; }
.content-card h2:first-child { margin-top: 0; }
.content-card h3 { margin-top: 24px; }
.content-card ul, .content-card ol { padding-left: 22px; color: var(--text-secondary); }
.content-card li { margin: 4px 0; }
.content-card .tag-strong { background: var(--surface-cream); padding: 2px 8px; border-radius: 4px; font-weight: 700; }
@media (max-width: 600px) {
  .content-card { padding: 24px; }
}

/* ──── Callout boxes ──── */
.callout {
  padding: 20px 24px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
  background: var(--primary-surface);
  margin: 24px 0;
}
.callout-warn { border-left-color: var(--warn-amber); background: var(--gold-surface); }
.callout-warn h3, .callout-warn strong { color: var(--warn-amber); }
.callout-info { border-left-color: var(--secondary-dark); background: var(--secondary-surface); }
.callout h3 { margin-top: 0; }
.callout p:last-child { margin-bottom: 0; }

/* ──── Email template block ──── */
.email-template {
  position: relative;
  background: var(--surface-cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 20px 20px 20px;
  margin: 16px 0 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  white-space: pre-wrap;
}
.email-template .label { color: var(--text-muted); font-weight: 600; }
.email-template .copy-btn {
  position: absolute; top: 12px; right: 12px;
  padding: 4px 10px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.email-template .copy-btn:hover { background: var(--primary-dark); }

/* ──── Timeline ──── */
.timeline { padding-left: 22px; border-left: 2px solid var(--border); margin: 16px 0 24px; }
.timeline-item { margin: 0 0 20px; position: relative; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px; top: 7px;
  width: 12px; height: 12px;
  background: var(--primary);
  border-radius: 50%;
  border: 2px solid var(--surface);
}
.timeline-item h4 { margin-bottom: 4px; color: var(--text); }
.timeline-item p { margin-bottom: 0; font-size: 14px; }

/* ──── Page hero (legal/support pages) ──── */
.page-hero {
  background:
    radial-gradient(circle at 88% 24%, var(--gold-surface), transparent 40%),
    radial-gradient(circle at 12% 90%, var(--primary-surface), transparent 40%),
    var(--bg);
  padding: 64px 0 32px;
  text-align: center;
}
.page-hero h1 { max-width: 720px; margin-left: auto; margin-right: auto; }
.page-hero p.lede { margin-left: auto; margin-right: auto; }

/* ──── Footer ──── */
.site-footer {
  background: var(--surface-deep);
  border-top: 1.5px solid var(--border);
  padding: 56px 0 32px;
  margin-top: 64px;
}
.footer-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 720px) {
  .footer-row { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 460px) {
  .footer-row { grid-template-columns: 1fr; }
}
.footer-col h4 {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); margin-bottom: 16px; font-family: var(--font-body); font-weight: 800;
}
.footer-col a {
  display: block; color: var(--text-secondary); text-decoration: none;
  padding: 4px 0; font-size: 14px; font-weight: 500;
}
.footer-col a:hover { color: var(--text); }
.footer-brand { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--text); display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand img { width: 28px; height: 28px; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 24px;
  border-top: 1.5px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
}
.footer-bottom a { color: var(--text-muted); }

/* ──── Verse pull-quote ──── */
.verse-quote {
  text-align: center;
  padding: 56px 24px;
  background: var(--surface-cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  margin: 32px auto;
  max-width: 720px;
}
.verse-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin: 0 0 16px;
}
.verse-quote cite {
  display: block;
  font-style: normal;
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ──── Last-updated stamp ──── */
.last-updated {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1.5px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  text-align: right;
}
