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

        body {
            font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', 'Droid Sans Mono', monospace;
            background: #2d353b;
            color: #d3c6aa;
            line-height: 1.6;
            font-size: 15px;
        }

        .site-main {
            min-height: calc(100vh - 200px);
        }

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

        /* Top bar */
        .top-bar {
            border-bottom: 1px solid #3d484d;
            padding: 20px 0;
            margin-bottom: 60px;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            color: #e69875;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
        }

        .nav a {
            color: #d3c6aa;
            text-decoration: none;
            margin-left: 24px;
            font-size: 14px;
            transition: color 0.2s;
            cursor: pointer;
        }

        .nav a:hover {
            color: #a7c080;
        }

        /* Hero */
        .hero {
            margin-bottom: 80px;
        }

        .hero h1 {
            font-size: 32px;
            line-height: 1.3;
            color: #e69875;
            margin-bottom: 32px;
            font-weight: 600;
        }


        .manifesto {
            margin-bottom: 40px;
        }

        .manifesto p {
            font-size: 16px;
            line-height: 1.8;
            color: #d3c6aa;
            margin-bottom: 8px;
        }
        
        .manifesto p.bold {
          color: #a7c080;
          font-weight: 600;
          margin-top: 20px;
        }

        .manifesto br {
          display: block;
          content: "";
          margin-top: 12px;
        }

        .manifesto .highlight {
            color: #a7c080; /* Your green accent */
        }

        .manifesto .highlight-warn {
            color: #e67e80; /* Reddish for warnings/problems */
        }

        .manifesto .highlight-action {
            color: #e69875; /* Your orange/primary color */
        }

        /* CTA Form */
        .cta-form {
            background: #3d484d;
            padding: 32px;
            border-radius: 4px;
            margin-bottom: 20px;
        }

        .form-row {
            display: flex;
            gap: 12px;
            margin-bottom: 12px;
        }

        .cta-form input[type="email"] {
            flex: 1;
            padding: 12px 16px;
            background: #2d353b;
            border: 1px solid #525c62;
            color: #d3c6aa;
            font-family: inherit;
            font-size: 14px;
            border-radius: 3px;
        }

        .cta-form input[type="email"]:focus {
            outline: none;
            border-color: #a7c080;
        }

        .cta-form button {
            padding: 12px 24px;
            background: #a7c080;
            color: #2d353b;
            border: none;
            font-family: inherit;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border-radius: 3px;
            transition: background 0.2s;
        }

        .cta-form button:hover {
            background: #b8d0a0;
        }

        .helper-text {
            font-size: 13px;
            color: #9da9a0;
        }

        .signup-form .form-row {
            display: flex;
            gap: 8px;
        }

        .signup-message {
            margin-top: 8px;
            font-size: 0.9rem;
        }

        .signup-message .success {
            color: #6bbf59;
        }

        .signup-message .error {
            color: #e67e80;
        }

        /* Ship Logs */
        .ship-logs {
            margin-bottom: 80px;
        }

        .section-header {
            margin-bottom: 32px;
        }

        .section-header h2 {
            font-size: 20px;
            color: #e69875;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .section-header .subtitle {
            font-size: 14px;
            color: #9da9a0;
        }

        .log-list {
            list-style: none;
        }

        .log-item {
            margin-bottom: 24px;
            padding-bottom: 24px;
            border-bottom: 1px solid #3d484d;
        }

        .log-item:last-child {
            border-bottom: none;
        }

        .log-meta {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            gap: 16px;
        }

        .log-title {
            color: #d3c6aa;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.2s;
            flex: 1;
            cursor: pointer;
        }

        .log-title:hover {
            color: #a7c080;
        }

        .log-date {
            font-size: 13px;
            color: #9da9a0;
            white-space: nowrap;
        }

        .view-all {
            display: inline-block;
            color: #a7c080;
            text-decoration: none;
            font-size: 14px;
            margin-top: 16px;
            cursor: pointer;
        }

        .view-all:hover {
            text-decoration: underline;
        }

              /* Why Ship Daily Section */
        .why-ship-daily {
            margin-bottom: 80px;
            padding: 48px 0;
            border-top: 1px solid #3d484d;
            border-bottom: 1px solid #3d484d;
        }

        .why-ship-daily h2 {
            font-size: 20px;
            color: #e69875;
            margin-bottom: 24px;
            font-weight: 600;
        }

        .movement-text {
            font-size: 16px;
            line-height: 1.8;
            color: #d3c6aa;
            margin-bottom: 24px;
        }

        .movement-list {
            list-style: none;
            margin: 32px 0;
            padding-left: 20px;
        }

        .movement-list li {
            font-size: 16px;
            line-height: 1.8;
            color: #d3c6aa;
            margin-bottom: 16px;
            position: relative;
            padding-left: 20px;
        }

        .movement-list li::before {
            content: "→";
            position: absolute;
            left: 0;
            color: #a7c080;
            font-weight: 600;
        }

        .movement-list li strong {
            color: #a7c080;
            font-weight: 600;
        }


        /* Book Section */
        .book-section {
            margin-bottom: 80px;
        }

        .book-header {
            margin-bottom: 40px;
        }

        .book-header h2 {
            font-size: 20px;
            color: #e69875;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .book-subtitle {
            font-size: 14px;
            color: #9da9a0;
        }

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

        .book-card {
            background: #3d484d;
            padding: 24px;
            border-radius: 4px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            border: 1px solid #475258;
            transition: border-color 0.2s;
        }

        .book-card:hover {
            border-color: #525c62;
        }

        .book-image-wrapper {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #2d353b;
            border-radius: 4px;
            padding: 24px;
            min-height: 200px;
        }

        .book-image {
            max-width: 100%;
            height: auto;
            max-height: 180px;
            object-fit: contain;
        }

        .book-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: #a7c080;
            color: #2d353b;
            padding: 4px 10px;
            border-radius: 3px;
            font-size: 12px;
            font-weight: 600;
        }

        .book-badge.coming-soon {
            background: #e69875;
            color: #2d353b;
        }

        .book-eyebrow {
            position: absolute;
            top: 12px;
            left: 12px;
            font-size: 11px;
            color: #9da9a0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 500;
            background: rgba(45, 53, 59, 0.8);
            padding: 4px 8px;
            border-radius: 3px;
            backdrop-filter: blur(4px);
        }

        .book-info {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .book-info h3 {
            font-size: 18px;
            color: #e69875;
            margin: 0;
            font-weight: 600;
        }

        .book-info p {
            margin: 0;
            line-height: 1.7;
            color: #d3c6aa;
            font-size: 14px;
        }

        .book-elements {
            margin: 0;
            line-height: 1.8;
            font-size: 13px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
        }

        .book-elements .element {
            color: #d3c6aa;
            white-space: nowrap;
        }

        .book-elements .element-label {
            color: #9da9a0;
            font-weight: 400;
        }

        .book-elements .element-sep {
            color: #525c62;
            font-size: 14px;
            margin: 0 2px;
        }

        .book-section .btn {
            display: inline-block;
            padding: 10px 20px;
            background: #e69875;
            color: #2d353b;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            border-radius: 3px;
            transition: background 0.2s;
            align-self: flex-start;
            margin-top: 4px;
            cursor: pointer;
        }

        .book-section .btn:hover {
            background: #f0a98e;
        }

        /* About */
        .about {
            margin-bottom: 80px;
        }

        .about h3 {
            font-size: 18px;
            color: #e69875;
            margin-bottom: 16px;
            font-weight: 600;
        }

        .about p {
            line-height: 1.8;
        }

        /* Footer */
        .footer {
            border-top: 1px solid #3d484d;
            padding: 40px 0;
            text-align: center;
        }

        .footer-text {
            font-size: 13px;
            color: #9da9a0;
            margin-bottom: 12px;
        }

        .footer-links {
            font-size: 13px;
        }

        .footer-links a {
            color: #d3c6aa;
            text-decoration: none;
            margin: 0 8px;
            cursor: pointer;
        }

        .footer-links a:hover {
            color: #a7c080;
        }

        .footer-links span {
            color: #525c62;
        }

        @media (max-width: 640px) {
            .hero h1 {
                font-size: 24px;
            }

            .form-row {
                flex-direction: column;
            }

            .why-ship-daily {
                padding: 32px 0;
            }


            .log-meta {
                flex-direction: column;
                gap: 4px;
            }

            .log-date {
                font-size: 12px;
            }

            .book-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .book-header {
                margin-bottom: 32px;
            }

            .footer-links {
                display: flex;
                flex-direction: column;
                gap: 8px;
            }

            .footer-links a {
                display: block;
                margin: 0;
            }

            .footer-links span {
                display: none;
            }
        }
