*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    color: #334155;
    background: #fff;
    line-height: 1.7;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    display: block;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border: 2px solid rgba(0, 0, 0, 0);
    border-radius: 50px;
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}
.btn--primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    border-color: #2563eb;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
}
.btn--primary:hover {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
    transform: translateY(-2px);
}
.btn--secondary {
    background: #eff6ff;
    color: #1d4ed8;
    border-color: #bfdbfe;
}
.btn--secondary:hover {
    background: #dbeafe;
    border-color: #60a5fa;
    transform: translateY(-2px);
}
.btn--outline {
    background: rgba(0, 0, 0, 0);
    color: #fff;
    border-color: hsla(0, 0%, 100%, 0.5);
}
.btn--outline:hover {
    background: hsla(0, 0%, 100%, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}
.btn--nav {
    padding: 8px 20px;
    background: hsla(0, 0%, 100%, 0.15);
    color: #fff;
    border-color: hsla(0, 0%, 100%, 0.3);
    font-size: 0.875rem;
}
.btn--nav:hover {
    background: hsla(0, 0%, 100%, 0.25);
    border-color: hsla(0, 0%, 100%, 0.5);
}
.btn--lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}
.btn__icon {
    font-size: 1.1em;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(23, 37, 84, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar--scrolled {
    padding: 10px 0;
    background: rgba(15, 23, 42, 0.95);
    box-shadow:
        0 10px 25px -3px rgba(0, 0, 0, 0.08),
        0 4px 6px -4px rgba(0, 0, 0, 0.04);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}
.navbar__logo-icon {
    font-size: 1.5rem;
}
.navbar__links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.navbar__links a:not(.btn) {
    color: hsla(0, 0%, 100%, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
}
.navbar__links a:not(.btn)::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #60a5fa;
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar__links a:not(.btn):hover {
    color: #fff;
}
.navbar__links a:not(.btn):hover::after {
    width: 100%;
}
.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.navbar__toggle.active span:nth-child(2) {
    opacity: 0;
}
.navbar__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #172554 0%, #1e3a8a 30%, #1d4ed8 60%, #2563eb 100%);
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(96, 165, 250, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(147, 197, 253, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.hero__content {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 24px;
    padding-right: 24px;
    max-width: 1200px;
    width: 100%;
}
.hero__badge {
    display: inline-block;
    padding: 6px 16px;
    background: hsla(0, 0%, 100%, 0.12);
    border: 1px solid hsla(0, 0%, 100%, 0.2);
    border-radius: 50px;
    color: #bfdbfe;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero__title {
    font-family: "Poppins" ,sans-serif;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero__subtitle {
    font-size: 1.15rem;
    color: hsla(0, 0%, 100%, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
}
.hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.hero__stats {
    display: flex;
    gap: 48px;
}
.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero__stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}
.hero__stat-label {
    font-size: 0.8rem;
    color: hsla(0, 0%, 100%, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}
.section-header__tag {
    display: inline-block;
    padding: 4px 14px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.section-header__title {
    font-family: "Poppins" ,sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight:700;
    color: #172554;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.section-header__desc {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.8;
}
.section-header{
	margin-bottom: 35px;
}
.about {
    padding: 100px 0;
    background: #f8fafc;
}
.about__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.card {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 10px 25px -3px rgba(0, 0, 0, 0.08),
        0 4px 6px -4px rgba(0, 0, 0, 0.04);
    border-color: #bfdbfe;
}
.card__icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}
.card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #172554;
    margin-bottom: 10px;
}
.card__text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
}
.action {
    padding: 100px 0;
    background: #fff;
}
.action__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.action__card {
    background: #eff6ff;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    border: 1px solid #dbeafe;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.action__card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 10px 25px -3px rgba(0, 0, 0, 0.08),
        0 4px 6px -4px rgba(0, 0, 0, 0.04);
    border-color: #93c5fd;
}
.action__card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #172554;
    margin-bottom: 12px;
}
.action__card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 24px;
}
.action__step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.emails {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.emails__controls {
    max-width: 600px;
    margin: 0 auto 32px;
}
.emails__label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 8px;
}
.emails__select-wrapper {
    position: relative;
}
.emails__select {
    width: 100%;
    padding: 14px 48px 14px 20px;
    background: #fff;
    border: 2px solid #bfdbfe;
    border-radius: 12px;
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #172554;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.emails__select:hover {
    border-color: #60a5fa;
}
.emails__select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}
.emails__select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #3b82f6;
    font-size: 1rem;
    pointer-events: none;
}
.emails__preview {
    max-width: 800px;
    margin: 0 auto 32px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.07),
        0 2px 4px -2px rgba(0, 0, 0, 0.05);
}
.emails__preview-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 32px;
    background: linear-gradient(135deg, #1e3a8a, #172554);
    border-bottom: 1px solid #e2e8f0;
}
.emails__preview-badge {
    padding: 4px 12px;
    background: hsla(0, 0%, 100%, 0.15);
    border-radius: 50px;
    color: #bfdbfe;
    font-size: 0.8rem;
    font-weight: 600;
}
.emails__preview-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}
.emails__preview-body {
    padding: 32px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #475569;
    max-height: 500px;
    overflow-y: auto;
    white-space: pre-wrap;
}
.emails__preview-body::-webkit-scrollbar {
    width: 6px;
}
.emails__preview-body::-webkit-scrollbar-track {
    background: #f1f5f9;
}
.emails__preview-body::-webkit-scrollbar-thumb {
    background: #93c5fd;
    border-radius: 3px;
}
.emails__preview-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 32px;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}
.email-provider-group {
    display: flex;
    position: relative;
}
.email-provider-group .btn--primary {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.email-provider-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    border: none;
    background: #1e3a8a;
    color: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    border-left: 1px solid rgba(255,255,255,0.25);
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    transition: background 0.2s;
}
.email-provider-toggle:hover {
    background: #1e40af;
}
.email-provider-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 6px;
    min-width: 200px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    z-index: 100;
    overflow: hidden;
}
.email-provider-menu.open {
    display: block;
}
.email-provider-option {
    display: block;
    width: 100%;
    padding: 10px 16px;
    border: none;
    background: none;
    text-align: left;
    font-size: 0.9rem;
    color: #334155;
    cursor: pointer;
    transition: background 0.15s;
}
.email-provider-option:hover {
    background: #f1f5f9;
    color: #1e3a8a;
}
.email-provider-option + .email-provider-option {
    border-top: 1px solid #f1f5f9;
}
.emails__copied-msg {
    font-size: 0.9rem;
    font-weight: 600;
    color: #16a34a;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.emails__copied-msg.visible {
    opacity: 1;
}
.emails__tip {
    max-width: 800px;
    margin: 0 auto;
    padding: 16px 24px;
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
    color: #1e3a8a;
    line-height: 1.7;
}
.emails__tip a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: underline;
}
.emails__tip a:hover {
    color: #1e3a8a;
}
.lookup {
    padding: 100px 0;
    background: #fff;
}
.lookup__form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}
.lookup__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.lookup__input-row {
    display: flex;
    gap: 16px;
}
.navbar__logo{
	padding-top: 6px;
	font-size: 30px;
	line-height: 36px;
	font-family:"Josefin Sans" , sans-serif;
}
.hero__actions{
	margin-bottom: 40px;
}
.btn--lg{
	padding:10px 30px;
}
.btn--primary:hover{
	background:linear-gradient(135deg, #2563eb, #1d4ed8);
}
.hero__stat-number{
	font-size: 28px;
}
.hero__stat-label{
	font-size: 16px;
}
span.footer__logo {
	padding-top: 6px;
    font-size: 24px;
    line-height: 30px;
    font-family: "Josefin Sans", sans-serif;
}
#copied-msg{
    display: none;
    opacity:1;
}
.footer__brand{
    max-width: 440px;
}
.navbar__logo{
    font-size: 25px;
    line-height: 32px;
}
@media (max-width: 1440px){
	.hero__content{
		padding:100px 24px;
		padding-bottom: 50px;
	}
	.hero__stat-number{
		font-size: 22px;
		line-height: 26px;
	}
	.hero__stat-label{
		font-size: 12px;
	}
	.hero__title{
		font-size:56px;
		margin-bottom: 15px;
	}
	.hero__subtitle{
		font-size: 16px;
	}
	.hero__badge{
		margin-bottom: 15px;
		padding:4px 12px;
		font-size: 14px;
	}
}
@media (max-width: 480px) {
    .lookup__input-row {
        flex-direction: column;
    }
}
.lookup__input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.lookup__input-group--city {
    flex: 2;
}
.lookup__input-group--zip {
    flex: 1;
    min-width: 120px;
}
.lookup__label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e3a8a;
}
.lookup__input {
    width: 100%;
    padding: 16px 20px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-size: 1rem;
    color: #172554;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.lookup__input::placeholder {
    color: #94a3b8;
}
.lookup__input:hover {
    border-color: #93c5fd;
}
.lookup__input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}
.lookup__hint {
    font-size: 0.82rem;
    color: #94a3b8;
}
.lookup__submit {
    align-self: flex-start;
}
.lookup__error {
    margin-top: 20px;
    padding: 16px 20px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-left: 4px solid #ef4444;
    border-radius: 0 8px 8px 0;
    color: #991b1b;
    font-size: 0.9rem;
    line-height: 1.6;
}
.lookup__results {
    margin-top: 32px;
}
.lookup__results-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #172554;
    margin-bottom: 20px;
    text-align: center;
}
.lookup__results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.lookup__next {
    margin-top: 32px;
    text-align: center;
}
.lookup__fallback {
    margin-top: 32px;
    padding: 20px 24px;
    background: #f8fafc;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
}
.lookup__fallback p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 12px;
}
.legislator-card {
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.legislator-card__header {
    padding: 12px 20px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
}
.legislator-card__header--senate {
    background: linear-gradient(135deg, #1e3a8a, #172554);
}
.legislator-card__chamber {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.legislator-card__body {
    padding: 24px 20px;
}
.legislator-card__photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #dbeafe;
    margin-bottom: 12px;
}
.legislator-card__name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #172554;
    margin-bottom: 4px;
}
.legislator-card__party {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 2px;
}
.legislator-card__district {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 12px;
}
.legislator-card__contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.legislator-card__contact p {
    font-size: 0.88rem;
    color: #475569;
}
.legislator-card__contact a {
    color: #2563eb;
    text-decoration: underline;
}
.legislator-card__contact a:hover {
    color: #1e3a8a;
}
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid hsla(0, 0%, 100%, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 4px;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.emails__personalize {
    max-width: 600px;
    margin: 0 auto 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.emails__personalize-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.emails__personalize-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e3a8a;
}
.emails__input {
    padding: 12px 16px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-size: 0.95rem;
    color: #172554;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.emails__input::placeholder {
    color: #94a3b8;
}
.emails__input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}
.emails__textarea {
    width: 100%;
    padding: 24px;
    border: none;
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #475569;
    resize: vertical;
    min-height: 350px;
    max-height: 600px;
    background: #fff;
}
.emails__textarea:focus {
    outline: none;
    background: #eff6ff;
}
.emails__info {
    max-width: 800px;
    margin: 0 auto 16px;
    padding: 16px 24px;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.7;
}
.resources {
    padding: 100px 0;
    background: #f8fafc;
}
.resources__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.resource-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border-radius: 16px;
    padding: 40px 28px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.resource-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 10px 25px -3px rgba(0, 0, 0, 0.08),
        0 4px 6px -4px rgba(0, 0, 0, 0.04);
    border-color: #bfdbfe;
}
.resource-card__icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}
.resource-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #172554;
    margin-bottom: 10px;
}
.resource-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 16px;
}
.resource-card__link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2563eb;
    margin-top: auto;
}
.footer {
    background: #0f172a;
    color: hsla(0, 0%, 100%, 0.7);
    padding: 40px 0 0;
}
.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
}
.footer__brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 12px;
}
.footer__logo {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}
.footer__links h4 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__links a {
    font-size: 0.9rem;
    color: hsla(0, 0%, 100%, 0.6);
}
.footer__links a:hover {
    color: #fff;
}
.footer__bottom {
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
    padding: 20px 0;
    text-align: center;
}
.footer__bottom p {
    font-size: 0.8rem;
    color: hsla(0, 0%, 100%, 0.4);
}
.lookup__results-title{
	font-family:"Poppins" ,sans-serif;
}
.emails__preview-header{
	padding:15px 20px;
}
.emails__preview-body{
	white-space: initial;
}
.emails__preview-body{
	max-height: none;
	overflow-y:hidden;
}
@media (max-width: 992px) {
    .about__grid {
        grid-template-columns: 1fr 1fr;
    }
    .action__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .resources__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .lookup__results-grid {
        grid-template-columns: 1fr;
    }
    .footer__content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
.lookup__submit{
	height: 50px;
}
.legal-page {
    padding: 120px 0 80px;
    background: #fff;
}
.legal-page .section-header {
    margin-bottom: 40px;
}
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}
.legal-content h2 {
    font-family: "Poppins", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #172554;
    margin-top: 32px;
    margin-bottom: 12px;
}
.legal-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-top: 20px;
    margin-bottom: 8px;
}
.legal-content p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 12px;
}
.legal-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}
.legal-content ul li {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 4px;
}
.legal-content a {
    color: #2563eb;
    text-decoration: underline;
}
.legal-content a:hover {
    color: #1e3a8a;
}
@media (max-width: 768px) {
	.emails__preview-header{
		flex-direction: column;
		align-items: flex-start;
		gap:8px;
	}
	.resources__grid{
		max-width: 100%;
	}
	.lookup__submit{
		width: 100%;
	}
	.section-header{
		margin-bottom: 20px;
	}
	.section-header__title{
		font-size: 30px;
	}
	.section-header__desc , .card__text{
		font-size: 15px;
	}
	.card{
		padding:20px;
	}
	.about__grid{
		gap:15px;
	}
	.navbar__logo{
		font-size: 24px;
		line-height: 30px;
	}
    .navbar__links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 16px;
        border-top: 1px solid hsla(0, 0%, 100%, 0.08);
    }
    .navbar__links.active {
        display: flex;
    }
    .navbar__toggle {
        display: flex;
    }
    .hero__content {
        padding:140px 20px;
        padding-bottom: 80px;
    }
    .hero__actions>a{
    	width: 100%;
    }
    .hero__subtitle{
    	margin-bottom: 25px;
    	max-width: 100%;
    }
    .hero__title{
    	max-width: 100%;
    }
    div.hero__stats{
    	gap:10px;
    	grid-template-columns: 1fr;
    }
    .hero__stat{
    	padding:15px;
    	background-color:rgba(255,255,255,.05);
    	backdrop-filter:blur(3px);
    	border:2px solid rgba(255,255,255,.3);
    	border-radius: 5px;
    }
    .hero__stats{
    	display: grid;
    	grid-template-columns: repeat(3 ,1fr);
    }
    .hero{
    	min-height: 0px;
    }
    .hero__title {
        font-size: 2.4rem;
    }
    .hero__stats {
        gap: 24px;
        flex-wrap: wrap;
    }
    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .about__grid {
        grid-template-columns: 1fr;
    }
    .about,
    .action,
    .emails,
    .lookup,
    .resources {
        padding: 60px 0;
    }
    .emails__personalize {
        grid-template-columns: 1fr;
    }
    .emails__preview-header {
        padding: 16px 20px;
    }
    .emails__preview-body {
        padding: 0px;
    }
    .emails__preview-actions{
    	flex-direction: column;
    	align-items: center;
    	justify-content: center;
    }
    .emails__preview-actions>button{
    	width:100%;
    }
    .emails__preview-actions {
        padding: 16px 20px;
    }
}

@media (max-width: 767px){
    .footer__brand{
        max-width: 100%;
    }
    .navbar__logo{
        font-size: 20px;
        line-height: 24px;
    }
    span.footer__logo{
        font-size: 20px;
        line-height: 24px;
    }
}