* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", system-ui, sans-serif;
  color: #1e293b;
  background: linear-gradient(160deg, #fff7ed 0%, #ffedd5 40%, #fef3c7 100%);
  line-height: 1.65;
}
.t14-bg {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(251, 146, 60, 0.15), transparent 40%);
  z-index: -1;
  pointer-events: none;
}
a { color: #c2410c; }
.t14-bar {
  width: min(1140px, calc(100% - 24px));
  margin: 18px auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(194, 65, 12, 0.1);
}
.t14-bar img { height: 40px; width: auto; }
.t14-nav { margin-left: auto; display: flex; gap: 14px; flex-wrap: wrap; }
.t14-nav a { text-decoration: none; font-weight: 600; color: #475569; font-size: 14px; }
.t14-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ea580c, #f97316);
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-size: 15px;
}
.t14-card {
  width: min(1140px, calc(100% - 24px));
  margin: 0 auto 18px;
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 6px 24px rgba(30, 41, 59, 0.06);
}
.t14-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
}
.t14-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ea580c;
}
.t14-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  margin: 8px 0 14px;
  color: #0f172a;
}
.t14-lead { font-size: 18px; color: #475569; max-width: 560px; }
.t14-inbox {
  background: linear-gradient(180deg, #fff7ed, #ffedd5);
  border: 1px solid #fed7aa;
  border-radius: 16px;
  padding: 20px;
}
.t14-inbox a { font-size: 24px; font-weight: 800; word-break: break-all; }
.t14-pill {
  display: inline-block;
  padding: 6px 12px;
  background: #ffedd5;
  color: #9a3412;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}
.t14-copy {
  margin-top: 12px;
  width: 100%;
  padding: 10px;
  border: 2px solid #ea580c;
  background: #fff;
  color: #c2410c;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}
.t14-dest {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.t14-dest article {
  border: 1px solid #fde68a;
  border-radius: 14px;
  padding: 18px;
  background: #fffbeb;
}
.t14-dest h3 { margin: 0 0 8px; font-size: 17px; color: #92400e; }
.t14-dest p { margin: 0; font-size: 15px; color: #78716c; }
.t14-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.t14-steps div {
  padding: 16px;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #f97316;
}
.t14-steps b { display: block; color: #0f172a; margin-bottom: 4px; }
.t14-steps span { font-size: 14px; color: #64748b; }
.t14-faq details { border-top: 1px solid #e2e8f0; padding: 12px 0; }
.t14-faq summary { font-weight: 700; cursor: pointer; }
.t14-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.t14-links a {
  display: block;
  padding: 14px;
  background: #fff7ed;
  border: 1px solid #fdba74;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  color: #9a3412;
}
.t14-foot {
  text-align: center;
  padding: 24px;
  color: #64748b;
  font-size: 14px;
}
.t14-toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #0f172a;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  opacity: 0;
  transition: 0.25s;
  z-index: 99;
  font-weight: 600;
}
.t14-toast.on { opacity: 1; transform: translateX(-50%) translateY(0); }
@media (max-width: 900px) {
  .t14-hero, .t14-dest, .t14-steps, .t14-links { grid-template-columns: 1fr; }
  .t14-nav { width: 100%; justify-content: center; margin-left: 0; }
}
