:root {
    --bg-dark: #0d0d0d;
    --text-primary: #f5f5f7;
    --text-secondary: #a1a1a6;
    --text-highlight: #ffffff;
    --btn-bg: #ffffff;
    --btn-text: #000000;
    --btn-hover: #e0e0e0;
    --border-color: #333333;
    --footer-text: #666666;
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Base reset and typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Containers */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-container {
    max-width: 800px;
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Typography specifics */
h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.text-container h1 {
    font-size: 2.5rem;
    letter-spacing: normal;
}

h2 {
    font-size: 1.5rem;
    margin: 32px 0 16px;
    color: var(--text-highlight);
}

h3 {
    font-size: 1.25rem;
    margin: 24px 0 12px;
    color: var(--text-highlight);
}

p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

a {
    color: var(--text-highlight);
    text-decoration: underline;
}

/* Header styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-highlight);
    text-decoration: none;
}

.logo img {
    max-height: 40px; /* Placeholder for the actual logo */
    vertical-align: middle;
}

/* Navigation elements */
.back-link {
    display: inline-block;
    margin-bottom: 32px;
    text-decoration: none;
    color: var(--text-secondary);
}

.back-link:hover {
    color: var(--text-highlight);
}

/* Hero section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
}

.subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-weight: 400;
}

/* Call to Action Button */
.cta-button {
    display: inline-block;
    background-color: var(--btn-bg);
    color: var(--btn-text);
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: var(--btn-hover);
    transform: translateY(-2px);
}

/* Pitch / Body section */
.pitch {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
    text-align: center;
}

.pitch p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    text-align: center;
    margin-top: 80px;
    color: var(--footer-text);
    font-size: 0.9rem;
}

.footer-links {
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin: 0 12px;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-highlight);
}

/* Table styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

table th, table td {
    border: 1px solid var(--border-color);
    padding: 12px;
    text-align: left;
}

table th {
    background-color: #1a1a1a;
    color: var(--text-highlight);
    font-weight: 600;
}

table tr:nth-child(even) {
    background-color: #121212;
}

table a {
    word-break: break-all;
}
