:root {
	--tcl-blue: #006390;
	--tcl-mint: #68b5ae;
	--tcl-teal: #18756e;
	--tcl-red: #da3915;
	--tcl-black: #1a1a1a;

	/* Legacy variable names retained for safer component reuse */
	--tcl-brown: var(--tcl-blue);
	--tcl-brown-soft: var(--tcl-teal);
	--tcl-cream: rgba(104, 181, 174, .10);
	--tcl-paper: rgba(104, 181, 174, .16);
	--tcl-line: rgba(0, 99, 144, .18);
	--tcl-green: var(--tcl-teal);
	--tcl-gold: var(--tcl-mint);
	--tcl-gray: rgba(26, 26, 26, .62);
}

body {
	font-family: 'Noto Sans TC', 'Microsoft JhengHei', Arial, sans-serif;
	color: var(--tcl-black);
	background: #fff;
	line-height: 1.85;
}

h1, h2, h3, h4, .serif {
	font-family: 'Noto Serif TC', 'Noto Sans TC', serif;
	font-weight: 700;
	color: var(--tcl-brown);
}

a { color: var(--tcl-brown); }
a:hover { color: var(--tcl-red); text-decoration: none; }

.navbar-tcl {
	min-height: 90px;
	background: rgba(255, 255, 255, .96);
	border: none;
	border-bottom: 1px solid rgba(104, 181, 174, .28);
	margin-bottom: 0;
	box-shadow: 0 2px 12px rgba(26, 26, 26, .06);
}

.navbar-tcl .navbar-brand {
	display: flex;
	align-items: center;
	height: 90px;
	padding: 18px 15px;
	color: var(--tcl-brown);
	font-weight: 700;
	letter-spacing: .04em;
}

.navbar-tcl .navbar-brand img {
	display: block;
	width: auto;
	max-width: 210px;
	max-height: 58px;
}

.navbar-tcl .navbar-nav > li > a {
	padding-top: 35px;
	padding-bottom: 35px;
	color: rgba(26, 26, 26, .74);
	font-size: 14px;
}

.navbar-tcl .navbar-nav > li > a:hover,
.navbar-tcl .navbar-nav > .active > a {
	color: var(--tcl-red);
	background: transparent;
}

.hero {
	position: relative;
	padding: 130px 0 80px;
	background:
	linear-gradient(110deg, rgba(0, 99, 144, .94), rgba(24, 117, 110, .80)),
	radial-gradient(circle at top right, rgba(104, 181, 174, .42), transparent 36%),
	var(--tcl-blue);
	color: #fff;
	overflow: hidden;
}

.hero:after {
	content: "";
	position: absolute;
	right: -80px;
	top: -80px;
	width: 300px;
	height: 300px;
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 50%;
}

.hero .eyebrow {
	color: var(--tcl-mint);
	letter-spacing: .16em;
	text-transform: uppercase;
	font-size: 13px;
	margin-bottom: 18px;
	font-weight: 700;
}

.hero h1 {
	color: #fff;
	font-size: 42px;
	line-height: 1.35;
	margin: 0 0 24px;
}

.hero p {
	font-size: 17px;
	color: rgba(255,255,255,.86);
	max-width: 760px;
	margin-bottom: 28px;
}

.hero-actions .btn {
	margin-right: 10px;
	margin-bottom: 10px;
	border-radius: 0;
	padding: 11px 22px;
	font-weight: 700;
	letter-spacing: .04em;
}

.btn-tcl-primary {
	background: #fff;
	color: var(--tcl-brown);
	border: 1px solid #fff;
}

.btn-tcl-outline {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255,255,255,.65);
}

.btn-tcl-outline:hover,
.btn-tcl-primary:hover {
	background: var(--tcl-red);
	border-color: var(--tcl-red);
	color: #fff;
}

.section {
	padding: 72px 0;
}

.section-soft {
	background: var(--tcl-cream);
}

.section-title {
	margin-bottom: 28px;
}

.section-title .kicker {
	color: var(--tcl-gold);
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	font-size: 12px;
	margin-bottom: 8px;
}

.section-title h2 {
	margin-top: 0;
	font-size: 30px;
}

.summary-card,
.issue-card,
.status-card,
.download-card {
	background: #fff;
	border: 1px solid var(--tcl-line);
	padding: 26px;
	min-height: 210px;
	box-shadow: 0 10px 28px rgba(26, 26, 26, .06);
	margin-bottom: 24px;
}

.summary-card .num {
	display: inline-block;
	width: 34px;
	height: 34px;
	line-height: 34px;
	border-radius: 50%;
	background: var(--tcl-brown);
	color: #fff;
	text-align: center;
	font-weight: 700;
	margin-bottom: 16px;
}

.summary-card h3,
.issue-card h3 {
	font-size: 20px;
	margin-top: 0;
	margin-bottom: 12px;
}

.status-card {
	background: var(--tcl-paper);
	border-left: 5px solid var(--tcl-red);
	min-height: auto;
}

.meta-row {
	font-size: 14px;
	color: var(--tcl-gray);
	margin-top: 18px;
}

.phase-nav {
	margin: 18px 0 34px;
}

.phase-nav a {
	display: inline-block;
	padding: 8px 12px;
	margin: 0 6px 8px 0;
	border: 1px solid var(--tcl-line);
	background: #fff;
	font-size: 13px;
	color: var(--tcl-brown-soft);
}

.phase {
	margin-bottom: 58px;
}

.phase-header {
	border-bottom: 2px solid var(--tcl-line);
	padding-bottom: 16px;
	margin-bottom: 26px;
}

.phase-header .phase-label {
	color: var(--tcl-red);
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	font-size: 13px;
}

.phase-header h3 {
	margin: 8px 0 6px;
	font-size: 25px;
}

.phase-header .date-range {
	color: var(--tcl-gray);
	font-size: 14px;
}

.timeline {
	position: relative;
	padding-left: 36px;
}

.timeline:before {
	content: "";
	position: absolute;
	left: 10px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--tcl-line);
}

.timeline-item {
	position: relative;
	background: #fff;
	border: 1px solid var(--tcl-line);
	padding: 20px 22px;
	margin-bottom: 16px;
	box-shadow: 0 5px 18px rgba(26, 26, 26, .04);
}

.timeline-item:before {
	content: "";
	position: absolute;
	left: -31px;
	top: 24px;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid var(--tcl-gold);
}

.timeline-date {
	font-weight: 700;
	color: var(--tcl-brown);
	margin-bottom: 5px;
}

.tag {
	display: inline-block;
	padding: 3px 8px;
	font-size: 12px;
	margin-left: 8px;
	vertical-align: middle;
	border-radius: 2px;
	color: #fff;
	font-weight: 500;
}

.tag-red { background: var(--tcl-red); }
.tag-green { background: var(--tcl-green); }
.tag-gold { background: var(--tcl-gold); }
.tag-brown { background: var(--tcl-brown-soft); }

.consensus-box,
.comparison-box {
	background: #fff;
	border: 1px solid var(--tcl-line);
	border-left: 5px solid var(--tcl-green);
	padding: 24px 26px;
	margin: 20px 0 24px;
}

.comparison-box {
	border-left-color: var(--tcl-gold);
}

.consensus-box h4,
.comparison-box h4 {
	margin-top: 0;
	font-size: 19px;
}

.clean-list {
	padding-left: 1.2em;
	margin-bottom: 0;
}

.clean-list li {
	margin-bottom: 8px;
}

.table-tcl > thead > tr > th {
	background: var(--tcl-brown);
	color: #fff;
	border-color: var(--tcl-brown);
	font-weight: 500;
}

.table-tcl > tbody > tr > td {
	background: #fff;
	border-color: var(--tcl-line);
	vertical-align: top;
}

.issue-card {
	min-height: 260px;
}

.issue-card .issue-num {
	color: var(--tcl-gold);
	font-family: Georgia, serif;
	font-size: 38px;
	line-height: 1;
	margin-bottom: 12px;
}

.download-card {
	min-height: auto;
	background: linear-gradient(135deg, var(--tcl-blue), var(--tcl-teal));
	color: rgba(255,255,255,.86);
	border: none;
}

.download-card h2,
.download-card h3 {
	color: #fff;
}

.download-card .btn {
	border-radius: 0;
	padding: 11px 22px;
	margin: 6px 8px 6px 0;
	font-weight: 700;
}


.download-list {
	margin-top: 22px;
}

.download-item {
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.22);
	padding: 22px;
	margin-bottom: 18px;
	min-height: 180px;
}

.download-item h3 {
	font-size: 21px;
	margin-top: 0;
	margin-bottom: 10px;
}

.download-item p {
	color: rgba(255,255,255,.78);
	margin-bottom: 18px;
}

.download-item .btn {
	margin-top: 6px;
}

.footer-note {
	padding: 34px 0;
	background: var(--tcl-black);
	color: rgba(255,255,255,.65);
	font-size: 13px;
}

.footer-note a { color: #fff; }


.statement-card {
	background: #fff;
	border: 1px solid var(--tcl-line);
	border-left: 5px solid var(--tcl-gold);
	padding: 32px;
	box-shadow: 0 10px 28px rgba(26, 26, 26, .06);
	margin-bottom: 24px;
}

.statement-card h3 {
	margin-top: 0;
	margin-bottom: 18px;
	font-size: 24px;
}

.statement-signature {
	margin-top: 24px;
	color: var(--tcl-brown);
	font-weight: 700;
	text-align: right;
}

.back-to-phase-menu {
	margin-top: 22px;
	text-align: right;
}

.back-to-phase-menu a {
	display: inline-block;
	padding: 7px 12px;
	border: 1px solid var(--tcl-line);
	background: var(--tcl-paper);
	color: var(--tcl-brown-soft);
	font-size: 13px;
	font-weight: 700;
}


/* Footer: copied to match cupping.html visual structure */
footer {
	padding: 45px 0 32px;
	background: var(--tcl-black);
	color: rgba(255,255,255,.64);
	font-family: 'Noto Sans TC', 'Microsoft JhengHei', Arial, sans-serif;
	font-size: 15px;
	line-height: 1.85;
}

footer h4 {
	margin: 0 0 20px;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
}

footer p {
	margin: 0 0 18px;
	color: rgba(255,255,255,.64);
	font-size: 15px;
	line-height: 1.85;
}

footer a {
	color: var(--tcl-red);
}

footer a:hover,
footer a:focus {
	color: #68b5ae;
	text-decoration: none;
}

.footer-box {
	margin-bottom: 26px;
}

.footer-box-text img {
	margin: 0 4px 8px 0;
	border-radius: 12px;
}

.footer-box > img {
	max-width: 100%;
	height: auto;
}

.footer-box-text-contact p {
	position: relative;
	padding-left: 26px;
	margin-bottom: 16px;
}

.footer-box-text-contact span {
	position: absolute;
	left: 0;
	top: 6px;
	color: rgba(104,181,174,.64);
	font-size: 17px;
}

.footer-border {
	border-top: 1px dashed rgba(255,255,255,.12);
	margin: 22px 0 22px;
}

.footer-copyright p {
	margin-bottom: 0;
	color: rgba(255,255,255,.68);
}

.phase-nav a:hover,
.back-to-phase-menu a:hover {
	background: var(--tcl-blue);
	border-color: var(--tcl-blue);
	color: #fff;
}

@media (max-width: 767px) {
	.navbar-tcl { min-height: 68px; }
	.navbar-tcl .navbar-brand { height: 68px; padding: 10px 15px; }
	.navbar-tcl .navbar-brand img { max-height: 48px; max-width: 170px; }
	.navbar-tcl .navbar-toggle { margin-top: 17px; margin-bottom: 17px; }
	.navbar-tcl .navbar-nav > li > a { padding-top: 12px; padding-bottom: 12px; }
	.hero { padding: 96px 0 58px; }
	.hero h1 { font-size: 30px; }
	.hero p { font-size: 16px; }
	.section { padding: 54px 0; }
	.summary-card, .issue-card { min-height: auto; }
	.timeline { padding-left: 28px; }
	.timeline-item { padding: 18px; }
	.timeline:before { left: 8px; }
	.timeline-item:before { left: -26px; }
}

/* Inline styles moved from HTML */
.hero .meta-row {
	color: rgba(255,255,255,.7);
}

.download-card .kicker {
	color: #d8b983;
	letter-spacing: .14em;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 700;
}

.comparison-box-red-tall {
	border-left-color: var(--tcl-red);
	min-height: 330px;
}

.comparison-box-green-tall {
	border-left-color: var(--tcl-green);
	min-height: 330px;
}

.table-half {
	width: 50%;
}

/* Phase accordion */
.phase {
	border: 1px solid var(--tcl-line);
	background: #fff;
	box-shadow: 0 10px 28px rgba(26, 26, 26, .045);
	margin-bottom: 22px;
}

.phase-header {
	position: relative;
	cursor: pointer;
	padding: 22px 104px 20px 24px;
	margin-bottom: 0;
	border-bottom: 1px solid transparent;
	transition: background .2s ease, border-color .2s ease;
}

.phase-header:hover,
.phase-header:focus {
	background: var(--tcl-paper);
	outline: none;
}

.phase.is-open .phase-header {
	border-bottom-color: var(--tcl-line);
}

.phase-toggle-cue {
	position: absolute;
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 66px;
	height: 66px;
}

.phase-toggle-cue:after {
	content: "+";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 66px;
	height: 66px;
	border-radius: 50%;
	border: 1px solid var(--tcl-line);
	background: #fff;
	color: var(--tcl-brown);
	font-family: Arial, sans-serif;
	font-size: 54px;
	font-weight: 400;
	line-height: 1;
}

.phase.is-open .phase-toggle-cue:after {
	content: "−";
	font-size: 60px;
}

.phase-body {
	padding: 26px 24px 28px;
}

.phase-body .timeline:last-child,
.phase-body .back-to-phase-menu:last-child {
	margin-bottom: 0;
}

.phase-body .back-to-phase-menu {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.phase-header {
		padding: 18px 82px 16px 18px;
	}

	.phase-toggle-cue {
		right: 12px;
		width: 54px;
		height: 54px;
	}

	.phase-toggle-cue:after {
		width: 54px;
		height: 54px;
		font-size: 44px;
	}

	.phase.is-open .phase-toggle-cue:after {
		font-size: 50px;
	}

	.phase-body {
		padding: 20px 18px 24px;
	}
}
