/* Low Poly & Global Styles for Squab */
:root {
    --bg-color: #ffffff;
    --text-color: #111111;
    --accent-color: #ffb703;
    /* Golden bell color */
    --secondary-text: #555555;
    --card-bg: rgba(0, 0, 0, 0.03);
}

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

body {
    font-family: 'IBM Plex Mono', monospace;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    /* geometric background pattern removed */
    background-image: none;
}

/* Low Poly Shapes via CSS Clip-path */
.decoration {
    display: none;
}

.poly-1 {
    top: -100px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    transform: rotate(15deg);
}

.poly-2 {
    bottom: -50px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, #e8e8e8, #fafafa);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    transform: rotate(-10deg);
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header & Nav */
header {
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

nav a {
    color: var(--secondary-text);
    text-decoration: none;
    font-size: 0.9rem;
    margin-left: 1rem;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--accent-color);
}

/* Main Content */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.app-icon {
    width: 140px;
    height: 140px;
    margin-bottom: 2rem;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    /* Clip path for a slight low-poly feel on the icon container if desired, 
       but keeping it square-rounded is safer for standard icons */
}

h1.title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

p.subtitle {
    font-size: 1.2rem;
    color: var(--secondary-text);
    max-width: 500px;
    margin-bottom: 2.5rem;
}

/* Privacy Page Specifics */
.policy-content {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.policy-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 1rem;
}

.policy-content h2 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.policy-content p {
    margin-bottom: 1rem;
    color: var(--secondary-text);
    font-size: 0.95rem;
}

.contact-info {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--text-color);
    color: var(--bg-color);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
    /* Futuristic shape */
    transition: transform 0.2s, background-color 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: var(--accent-color);
    color: #000;
}

footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--secondary-text);
    font-size: 0.8rem;
}