body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: #0b0b0b;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.container-small {
    max-width: 420px;
    padding: 80px 20px;
}

h1, h2, h3 {
    margin-top: 0;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
}

h2 {
    font-size: 2rem;
    margin-top: 60px;
}

p {
    font-size: 1.1rem;
    max-width: 900px;
}

.subhead {
    color: #b3b3b3;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: center;
}

.highlight-text, .hero h1 span {
    color: #ff3b3b;
    font-weight: bold;
}

.hero {
    padding: 80px 20px;
    background: radial-gradient(circle at top, #0f1012, #131112);
    border-bottom: 1px solid #222;
}

.section {
    padding: 60px 0;
    border-bottom: 1px solid #222;
}

.card, .plan {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.plan.highlight {
    border: 2px solid #b30000;
    box-shadow: 0 0 25px rgba(179, 0, 0, 0.25);
}

.field {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    border-radius: 6px;
    border: 1px solid #333;
    background: #0f0f0f;
    color: #fff;
    font-size: 0.95rem;
}

.hint {
    color: #888;
    font-size: 0.85rem;
    margin-top: 6px;
}

.alt {
    margin-top: 25px;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

.alt a {
    color: #ff4d4d;
    text-decoration: none;
}

.cta {
    display: block;
    margin-top: 30px;
    text-align: center;
}

.cta a, a.cta, .cta button {
    display: inline-block;
    width: 100%; 
    max-width: 300px; 
    padding: 16px 30px;
    background: #ff3b3b;
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cta a, a.cta {
    width: auto;
}

.cta a.secondary, a.cta.secondary {
    background: transparent;
    color: #ff3b3b;
    border: 2px solid #ff3b3b;
    margin-left: 15px;
}

.cta a:hover, .cta button:hover {
    background: #e60000;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ff3333;
    margin-bottom: 5px;
}

.bullets, ul.features {
    margin-top: 30px;
    list-style: none;
    padding: 0;
}

.bullets li, ul.features li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    padding: 8px 0;
    border-bottom: 1px solid #242424;
}

.header {
    background-color: #141114;
    display: flex; 
    align-items: center;
    gap: 20px;
    padding: 10px 20px; 
}

.header img {
    margin-right: auto;
}

.header h2 a {
    color: white;
    text-decoration: none; 
    font-size: 12px;
}

footer {
    margin-top: 60px;
    padding: 30px;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    line-height: 1.4;
}

.code-container {
    position: relative;
    background: #282c34;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

.code-block {
    margin: 0;
    overflow-x: auto;
    color: #abb2bf;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    line-height: 1.5;
}

.copy-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #61afef;
    border: none;
    border-radius: 4px;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 12px;
}

.copy-button:hover {
    background: #528bff;
}

/* --- Toggle Switch Styling --- */
.toggle-wrapper input[type="checkbox"] {
    display: none; /* Hide the actual checkbox */
}

.toggle-switch {
    display: inline-block;
    width: 50px;
    height: 26px;
    background-color: #ccc;
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: white;
    top: 2px;
    left: 2px;
    transition: transform 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

input[type="checkbox"]:checked + .toggle-switch {
    background-color: #4CAF50;
}

input[type="checkbox"]:checked + .toggle-switch::after {
    transform: translateX(24px);
}

.tooltip-wrapper {
    position: relative;
    margin-left: 8px;
    display: inline-block;
    cursor: help;
}

.tooltip-icon {
    background: #e0e0e0;
    color: #666;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

.tooltip-text {
    visibility: hidden;
    width: 220px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 10;
    bottom: 125%; 
    left: 50%;
    margin-left: -110px; 
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.8rem;
    font-weight: normal;
    line-height: 1.4;
}

.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.tooltip-wrapper:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgb(20, 17, 20) !important;
}

.seo-blurb {
  max-width: 800px;
  margin-top: 1rem;
  color: #bbb;
  font-size: 0.95rem;
}