:root {
  --bg: #f4eee4;
  --bg-alt: #eef4fa;
  --surface: rgba(255, 255, 255, 0.9);
  --ink: #102236;
  --muted: #5b6878;
  --brand: #123c5b;
  --brand-2: #ff9f1c;
  --brand-3: #1d6f7d;
  --line: rgba(16, 34, 54, 0.12);
  --shadow: 0 24px 60px rgba(16, 34, 54, 0.12);
  --radius-xl: 0px;
  --radius-lg: 0px;
  --radius-md: 0px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 159, 28, 0.16), transparent 24%),
    radial-gradient(circle at top right, rgba(18, 60, 91, 0.14), transparent 26%),
    linear-gradient(180deg, #fbf8f2 0%, var(--bg) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.36) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 82%);
  opacity: 0.15;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(248, 243, 234, 0.84);
  border-bottom: 1px solid var(--line);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand), var(--brand-3));
  box-shadow: var(--shadow);
  position: relative;
  flex: 0 0 auto;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.72);
}

.brand-mark::after {
  inset: 15px;
  border-color: rgba(255, 255, 255, 0.36);
}

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.brand span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.35;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav a:hover {
  background: rgba(18, 60, 91, 0.08);
  color: var(--ink);
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 18px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  appearance: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--brand), #1a567d);
  color: #fff;
  box-shadow: 0 18px 30px rgba(18, 60, 91, 0.18);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  border-color: var(--line);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

main {
  padding: 28px 0 56px;
}

.hero {
  display: grid;
  gap: 20px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 20px;
  align-items: stretch;
}

.form-shell {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel,
.section-card,
.form-card,
.info-card,
.legal-card,
.contact-card,
.payment-card,
.success-card {
  padding: 28px;
  animation: rise 0.55s ease both;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(252, 247, 240, 0.95));
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 159, 28, 0.22), transparent 68%);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 22px 22px auto auto;
  width: 90px;
  height: 90px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(18, 60, 91, 0.14), rgba(29, 111, 125, 0.08));
  border: 1px solid rgba(18, 60, 91, 0.12);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 159, 28, 0.16);
  color: #8a5200;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h1 {
  margin: 14px 0 0;
  font-size: clamp(38px, 5.8vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.12;
}

.lead {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 62ch;
}

.copy {
  color: var(--muted);
  line-height: 1.8;
  margin: 14px 0 0;
}

.cta-row,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.fineprint {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.banner {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(18, 60, 91, 0.14);
  background: linear-gradient(135deg, rgba(18, 60, 91, 0.07), rgba(255, 159, 28, 0.09));
  color: var(--ink);
  line-height: 1.7;
}

.banner strong {
  color: var(--brand);
}

.plate-stage {
  display: grid;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.plate {
  background: linear-gradient(180deg, #efefef 0%, #c9c9c9 100%);
  border: 2px solid #1f1f1f;
  border-radius: 18px;
  padding: 18px;
  box-shadow: inset 0 0 0 8px rgba(0, 0, 0, 0.08);
}

.plate span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  border-radius: 12px;
  background: #f8f5ec;
  border: 3px solid #121212;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: 0.18em;
}

.plate small {
  display: block;
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.stat {
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand), #1a567d);
  color: #fff;
  min-height: 96px;
}

.stat strong {
  display: block;
  font-size: 26px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat span {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.section-card {
  margin-top: 20px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.section-head p {
  margin: 0;
  max-width: 65ch;
  color: var(--muted);
  line-height: 1.8;
}

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

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

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

.feature,
.step,
.chip,
.policy-card,
.mini-note {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.feature,
.step,
.policy-card {
  padding: 18px;
}

.feature p,
.step p,
.policy-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.chip {
  text-decoration: none;
  padding: 12px 16px;
  font-weight: 800;
  color: var(--brand);
  transition: transform 0.2s ease, background 0.2s ease;
}

.chip:hover {
  transform: translateY(-1px);
  background: rgba(18, 60, 91, 0.08);
}

.notice-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.notice-list li {
  position: relative;
  padding-left: 26px;
  line-height: 1.8;
  color: var(--muted);
}

.notice-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
  color: var(--brand-2);
  font-size: 24px;
  line-height: 1;
}

.mini-note {
  padding: 16px 18px;
  color: var(--muted);
  line-height: 1.75;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 16px;
  align-items: start;
}

.form-card form {
  margin-top: 18px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 13px;
  font-weight: 800;
  color: #3a4b5f;
  letter-spacing: 0.01em;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(16, 34, 54, 0.18);
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(18, 60, 91, 0.55);
  box-shadow: 0 0 0 4px rgba(18, 60, 91, 0.08);
  background: #fff;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.helper {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

.support-stack {
  display: grid;
  gap: 12px;
}

.support-box,
.summary-box,
.qr-box,
.receipt-box,
.ref-box {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
}

.support-box h3,
.summary-box h3,
.qr-box h3,
.receipt-box h3 {
  margin-bottom: 8px;
}

.summary-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(16, 34, 54, 0.14);
}

.summary-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.summary-item dt {
  color: var(--muted);
  font-size: 13px;
}

.summary-item dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.qr-wrap {
  display: grid;
  gap: 14px;
}

.qr-wrap img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(16, 34, 54, 0.08);
}

.link-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.upi-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.muted-link {
  color: var(--brand);
  font-weight: 800;
  text-decoration: none;
}

.success-mark {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-3));
  color: #fff;
  font-size: 40px;
  font-weight: 900;
  margin: 0 auto 18px;
  box-shadow: 0 18px 30px rgba(18, 60, 91, 0.22);
}

.ref-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-weight: 800;
  color: var(--brand);
}

.ref-box span {
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0.06em;
}

footer {
  padding: 24px 0 30px;
  color: var(--muted);
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: var(--brand);
  font-weight: 800;
}

.subtle {
  font-size: 13px;
  line-height: 1.7;
}

/* Flat surfaces for the public pages */
.brand-mark,
.brand-mark::before,
.brand-mark::after,
.nav a,
.btn,
.eyebrow,
.banner,
.plate,
.plate span,
.stat,
.feature,
.step,
.chip,
.policy-card,
.mini-note,
.support-box,
.summary-box,
.qr-box,
.receipt-box,
.ref-box,
input,
select,
textarea,
.qr-wrap img,
.upi-link,
.hero-panel::after {
  border-radius: 0;
}

@media (max-width: 980px) {
  .hero-shell,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .stat-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    width: 100%;
  }

  .nav .btn {
    width: 100%;
  }

  .hero-copy,
  .hero-panel,
  .section-card,
  .form-card,
  .info-card,
  .legal-card,
  .contact-card,
  .payment-card,
  .success-card {
    padding: 22px;
  }

  h1 {
    letter-spacing: -0.03em;
  }
}
