:root {
  --club-navy: #052e62;
  --club-navy-deep: #021f46;
  --club-cyan: #15bad3;
  --club-ink: #10233f;
  --club-muted: #66758a;
  --club-line: #dfe7ef;
  --club-canvas: #f4f7fa;
  --club-white: #fff;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

html, body { margin: 0; min-height: 100%; }

body.club-home {
  color: var(--club-ink);
  background: var(--club-canvas);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.club-topbar {
  position: relative;
  z-index: 5;
  background: var(--club-white);
  border-bottom: 1px solid rgba(5, 46, 98, .1);
  box-shadow: 0 3px 16px rgba(17, 38, 68, .06);
}

.club-topbar__inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.club-brand img { display: block; width: 226px; height: auto; }

.club-member { display: flex; align-items: center; gap: 11px; color: var(--club-ink); }
.club-member__avatar { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid #9db0c4; border-radius: 50%; font-size: 22px; }
.club-member strong, .club-member small { display: block; }
.club-member strong { font-size: 14px; }
.club-member small { margin-top: 2px; color: var(--club-muted); font-size: 12px; }
.club-logout { margin-left: 15px; padding-left: 22px; border-left: 1px solid var(--club-line); color: var(--club-navy); font-size: 14px; font-weight: 650; text-decoration: none; }
.club-logout:hover { color: #087f9f; }

.club-hero {
  position: relative;
  overflow: hidden;
  color: var(--club-white);
  background:
    radial-gradient(circle at 76% 20%, rgba(21, 186, 211, .3), transparent 22%),
    repeating-radial-gradient(ellipse at 80% 80%, transparent 0 26px, rgba(21, 186, 211, .07) 27px 29px),
    linear-gradient(120deg, var(--club-navy-deep), #063b79 72%, #052957);
}

.club-hero__inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 330px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 60px;
}

.club-hero__copy { position: relative; z-index: 2; max-width: 690px; padding: 54px 0; }
.club-eyebrow { display: block; margin-bottom: 12px; color: #6de1ef; font-size: 12px; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
.club-eyebrow--dark { color: #0787a7; }
.club-hero h1 { margin: 0; font-size: clamp(40px, 5vw, 64px); line-height: 1.03; letter-spacing: -.035em; }
.club-hero__tagline { margin: 18px 0 0; color: #4fe0ee; font-size: clamp(20px, 2.2vw, 27px); font-weight: 650; }
.club-hero__copy > p:last-child { max-width: 680px; margin: 24px 0 0; color: #dceafa; font-size: 17px; line-height: 1.65; }

.club-tool-visual {
  position: relative;
  height: 240px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 20px;
  background: #041d3a;
  box-shadow: 0 24px 42px rgba(0,0,0,.32);
}
.club-tool-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(2,19,43,.82) 100%);
  pointer-events: none;
}
.club-tool-visual img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
.club-tool-visual__caption { position: absolute; z-index: 1; left: 20px; bottom: 16px; color: #fff; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.club-actions { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 52px 0 70px; }
.club-actions__intro { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 24px; }
.club-actions__intro h2 { margin: 0; font-size: 30px; letter-spacing: -.02em; }
.club-actions__intro p { margin: 0 0 3px; color: var(--club-muted); }

.club-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.club-card {
  --accent: #0b63b6;
  min-height: 170px;
  padding: 28px;
  display: grid;
  grid-template-columns: 58px 1fr 38px;
  align-items: center;
  gap: 20px;
  color: var(--club-ink);
  background: var(--club-white);
  border: 1px solid var(--club-line);
  border-top: 4px solid var(--accent);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(16, 35, 63, .07);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.club-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--accent) 38%, white); box-shadow: 0 16px 34px rgba(16, 35, 63, .13); }
.club-card:focus-visible { outline: 3px solid rgba(21, 186, 211, .38); outline-offset: 3px; }
.club-card__icon { display: grid; place-items: center; width: 58px; height: 58px; color: var(--accent); border: 1.5px solid var(--accent); border-radius: 50%; font-size: 24px; font-weight: 600; }
.club-card__content strong { display: block; font-size: 18px; line-height: 1.25; }
.club-card__content small { display: block; margin-top: 9px; color: var(--club-muted); font-size: 14px; line-height: 1.5; }
.club-card__arrow { display: grid; place-items: center; width: 38px; height: 38px; color: var(--club-navy); background: #eef4f8; border-radius: 50%; font-size: 20px; transition: transform .18s ease, background .18s ease; }
.club-card:hover .club-card__arrow { transform: translateX(3px); background: #e2f6f9; }
.club-card--orange { --accent: #ed7b18; }
.club-card--green { --accent: #168b50; }
.club-card--red { --accent: #c63732; }
.club-card--purple { --accent: #6f48bd; }
.club-card--gray { --accent: #6e7782; }

.club-footer { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 24px 0 32px; display: flex; justify-content: space-between; gap: 20px; color: #7b8797; border-top: 1px solid var(--club-line); font-size: 12px; }

.club-report-hero { color: #fff; background: linear-gradient(120deg, var(--club-navy-deep), #063b79 72%, #075b89); }
.club-report-hero__inner { width: min(1180px, calc(100% - 40px)); min-height: 250px; margin: 0 auto; display: grid; grid-template-columns: 1fr 360px; align-items: center; gap: 60px; }
.club-report-hero h1 { margin: 8px 0 12px; font-size: clamp(36px, 4.5vw, 54px); line-height: 1.05; letter-spacing: -.035em; }
.club-report-hero p { margin: 0; color: #dceafa; font-size: 17px; }
.club-report-hero p strong { color: #fff; }
.club-back-link { display: inline-block; margin-bottom: 25px; color: #c9eaf4; font-size: 13px; font-weight: 650; text-decoration: none; }
.club-back-link:hover { color: #fff; }
.club-report-hero__image { height: 180px; overflow: hidden; border: 1px solid rgba(255,255,255,.22); border-radius: 18px; box-shadow: 0 18px 34px rgba(0,0,0,.28); }
.club-report-hero__image img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }

.club-report-actions { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 48px 0 70px; }
.club-report-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.club-report-card { position: relative; min-height: 145px; padding: 25px; display: grid; grid-template-columns: 58px 1fr 38px; align-items: center; gap: 18px; border: 1px solid var(--club-line); border-radius: 16px; color: var(--club-navy-deep); background: #fff; box-shadow: 0 9px 25px rgba(8,41,79,.08); text-align: left; font: inherit; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.club-report-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 5px; border-radius: 16px 0 0 16px; background: var(--report-accent); }
.club-report-card:hover, .club-report-card:focus-visible { transform: translateY(-3px); border-color: var(--report-accent); box-shadow: 0 15px 34px rgba(8,41,79,.14); outline: none; }
.club-report-card__icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 15px; color: #fff; background: var(--report-accent); font-size: 25px; font-weight: 750; }
.club-report-card__copy { display: flex; flex-direction: column; gap: 7px; }
.club-report-card__copy strong { font-size: 19px; }
.club-report-card__copy small { color: var(--club-muted); font-size: 13px; line-height: 1.5; }
.club-report-card__arrow { color: var(--report-accent); font-size: 27px; transition: transform .18s ease; }
.club-report-card:hover .club-report-card__arrow { transform: translateX(4px); }
.club-report-card--blue { --report-accent: #0757b8; }
.club-report-card--teal { --report-accent: #078da3; }
.club-report-card--orange { --report-accent: #e57b16; }
.club-report-card--red { --report-accent: #c63f4b; }
.club-report-card--account { --report-accent: #667085; grid-column: 1 / -1; min-height: 112px; }

.club-records-page { color: var(--club-navy-deep); }
.club-records-header { position: relative; z-index: 5; box-shadow: 0 1px 0 var(--club-line); }
.club-page-nav { border-top: 1px solid var(--club-line); background: #f7f9fc; }
.club-page-nav__inner { width: min(1180px, calc(100% - 40px)); min-height: 54px; margin: 0 auto; display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 8px; }
.club-page-nav form { margin: 0; }
.club-page-nav a, .club-page-nav button { min-height: 34px; padding: 7px 12px; border: 1px solid #cfd7e2; border-radius: 8px; color: #173c66; background: #fff; font: 650 12px/1.2 Arial, sans-serif; text-decoration: none; cursor: pointer; transition: border-color .16s ease, color .16s ease, box-shadow .16s ease; }
.club-page-nav a:hover, .club-page-nav button:hover { border-color: #078da3; color: #057a96; box-shadow: 0 3px 10px rgba(8,41,79,.08); }
.club-records-page > br { display: none; }
.club-records-page > p { height: 0; margin: 0 auto; overflow: hidden; }
.club-records-page > span { max-width: 1180px; margin-right: auto; margin-left: auto; }
.club-results-toolbar { width: min(1180px, calc(100% - 40px)) !important; margin: 18px auto 10px; border: 0; }
.club-results-toolbar form { margin: 0; }
.club-return-button { min-height: 40px; padding: 9px 16px; border: 1px solid #cbd5e1; border-radius: 9px; color: #143f70; background: #fff; font: 700 13px Arial, sans-serif; cursor: pointer; box-shadow: 0 4px 12px rgba(8,41,79,.08); }
.club-return-button:hover { border-color: #078da3; color: #057a96; }

.club-tool-record, .club-history-table { width: min(1180px, calc(100% - 40px)) !important; margin-right: auto; margin-left: auto; border: 0 !important; border-collapse: separate !important; border-spacing: 0 !important; overflow: hidden; color: #24364b; background: #fff; box-shadow: 0 12px 34px rgba(8,41,79,.11); font-family: Arial, sans-serif; }
.club-tool-record { border: 1px solid var(--club-line) !important; border-radius: 16px; }
.club-tool-record tbody { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)) 230px; }
.club-tool-record tr { min-width: 0; display: grid; grid-template-columns: 125px minmax(0, 1fr); }
.club-tool-record tr:first-child { display: block; grid-column: 1 / -1; }
.club-tool-record tr:first-child th { display: block; }
.club-tool-record tr:nth-child(2) { display: contents; }
.club-tool-record tr:nth-child(2) > th, .club-tool-record tr:nth-child(2) > td:not(.rightCol) { display: none; }
.club-tool-record tr:nth-child(2) .rightCol { grid-column: 3; grid-row: 9; }
.club-tool-record tr:nth-child(2):not(:has(.rightCol img)) .rightCol { display: none; }
.club-tool-record .club-waviness-row { grid-column: 1 / 3; }
.club-tool-record tbody > tr.club-preview-row { grid-column: 3 !important; grid-row: 2 / span 7 !important; display: block !important; }
.club-tool-record tbody > tr.club-record-footer { display: block !important; grid-column: 1 / -1 !important; grid-row: 9 !important; width: 100% !important; }
.club-tool-record .club-record-footer td { box-sizing: border-box; display: block; width: 100% !important; }
.club-tool-record tr.SerialNumber_BannerTitle { color: #fff; background: linear-gradient(120deg, #052b5c, #07589a); }
.club-tool-record tr.SerialNumber_BannerTitle th { box-sizing: border-box; height: auto !important; min-height: 102px; padding: 12px 20px 13px; border: 0; background: transparent; }
.club-tool-record tr.SerialNumber_BannerTitle p { margin: 0; }
.club-tool-record tr.SerialNumber_BannerTitle span.SerialNumber_BannerTitle { display: block; margin: 0; color: #fff; background: transparent; font-size: clamp(46px, 4.7vw, 60px); line-height: 1; letter-spacing: -.025em; }
.club-tool-customer { display: block; margin-top: 5px; color: #fff; font: 750 17px/1.15 Arial, sans-serif; letter-spacing: .01em; }
.club-tool-record tr:not(:first-child) th, .club-tool-record tr:not(:first-child) td { box-sizing: border-box; width: auto !important; height: auto !important; min-width: 0; padding: 7px 12px; border: 0; border-top: 1px solid #e3e8ef; font-size: 13px; line-height: 1.3; }
.club-tool-record tr:not(:first-child) th { color: #173c66; background: #f7f9fc; }
.club-tool-record tr:nth-child(2) th { font-size: 14px; }
.club-tool-record tr:nth-child(2) td:not(.rightCol) { padding-top: 10px; padding-bottom: 10px; color: #173c66; font-size: 18px; font-weight: 750; }
.club-tool-record td p { margin: 0; }
.club-tool-record .rightCol { min-width: 190px; background: #fbfcfe; }
.club-tool-record a { color: #056b9a; font-weight: 650; }
.club-tool-record .Footerfont td { padding: 12px 14px !important; color: #42566d; background: #eef8fb; }
.club-record-actions { box-sizing: border-box; width: 100% !important; height: 100% !important; padding: 10px !important; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 9px; border-left: 1px solid #e3e8ef !important; background: #fbfcfe; }
.club-drawing-preview { display: block; color: #075e91; text-decoration: none; }
.club-drawing-preview__frame { position: relative; width: min(100%, 190px); height: auto; aspect-ratio: 210 / 297; margin: 0 auto; overflow: hidden; display: block; border: 1px solid #c9d7e5; border-radius: 7px; background: #fff; }
.club-drawing-preview__frame canvas { max-width: 100%; max-height: 100%; margin: auto; display: block; background: #fff; opacity: 0; transition: opacity .2s ease; }
.club-drawing-preview__frame.is-loaded canvas { opacity: 1; }
.club-drawing-preview__loading { position: absolute; inset: 0; display: grid; place-items: center; color: #5c7087; font-size: 11px; font-weight: 700; }
.club-drawing-preview__frame.is-loaded .club-drawing-preview__loading { display: none; }
.club-drawing-preview__frame.has-error .club-drawing-preview__loading { color: #a13b45; }
.club-drawing-preview > strong { display: block; margin-top: 7px; font-size: 12px; }
.club-drawing-preview > small { display: block; margin-top: 2px; overflow: hidden; color: #63768b; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.club-drawing-preview:hover .club-drawing-preview__frame { border-color: #078da3; box-shadow: 0 5px 14px rgba(8,41,79,.12); }
.club-reorder-link { padding-top: 8px; border-top: 1px solid #dce4ec; text-align: center; }

.club-history-table { margin-top: 28px; margin-bottom: 60px; border: 1px solid var(--club-line) !important; border-radius: 14px; }
.club-history-table th { padding: 11px 12px; border: 0; color: #fff; background: #123f70; font-size: 12px; text-transform: uppercase; letter-spacing: .035em; }
.club-history-table td { padding: 10px 12px; border: 0; border-top: 1px solid #e4e9ef; font-size: 13px; }
.club-history-table tr:nth-child(even) td { background: #f8fafc; }
.club-history-table tr:hover td { background: #eef8fb; }
.club-history-table a { color: #056b9a; font-weight: 650; }
.summaryTable .club-sortable-heading { cursor: pointer; user-select: none; white-space: nowrap; }
.summaryTable .club-sortable-heading::after { content: "\2195"; margin-left: 7px; color: #7ba8cb; font-size: .85em; }
.summaryTable .club-sort-asc::after { content: "\2191"; color: #fff; }
.summaryTable .club-sort-desc::after { content: "\2193"; color: #fff; }
.summaryTable .club-sortable-heading:focus { outline: 2px solid #16a6c9; outline-offset: -3px; }

/* Searchable tool summary */
.club-summary-table { width: min(1180px, calc(100% - 40px)) !important; margin: 28px auto 64px !important; table-layout: auto; }
.club-summary-table .club-summary-heading { padding: 0 !important; border: 0 !important; background: transparent !important; }
.club-summary-hero { box-sizing: border-box; min-height: 150px; padding: 27px 30px; display: flex; align-items: center; justify-content: space-between; gap: 32px; color: #fff; background: linear-gradient(120deg, #052b5c, #07589a 72%, #078da3); text-align: left; }
.club-summary-eyebrow { display: block; margin-bottom: 7px; color: #74d9e8; font: 750 11px/1 Arial, sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.club-summary-hero h1 { margin: 0; color: #fff; font: 750 clamp(28px, 3vw, 42px)/1.05 Arial, sans-serif; letter-spacing: -.025em; }
.club-summary-hero p { margin: 9px 0 0; color: #dceafa; font: 400 14px/1.45 Arial, sans-serif; }
.club-summary-hero p strong { color: #fff; }
.club-summary-search { width: min(390px, 42%); }
.club-summary-search label { display: block; margin-bottom: 7px; color: #fff; font: 700 12px/1 Arial, sans-serif; }
.club-summary-search__control { position: relative; }
.club-summary-search input { box-sizing: border-box; width: 100%; height: 44px; padding: 0 70px 0 15px; border: 1px solid rgba(255,255,255,.44); border-radius: 10px; outline: 0; color: #17324f; background: #fff; font: 400 14px Arial, sans-serif; box-shadow: 0 8px 24px rgba(0,22,55,.16); }
.club-summary-search input:focus { border-color: #69e1ed; box-shadow: 0 0 0 3px rgba(105,225,237,.24), 0 8px 24px rgba(0,22,55,.16); }
.club-summary-search button { position: absolute; top: 7px; right: 7px; height: 30px; padding: 0 10px; border: 0; border-radius: 7px; color: #075d91; background: #eaf7fa; font: 700 11px Arial, sans-serif; cursor: pointer; visibility: hidden; }
#club-tool-search-status { display: block; min-height: 16px; margin-top: 7px; color: #c8e4f2; font: 600 11px/1.4 Arial, sans-serif; text-align: right; }
.club-summary-table > tbody > tr:nth-child(2) > th { position: sticky; top: 77px; z-index: 3; padding: 12px 13px; border: 0; color: #fff; background: #123f70; font: 700 12px/1.2 Arial, sans-serif; text-align: left; text-transform: uppercase; letter-spacing: .025em; }
.club-summary-table > tbody > tr:nth-child(n+3) > td { padding: 10px 13px; border: 0; border-top: 1px solid #e4e9ef; color: #2c4057; background: #fff; font: 400 13px/1.35 Arial, sans-serif; }
.club-summary-table > tbody > tr:nth-child(even):nth-child(n+3) > td { background: #f8fafc; }
.club-summary-table > tbody > tr:nth-child(n+3):hover > td { background: #eef8fb; }
.club-summary-table > tbody > tr:nth-child(n+3) > td:first-child { font-weight: 700; }
.club-summary-table > tbody > tr:nth-child(n+3) > td:first-child a { color: #056b9a; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.club-summary-table > tbody > tr:nth-child(n+3) > td:nth-child(2),
.club-summary-table > tbody > tr:nth-child(n+3) > td:nth-child(5),
.club-summary-table > tbody > tr:nth-child(n+3) > td:nth-child(6),
.club-summary-table > tbody > tr:nth-child(n+3) > td:nth-child(7) { white-space: nowrap; }

@media (max-width: 760px) {
  .club-summary-hero { align-items: stretch; flex-direction: column; padding: 23px 20px; }
  .club-summary-search { width: 100%; }
  #club-tool-search-status { text-align: left; }
  .club-summary-table { display: block; width: calc(100% - 24px) !important; overflow-x: auto; }
  .club-summary-table .club-summary-heading { min-width: 760px; }
}

@media (max-width: 980px) {
  .club-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .club-hero__inner { grid-template-columns: 1fr; }
  .club-tool-visual { display: none; }
  .club-report-hero__inner { grid-template-columns: 1fr; min-height: 260px; padding: 42px 0; }
  .club-report-hero__image { display: none; }
  .club-tool-record, .club-history-table { display: block; overflow-x: auto; }
  .club-tool-record tbody { display: block; }
  .club-tool-record tr, .club-tool-record tr:nth-child(2) { display: grid; grid-template-columns: 140px minmax(300px, 1fr); }
  .club-tool-record tr:first-child, .club-tool-record .club-record-footer { display: block; }
  .club-tool-record tr:nth-child(2) > th, .club-tool-record tr:nth-child(2) > td:not(.rightCol) { display: none; }
  .club-tool-record .rightCol { grid-column: 1 / -1; }
  .club-tool-record .club-waviness-row { grid-column: auto; }
  .club-tool-record tbody > tr.club-preview-row { display: block !important; grid-column: auto !important; grid-row: auto !important; }
  .club-tool-record tbody > tr.club-record-footer { grid-column: auto !important; grid-row: auto !important; }
  .club-record-actions { border-left: 0 !important; }
}

@media (max-width: 650px) {
  .club-topbar__inner { width: min(100% - 24px, 1180px); min-height: 78px; }
  .club-brand img { width: 170px; }
  .club-member__avatar, .club-member > span:nth-child(2) { display: none; }
  .club-logout { margin-left: 0; padding-left: 0; border-left: 0; }
  .club-hero__inner, .club-actions, .club-footer { width: calc(100% - 28px); }
  .club-hero__inner { min-height: 300px; }
  .club-hero__copy { padding: 44px 0; }
  .club-hero h1 { font-size: 42px; }
  .club-grid { grid-template-columns: 1fr; }
  .club-actions__intro { align-items: start; flex-direction: column; }
  .club-card { min-height: 150px; padding: 22px; grid-template-columns: 52px 1fr 34px; gap: 15px; }
  .club-card__icon { width: 52px; height: 52px; }
  .club-footer { flex-direction: column; }
  .club-report-hero__inner, .club-report-actions { width: calc(100% - 28px); }
  .club-report-grid { grid-template-columns: 1fr; }
  .club-report-card--account { grid-column: auto; }
  .club-report-card { min-height: 135px; padding: 20px; grid-template-columns: 52px 1fr 28px; gap: 14px; }
  .club-report-card__icon { width: 52px; height: 52px; }
  .club-page-nav__inner { width: calc(100% - 24px); justify-content: flex-start; padding: 10px 0; }
  .club-page-nav a, .club-page-nav button { font-size: 11px; }
  .club-results-toolbar, .club-tool-record, .club-history-table { width: calc(100% - 24px) !important; }
  .club-tool-record tr:not(:first-child) th { width: 130px; }
}

.club-faq-hero { color: #fff; background: linear-gradient(120deg, var(--club-navy-deep), #064e86 72%, #078da3); }
.club-faq-hero__inner { width: min(1180px, calc(100% - 40px)); min-height: 250px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.club-faq-hero h1 { margin: 8px 0 12px; font-size: clamp(38px, 5vw, 56px); line-height: 1.05; letter-spacing: -.035em; }
.club-faq-hero p { max-width: 720px; margin: 0; color: #dceafa; font-size: 17px; line-height: 1.55; }
.club-faq-hero__mark { flex: 0 0 118px; width: 118px; height: 118px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: #fff; background: rgba(255,255,255,.1); box-shadow: 0 20px 38px rgba(0,0,0,.2); font: 800 62px Arial, sans-serif; }
.club-faq-library { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 48px 0 68px; }
.club-faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.club-faq-card { min-height: 76px; padding: 15px 17px; display: grid; grid-template-columns: 42px 1fr 25px; align-items: center; gap: 14px; border: 1px solid var(--club-line); border-radius: 13px; color: #173c66; background: #fff; box-shadow: 0 6px 18px rgba(8,41,79,.06); text-decoration: none; transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease; }
.club-faq-card:hover, .club-faq-card:focus-visible { transform: translateY(-2px); border-color: #76b9ca; box-shadow: 0 11px 25px rgba(8,41,79,.12); outline: none; }
.club-faq-card > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; color: #fff; background: linear-gradient(145deg, #0757b8, #078da3); font-size: 12px; font-weight: 800; }
.club-faq-card strong { font-size: 14px; line-height: 1.35; }
.club-faq-card b { color: #078da3; font-size: 21px; transition: transform .16s ease; }
.club-faq-card:hover b { transform: translateX(3px); }
.club-faq-support { margin-top: 28px; padding: 24px 26px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border: 1px solid #bedce5; border-radius: 15px; background: #eef9fb; }
.club-faq-support strong { color: #123f70; font-size: 18px; }
.club-faq-support p { margin: 5px 0 0; color: var(--club-muted); font-size: 13px; }
.club-faq-support__actions { display: flex; gap: 9px; flex-wrap: wrap; }
.club-faq-support__actions a { padding: 10px 13px; border: 1px solid #087f9f; border-radius: 9px; color: #fff; background: #087f9f; font-size: 12px; font-weight: 700; text-decoration: none; }
.club-faq-support__actions a:last-child { color: #075e91; background: #fff; }

@media (max-width: 760px) {
  .club-faq-hero__inner, .club-faq-library { width: calc(100% - 28px); }
  .club-faq-hero__inner { min-height: 250px; padding: 38px 0; }
  .club-faq-hero__mark { display: none; }
  .club-faq-grid { grid-template-columns: 1fr; }
  .club-faq-support { align-items: flex-start; flex-direction: column; }
}

@media print {
  .club-page-nav, .club-results-toolbar, .club-logout { display: none !important; }
  .club-tool-record, .club-history-table { width: 100% !important; box-shadow: none; }
}

.club-docs-hero { color: #fff; background: linear-gradient(120deg, var(--club-navy-deep), #064e86 72%, #078da3); }
.club-docs-hero__inner { width: min(1180px, calc(100% - 40px)); min-height: 250px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.club-docs-hero h1 { margin: 8px 0 12px; font-size: clamp(38px, 5vw, 56px); line-height: 1.05; letter-spacing: -.035em; }
.club-docs-hero p { max-width: 680px; margin: 0; color: #dceafa; font-size: 17px; line-height: 1.55; }
.club-docs-hero__mark { flex: 0 0 118px; width: 118px; height: 118px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 28px; color: #fff; background: rgba(255,255,255,.1); box-shadow: 0 20px 38px rgba(0,0,0,.2); font: italic 800 66px Georgia, serif; }
.club-doc-library { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 48px 0 68px; }
.club-doc-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.club-doc-card { min-width: 0; overflow: hidden; display: grid; grid-template-columns: 132px 1fr; border: 1px solid var(--club-line); border-radius: 16px; background: #fff; box-shadow: 0 9px 25px rgba(8,41,79,.08); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.club-doc-card:hover { transform: translateY(-3px); border-color: #9fc9d7; box-shadow: 0 15px 34px rgba(8,41,79,.14); }
.club-doc-card__preview { min-height: 220px; padding: 15px; display: grid; place-items: center; background: #eef3f8; }
.club-doc-card__preview img { display: block; max-width: 100%; max-height: 190px; width: auto; height: auto; box-shadow: 0 5px 13px rgba(8,41,79,.18); }
.club-doc-card__body { min-width: 0; padding: 20px 18px 17px; display: flex; flex-direction: column; }
.club-doc-card h3 { margin: 0 0 9px; color: #123f70; font-size: 17px; line-height: 1.25; }
.club-doc-card p { margin: 0 0 18px; color: var(--club-muted); font-size: 12px; line-height: 1.5; }
.club-doc-card__actions { margin-top: auto; display: flex; flex-direction: column; gap: 7px; }
.club-doc-card__actions a { padding: 8px 10px; border: 1px solid #cad8e6; border-radius: 8px; color: #075e91; background: #f8fbfd; font-size: 12px; font-weight: 700; text-align: center; text-decoration: none; }
.club-doc-card__actions a:first-child { border-color: #087f9f; color: #fff; background: #087f9f; }
.club-doc-card__actions a:hover { filter: brightness(.95); }

@media (max-width: 1050px) {
  .club-doc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 650px) {
  .club-docs-hero__inner, .club-doc-library { width: calc(100% - 28px); }
  .club-docs-hero__inner { min-height: 250px; padding: 38px 0; }
  .club-docs-hero__mark { display: none; }
  .club-doc-grid { grid-template-columns: 1fr; }
  .club-doc-card { grid-template-columns: 112px 1fr; }
  .club-doc-card__preview { min-height: 200px; padding: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .club-card, .club-card__arrow { transition: none; }
}

/* Public login page */
body.club-login { min-height: 100vh; color: var(--club-ink); background: var(--club-white); }
.login-layout { min-height: 100vh; display: grid; grid-template-columns: minmax(420px, .92fr) minmax(520px, 1.08fr); }
.login-brand-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 60px;
  color: var(--club-white);
  background:
    radial-gradient(circle at 75% 15%, rgba(21,186,211,.32), transparent 24%),
    repeating-radial-gradient(ellipse at 10% 90%, transparent 0 31px, rgba(21,186,211,.06) 32px 34px),
    linear-gradient(145deg, #021c40, #063e7b);
}
.login-brand-panel::after { content: ""; position: absolute; right: -120px; bottom: -130px; width: 420px; height: 420px; border: 70px solid rgba(86,220,235,.08); border-radius: 50%; }
.login-brand-panel__inner { position: relative; z-index: 1; width: min(560px, 100%); }
.login-logo { display: block; width: min(410px, 100%); height: auto; margin-bottom: 64px; padding: 18px; background: var(--club-white); border-radius: 10px; }
.login-brand-panel h1 { max-width: 560px; margin: 0; font-size: clamp(40px, 4vw, 62px); line-height: 1.05; letter-spacing: -.04em; }
.login-brand-panel p { max-width: 530px; margin: 24px 0 0; color: #dceafa; font-size: 18px; line-height: 1.65; }
.login-benefits { margin: 32px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px; list-style: none; }
.login-benefits li { padding: 9px 13px; color: #dffbff; background: rgba(7,25,52,.32); border: 1px solid rgba(112,225,238,.28); border-radius: 999px; font-size: 13px; }
.login-access-panel { display: grid; align-content: center; justify-items: center; gap: 28px; padding: 54px; background: #f6f8fb; }
.login-card { width: min(490px, 100%); padding: 46px; background: var(--club-white); border: 1px solid var(--club-line); border-radius: 18px; box-shadow: 0 22px 55px rgba(16,35,63,.12); }
.login-card h2 { margin: 0; font-size: 36px; letter-spacing: -.03em; }
.login-card__intro { margin: 10px 0 30px; color: var(--club-muted); }
.login-form { display: grid; gap: 10px; }
.login-form label { margin-top: 8px; color: #2b405c; font-size: 13px; font-weight: 700; }
.login-form input { width: 100%; min-height: 48px; padding: 10px 13px; color: var(--club-ink); background: #fbfcfd; border: 1px solid #bac8d6; border-radius: 7px; font: inherit; }
.login-form input:focus { outline: 3px solid rgba(21,186,211,.2); border-color: #0787a7; }
.login-form button { min-height: 50px; margin-top: 15px; color: var(--club-white); background: linear-gradient(100deg, #075dac, #058aa8); border: 0; border-radius: 7px; font: 700 15px/1 "Segoe UI", Arial, sans-serif; cursor: pointer; box-shadow: 0 8px 18px rgba(5,93,172,.2); }
.login-form button:hover { background: linear-gradient(100deg, #064f94, #04778f); }
.login-register { margin: 26px 0; padding: 20px 0; display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid var(--club-line); border-bottom: 1px solid var(--club-line); font-size: 13px; }
.login-register span { color: var(--club-muted); }
.login-register a, .login-information a { color: #056496; font-weight: 700; text-decoration: none; }
.login-language { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 13px; color: var(--club-ink); text-decoration: none; }
.login-language img { width: 38px; height: 30px; object-fit: cover; border: 1px solid var(--club-line); }
.login-language strong, .login-language small { display: block; }
.login-language small { margin-top: 2px; color: var(--club-muted); }
.login-information { width: min(490px, 100%); padding: 0 12px; }
.login-information h3 { margin: 0 0 10px; font-size: 17px; }
.login-information p { margin: 8px 0; color: var(--club-muted); font-size: 13px; line-height: 1.55; }
.login-representative { display: inline-block; margin-top: 10px; font-size: 13px; }

@media (max-width: 920px) {
  .login-layout { grid-template-columns: 1fr; }
  .login-brand-panel { min-height: 420px; padding: 46px 28px; }
  .login-logo { width: 300px; margin-bottom: 42px; }
  .login-access-panel { padding: 46px 24px; }
}

@media (max-width: 540px) {
  .login-brand-panel { min-height: 360px; }
  .login-brand-panel h1 { font-size: 38px; }
  .login-brand-panel p { font-size: 16px; }
  .login-card { padding: 30px 24px; }
  .login-register { flex-direction: column; }
}
