llms.txt Content
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Breeze — The Internet Access Layer for AI Agents</title>
<meta name="description" content="Route your AI's requests through residential IPs in 248 countries. No captchas. No blocks. Just data.">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: #0a0a0a;
color: #e0e0e0;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
}
.hero {
max-width: 800px;
padding: 80px 24px 40px;
text-align: center;
}
.logo { margin-bottom: 16px; }
.logo img { height: 64px; }
h1 { font-size: 42px; font-weight: 700; color: #fff; margin-bottom: 16px; line-height: 1.2; }
h1 span { color: #60a5fa; }
.subtitle { font-size: 20px; color: #888; margin-bottom: 48px; line-height: 1.6; }
.code-block {
background: #1a1a2e;
border: 1px solid #2a2a4a;
border-radius: 12px;
padding: 24px 32px;
text-align: left;
font-family: 'SF Mono', 'Fira Code', monospace;
font-size: 14px;
color: #a5b4fc;
margin-bottom: 16px;
overflow-x: auto;
}
.code-block .comment { color: #555; }
.code-block .string { color: #86efac; }
.code-block .key { color: #fbbf24; }
.label { font-size: 13px; color: #666; margin-bottom: 48px; }
.features {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
max-width: 800px;
padding: 0 24px 40px;
}
.feature {
background: #111;
border: 1px solid #222;
border-radius: 12px;
padding: 24px;
text-align: left;
}
.feature .icon { font-size: 28px; margin-bottom: 12px; }
.feature h3 { font-size: 16px; color: #fff; margin-bottom: 8px; }
.featu