--red: #c8312b; --red-dark: #a4241f; --gray: #6b6b6b; --border: #dddbd8; --green: #22c55e; --serif: 'Fraunces', Georgia, 'Times New Roman', serif; } html { background: var(--cream); } body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--dark); line-height: 1.6; min-height: 100vh; display: flex; flex-direction: column; } a { text-decoration: none; color: inherit; } /* NAV */ nav { display: flex; justify-content: space-between; align-items: center; padding: 0 80px; height: 72px; background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 12px rgba(0,0,0,0.06); } .nav-logo img { height: 60px; display: block; } .nav-right { display: flex; align-items: center; gap: 36px; } .nav-links { display: flex; gap: 32px; list-style: none; } .nav-links a { font-size: 14px; font-weight: 600; color: var(--dark); transition: color 0.2s; } .nav-links a:hover { color: var(--red); } .nav-links a.active { color: var(--red); } .nav-cta { background: var(--red); color: white; padding: 11px 24px; border-radius: 6px; font-weight: 700; font-size: 14px; transition: background 0.2s; white-space: nowrap; } .nav-cta:hover { background: var(--red-dark); } .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; } .nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; } /* HERO */ .hero { background: var(--white); padding: 80px 80px 60px; text-align: center; border-bottom: 1px solid var(--border); } .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: #fef2f2; color: var(--red); font-size: 13px; font-weight: 700; padding: 6px 16px; border-radius: 999px; margin-bottom: 24px; letter-spacing: 0.5px; text-transform: uppercase; } .hero h1 { font-family: var(--serif); font-size: 48px; font-weight: 800; line-height: 1.15; margin-bottom: 16px; letter-spacing: -1px; } .hero p { font-size: 18px; color: var(--gray); max-width: 640px; margin: 0 auto; line-height: 1.7; } /* TOOLS GRID */ .tools-section { padding: 60px 80px 80px; max-width: 1200px; margin: 0 auto; width: 100%; } .tools-section h2 { font-family: var(--serif); font-size: 28px; font-weight: 700; margin-bottom: 8px; } .tools-section .subtitle { color: var(--gray); font-size: 15px; margin-bottom: 40px; } .tools-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; } .tool-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 32px; transition: box-shadow 0.2s, transform 0.15s; display: flex; flex-direction: column; } .tool-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-2px); } .tool-icon { width: 52px; height: 52px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; flex-shrink: 0; } .tool-icon svg { width: 26px; height: 26px; } .tool-icon.pdf { background: #fef2f2; color: var(--red); } .tool-icon.image { background: #f0fdf4; color: var(--green); } .tool-icon.coming { background: #f5f3f0; color: var(--gray); } .tool-badge { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; width: fit-content; } .tool-badge.free { background: #f0fdf4; color: #16a34a; } .tool-badge.freemium { background: #eff6ff; color: #2563eb; } .tool-badge.soon { background: #f5f3f0; color: var(--gray); } .tool-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; line-height: 1.3; } .tool-card p { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 20px; flex: 1; } .tool-features { list-style: none; margin-bottom: 24px; display: flex; flex-wrap: wrap; gap: 6px; } .tool-features li { font-size: 12px; font-weight: 500; color: var(--gray); background: var(--cream); padding: 4px 10px; border-radius: 6px; } .tool-cta { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--red); transition: gap 0.2s; } .tool-cta:hover { gap: 12px; } .tool-cta svg { width: 16px; height: 16px; } .tool-card.disabled { opacity: 0.6; pointer-events: none; } /* CTA SECTION */ .cta-section { background: var(--charcoal); color: white; padding: 64px 80px; text-align: center; } .cta-section h2 { font-family: var(--serif); font-size: 32px; font-weight: 700; margin-bottom: 12px; } .cta-section p { color: #999; font-size: 16px; margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; } .cta-section .cta-btn { background: var(--red); color: white; padding: 14px 32px; border-radius: 8px; font-weight: 700; font-size: 15px; display: inline-block; transition: background 0.2s; } .cta-section .cta-btn:hover { background: var(--red-dark); } /* FOOTER */ footer { background: var(--dark); color: #888; padding: 40px 80px; text-align: center; font-size: 13px; } footer a { color: #bbb; transition: color 0.2s; } footer a:hover { color: white; } /* RESPONSIVE */ @media (max-width: 768px) { nav { padding: 0 20px; } .nav-links { display: none; } .nav-hamburger { display: flex; } .hero { padding: 48px 20px 40px; } .hero h1 { font-size: 32px; } .hero p { font-size: 16px; } .tools-section { padding: 40px 20px 60px; } .tools-grid { grid-template-columns: 1fr; } .cta-section { padding: 48px 20px; } .cta-section h2 { font-size: 26px; } footer { padding: 32px 20px; } } /* Schema.org structured data styling */ .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
/* Icon wrapper used in the top-level