:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --text: #111827;
  --muted: #64748b;
  --line: #e2e8f0;
  --primary: #0f172a;
  --primary-text: #ffffff;
  --radius: 10px;
  --font-sans: "Poppins", "Noto Sans Sinhala", "Segoe UI", sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; margin: 0; }
body {
  font-family: var(--font-sans);
  font-weight: var(--font-weight-regular);
  font-size: 19px;
  color: var(--text);
  background: var(--bg);
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select {
  font-family: var(--font-sans);
  font-weight: var(--font-weight-regular);
}
.brand,
.nav-links a,
h1, h2, h3,
.text-pane span,
.ghost-action, .primary-action,
.footer-logo,
.footer-col h4 {
  font-family: var(--font-sans);
}
.shell { width: min(1100px, calc(100vw - 32px)); margin: 0 auto; }

@media (min-width: 1920px) {
  .shell {
    width: min(1500px, calc(100vw - 80px));
  }

  .app-layout,
  .content-page {
    padding: 30px 0 48px;
  }

  .converter-surface,
  .page-head,
  .guide-grid > div,
  .about-hero,
  .about-points > div,
  .donate-box {
    padding: 22px;
  }

  textarea {
    min-height: 360px;
  }
}

@media (min-width: 2560px) {
  .shell {
    width: min(1780px, calc(100vw - 120px));
  }

  .workspace {
    gap: 18px;
  }

  textarea {
    min-height: 430px;
  }
}

.splash {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--text);
  transition: opacity 220ms ease, visibility 220ms ease;
}
.splash.hide { opacity: 0; visibility: hidden; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.nav {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-auth {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-profile {
  font-size: 1.1rem;
  color: var(--muted);
  padding: 0 2px;
}

.brand {
  font-size: 1.55rem;
  font-weight: var(--font-weight-bold);
}

.brand-logo {
  height: 60px;
  width: auto;
  display: block;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-bar + .nav-toggle-bar {
  margin-top: 4px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  color: var(--muted);
  font-weight: var(--font-weight-semibold);
  font-size: 1.08rem;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: #eef2ff;
}

.app-layout,
.content-page {
  padding: 24px 0 40px;
}

.app-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.converter-surface,
.reviews-layout,
.review-summary,
.account-panel,
.page-head,
.guide-grid > div,
.about-hero,
.about-points > div,
.donate-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.converter-surface,
.page-head,
.guide-grid > div,
.about-hero,
.about-points > div,
.donate-box {
  padding: 18px;
}

.surface-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.keymap-icon-btn {
  min-width: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.keymap-icon-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.converter-options {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.keymap-panel {
  border: 1px solid #dbe4f0;
  border-radius: 12px;
  background: #ffffff;
  padding: 10px;
  margin-top: 8px;
  margin-bottom: 4px;
  overflow: hidden;
  max-height: 980px;
  opacity: 1;
  transform: translateY(0);
  transition: max-height 0.28s ease, opacity 0.22s ease, transform 0.22s ease, margin 0.22s ease, padding 0.22s ease;
}

.keymap-panel.keymap-collapsed {
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0;
}

.keymap-panel h3 {
  margin: 0 0 4px;
  font-size: 1.18rem;
}

.keymap-panel p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.98rem;
}

.keymap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 6px;
}

.keymap-item {
  border: 1px solid #dbe4f0;
  border-radius: 9px;
  background: #ffffff;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-height: 34px;
}

.keymap-item code {
  font-size: 0.9rem;
  color: #0f766e;
  background: #ecfeff;
  border: 1px solid #a5f3fc;
  border-radius: 999px;
  padding: 1px 7px;
  margin-left: 2px;
}

.keymap-item b {
  font-size: 1.08rem;
  color: var(--text);
  line-height: 1;
  min-width: 1.2em;
}

.virtual-keyboard {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--text);
  padding: 14px;
  margin-bottom: 14px;
  display: grid;
  gap: 12px;
  overflow: hidden;
  max-height: 1200px;
  opacity: 1;
  transform: translateY(0);
  transition: max-height 0.32s ease, opacity 0.22s ease, transform 0.22s ease, margin 0.22s ease, padding 0.22s ease;
}

.virtual-keyboard.vk-collapsed {
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0;
}

.vk-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.vk-head h3 {
  margin: 0;
}

.vk-target {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.vk-target span {
  font-size: 0.92rem;
}

.vk-target select {
  min-height: 36px;
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}

.vk-layout {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 12px;
}

.vk-groups {
  display: grid;
  gap: 10px;
}

.vk-group {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: #f8fafc;
}

.vk-group h4 {
  margin: 0 0 8px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

.virtual-keys {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.vk-key {
  min-height: 36px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #ffffff;
  color: #111827;
  font-size: 0.9rem;
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
}

.vk-key:hover {
  background: #f3f4f6;
}

.vk-key small {
  font-size: 0.62rem;
  font-weight: var(--font-weight-medium);
  color: #4b5563;
}

.vk-preview {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #f8fafc;
  display: grid;
  gap: 10px;
  align-content: start;
}

.vk-preview p {
  margin: 0;
  color: var(--text);
}

.vk-preview span {
  color: var(--text);
  font-weight: var(--font-weight-semibold);
}

.vk-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.virtual-keyboard .ghost-action {
  border-color: var(--line);
  background: #fff;
  color: var(--text);
}

.virtual-keyboard .ghost-action:hover {
  background: #f3f4f6;
}

.eyebrow {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 0; font-size: 2.45rem; font-weight: var(--font-weight-bold); }
h2 { font-size: 1.4rem; font-weight: var(--font-weight-semibold); }
h3 { font-size: 1.2rem; font-weight: var(--font-weight-semibold); }

.segmented, .tab-row {
  display: inline-flex;
  padding: 3px;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.mode-btn, .auth-tab {
  min-width: 90px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
}

.mode-btn.active, .auth-tab.active {
  color: var(--primary-text);
  background: var(--primary);
}

.workspace {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.workspace.tall { grid-template-columns: 1fr 1fr; }

.text-pane { display: grid; gap: 8px; }
.text-pane span { color: var(--text); font-weight: var(--font-weight-semibold); font-size: 1.24rem; }

textarea, input, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  font-size: 1.22rem;
  outline: none;
}

textarea {
  min-height: 240px;
  resize: none;
  padding: 11px;
  line-height: 1.6;
}

input, select { min-height: 42px; padding: 0 12px; }
textarea:focus, input:focus, select:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
::placeholder { color: #9ca3af; }

.actions, .signed-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.actions { margin-top: 12px; }
.actions p, .status-line {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.actions.tiny { margin-top: 0; }

.primary-action, .ghost-action {
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  font-weight: var(--font-weight-semibold);
  font-size: 1.06rem;
  cursor: pointer;
}

.primary-action {
  border: 0;
  color: var(--primary-text);
  background: var(--primary);
}

.ghost-action {
  border: 1px solid var(--line);
  color: var(--text);
  background: #fff;
}

.reviews-layout {
  padding: 16px;
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(320px, 1fr);
  gap: 12px;
}

.sinkey-article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 18px;
  display: grid;
  gap: 12px;
}

.sinkey-headline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sinkey-icon {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
}

.sinkey-article p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.sinkey-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.sinkey-points span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: #f8fafc;
  color: var(--text);
  font-weight: var(--font-weight-medium);
}

.sinkey-note {
  font-size: 1.08rem;
}

.sinkey-download {
  width: fit-content;
  text-decoration: none;
}

.review-summary, .account-panel { padding: 12px; }
.rating-score {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.rating-score span { font-size: 2rem; }
.stars, .star-input button { color: #f59e0b; }

.auth-grid { display: grid; gap: 9px; margin-top: 10px; }
.hidden, .register-only.hidden { display: none !important; }
#userBadge { flex: 1; color: var(--primary); font-weight: var(--font-weight-bold); }
.star-input { display: flex; gap: 2px; margin: 12px 0; }
.star-input button { width: 36px; height: 36px; border: 0; background: transparent; cursor: pointer; }
.comment-box { min-height: 96px; margin-bottom: 10px; }

.reviews-list { display: grid; gap: 9px; grid-column: 1 / -1; }
.review-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: #fff;
}
.review-item strong {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.review-item p { margin-bottom: 0; line-height: 1.55; }

.page-head { margin-bottom: 14px; }
.page-head p { margin-bottom: 0; color: var(--muted); }

.guide-grid, .about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.map-list { display: grid; gap: 8px; }
.map-list span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  color: var(--muted);
}
.map-list b { color: var(--text); }

.about-hero,
.donate-box { display: grid; gap: 10px; }
.about-hero p,
.about-points p,
.donate-box p { color: var(--muted); line-height: 1.7; }

.donate-link { width: fit-content; display: inline-flex; align-items: center; }
.footer { padding: 18px 0 30px; color: var(--muted); font-size: 0.86rem; }

.footer-bottom {
  align-items: center;
}

.footer-inquiry-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  text-decoration: none;
  border: 1px solid rgba(245, 158, 11, 0.24);
  background: linear-gradient(135deg, #fff7ed, #fffbeb);
  color: #9a3412;
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.08);
}

.footer-inquiry-link:hover {
  color: #7c2d12;
  border-color: rgba(245, 158, 11, 0.38);
  background: linear-gradient(135deg, #ffedd5, #fef3c7);
}

.inquiry-page {
  display: grid;
  gap: 18px;
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 16px;
}

.inquiry-card,
.inquiry-side {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 18px;
}

.inquiry-card {
  display: grid;
  gap: 12px;
}

.inquiry-card h2,
.inquiry-side h2 {
  margin-bottom: 0;
}

.inquiry-card p,
.inquiry-side p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.inquiry-form {
  display: grid;
  gap: 12px;
}

.inquiry-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.inquiry-side {
  display: grid;
  align-content: start;
  gap: 12px;
}

.inquiry-side ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

@media (max-width: 1180px) {
  .workspace {
    grid-template-columns: 1fr 1fr;
  }

  .text-pane:first-child {
    grid-column: 1 / -1;
  }

  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .inquiry-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  textarea {
    min-height: 260px;
  }
}

@media (max-width: 980px) {
  .nav {
    position: relative;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links,
  .header-auth {
    display: none;
    width: 100%;
  }

  .nav.nav-open .nav-links,
  .nav.nav-open .header-auth {
    display: flex;
  }

  .nav.nav-open .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding-top: 10px;
  }

  .nav.nav-open .nav-links a {
    width: 100%;
    justify-content: flex-start;
    min-height: 42px;
  }

  .nav.nav-open .header-auth {
    margin-top: 8px;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
  }

  .workspace,
  .workspace.tall,
  .reviews-layout,
  .sinkey-points,
  .guide-grid,
  .about-points,
  .about-hero {
    grid-template-columns: 1fr;
  }

  textarea { min-height: 220px; }
  .surface-head { flex-direction: column; align-items: flex-start; }
  .keymap-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vk-layout { grid-template-columns: 1fr; }
  .virtual-keys { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .converter-options { width: 100%; }
}

@media (max-width: 760px) {
  .shell {
    width: min(1100px, calc(100vw - 20px));
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
    gap: 10px;
  }
  h1 {
    font-size: 1.45rem;
    line-height: 1.25;
  }
  .keymap-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .virtual-keys { grid-template-columns: repeat(4, minmax(0, 1fr)); }

  textarea {
    min-height: 200px;
  }

  .actions.tiny .ghost-action {
    min-height: 36px;
    padding: 0 12px;
  }

  .footer-logo {
    font-size: 1.7rem;
  }

  .footer-col a,
  .footer-bottom {
    font-size: 0.9rem;
  }
}

@media (max-width: 520px) {
  .shell {
    width: min(1100px, calc(100vw - 16px));
  }

  .converter-surface,
  .page-head,
  .guide-grid > div,
  .about-hero,
  .about-points > div,
  .donate-box,
  .reviews-layout,
  .review-summary,
  .account-panel {
    padding: 12px;
  }

  .actions.tiny {
    gap: 8px;
  }

  .actions.tiny .ghost-action {
    min-width: 0;
    flex: 1 1 auto;
  }

  textarea {
    min-height: 180px;
  }

  .virtual-keys { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.footer {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  padding: 24px 0 16px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.footer-col {
  display: grid;
  gap: 8px;
}

.footer-col h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6b7280;
}

.footer-col a {
  color: var(--muted);
  font-size: 1.18rem;
}

.footer-col a:hover {
  color: var(--text);
}

.brand-col {
  display: block;
}

.connect-col {
  align-content: start;
}

.footer-brand strong {
  display: block;
  font-size: 1.04rem;
  letter-spacing: 0.1px;
}

.footer-logo {
  display: block;
  font-size: 2.7rem;
  line-height: 1;
  letter-spacing: 0.2px;
  margin-bottom: 10px;
}

.footer-brand p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 430px;
  text-align: justify;
  text-align-last: left;
}

.footer-social {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  background: #f8fafc;
  transition: all 0.2s ease;
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: block;
}

.footer-social a:hover {
  color: var(--text);
  background: #eef2ff;
  border-color: #c7d2fe;
}

.footer-bottom {
  padding: 12px 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 1.1rem;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 2026 UI refresh: bright glassmorphism theme with smooth motion */
:root {
  --bg: #f5f8ff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #11203b;
  --muted: #4f6283;
  --line: rgba(122, 152, 208, 0.28);
  --primary: #1f5eff;
  --primary-soft: #e9efff;
  --primary-text: #ffffff;
  --radius: 18px;
}

body {
  background:
    radial-gradient(circle at 12% 12%, rgba(100, 132, 255, 0.18), transparent 34%),
    radial-gradient(circle at 88% 15%, rgba(56, 189, 248, 0.16), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(251, 146, 60, 0.11), transparent 40%),
    linear-gradient(180deg, #fafdff 0%, #f3f7ff 55%, #eef4ff 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  z-index: -1;
  filter: blur(8px);
  animation: floatShape 14s ease-in-out infinite alternate;
}

body::before {
  top: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(31, 94, 255, 0.2), rgba(31, 94, 255, 0));
}

body::after {
  bottom: -130px;
  left: -100px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.18), rgba(14, 165, 233, 0));
  animation-delay: 1.2s;
}

.splash,
.topbar {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
}

.topbar {
  border-bottom: 1px solid rgba(140, 170, 224, 0.3);
  box-shadow: 0 10px 30px rgba(118, 144, 200, 0.14);
}

.brand span {
  background: linear-gradient(90deg, #1f5eff 0%, #1a8bff 44%, #0ea5e9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links a {
  border: 1px solid transparent;
  transition: all 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #163989;
  background: linear-gradient(180deg, #ffffff, #f1f6ff);
  border-color: rgba(122, 152, 208, 0.35);
  box-shadow: 0 8px 22px rgba(114, 145, 204, 0.18);
}

.converter-surface,
.reviews-layout,
.review-summary,
.account-panel,
.page-head,
.guide-grid > div,
.about-hero,
.about-points > div,
.donate-box,
.sinkey-article,
.keymap-panel,
.review-item,
.map-list span,
.footer {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(122, 145, 188, 0.16);
  backdrop-filter: blur(12px);
}

textarea,
input,
select {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(122, 152, 208, 0.33);
  color: var(--text);
}

textarea:focus,
input:focus,
select:focus {
  border-color: rgba(31, 94, 255, 0.62);
  box-shadow: 0 0 0 4px rgba(31, 94, 255, 0.14);
}

::placeholder {
  color: #7f92b2;
}

.primary-action {
  background: linear-gradient(135deg, #1f5eff 0%, #1a8bff 100%);
  color: #fff;
  border: 0;
  box-shadow: 0 14px 26px rgba(31, 94, 255, 0.33);
}

.ghost-action {
  background: linear-gradient(180deg, #ffffff, #f4f8ff);
  border: 1px solid rgba(122, 152, 208, 0.35);
  color: #1e335d;
}

.primary-action,
.ghost-action,
.nav-links a,
.review-item,
.guide-grid > div,
.about-points > div,
.sinkey-article,
.map-list span {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.primary-action:hover,
.ghost-action:hover,
.review-item:hover,
.guide-grid > div:hover,
.about-points > div:hover,
.sinkey-article:hover,
.map-list span:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(107, 135, 189, 0.24);
}

.footer {
  border-radius: 18px 18px 0 0;
  margin-top: 14px;
}

.nav-links a i,
.nav-links a svg,
.brand i,
.btn svg {
  width: 15px;
  height: 15px;
  margin-right: 7px;
}

.reveal-up {
  opacity: 0;
  transform: translateY(20px);
}

.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 560ms ease, transform 560ms ease;
}

@keyframes floatShape {
  from { transform: translateY(0) translateX(0) scale(1); }
  to { transform: translateY(12px) translateX(-8px) scale(1.05); }
}

@media (max-width: 760px) {
  body::before,
  body::after {
    width: 220px;
    height: 220px;
  }
}

/* Tailwind/daisyUI skin: white base, colorful editorial accents. */
:root {
  color-scheme: light;
  --bg: #ffffff;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-strong: #ffffff;
  --text: #141922;
  --muted: #5f6d7f;
  --line: rgba(20, 25, 34, 0.13);
  --primary: #155eef;
  --primary-text: #ffffff;
  --accent-cyan: #00a7b5;
  --accent-lime: #73b600;
  --accent-amber: #ffb020;
  --accent-coral: #ef4b4b;
  --accent-ink: #151515;
  --radius: 8px;
  --font-sans: "Manrope", "Noto Sans Sinhala", sans-serif;
  --font-display: "Plus Jakarta Sans", "Noto Sans Sinhala", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  overflow-x: hidden;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text);
  background-color: #ffffff;
  background-image:
    linear-gradient(90deg, rgba(20, 25, 34, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(20, 25, 34, 0.03) 1px, transparent 1px),
    linear-gradient(118deg, transparent 0 58%, rgba(0, 167, 181, 0.08) 58% 63%, transparent 63%),
    linear-gradient(42deg, transparent 0 68%, rgba(255, 176, 32, 0.11) 68% 74%, transparent 74%);
  background-size: 42px 42px, 42px 42px, 100% 100%, 100% 100%;
}

body::before,
body::after {
  border-radius: 0;
  filter: none;
  opacity: 1;
  pointer-events: none;
  animation: none;
}

body::before {
  top: 0;
  right: 0;
  left: auto;
  width: min(42vw, 560px);
  height: 100vh;
  clip-path: polygon(34% 0, 100% 0, 78% 100%, 0 100%);
  background:
    linear-gradient(180deg, rgba(239, 75, 75, 0.12), rgba(255, 176, 32, 0.13) 38%, rgba(0, 167, 181, 0.12));
}

body::after {
  left: 0;
  bottom: 0;
  width: min(52vw, 720px);
  height: 42vh;
  clip-path: polygon(0 12%, 100% 0, 74% 100%, 0 100%);
  background:
    repeating-linear-gradient(135deg, rgba(21, 94, 239, 0.12) 0 9px, transparent 9px 24px),
    linear-gradient(135deg, rgba(115, 182, 0, 0.12), rgba(255, 255, 255, 0));
}

.shell {
  width: min(1180px, calc(100vw - 32px));
}

.splash {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(245, 250, 255, 0.97)),
    #ffffff;
}

.splash span {
  font-family: var(--font-display);
  color: var(--text);
}

.topbar {
  border-bottom: 1px solid rgba(20, 25, 34, 0.1);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 28px rgba(20, 25, 34, 0.08);
  padding-block: 6px;
}

.nav {
  min-height: 52px;
}

.brand {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  letter-spacing: 0;
}

.brand::before {
  content: "";
  width: 14px;
  height: 34px;
  margin-right: 10px;
  border-radius: 5px;
  background:
    linear-gradient(180deg, var(--accent-coral) 0 28%, var(--accent-amber) 28% 56%, var(--accent-cyan) 56% 100%);
  box-shadow: 4px 4px 0 rgba(21, 94, 239, 0.15);
}

.brand-image::before {
  display: none;
}

.brand-image {
  line-height: 0;
}

.brand-image .brand-logo {
  display: block;
  width: auto;
  height: 52px;
  max-width: 260px;
  object-fit: contain;
}

.brand span {
  color: var(--text);
  background: none;
}

.nav-links {
  gap: 0;
  padding: 0;
  border: 1px solid rgba(20, 25, 34, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
}

.nav-links a {
  min-height: 40px;
  padding: 0 14px;
  color: #334155;
  font-size: 1.14rem;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a.active {
  color: #111827;
  border-color: transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, var(--accent-coral), var(--accent-amber), var(--accent-cyan)) border-box;
  box-shadow: 0 10px 24px rgba(20, 25, 34, 0.12);
}

.header-auth {
  border-left: 1px solid rgba(20, 25, 34, 0.1);
  padding-left: 10px;
}

.topbar .header-auth .ghost-action,
.topbar .header-auth .primary-action {
  min-height: 34px;
  padding: 0 12px;
  font-size: 1.02rem;
}

.header-profile {
  color: #475569;
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-toggle {
  width: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid rgba(20, 25, 34, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, var(--accent-coral), var(--accent-amber), var(--accent-cyan)) border-box;
  color: #172033;
  box-shadow: 0 12px 26px rgba(20, 25, 34, 0.1);
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: currentColor;
}

.nav-toggle-bar + .nav-toggle-bar {
  margin-top: 4px;
}

.app-layout,
.content-page {
  position: relative;
  padding: clamp(18px, 3vw, 34px) 0 44px;
}

.converter-surface,
.reviews-layout,
.review-summary,
.account-panel,
.page-head,
.guide-grid > div,
.about-hero,
.about-points > div,
.donate-box,
.sinkey-article,
.keymap-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 25, 34, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.92)),
    var(--surface);
  box-shadow: 0 18px 42px rgba(20, 25, 34, 0.1);
  backdrop-filter: blur(8px);
}

.converter-surface {
  padding: clamp(16px, 2.6vw, 28px);
}

.converter-surface::before,
.page-head::before,
.sinkey-article::before,
.reviews-layout::before {
  display: none;
}

.converter-surface::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 28px;
  width: clamp(110px, 15vw, 190px);
  aspect-ratio: 1;
  background: url("hero-brand.png") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.surface-head {
  align-items: flex-start;
  padding-left: 4px;
  margin-bottom: 18px;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 8px;
  padding: 5px 9px;
  border: 1px solid rgba(20, 25, 34, 0.12);
  border-radius: 999px;
  color: #0f766e;
  background: rgba(0, 167, 181, 0.08);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
}

h1,
h2,
h3,
.rating-score {
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  color: #111827;
  font-size: clamp(2.15rem, 4.2vw, 4.85rem);
  line-height: 0.98;
}

h2 {
  color: #111827;
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  font-weight: 900;
}

.workspace {
  position: relative;
  z-index: 1;
  gap: 14px;
}

.text-pane {
  padding: 12px;
  border: 1px solid rgba(20, 25, 34, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 251, 255, 0.88));
}

.text-pane:nth-child(1) {
  border-top: 2px solid rgba(20, 25, 34, 0.12);
}

.text-pane:nth-child(2) {
  border-top: 2px solid rgba(20, 25, 34, 0.12);
}

.text-pane:nth-child(3) {
  border-top: 2px solid rgba(20, 25, 34, 0.12);
}

.text-pane span {
  color: #111827;
  font-size: 0.98rem;
  font-weight: 900;
}

textarea,
input,
select {
  border: 1px solid rgba(20, 25, 34, 0.14);
  border-radius: var(--radius);
  background: #ffffff;
  color: #111827;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

textarea {
  min-height: clamp(260px, 38vh, 460px);
  font-size: 1.02rem;
}

textarea:focus,
input:focus,
select:focus {
  border-color: rgba(21, 94, 239, 0.62);
  box-shadow: 0 0 0 4px rgba(21, 94, 239, 0.14);
}

.primary-action,
.ghost-action,
.mode-btn,
.auth-tab {
  min-height: 40px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0;
}

.btn {
  height: auto;
  min-height: 40px;
  gap: 7px;
  text-transform: none;
}

.primary-action {
  background: #111827;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.2);
}

.ghost-action {
  background: #ffffff;
  color: #111827;
  border: 1px solid rgba(20, 25, 34, 0.16);
}

.ghost-action:hover,
.primary-action:hover,
.mode-btn:hover,
.auth-tab:hover {
  transform: translateY(-2px);
}

.actions.tiny .ghost-action:nth-child(1) {
  border-color: rgba(239, 75, 75, 0.26);
}

.actions.tiny .ghost-action:nth-child(2) {
  border-color: rgba(0, 167, 181, 0.26);
}

.actions.tiny .ghost-action:nth-child(3) {
  border-color: rgba(255, 176, 32, 0.34);
}

.segmented,
.tab-row {
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(20, 25, 34, 0.12);
}

.mode-btn.active,
.auth-tab.active {
  color: #ffffff;
  background: #111827;
}

.keymap-icon-btn svg,
.footer-social svg {
  width: 18px;
  height: 18px;
}

.sinkey-article {
  padding: clamp(18px, 2.5vw, 28px);
  background:
    linear-gradient(135deg, rgba(255, 176, 32, 0.16), rgba(255, 255, 255, 0.9) 36%, rgba(0, 167, 181, 0.12)),
    #ffffff;
}

.sinkey-headline {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sinkey-icon {
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(20, 25, 34, 0.18);
}

.sinkey-points span {
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(20, 25, 34, 0.12);
  color: #111827;
}

.review-summary {
  background:
    linear-gradient(135deg, rgba(239, 75, 75, 0.13), rgba(255, 255, 255, 0.95) 46%, rgba(115, 182, 0, 0.13)),
    #ffffff;
}

.rating-score span,
.stars,
.star-input button {
  color: #ef4b4b;
}

.reviews-list {
  gap: 10px;
}

.review-item,
.map-list span {
  background: #ffffff;
  border-color: rgba(20, 25, 34, 0.12);
}

.review-item strong span:last-child {
  color: #ef4b4b;
}

.guide-grid > div:nth-child(1),
.about-points > div:nth-child(1) {
  border-top: 2px solid rgba(20, 25, 34, 0.12);
}

.guide-grid > div:nth-child(2),
.about-points > div:nth-child(2) {
  border-top: 2px solid rgba(20, 25, 34, 0.12);
}

.guide-grid > div:nth-child(3),
.about-points > div:nth-child(3) {
  border-top: 2px solid rgba(20, 25, 34, 0.12);
}

.footer {
  border-top: 1px solid rgba(20, 25, 34, 0.1);
  background:
    linear-gradient(90deg, rgba(239, 75, 75, 0.08), rgba(255, 176, 32, 0.08), rgba(0, 167, 181, 0.08)),
    #ffffff;
  font-size: 0.88rem;
}

.footer-logo {
  display: block;
  width: clamp(150px, 20vw, 230px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-col a {
  color: #4b5563;
  font-size: 0.86rem;
}

.footer-col h4 {
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: #111827;
}

.footer-bottom {
  font-size: 0.8rem;
}

.footer-social a {
  border-color: rgba(20, 25, 34, 0.12);
  background: #ffffff;
}

.footer-social a[aria-label="Instagram"]:hover {
  color: #e1306c;
  border-color: rgba(225, 48, 108, 0.45);
  background: linear-gradient(135deg, rgba(245, 96, 64, 0.12), rgba(225, 48, 108, 0.12), rgba(131, 58, 180, 0.12));
}

.footer-social a[aria-label="Facebook"]:hover {
  color: #1877f2;
  border-color: rgba(24, 119, 242, 0.42);
  background: rgba(24, 119, 242, 0.1);
}

.footer-social a[aria-label="LinkedIn"]:hover {
  color: #0a66c2;
  border-color: rgba(10, 102, 194, 0.45);
  background: rgba(10, 102, 194, 0.1);
}

.footer-social a[aria-label="X"]:hover {
  color: #111111;
  border-color: rgba(17, 17, 17, 0.45);
  background: rgba(17, 17, 17, 0.08);
}

.footer-social a[aria-label="YouTube"]:hover {
  color: #ff0033;
  border-color: rgba(255, 0, 51, 0.42);
  background: rgba(255, 0, 51, 0.1);
}

.footer-social a[aria-label="TikTok"]:hover {
  color: #111111;
  border-color: rgba(0, 242, 234, 0.52);
  box-shadow: 0 0 0 2px rgba(255, 0, 80, 0.18), 0 0 0 4px rgba(0, 242, 234, 0.14);
  background: linear-gradient(135deg, rgba(0, 242, 234, 0.11), rgba(255, 0, 80, 0.11));
}

.converter-surface::after {
  display: none;
}

.reveal-up.in-view {
  transition: opacity 520ms ease, transform 520ms ease;
}

@media (min-width: 981px) {
  .workspace {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reviews-layout {
    grid-template-columns: minmax(230px, 0.62fr) minmax(0, 1.38fr);
  }
}

@media (max-width: 980px) {
  .converter-surface::after {
    width: 110px;
    top: 18px;
    right: 18px;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 3.3rem);
  }
}

@media (max-width: 760px) {
  body {
    background-size: 34px 34px, 34px 34px, 100% 100%, 100% 100%;
  }

  .inquiry-form-grid {
    grid-template-columns: 1fr;
  }

  body::before {
    width: 62vw;
    height: 50vh;
    opacity: 0.72;
  }

  body::after {
    width: 76vw;
    height: 28vh;
    opacity: 0.65;
  }

  .nav {
    padding: 12px 0;
  }

  .nav-links {
    width: 100%;
    border-radius: var(--radius);
  }

  .header-auth {
    width: 100%;
    border-left: 0;
    padding-left: 0;
  }

  .converter-surface::after {
    display: none;
  }

  .text-pane {
    padding: 10px;
  }

  textarea {
    min-height: 220px;
  }
}

/* Footer brand spacing tune */
.brand-col .footer-logo {
  margin-bottom: 10px;
}

.brand-col p {
  margin-top: 0;
}

/* Home converter: wider/taller boxes with top action icons */
body[data-page="home"] .workspace {
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

body[data-page="home"] .workspace .text-pane {
  min-width: 0;
  grid-column: auto !important;
}

body[data-page="home"] .workspace .text-pane:first-child {
  grid-column: auto !important;
}

body[data-page="home"] .text-pane {
  display: block !important;
  position: relative;
  padding: 0;
  border: 1px solid #e1e5ef;
  border-radius: 14px;
  overflow: hidden;
  background: #edf1f8;
}

body[data-page="home"] .text-pane textarea {
  min-height: 520px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  padding: 28px 18px 18px;
  line-height: 1.45;
}

body[data-page="home"] .text-pane .actions.tiny {
  position: absolute !important;
  top: 12px;
  right: 10px;
  margin-top: 0 !important;
  display: flex !important;
  flex-wrap: nowrap;
  gap: 6px;
}

body[data-page="home"] .text-pane .actions.tiny .ghost-action {
  min-width: 30px;
  min-height: 30px;
  padding: 0 6px;
  border: 0;
  background: transparent;
  box-shadow: none;
  font-size: 0 !important;
  opacity: 0.9;
}

body[data-page="home"] .text-pane .actions.tiny .ghost-action i,
body[data-page="home"] .text-pane .actions.tiny .ghost-action svg {
  width: 17px;
  height: 17px;
  margin: 0;
}

body[data-page="home"] .text-pane > span {
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 13px 164px 11px 16px;
  border-bottom: 1px solid #dbe1ec;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
}

body[data-page="home"] .text-pane:nth-child(2) > span,
body[data-page="home"] .text-pane:nth-child(3) > span {
  padding-right: 118px;
}

body[data-page="home"] h1 {
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  line-height: 1.08;
}

@media (max-width: 980px) {
  .topbar {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
  }

  .brand-image .brand-logo {
    height: 44px;
    max-width: min(220px, calc(100vw - 92px));
  }

  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 10px 0;
  }

  .nav-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .nav-links,
  .header-auth {
    grid-column: 1 / -1;
  }

  .nav.nav-open .nav-links {
    margin-top: 10px;
    padding: 8px;
    border-radius: 16px;
    border: 1px solid rgba(20, 25, 34, 0.1);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 38px rgba(20, 25, 34, 0.1);
  }

  .nav.nav-open .nav-links a {
    min-height: 44px;
    border-radius: 12px;
    font-size: 1rem;
  }

  .nav.nav-open .header-auth {
    padding: 8px;
    border-left: 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  body[data-page="home"] .workspace {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .workspace .text-pane:first-child {
    grid-column: 1 / -1 !important;
  }

  body[data-page="home"] .text-pane textarea {
    min-height: 360px;
  }
}

body[data-page="home"] .hero-copy {
  margin-top: 14px;
  line-height: 1.7;
}

body[data-page="home"] .text-pane:nth-child(1) {
  background: #eceff7;
}

body[data-page="home"] .text-pane:nth-child(1) > span {
  background: #e9ecf5;
}

body[data-page="home"] .text-pane:nth-child(2) {
  background: #edf5f2;
}

body[data-page="home"] .text-pane:nth-child(2) > span {
  background: #e8f1ee;
}

body[data-page="home"] .text-pane:nth-child(3) {
  background: #f0eaf9;
}

body[data-page="home"] .text-pane:nth-child(3) > span {
  background: #ebe5f5;
}

body[data-page="home"] .text-pane textarea::placeholder {
  color: #8a97ad;
}

@media (max-width: 980px) {
  body[data-page="home"] .workspace {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .text-pane textarea {
    min-height: 420px;
  }

  body[data-page="home"] .text-pane > span {
    font-size: 1rem;
    padding-right: 108px;
  }

  body[data-page="home"] .workspace .text-pane:first-child {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .workspace {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .text-pane textarea {
    min-height: 240px;
    padding-top: 16px;
  }

  body[data-page="home"] .text-pane > span {
    min-height: auto;
    padding: 12px 14px;
  }

  body[data-page="home"] .text-pane .actions.tiny {
    position: static !important;
    margin-top: 8px !important;
    padding: 0 10px 10px;
  }

  body[data-page="home"] .text-pane .actions.tiny .ghost-action {
    font-size: 0 !important;
  }
}

@media (max-width: 420px) {
  .shell {
    width: min(1100px, calc(100vw - 12px));
  }

  .brand-image .brand-logo {
    max-width: min(188px, calc(100vw - 78px));
  }

  .converter-surface,
  .page-head,
  .inquiry-card,
  .inquiry-side,
  .sinkey-article {
    padding: 10px;
  }

  .footer-bottom {
    align-items: stretch;
  }

  .footer-inquiry-link {
    width: 100%;
  }
}

.footer-inquiry-link,
.footer-inquiry-link.primary-action {
  border: 1px solid rgba(245, 158, 11, 0.24);
  background: linear-gradient(135deg, #fff7ed, #fffbeb);
  color: #9a3412;
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.08);
}

.footer-inquiry-link:hover,
.footer-inquiry-link.primary-action:hover {
  color: #7c2d12;
  border-color: rgba(245, 158, 11, 0.38);
  background: linear-gradient(135deg, #ffedd5, #fef3c7);
}
