/* ===================================================================
   China Pay (チナPay) — 2011 Corporate Bank Website Aesthetic
   Primary: #6dc970  Metallic silver / dark gray / crisp white
   =================================================================== */

:root {
  --green: #6dc970;
  --green-dark: #3f9143;
  --green-deep: #2f6b32;
  --green-light: #8fdc92;
  --silver-1: #f8f8f8;
  --silver-2: #ececec;
  --silver-3: #d8d8d8;
  --silver-4: #bdbdbd;
  --gray-dark: #3d3d3d;
  --gray-text: #4a4a4a;
  --font-body: Arial, "Helvetica Neue", Helvetica, Tahoma, Verdana, sans-serif;
  --font-mono: "Courier New", Courier, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gray-text);
  background-color: #e8e8e8;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6'%3E%3Cpath d='M0 5l5-5M5 6l1-1' stroke='%23dcdcdc' stroke-width='1'/%3E%3C/svg%3E");
  line-height: 1.45;
}

a { color: #2f6b32; }
a:hover { color: #6dc970; }

.mono { font-family: var(--font-mono); }

.cf::after { content: ""; display: block; clear: both; }

.container { width: 960px; margin: 0 auto; }

/* ---------- Glossy bevel buttons ---------- */
.btn {
  display: inline-block;
  padding: 7px 18px;
  border: 1px solid #3b8c3f;
  border-radius: 5px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
  cursor: pointer;
  background: linear-gradient(to bottom, #8fdc92 0%, #6dc970 45%, #4aa34e 46%, #3f9143 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55),
              inset 0 -1px 0 rgba(0, 0, 0, 0.12),
              0 2px 3px rgba(0, 0, 0, 0.25);
}
.btn:hover {
  color: #fff;
  filter: brightness(1.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65),
              0 3px 6px rgba(0, 0, 0, 0.3);
}
.btn:active {
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
  transform: translateY(1px);
}
.btn-big { padding: 10px 26px; font-size: 15px; border-radius: 6px; letter-spacing: 1px; }
.btn-block { display: block; width: 100%; text-align: center; margin-top: 4px; }

.btn-silver {
  border-color: #9c9c9c;
  color: #3d3d3d;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
  background: linear-gradient(to bottom, #ffffff 0%, #e9e9e9 45%, #d4d4d4 46%, #c4c4c4 100%);
  box-shadow: inset 0 1px 0 #fff,
              inset 0 -1px 0 rgba(0, 0, 0, 0.12),
              0 1px 2px rgba(0, 0, 0, 0.25);
}
.btn-silver:hover { color: #2f6b32; }

/* ---------- Form fields ---------- */
.field {
  width: 100%;
  padding: 6px 8px;
  border: 1px solid #a8a8a8;
  border-radius: 3px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  color: #222;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.12);
}
.field:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1),
              0 0 6px rgba(109, 201, 112, 0.85);
}

/* ===================================================================
   HEADER
   =================================================================== */

/* Utility bar: dark, dense, tiny links */
.utility-bar {
  background: linear-gradient(#4a4a4a, #333333);
  border-bottom: 2px solid #1f1f1f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 11px;
  color: #cfcfcf;
}
.utility-bar a { color: #cfcfcf; text-decoration: none; }
.utility-bar a:hover { color: #fff; text-decoration: underline; }
.utility-left { float: left; padding: 5px 0; }
.utility-left .clock { color: #8fdc92; margin-left: 14px; }
.utility-right { float: right; }
.utility-links { list-style: none; float: left; }
.utility-links li { display: inline-block; padding: 5px 10px; border-right: 1px solid rgba(255, 255, 255, 0.15); }
.utility-links li:first-child { border-left: 1px solid rgba(255, 255, 255, 0.15); }

/* Language switcher */
.lang-switcher { position: relative; display: inline-block; vertical-align: top; }
.lang-btn {
  height: 26px;
  padding: 0 10px;
  margin-left: 8px;
  border: 1px solid #1a1a1a;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(#6a6a6a, #484848);
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.lang-btn:hover { background: linear-gradient(#7fd983, #4aa34e); border-color: #2f6b32; }
.lang-btn .caret { margin-left: 5px; font-size: 9px; }
.lang-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 50;
  min-width: 160px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid #777;
  border-top: 3px solid var(--green);
  background: linear-gradient(#ffffff, #efefef);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);
  display: none;
}
.lang-switcher.is-open .lang-menu { display: block; }
.lang-menu li { border-bottom: 1px solid #ddd; }
.lang-menu li:last-child { border-bottom: 0; }
.lang-option {
  display: block;
  width: 100%;
  padding: 8px 12px;
  border: 0;
  background: transparent;
  color: #333;
  font-size: 12px;
  text-align: left;
  cursor: pointer;
}
.lang-option:hover { background: linear-gradient(#e2f6e3, #c9ecca); color: #2f6b32; }
.lang-option.is-active { font-weight: bold; color: #2f6b32; background: #e2f6e3; }
.lang-option.is-active::after { content: " ✓"; }

/* Brand row: glossy logo + hotline + search */
.brand-row {
  background: linear-gradient(#ffffff, #f0f0f0);
  border-bottom: 1px solid #c9c9c9;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  padding: 14px 0 12px;
}
.logo { float: left; }
.logo-mark {
  float: left;
  width: 52px;
  height: 52px;
  margin-right: 12px;
  border: 1px solid #3b8c3f;
  border-radius: 10px;
  background: linear-gradient(#9ee3a0 0%, #6dc970 45%, #3f9143 46%, #2f6b32 100%);
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  line-height: 52px;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 -1px 0 rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55),
              inset 0 -2px 4px rgba(0, 0, 0, 0.2),
              0 3px 5px rgba(0, 0, 0, 0.25);
}
.logo-text { float: left; padding-top: 2px; }
.logo-text strong {
  display: block;
  color: var(--green-dark);
  font-size: 26px;
  letter-spacing: 0.5px;
  line-height: 1;
  text-shadow: 0 1px 0 #fff, 0 -1px 1px rgba(0, 0, 0, 0.15);
}
.logo-text .jp-brand { font-style: normal; color: #2f6b32; }
.logo-text small { display: block; margin-top: 5px; color: #777; font-size: 11px; }

.brand-right { float: right; text-align: right; }
.hotline { margin-bottom: 8px; }
.hotline-label { display: block; color: #666; font-size: 11px; }
.hotline-number {
  display: block;
  color: var(--green-deep);
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 1px 0 #fff;
}
.searchbox { display: inline-block; }
.searchbox .field { width: 210px; margin-right: 4px; }

/* Main nav: silver-gray tabs with glossy green active state */
.main-nav {
  background: linear-gradient(#6d6d6d, #454545);
  border-bottom: 4px solid var(--green);
  border-top: 1px solid #858585;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.main-nav ul { list-style: none; }
.main-nav li { float: left; }
.main-nav a {
  display: block;
  padding: 10px 26px;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.45);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(0, 0, 0, 0.25);
  background: linear-gradient(#5c5c5c, #3a3a3a);
}
.main-nav li:first-child a { border-left: 0; }
.main-nav a:hover {
  background: linear-gradient(#7fd983, #4aa34e);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.main-nav li.active a {
  background: linear-gradient(#8fdc92 0%, #6dc970 45%, #3f9143 46%, #2f6b32 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), inset 0 -3px 6px rgba(0, 0, 0, 0.2);
}

/* ===================================================================
   TICKER
   =================================================================== */
.ticker {
  display: flex;
  background: var(--green-deep);
  border-bottom: 3px solid #4aa34e;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}
.ticker-label {
  flex: 0 0 auto;
  padding: 6px 16px;
  background: linear-gradient(#4aa34e, #3f9143);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
  border-right: 2px solid var(--green-deep);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.ticker-viewport { flex: 1; overflow: hidden; position: relative; }
.ticker-track {
  display: inline-block;
  white-space: nowrap;
  padding: 6px 0;
  background: linear-gradient(#79cf7c, #55b558);
  will-change: transform;
  animation: ticker-scroll 32s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.tick-item {
  display: inline-block;
  padding: 0 10px;
  color: #fff;
  font-size: 12px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}
.tick-item + .tick-item::before {
  content: "◆";
  margin-right: 22px;
  font-size: 9px;
  vertical-align: 1px;
  color: #eaffea;
}
.tick-item .tick-num { font-family: var(--font-mono); font-weight: bold; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ===================================================================
   PANELS (beveled silver boxes)
   =================================================================== */
.panel {
  margin-bottom: 16px;
  border: 1px solid #c4c4c4;
  border-radius: 6px;
  background: linear-gradient(#ffffff, #f1f1f1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18),
              inset 0 1px 0 #fff;
}
.panel-head {
  padding: 8px 14px;
  border-bottom: 1px solid #c4c4c4;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(#fdfdfd, #e2e2e2);
  box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0, 0, 0, 0.06);
}
.panel-title {
  color: var(--green-deep);
  font-size: 15px;
  text-shadow: 0 1px 0 #fff;
}
.panel-body { padding: 14px; }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  border: 1px solid #3f9143;
  border-radius: 8px;
  background: linear-gradient(135deg, #8fdc92 0%, #6dc970 52%, #3f9143 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5),
              inset 0 0 24px rgba(255, 255, 255, 0.18),
              0 4px 8px rgba(0, 0, 0, 0.22);
  color: #fff;
  margin-top: 16px;
  overflow: visible;
}
.hero::after { content: ""; display: block; clear: both; }
.hero-copy { float: left; width: 55%; padding: 30px 0 30px 30px; }
.hero-copy h1 {
  font-size: 34px;
  letter-spacing: 1px;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.35), 0 -1px 0 rgba(255, 255, 255, 0.2);
}
.hero-copy h1 .hl {
  color: #fff8d8;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.4), 0 0 12px rgba(255, 255, 255, 0.55);
}
.hero-sub {
  margin: 12px 0 14px;
  font-size: 14px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.hero-points { list-style: none; margin: 0 0 18px; }
.hero-points li {
  position: relative;
  margin-bottom: 7px;
  padding-left: 24px;
  font-size: 12px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}
.hero-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-size: 10px;
  font-weight: bold;
  line-height: 15px;
  text-align: center;
}
.hero-cta .btn { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 4px 8px rgba(0, 0, 0, 0.35); }
.hero-note {
  display: block;
  margin-top: 9px;
  font-size: 11px;
  color: #eaffea;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}

.hero-visual { float: right; width: 45%; position: relative; padding: 26px 30px 42px 0; }
.illustration-placeholder {
  position: relative;
  min-height: 250px;
  border: 2px dashed #8a8a8a;
  border-radius: 8px;
  background: linear-gradient(#fdfdfd, #e6e6e6);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.12);
  text-align: center;
}
.illus-silhouette { width: 130px; margin: 22px auto 4px; display: block; }
.illus-hair { fill: #7a8086; }
.illus-face { fill: #f3f4f5; }
.illus-body { fill: #aeb4ba; }
.illus-note {
  padding: 0 12px 14px;
  color: #666;
  font-family: var(--font-mono);
  font-size: 10px;
}

/* Black card mockup */
.card-visual {
  position: absolute;
  right: 12px;
  bottom: -8px;
  z-index: 3;
  width: 280px;
  height: 166px;
  border: 1px solid #000;
  border-radius: 11px;
  background: linear-gradient(135deg, #3a3a3a 0%, #161616 55%, #0b0b0b 100%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  padding: 14px 16px;
  color: #fff;
  transform: rotate(-3deg);
}
.card-top { display: flex; justify-content: space-between; align-items: baseline; }
.card-brand {
  color: var(--green);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 1px;
  text-shadow: 0 1px 1px #000, 0 0 8px rgba(109, 201, 112, 0.45);
}
.card-unlimited {
  font-family: var(--font-body);
  font-size: 10px;
  color: #cfcfcf;
  letter-spacing: 1px;
}
.card-chip {
  position: absolute;
  top: 42px;
  left: 16px;
  width: 44px;
  height: 32px;
  border-radius: 6px;
  background: linear-gradient(135deg, #f9e9a0, #d9a520);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6), inset 0 0 0 1px rgba(90, 60, 0, 0.35);
  overflow: hidden;
}
.card-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 7px, rgba(90, 60, 0, 0.25) 7px 8px),
              repeating-linear-gradient(0deg, transparent 0 7px, rgba(90, 60, 0, 0.18) 7px 8px);
}
.card-holo {
  position: absolute;
  right: 14px;
  top: 42px;
  width: 20px;
  height: 34px;
  border-radius: 2px;
  background: linear-gradient(180deg, #ff9fd6, #9fd6ff, #a6ffb0, #ffe38a);
  opacity: 0.55;
}
.card-number {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 86px;
  font-size: 15px;
  letter-spacing: 3px;
  text-shadow: 0 1px 1px #000, 0 -1px 0 rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}
.card-bottom {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.card-holder { font-size: 12px; color: #e6e6e6; letter-spacing: 1px; text-shadow: 0 1px 1px #000; }
.card-holder small { display: block; font-size: 9px; color: #9a9a9a; letter-spacing: 2px; }
.card-valid { font-size: 9px; color: #cfcfcf; text-align: right; letter-spacing: 1px; }
.card-valid b { display: block; font-size: 11px; color: #fff; }

/* ===================================================================
   COLUMNS / TABS
   =================================================================== */
.columns { margin-top: 16px; }
.main-col { float: left; width: 628px; }
.side-col { float: right; width: 310px; }

.tabs { list-style: none; }
.tabs-head { padding: 4px 6px 0; }
.tabs-head .tabs { display: flex; }
.tabs-head .tab {
  flex: 1;
  padding: 9px 8px;
  border: 1px solid #b5b5b5;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(#e7e7e7, #cfcfcf);
  color: #555;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  text-shadow: 0 1px 0 #fff;
}
.tabs-head .tab + .tab { border-left: 0; }
.tabs-head .tab:hover { color: #2f6b32; }
.tabs-head .tab.is-active {
  background: linear-gradient(#8fdc92 0%, #6dc970 45%, #3f9143 46%, #2f6b32 100%);
  color: #fff;
  border-color: #3b8c3f;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.tab-pane { display: none; }
.tab-pane.is-active { display: block; }
.tab-pane h2 {
  margin-bottom: 8px;
  color: var(--green-deep);
  font-size: 17px;
  text-shadow: 0 1px 0 #fff;
  border-bottom: 1px solid #d7d7d7;
  padding-bottom: 6px;
}
.tab-pane p { font-size: 12px; }

.checklist { list-style: none; margin: 10px 0 0; }
.checklist li {
  position: relative;
  margin-bottom: 6px;
  padding-left: 22px;
  font-size: 12px;
}
.checklist li::before {
  content: "▶";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--green);
  font-size: 9px;
}
.more { margin-top: 12px; }

/* ---------- News ---------- */
.news-list { list-style: none; }
.news-list li {
  padding: 8px 0;
  border-bottom: 1px dotted #c9c9c9;
  font-size: 12px;
}
.news-list li:last-child { border-bottom: 0; }
.news-list .news-date {
  display: block;
  color: var(--green-dark);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: bold;
}

/* ===================================================================
   SIDEBAR: LOGIN + MARKET
   =================================================================== */
.login-head { display: flex; align-items: center; gap: 8px; }
.lock-ico { width: 18px; height: 18px; }
.tabs-small { list-style: none; display: flex; margin-bottom: 12px; }
.tabs-small .tab {
  flex: 1;
  padding: 6px 4px;
  border: 1px solid #b5b5b5;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(#e7e7e7, #cfcfcf);
  color: #555;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  text-shadow: 0 1px 0 #fff;
}
.tabs-small .tab + .tab { border-left: 0; }
.tabs-small .tab.is-active {
  background: linear-gradient(#8fdc92 0%, #6dc970 45%, #3f9143 46%, #2f6b32 100%);
  border-color: #3b8c3f;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
}
.auth-form { display: none; }
.auth-form.is-active { display: block; }
.auth-form label {
  display: block;
  margin: 8px 0 3px;
  color: #555;
  font-size: 11px;
  font-weight: bold;
}
.auth-form label:first-child { margin-top: 0; }
.auth-links { margin: 10px 0 4px; font-size: 11px; }
.auth-links a { display: block; margin-bottom: 3px; }
.auth-flash {
  margin-top: 8px;
  padding: 6px 8px;
  border: 1px solid #d8b24a;
  border-radius: 4px;
  background: #fff7dc;
  color: #6b5310;
  font-size: 11px;
  display: none;
}
.auth-flash.is-visible { display: block; }
.reg-note {
  margin-top: 8px;
  color: #888;
  font-size: 10px;
  font-style: italic;
}
.security-note {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dotted #c9c9c9;
  color: #777;
  font-size: 10px;
}
.security-note svg { width: 14px; height: 14px; flex: 0 0 auto; }

/* ---------- Market table ---------- */
.market-table { width: 100%; border-collapse: collapse; font-size: 11px; }
.market-table td {
  padding: 6px 4px;
  border-bottom: 1px dotted #c9c9c9;
  vertical-align: top;
}
.market-table tr:last-child td { border-bottom: 0; }
.market-table td.m-label { color: #555; width: 58%; }
.market-table td.m-value {
  color: var(--green-deep);
  font-family: var(--font-mono);
  font-weight: bold;
  text-align: right;
  white-space: nowrap;
}

/* ===================================================================
   DISCLAIMER
   =================================================================== */
.disclaimer {
  border: 1px solid #d9c98a;
  background: linear-gradient(#fffdf2, #fff7dc);
  box-shadow: inset 0 1px 0 #fff, 0 1px 2px rgba(0, 0, 0, 0.15);
}
.disclaimer-title {
  margin-bottom: 6px;
  color: #7a5c00;
  font-size: 13px;
  text-shadow: 0 1px 0 #fff;
}
.disclaimer-title::before { content: "▲ "; color: #d0a83c; }
.disclaimer p { color: #6b5310; font-size: 11px; }
.disclaimer .disclaimer-parody { margin-top: 6px; color: #9a8847; font-size: 10px; font-style: italic; }

/* ===================================================================
   FOOTER
   =================================================================== */
footer {
  margin-top: 24px;
  border-top: 4px solid var(--green);
  background: linear-gradient(#3f3f3f, #262626);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 -3px 8px rgba(0, 0, 0, 0.25);
  color: #bdbdbd;
}
.footer-cols { padding: 22px 0 10px; }
.footer-col { float: left; width: 25%; padding-right: 18px; }
.footer-col h3 {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 4px; }
.footer-col a {
  color: #bdbdbd;
  font-size: 11px;
  text-decoration: none;
}
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  padding: 12px 0 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 10px;
}
.copyright { color: #9fd6a1; }
.parody-line { margin-top: 5px; color: #8a8a8a; }

/* ===================================================================
   RESPONSIVE (graceful degradation, era-appropriate)
   =================================================================== */
@media (max-width: 1024px) {
  .container { width: auto; margin: 0 16px; }
  .main-col { width: 66%; }
  .side-col { width: 32%; }
}

@media (max-width: 820px) {
  body { font-size: 12px; }
  .main-col, .side-col { float: none; width: auto; }
  .hero-copy { float: none; width: auto; padding: 24px; }
  .hero-visual { float: none; width: auto; padding: 0 24px 80px; }
  .card-visual { right: 24px; }
  .brand-right { display: none; }
  .utility-links li:nth-child(2) { display: none; }
  .footer-col { width: 50%; margin-bottom: 16px; }
}

@media (max-width: 560px) {
  .utility-left .clock { display: none; }
  .utility-links li:last-child { display: none; }
  .ticker-label { padding: 6px 10px; }
  .hero-copy h1 { font-size: 26px; }
  .tabs-head .tab { font-size: 11px; padding: 8px 4px; }
  .card-visual { width: 240px; height: 150px; }
  .card-number { top: 78px; font-size: 13px; letter-spacing: 2px; }
  .main-nav .container { overflow-x: auto; }
  .main-nav ul { width: 640px; }
}
